 /*
green-light     rgba(138, 215, 74, 1)
grey-05         rgba(204, 204, 204, 1)
grey-07         rgba(249, 249, 249, 1)
*/

/* Sign In Input Styles */
.input-field {
  position: relative;
}

/* privacy button padding */
.input-field.with-icon input,
.input-field.form-privacy input {
  padding-left: 0.75rem;
  padding-right: 3.5rem;
}

/* input field base style */
.input-field textarea,
.input-field select,
.input-field input {
  display: block;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;

  width: 100%;

  border: solid 1px;
  border-radius: 0;
  --border-opacity: 1;
  border-color: #cccccc;
  border-color: rgba(204, 204, 204, var(--border-opacity));

  --text-opacity: 1;
  color: #404040;
  color: rgba(64, 64, 64, var(--text-opacity));
}

/* hide default aria focus */
.input-field .focused,
.input-field .not-empty {
  outline: none;
}

/* collapsed label definition */
.input-field label {
  position: absolute;
  pointer-events: none;

  --text-opacity: 1;
  color: #404040;
  color: rgba(64, 64, 64, var(--text-opacity));

  left: 0.625rem;
  top: 0.625rem;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}

/* inset label when focused or not empty */
.input-field label.raised {
  font-size: 0.875rem;
  margin-left: 0.25rem;
  margin-top: -1.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background-image: linear-gradient(0deg, #fff 0.675rem, transparent 0.675rem);
}

/* blue border when focused */
.input-field .focused {
  --border-opacity: 1;
  border-color: #0071ba;
  border-color: rgba(0, 113, 186, var(--border-opacity));
}

/* not used: select drop-down label */
.input-field select ~ label {
  --text-opacity: 1;
  color: #404040;
  color: rgba(64, 64, 64, var(--text-opacity));
}

/* non-focused label */
.input-field .not-empty:required:valid ~ label,
.input-field .not-empty:optional ~ label {
  --text-opacity: 1;
  color: #868686;
  color: rgba(134, 134, 134, var(--text-opacity));
}

/* focused label */
.input-field .focused ~ label,
.input-field .focused.not-empty:required:valid ~ label,
.input-field .focused.not-empty ~ label {
  --text-opacity: 1;
  color: #0071ba;
  color: rgba(0, 113, 186, var(--text-opacity));
}

/* invalid input border */
.input-field textarea:required:not(.empty):invalid,
.input-field input:required:not(.empty):invalid,
.input-field input:optional:invalid {
  --text-opacity: 1;
  color: #ea5e5f;
  color: rgba(234, 94, 95, var(--text-opacity));
}

/* hide label */
.input-field .no-label ~ label {
  display: none;
}

/* disabled input state */
.input-field input:disabled {
  cursor: not-allowed;

  --text-opacity: 1;
  color: #868686;
  color: rgba(134, 134, 134, var(--text-opacity));

  --bg-opacity: 1;
  background-color: #e7e7e7;
  background-color: rgba(231, 231, 231, var(--bg-opacity));
}

/* disabled label state */
.input-field input:disabled ~ label {
  --text-opacity: 1;
  color: #868686;
  color: rgba(134, 134, 134, var(--text-opacity));
}

/* Select Services */
svg,
path {
  pointer-events: none;
}
.cf__service__wrapper {
  scroll-margin-top: 8rem;
}

@media screen and (min-width: 1026px) {
  .cf__service__wrapper {
    scroll-margin-top: 24rem;
  }
}

/* Progress Icons */
.cf__progress-section .cf__progress-icon {
  width: 1rem;
  height: 1rem;
  border-width: 1px;
  border-color: rgba(204, 204, 204, 1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cf__progress-section .cf__progress-icon > svg {
  display: none;
}

.cf__progress-section.cf__complete .cf__progress-icon {
  border-color: rgba(138, 215, 74, 1);
}

.cf__progress-section.cf__complete .cf__progress-icon > svg {
  display: block;
}

.cf__progress-section.cf__active.cf__complete .cf__progress-icon > svg {
  display: none;
}

.cf__progress-section.cf__active .cf__progress-icon::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(204, 204, 204, 1);
  border-radius: 0.25rem;
}

.cf__progress-section.cf__active.cf__complete .cf__progress-icon::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgba(138, 215, 74, 1);
  border-radius: 0.25rem;
}

/* Progress line */
/* NOTE: Removing this line for now */
.cf__progress-section:first-child .cf__progress-bar > div:first-child {
  background-color: transparent;
}

.cf__progress-section:last-child .cf__progress-bar > div:last-child {
  background-color: transparent;
}

.cf__progress-section .cf__progress-bar > div {
  background-color: rgba(204, 204, 204, 1);
  background-color: transparent;
}

.cf__complete.cf__progress-section .cf__progress-bar > div {
  background-color: rgba(138, 215, 74, 1);
  background-color: transparent;
}

.cf__complete + .cf__progress-section .cf__progress-bar > div:nth-child(1) {
  background-color: rgba(138, 215, 74, 1);
  background-color: transparent;
}

/* Radio Buttons */
.cf__radio-btn {
  position: relative;
  cursor: pointer;
}

.cf__radio-btn svg {
  flex-shrink: 0;
}

.cf__radio-btn input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cf__radio-btn .cf__svg-active {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cf__radio-btn input:checked + div svg .cf__svg-active {
  opacity: 1;
}

/* Plan Cards */
.cf__plan-card {
  position: relative;
  cursor: pointer;
}

.cf__plan-card svg {
  flex-shrink: 0;
}

.cf__plan-card input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cf__plan-card .cf__svg-active {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cf__plan-card input:checked + div svg .cf__svg-active {
  opacity: 1;
}

.cf__plan-card.cf__active {
  border: 2px solid#8ad74a;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cf__plan-card.cf__active .cf__plan-card__price {
  background-color: #8ad74a;
  color: white;
}

/* TV Package Cards */
.cf__tv-card,
.cf__internet-btn {
  position: relative;
  cursor: pointer;
}

.cf__tv-card svg,
.cf__internet-btn svg {
  flex-shrink: 0;
}

.cf__tv-card svg,
.cf__internet-btn svg {
  width: 30px;
  height: 30px;
}

.cf__tv-card input,
.cf__internet-btn input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.cf__tv-card .cf__svg-active,
.cf__internet-btn .cf__svg-active {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cf__tv-card input:checked + div svg.cf__svg-active,
.cf__internet-btn input:checked + div svg.cf__svg-active {
  opacity: 1;
}

/* Service Content Dropdown*/
.cf__service-dropdown button {
  transition: all ease-in-out 0.1s;
  outline: none;
}
.cf__service-dropdown.cf__active button {
  transform: rotate(180deg);
}

.cf__service-dropdown__label-edit,
.cf__service-dropdown.cf__active .cf__service-dropdown__label-view {
  display: block;
}

.cf__service-dropdown__label-view,
.cf__service-dropdown.cf__active .cf__service-dropdown__label-edit {
  display: none;
}

/* Service Content*/
.cf__service__content {
  display: flex;
  visibility: hidden;
  height: 0;
}

.cf__service__content.cf__active {
  visibility: visible;
  height: 100%;
}

.cf__disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cf__slide-dot.cf__active circle {
  fill: #0d123d;
}

.cf__cart-summary-modal {
  max-height: 500px;
  overflow-y: scroll;
}

/* C6101 styles - START */
.cf__input + .cf__label {
  position: absolute;
  left: 1rem;
  top: 0.625rem;
  transition: 0.2s ease all;
}

.cf__input.cf__active + .cf__label {
  left: 0;
  margin-top: -2rem;
  margin-left: 0.75rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: white;
}

.cf__input:focus + .cf__label {
  color: #0071ba;
}

.cf__input.cf__invalid {
  border-color: red;
}

.cf__options-list {
  display: none;
}

.cf__options-list.cf__active {
  display: flex;
}

.cf__option.cf__active {
  background-color: #0071ba;
  color: white;
}

.cf__footer {
  z-index: 20;
  box-shadow: 0 -4px 3px -2px rgba(0,0,0,0.1), 0 -4px 5px -8px rgba(0,0,0,0.06);
  border-top: rgb(170, 170, 170, 0.25);
}

.cf__service-item {
  text-decoration: none;
  color: inherit;
}

.cf__service-item:hover {
  text-decoration: none;
  color: inherit;
}

@media screen and (min-width: 1026px) {
  .cf__service-item {
    max-width: 350px;
  }
  .cf__service-item:last-child {
    margin-right: 0;
  }
}

.cf__loading-icon{
  display: none;
}

.cf__loading-icon.cf__active{
  display: flex;
  justify-content: center;
  background: #e7e7e7;
  width: 100%;
  height: 64px;
  max-width: 20rem;
}

 .cf__loading-icon svg {
  width: 48px;
  display: inline-block;
}

.cf__loading-icon svg path {
  fill: #0392cf;
}
b

/* C6101 styles - END */

/* C6102 styles - START */
.cf__spacer {
  top: -6px;
}

.cf__spacer-2 {
  top: -12px;
}
/* C6102 styles - END */

/*C6103 styles - START */

.cf__calendar-container {
  z-index: 10;
}

@media screen and (min-width: 1026px) {
  .cf__calendar-container.cf__left-side {
    padding-right: 2rem;
  }
}

.cf__icon {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (min-width: 1026px) {
  .cf__icon.cf__left-side {
    position: absolute;
    top: 0;
    right: 2rem;
  }
}

.c6103__radio + svg rect {
  stroke: #868686;
}

.c6103__radio:checked + svg rect {
  stroke: #0392cf;
}

.c6103__radio + svg path {
  stroke: transparent;
  fill: transparent;
}

.c6103__radio:checked + svg path {
  stroke: #0392cf;
  fill: #0392cf;
}

.cf__checkbox-checked {
  display: none;
}

.cf__checkbox.cf__active + div > .cf__checkbox-checked {
  display: block;
}

.cf__checkbox-unchecked {
  display: block;
}

.cf__checkbox.cf__active + div > .cf__checkbox-unchecked {
  display: none;
}

.cf__valid-icon {
  display: none;
}

.cf__valid-icon.cf__active {
  display: block;
  top: 1.75rem;
  right: 0;
}

.cf__valid-icon.cf__left-side.cf__active {
  position: absolute;
  top: 1.75rem;
  right: 0;
}

@media screen and (min-width: 1026px) {
  .cf__valid-icon.cf__left-side.cf__active {
    right: 2rem;
  }
}

.cf__validation-status-username {
  display: none;
}
.cf__validation-status-username.cf__active {
  display: block;
  color: #8ad74a;
}
.cf__validation-status-username.cf__invalid {
  color: #ea5e5f;
}
/*C6103 styles - END */

/* C6104 styles - START */

.cf__date-item.cf__disabled,
.cf__time-pill.cf__disabled,
.cf__schedule-pill.cf__disabled {
  color: #868686;
  border-color: #868686;
}

.cf__date-item.cf__active {
  border-color: #0d123d;
  color: #0d123d;
}

.cf__time-pill:not(.cf__disabled) {
  pointer-events: auto;
  cursor: pointer;
}

.cf__time-pill.cf__active {
  background-color: #0d123d;
  color: white;
  border: white;
}

.cf__schedule-pill.cf__active {
  border-color: #8ad74a;
  color: #8ad74a;
}

.cf__schedule-pill__icon {
  position: absolute;
  top: 12px;
  left: 16px;
}

.cf__schedule-pill.cf__disabled .cf__schedule-pill__icon {
  display: none;
}
.cf__schedule-pill.cf__active .cf__schedule-pill__icon {
  display: flex;
}

.litepicker .container__days .day-item.is-start-date.is-end-date {
  border-radius: 100%;
  width: 32px;
  height: 32px;
  background-color: #0d123d;
}

.cf__what-to-expect ul {
  list-style-type: disc;
}

.cf__what-to-expect li {
  margin-bottom: 16px;
  margin-left: 16px;
  color: #404040;
}

@media screen and (min-width: 1026px) {
  .cf__what-to-expect li {
    margin-bottom: 32px;
  }
}
/* C6104 styles - END */
