@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /******************** Colors */
    /*****************************/
    --primary-color: #242276;
    --secondary-color: #F3F3FC;
    --main-color: #0e1729;
    --light-gray-color: #7C7C7C;
    --white-color: #fff;
    --black-color: #000;
    --dark-gray-color: #4F4F4F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
}

body {
    color: var(--black-color);
    font-family: Open Sans, sans-serif;
    font-style: normal;
    width: 100vw;
    overflow-x: hidden;
}

ul {
    padding-left: 0 !important;
}

#package_select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAUCAMAAACtdX32AAAAdVBMVEUAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAhMdQaAAAAJ3RSTlMAAAECAwQGBwsOFBwkJTg5RUZ4eYCHkJefpaytrsXGy8zW3+Do8vNn0bsyAAAAYElEQVR42tXROwJDQAAA0Ymw1p9kiT+L5P5HVEi3qJn2lcPjtIuzUIJ/rhIGy762N3XaThqMN1ZPALsZPEzG1x8LrFL77DHBnEMxBewz0fJ6LyFHTPL7xhwzWYrJ9z22AqmQBV757MHfAAAAAElFTkSuQmCC);
    background-position: 100%;
    background-repeat: no-repeat;
    padding: 0.5rem;
    border-radius: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.d-flex {
    display: flex;
}

.gap_20 {
    gap: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.body-container {
    width: 100%;
    background-color: var(--white-color);
    /* overflow: auto; */
}

.body-container .main {
    position: relative;
    background-color: transparent;
    min-height: auto;
}

/* Banner  */

.banner-wrapper {
    padding-left: 7%;
    padding-right: 7%;
    margin-block-start: 1rem;
}

.banner-wrapper .banner-product {
    margin-top: 1rem;
}

.banner-wrapper .banner-product h5 {
    font-weight: 600;
    color: var(--light-gray-color);
    line-height: 24px;
}

.banner-wrapper .banner-product h1 {
    font-size: 48px;
}

.banner-wrapper .banner-product .product-features {
    font-weight: 400;
}

.banner-wrapper .banner-product>label {
    margin-bottom: 1rem;
    font-weight: 500;
}

.banner-wrapper .banner-product #package_select {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 100%;
    /* padding: 15px 0; */
    padding-block: 15px ;
    padding-left: 16px;
    padding-right: 30px;
    border-radius: 10px;
    background-color: var(--white-color);
}

.banner-product-pricing {
    display: flex;
    flex-direction: column;
}

.banner-product-pricing>label {
    font-weight: 500;
    font-size: 1.5rem;
}

.banner-product-pricing .product-price {
    color: var(--primary-color);
    font-weight: 600
}

.product-spec-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 10px;
}

.product-specifications {
    /* display: flex;
    gap: 3rem; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.product-specifications .spec-n-price {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-specifications .spec-n-price p {
    margin-bottom: 0 !important;
}

.btn-select-date {
    margin: 1rem 0 2rem;
    max-width: 60% !important;
}

.carousel-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.carousel-item.active {
    display: flex !important;
    justify-content: center !important;
}

.carousel-indicators [data-bs-target] {
    height: 12px !important;
    width: 12px !important;
    border-radius: 50% !important;
    background-color: #C5E4F2 !important;
    opacity: 1 !important;
}

.carousel-indicators .active {
    background-color: var(--primary-color) !important;
    height: 16px !important;
    width: 16px !important;
}

.carousel-indicators {
    margin-top: 10rem;
    gap: .5rem;
    align-items: center;
}

/* Features  */

.features {
    display: grid;
    place-items: center;
    background-color: var(--secondary-color);
    position: relative;
    min-height: 40vh;
    width: 100%;
    overflow: hidden;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.features .cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.features .cards-wrapper .features-card {
    display: flex;
    gap: 1rem;
    padding: 2rem 1.5rem;
    min-width: 25%;
}

.features-card .icon-wrapper svg {
    box-shadow: 0px 0px 10px 0px #131313;
}

.features-card .feature-details {
    display: flex;
    flex-direction: column;
}

.features-card .feature-details p {
    word-wrap: break-word;
    max-width: 14rem;
    font-size: 11px;
    font-weight: 400;
    color: var(--light-gray-color);
}

/* Terms  */

.terms {
    padding: 7rem;
    background-color: var(--white-color);
    position: relative;
    min-height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
}

.terms .terms-wrapper,
.terms .terms-wrapper ul {
    display: flex;
    flex-direction: column;
}

.terms .terms-wrapper {
    gap: 1.4rem;
}

.terms .terms-wrapper h2 {
    font-size: 2rem !important;
    font-weight: 500;
    line-height: 2.5rem !important;
}

.terms .terms-wrapper ul {
    margin-left: 1rem;
    color: var(--dark-gray-color);
    gap: .8rem;
}

.terms .terms-wrapper ul li {
    line-height: 26px;
    font-size: 1rem;
}

/* Modal */

.modal-content {
    padding: .8rem;
    border-radius: 1rem !important;
}

.modal-header {
    border: 0 !important;
    padding-bottom: 0 !important;
}

.modal-header h2 {
    font-size: 2.5rem !important;
    font-weight: 500;
}

.btn-close-modal {
    border-radius: 50% !important;
    padding: 1rem !important;
    background-color: var(--secondary-color) !important;
    opacity: 1 !important;
}

.product-features ul {
    display: flex;
    gap: 1.6rem;
    margin-bottom: 1.5rem;
}

.product-features ul li:first-child {
    list-style-type: none;
}

.modal-body .product-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-body .product-type .product-price {
    color: var(--primary-color);
    font-size: 2.5rem !important;
}

.form-control {
    border: 1px solid #adadad !important;
    background-image: none !important;
    padding: 1.4rem 1rem !important;
    border-radius: 8px !important;
    height: 40px !important;
    font-weight: 500;
    background-color: var(--white-color);
    color: var(--main-color);
    font-size: 0.8rem;
}

.form-control:focus {
    background-color: var(--white-color);
}

.form-control:read-only {
    background-color: #f7f8fa;
    border-color: #c5c3d0 !important;
    opacity: 1;
    color: var(--main-color);
    cursor: not-allowed;
}

.input_form {
    position: relative;
    flex: 1;
    display: flex;
    gap: .1rem;
}

.input_form>p {
    position: relative;
    flex: 1;
    display: flex;
    gap: .1rem;
}

.input_form input::placeholder {
    opacity: .7;
}

.flatpickr-months {
    background-color: var(--primary-color);
    color: white;
    padding: .3rem;
}

.flatpickr-current-month,
.flatpickr-monthDropdown-months,
.cur-year {
  color: var(--white-color) !important;
  font-weight: 600 !important;
}

.numInputWrapper span {
    background-color: var(--white-color) !important;
}

.flatpickr-monthDropdown-month {
    color: var(--black-color) !important;
}

.flatpickr-next-month {
    fill: var(--white-color) !important;
}

.flatpickr-day.selected {
    background-color: var(--primary-color) !important; 
    color: var(--white-color) !important;
  }

.radio-group-label {
    font-size: .8rem;
    margin-bottom: .7rem;
}

.label_txt {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: -0.3px;
}

.label_txt>span {
    color: red;
}

.radio {
    position: relative;
    cursor: pointer;
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-flex;
}

.radio.flex {
    display: flex;
}

.radio .label {
    position: relative;
    display: block;
    float: left;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #c8ccd4;
    border-radius: 100%;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio .label:after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: var(--primary-color);
    transform: scale(0);
    transition: all 0.2s ease;
    opacity: 0.08;
    pointer-events: none;
}

.radio:hover .label:after {
    transform: scale(3.2);
}

.radio input[type="radio"]:checked+.label {
    border-color: var(--primary-color);
}

.radio input[type="radio"]:checked+.label:after {
    transform: scale(1);
    transition: all 0.2s cubic-bezier(0.35, 0.9, 0.4, 0.9);
    opacity: 1;
}

.hidden {
    display: none;
}

.small-info {
    margin-top: 1rem !important;
    font-size: .9rem;
    color: var(--light-gray-color);
}

.small-info span {
    font-weight: bold;
}

.additional-info {
    margin-top: 1rem !important;
    color: var(--light-gray-color);
    font-size: .9rem;
    opacity: .6;
}

.modal-footer {
    border: 0 !important;
}

.btn-continue {
    display: flex;
    width: 100%;
    justify-content: center;
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: .5rem 0 !important;
    font-weight: 500 !important;
    border: none;
}

.flex_form {
    display: flex;
    align-items: center;
    gap: 2rem;
}


/* Summary Page */

.summary-wrapper {
    padding: 0 7rem;
}


.product-n-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-n-details img {
    max-width: 20rem;
}

.product-n-details .product-data {
    font-size: 100%;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(2, 2, 2);
    display: inline-block;
    margin: .2rem 1rem;
}

.price-breakup .price-list-wrapper {
    padding: 1.2rem 2rem;
    background-color: var(--secondary-color);
}

#price-table {
    width: 100%;
    border-collapse: collapse;
}

#price-table tr td {
    padding: .5rem 0;
}

#price-table tr td:nth-child(2) {
    font-weight: 500;
}

#price-table tr:last-child td {
    color: var(--primary-color);
    font-size: 1.8rem !important;
    font-weight: 500;
}

#price-table tr td span {
    font-weight: normal;
    font-size: .8rem;
    margin-left: .5rem;
}

#price-table tr.extended-row td {
    position: relative;
}

#price-table tr.extended-row td hr {
    position: absolute;
    top: -2%;
    left: 0%;
    right: 0;
    width: 100%;
}


@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px !important;
    }
}

@media screen and (max-width: 1064px) {
    .banner-wrapper .banner-product #package_select {
        font-size: 1.3rem;
    }

    .terms {
        padding: 3rem;
    }

    .summary-wrapper {
        padding: 0 1.5rem;
    }
}

@media screen and (max-width: 991px) {
    .carousel-inner img {
        max-width: 80%;
    }

    .banner-wrapper .banner-product #package_select {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 892px) {
    .features .cards-wrapper .features-card {
        justify-content: center;
        min-width: 40%;
    }
}

/* Ipad / Tablets */
@media screen and (max-width: 768px) {
    .product-n-details {
        gap: .5rem;
    }

    .product-n-details .product-data h3 {
        font-size: calc(1.2rem + .6vw);
    }

    .product-n-details .product-data h5 {
        font-size: calc(.9rem + .6vw);
    }

    .product-n-details .product-data h5 span {
        font-size: calc(.7rem + .6vw);
    }

    .terms {
        padding: 2rem;
    }
}

@media screen and (min-width: 992px) and (max-width: 1157px) {
    .product-specifications {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 10px;
    }
}

@media screen and (max-width: 576px) {
    .modal-header h2 {
        font-size: 1.7rem !important;
    }

    .modal-body .product-features {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .modal-body .product-features .product-price.hidden.mobile {
        display: block;
        color: var(--primary-color);
        font-size: 2rem !important;
    }

    .modal-body .product-features ul {
        width: 10rem;
        flex-wrap: wrap;
        margin-left: 1.1rem;
    }

    .modal-body .product-features ul li:first-child {
        list-style-type: disc;
    }

    .modal-body .product-type h4 {
        font-size: 1.2rem !important;
    }

    .modal-body .product-type .product-price {
        display: none;
    }

    .dot {
        width: 3px;
        height: 3px;
        margin: .2rem .5rem;
    }

    .product-n-details img {
        min-width: 10rem !important;
    }

    .product-n-details .product-data h3 {
        font-size: 20px;
    }

    .product-n-details .product-data h5 {
        font-size: 14px;
    }

    .product-n-details .product-data h5 span {
        font-size: 12px;
    }

    .btn-select-date {
        max-width: 100% !important;
    }

    .carousel-inner img {
        max-width: 100%;
    }

    .banner-wrapper .banner-product h1 {
        font-size: 40px;
    }

    .product-specifications .spec-n-price h4 {
        font-size: 20px;
    }

    .product-specifications {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .features .cards-wrapper .features-card {
        padding: 1rem 1.5rem;
}

@media screen and (max-width: 428px) {
    .banner-wrapper .banner-product h1 {
        font-size: 36px;
    }

    .banner-wrapper .banner-product .product-features ul {
        font-size: 14px;
    }
}

@media screen and (max-width: 420px) {
    .product-n-details {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: normal;
    }

    #location-select {
        display: none !important;
    }

    #listed-location-select {
        display: inline-block !important;
        margin: 1rem 0;
    }

    .banner-wrapper .banner-product h1 {
        font-size: 26px;
    }

    .features .cards-wrapper {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 356px) {
    .banner-wrapper .banner-product .product-features ul {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {
    .features .cards-wrapper .features-card {
        max-width: 100%;
    }

    .modal-body .product-features .product-price.hidden.mobile {
        font-size: 1.5rem !important;
    }

    .banner-wrapper .banner-product .product-features ul {
        font-size: 11px;
    }

    .product-specifications {
        flex-direction: column;
    }

}