* {
    box-sizing: border-box;
    font-weight: 400!important;
    user-select: none;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .left-container h4, .right-container h4{
  font-family: var(--primary-font);
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 600 !important;
  }
  #leftSideContentSwitcher {
    max-width: 420px;
    white-space: nowrap;
  }

.switches-container {
    max-width: 20rem;
    position: relative;
    display: flex;
    background: var(--white);
    line-height: 2.75rem;
    border-radius: 3rem;
    margin: 0 auto 2rem auto;
    border: 1.5px solid var(--light-blue);
  }

  .switches-container input {
    visibility: hidden;
    position: absolute;
  }

  .switches-container label {
    width: 50%;
    text-align: center;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600 !important;
    font-size: 18px;
  }

  .switch-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 0.2rem;
  }

  .switch {
    border-radius: 3rem;
    background: var(--primary-color);
    height: 100%;
  }

  .switch div {
    font-family: var(--primary-color);
    font-weight: 600 !important;
    font-size: 18px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: var(--white);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  }

  .switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
    transform: translateX(0%);
  }

  .switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
    transform: translateX(100%);
  }

  .switches-container
    input:nth-of-type(1):checked
    ~ .switch-wrapper
    .switch
    div:nth-of-type(1) {
    opacity: 1;
  }

  .switches-container
    input:nth-of-type(2):checked
    ~ .switch-wrapper
    .switch
    div:nth-of-type(2) {
    opacity: 1;
  }

  .left-container{
    width: 450px;
  }

  .packagesContent{
    /* background: linear-gradient(180deg, var(--mint-frost-light) 16.46%, var(--mint-frost-light) 99.17%);
    box-shadow: 0px 10px 15px 0px #00000033;
    border-radius: 20px; */
    /* max-width: 1092px;  */
    /* margin:  0 auto; */
  }

  .containerContent{
    display: flex;
    justify-content: center;
    gap:2rem;
  }

  .right-container {
    width: auto !important;
    padding: 0 150px 60px 150px;
    border-radius: 20px;
  }

  .card {
    position: relative;
    background: var(--white);
    padding: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.4s;
  }

  .currentPackage{
    font-weight: 500!important;
  }

  .card:hover {
    border: .98px solid var(--white);
    /* box-shadow: 0px 4px 9px 1px #cdcdcd; */
    cursor: pointer;
  }

  .card-title p {
    color: var(--deep-steel-blue);
    font-weight: 500 !important;
    white-space: nowrap;
    font-family: var(--secondary-font);
    font-size: 16px;
  }
  .badge {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    color: var( --ash-gray);
    font-size: 15px;
    font-weight: 500 !important;
    /* background: var(--light-blue); */
    white-space: nowrap;
    font-family: var(--secondary-font);
    /* border-radius: 0 50px 50px 0 !important; */

  }

  .bold-text {
    font-family: var(--primary-font);
    color:var(--muted-teal-gray);
    font-size: 33px;
    font-weight: 800!important;
  }

  .mbps {
    font-size: 33px;
    font-weight: 700 !important;
    font-family: var(--primary-font);
    color: var(--muted-teal-gray);
  }

  /* Price Styling */
.price {
  position: absolute;
  bottom: 4px;
  right: 16px;
  font-size: 20px;
  color: var(--deep-steel-blue);
  display: flex;
}

#price{
  font-weight: 900!important;
}

.price p,
span {
  margin-bottom: 0;
}
.price span {
  font-size: 14px;
  font-weight: 700 !important;
}

.radio-container {
  display: inline-block;
}

.custom-radio input[type="radio"] {
  display: none;
}

.custom-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: var(--light-blue);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.radio-checkmark {
  display: none;
  color: var(--white);
  font-size: 13px;
  line-height: 1;
  text-align: center;
  padding: 10px;
}

.custom-radio input[type="radio"]:checked + .radio-checkmark {
  display: block;
  background-color: var(--button-color);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.label {
  color:var(--light-gray)
}
.value {
  color: var(--deep-steel-blue);
  font-weight: bold;
}

.reg-form {
  max-width: 600px;
  background: #FFFFFF;
  padding:2.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.form-group {
  flex: 1;
  /* min-width: 300px;  */
}

.form-group a span{
  font-weight:500 !important;
  font-size: 14px;
}

label {
  display: block;
  font-weight:600 !important;
  margin-bottom: 5px;
  color: var(--slate-blue)
}

.reg-form .form-row .form-group input, .reg-form .form-row .form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #BEDCE7;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500 !important;
  box-sizing: border-box;
  color: var(--slate-blue);
}

input:focus, select:focus {
  outline: none;
  border-color: #50A4D4;
  box-shadow: 0 0 5px rgba(80, 164, 212, 0.5);
}


.google-map-link {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 500 !important;
  text-decoration: none;
  color: #FF9852;
}


form span{
  color: var(--button-color);
}

.card{
  overflow: hidden;
  margin: 0 !important;
}


.range-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding-inline: 2rem;
  font-family: var(--primary-font);
}

.range-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}

.range-label {
  font-weight: bold;
}

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  outline: none;
  /* background: var(--forest-green); */
  position: relative;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28.63px;
  height: 14.8px;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--primary-color) 50%, var(--soft-teal-green) 50%);
  cursor: pointer;
  border: none;
  z-index: 2;
}

.selected-value {
  color: var(--deep-steel-blue);
  padding: 5px 15px;
  border-radius: 26px;
  font-size: 16px;
  text-align: center;
  border: 1px solid var(--teal-gray-shade);
  font-weight: 700 !important;
  width: 108px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--mint-white);
}
.range-slider::-moz-range-thumb {
  width: 28.63px;
  height: 14.8px;
  border-radius: 12px;
  background: linear-gradient(45deg, var(--primary-color) 50%, var(--soft-teal-green) 50%);
  cursor: pointer;
  border: none;
  z-index: 2;
}

.button-container {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.submit-button {
  background-color: var(--button-color);
  color: white;
  border: none;
  padding: 8px 64px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
   font-weight: 500 !important;
    cursor: pointer;

}



.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
  display: none;
}

.overlay.visible {
  display: block;
}

.side-panel {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 370px;
  height: 100%;
  background: var(--white);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: right 0.5s ease-in-out;;
  display: flex;
  flex-direction: column;
  overflow:hidden;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: var(--primary-font);
}

.side-panel.visible {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.panel-header {
  display: flex;
  justify-content: end;
  padding: 4px 16px 0 16px;
  font-size: 18px;
  font-weight: bold;
}

.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-gray);
  transition: transform 0.6s ease-in-out;
}
.close-button:hover {
  transform: rotate(180deg); /* Full rotation */
}

.panel-content {
  /* padding: 30px; */
  padding: 5px 28px 15px;
}

.panel-content h4{
  font-family: var(--primary-font);
  font-weight: 700 !important;
}

.side-panel-card{
  border-radius: 10px;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
  padding: 10px;
  background-color: var(--grayish-green);
}


/* Close Button Styles */
.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-gray);
  transition: transform 0.6s ease-in-out;
}

.close-button:hover
  {
    transform: rotate(180deg);
  }

  .sliding-panel-content{
    padding: 5px 28px 15px;
  }

  .sliding-panel-content h4{
    font-family: var(--primary-font);
    font-weight: 700 !important;
    font-size: 22px;
    padding-bottom:6px;
  }


  .checkbox.style-d {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .checkbox.style-d input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  .checkbox.style-d input:checked ~ .checkbox__checkmark {
    background-color: var(--button-color);
  }

  .checkbox.style-d input:checked ~ .checkbox__checkmark:after {
    opacity: 1;
  }
  /* .checkbox.style-d:hover input ~ .checkbox__checkmark {
    background-color: var(--off-white)
  } */

  .checkbox.style-d .checkbox__checkmark {
    position: absolute;
    top: 1px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--off-white);
    transition: background-color 0.25s ease;
    border-radius: 11px;
    border: 2px solid var(--button-color);
  }
  .checkbox.style-d .checkbox__checkmark:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .checkbox-body{
    color: var(--deep-steel-blue);
    font-size: 15px;
    font-weight: 400 !important;
    margin-bottom: 5px;
    font-size: 15px;
    transform: translateY(-3px);
  }

  .payment-info .value {
    font-size: 15px;
    font-weight: 600 !important;
  }

  .payment-info .label {
    font-size: 15px;
    font-weight: 600 !important;
  }

  .payment-info {
    display: none;
    justify-content: space-between;
  }




  @media only screen and (max-width: 1023px) and (min-width: 990px){
    .container{
      max-width: 1023px !important;
    }
  }

  @media only screen and (max-width: 989px){
    .containerContent {
      align-items: center !important;
      flex-direction: column;
      justify-content: center !important;
    }
  }
  @media only screen and (max-width: 1199px){
    .currentPackage {
      font-size: 14px !important;
    }
  }
@media (max-width: 550px){
  .packagesContent {
    padding: 25px 10px !important;
  }

  .cardContent {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}
 @media (max-width: 517px){
  .packagesContent {
    padding: 25px 10px !important;
  }

  .cardContent {
    padding-left: 5px !important;
    padding-right: 5px !important;
    margin: 0 0 auto;
    gap: 10px !important;

  }

  .card h2 {
    font-size: 42px;
  }

  .badge {
    padding: 5px 0px !important;
    font-size: 14px !important;
  }
  .card {
    height: 125px !important;
    width: 215px !important;
  }
 }

 @media (max-width: 492px){

  .packagesContent {
    padding: 25px 10px !important;
  }

  .cardContent {
    padding-left: 8px !important;
    padding-right: 8px !important;
    margin: 0 0 auto;
    gap: 10px !important;

  }

  .card h2 {
    font-size: 42px;
  }

  .badge {
    padding: 5px 0px !important;
    font-size: 14px !important;
  }
  .card {
    height: 125px !important;
    width: 210px !important;
  }

 }

 @media (max-width: 487px) and (min-width: 474px){

  .cardContent {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin: 0 0 auto;
    gap: 12px !important;

  }
  .card {
    height: 125px !important;
    width: 206px !important;
  }
 }

 @media (max-width: 473px){

  .cardContent {
    padding-left: 18px !important;
    padding-right: 18px !important;
    margin: 0 0 auto;
    gap: 10px !important;

  }
  .card {
    height: 125px !important;
    width: 200px !important;
  }
 }

 @media (max-width: 549px) and (min-width: 350px) {
  .tab-link {
    padding-inline: 8px !important;
  }
  .switches-container label {
    font-size: 12px;
  }
  .switch {
    font-size: 12px;
  }
  #leftContainer {
    padding-top: 0 !important;
  }
}

@media (max-width: 473px){

  .cardContent {
    padding-left: 30px !important;
    padding-right: 30px !important;
    margin: 0 0 auto;
    gap: 10px !important;

  }
  .card {
    height: 120px !important;
    width: 188px !important;
  }

  .badge {
    padding: 5px 0px !important;
    font-size: 11px !important;
  }

  .switches-container label {
    font-size: 14px;
  }
  .switch {
    font-size: 14px;
  }
 }

 @media (max-width: 473px){

  .cardContent {
    padding-left: 4px !important;
    padding-right: 4px !important;
    margin: 0 0 auto;
    gap: 10px !important;

  }
  .left-container{
    width: 350px;
  }

  .card {
    height: 110px !important;
    width: 172px !important;
  }

  .price{
    font-size: 13px;
    transform: translateY(3px);
  }

  .card h2 {
    font-size: 30px;
  }
  .card h2 span {
    font-size: 16px;
  }
  .badge {
    padding: 5px 0px !important;
    font-size: 11px !important;
  }

  .switches-container label {
    font-size: 14px;
  }
  .switch {
    font-size: 14px;
  }

  .card-title{
    column-gap: 1rem !important;
  }
 }

 @media (max-width: 414px){

  .cardContent {
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin: 0 0 auto;
    gap: 6px !important;

  }

  .card {
    height: 110px !important;
    width: 160px !important;
  }
}

@media (max-width:973px){
  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }
  .right-container h4{
    padding-bottom: 16px;
  }
}

.error-mssge-style {
	display: none;
	color: red;
	padding-bottom: 0;
	margin: 5px 0;
	font-size: 12px !important;
}

#preRegForm input{
    letter-spacing: 1px;
    font-weight: 400!important;
    font-size: 14px!important;
}

@media only screen and (max-width: 767px) {

    .right-container{
        padding-left: 0!important;
        padding-right: 0!important;
    }
}
