.cart-page {
    margin-top: 6rem;
}
.processoverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .592157);
    z-index: 4;
    backdrop-filter: blur(6px);
    display: none;
}
.checkout-details {
    margin-bottom: 55px;
    /* width:700px; */
    margin-left:auto;
}

.checkout-details h2 {
    font-family: var(--font-family-secondary);
    font-size: 15px;
    font-weight: 400;
    /* color: var(--color-text); */
    color:#051E52;
    margin-top: 15px;
}

.checkout-subheading {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: black;
    margin: 0;
    margin-top: 24px;
}

/* Check Box */
.label-holder {
    display: flex;
    flex-direction: row;
    gap: 35px;
    margin-top: 16px;
}

.check-box {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 25px;
}

.check-box .label-title {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text);
    font-family: 'Nunito', sans-serif;
    margin-left: 20px;
}

/* Hide the browser's default checkbox */
.check-box input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.headline-container {
    height: 50px;
    background: #f5f5f5;
    /* background:white; */
    margin-top: -18px;
    margin-left: -4px;
}
.wish_header {
    color: #051e52;
    font-family: var(--font-family-secondary);
    font-size: 18px;
    text-align: left;
    margin-top: 128px;
    height: 4px;
    margin-left: 20px;
    padding: 11px;
    font-weight: 500;
    text-transform:uppercase;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 34px;
    width: 34px;
    border-radius: 50px;
    background-color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* On mouse-over, add a grey background color */
.check-box:hover input~.checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-box input:checked~.checkmark {
    background-color: #051e52;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-box input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-box .checkmark:after {
    left: 13px;
    top: 9px;
    width: 5px;
    height: 10px;
    border: solid #1e1e1e;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Radio Btn */
.radio-btn {
    display: none;
    /* Hide the actual radio buttons */
}

.radio-btn+label {
    display: inline-block;
    padding-left: 50px;
    padding-top: 8px;
    position: relative;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: #1e1e1e;
    cursor: pointer;
}

.radio-btn+label:before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #bbb;
    position: absolute;
    left: 0;
    top: 1px;
}

.radio-btn:checked+label:before {
    background-color: #051e52;
    border: 1px solid #051e52;
}


/* BillingInput Container */
.billing-input-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px 100px;
    margin-top: 20px;
}

.input-title {
    font-family: var(--font-family-secondary);
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    margin-top: 10px;
}

/* .input-title span {
    color: #FF869C;
}
 */
.billing-input,.customer-details-input,.shipping-input {
    width: 250px;
    height: 41px;
    border: 1px solid #A0A0A0;
    color: #051E52;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    margin-top: 10px;
    outline: none;
}

.full-input {
    width: 60vw;
}

.textarea-input {
    width: 60vw;
    height: 200px;
    padding: 16px;
}

.billing-input::placeholder {
    font-size: 14px;
    color: #A0A0A0;
}
.shipping-input::placeholder {
    font-size: 14px;
    color: #A0A0A0;
}
.customer-input::placeholder {
    font-size: 14px;
    color: #A0A0A0;
}
.range-slider-container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.range-value {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.range-value h3 {
    font-family: 'Nunito', sans-serif;
    color: #051E52;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 6px;
    background: var(--color-divider);
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 20px;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 34px;
    height: 34px;
    background: #051e52;
    border-radius: 50px;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #4CAF50;
    cursor: pointer;
}

.proceed-btn {
    font-family:var(--font-family-secondary);
    background-color: #051E52;
    color: #FFFFFF;
    border: 0;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.2s;
    margin-top: 10px;
    width:100%;
    /* margin-bottom: 80px; */
    /* width:-webkit-fill-available; */
    font-weight:600;
    /* margin-left:110px; */
}

.proceed-btn:hover {
    box-shadow: 0 20px 30px rgba(34, 79, 175, 0.2);
    transform: scale(1.05);
    cursor: pointer;
}

@media only screen and (max-width:500px) {
    .billing-input {
        width: 310px;
    }

    .proceed-btn {
        width: fit-content;
        margin-left: 100px;
    }

    .checkout-details h2 {
        font-size: 16px;
    }

    .checkout-subheading {
        font-size: 14px;
    }

    .billing-input::placeholder {
        font-size: 14px;
    }

    .range-value h3 {
        font-size: 14px;
    }
}