﻿/*****************************************************************/
/* Checkout Pages */
/*****************************************************************/

.checkout-container {
    /*max-width:98%;*/
}

.checkout-header {
    font-family: Roboto-Thin;
    font-weight: bold;
    font-size: 28px;
    padding: 5px;
    margin-bottom: 5px;
    background-color: gray;
    border-radius: 5px 5px;
    color: white;
}

.checkout-background {
    background-color: #f7f7f7;
    /*padding: 10px;*/
    border-radius: 5px 5px;
}

.success-container {
    /*margin-left:10px;*/
    border: 1px solid white;
    border-radius: 5px;
    /*padding:10px;*/
}

.success-order-num {
    font-family: Roboto-Thin;
    font-weight: bold;
    font-size: 16px;
}

.checkmark {
    display: block;
    margin-top: 10px;
    font-size: 40px;
    color: green;
}

.payment-successful {
    background-color: #f7f7f7;
    color: darkgreen;
}

.error-x {
    display: block;
    margin-top: 10px;
    font-size: 40px;
    color: red;
}

.checkout-thank-you {
    font-size: 16px;
    font-family: Roboto-Light;
    color: #333;
}

.checkout-details {
    display: block;
    margin-top: 5px;
    font-size: 18px;
    font-family: Roboto-Light;
    color: #333;
    background-color: #f7f7f7;
}

.checkout-error {
    font-family: Roboto-Light;
    font-size: 16px;
}

.checkout-woops {
    background-color: #E6E6E6;
    padding: 4px;
    border-radius: 5px 5px;
    display: inline-block;
}

/*****************************************************************/
/*Pre-checkout Steps*/
/*****************************************************************/
.precheck-card-style {
    background-color: #f7f7f7;
    border: 1px solid #dee2e6;
    padding: 10px;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.pre-checkout-h1 {
    font-family: Roboto-Light;
    font-size: 32px;
    padding: 5px;
}

.pre-checkout-step {
    font-family: Roboto-Thin;
    font-weight: bold;
    font-size: 22px;
}

.precheckout-order-date {
    font-family: Roboto-Light;
    font-size: 14px;
    max-width: 200px;
}

.precheckout-order-time {
    font-family: Roboto-Light;
    font-size: 14px;
    max-width: 65px;
}

.precheckout-label-width-50 {
    width: 100px;
}

.precheckout-recent-address {
    background-color: #E6E6E6;
    color: #333;
    font-family: Roboto-Light;
    font-size: 13px;
    padding: 6px;
    border-radius: 5px 5px;
    display: inline-block;
}

.precheckout-step {
    max-width: 500px;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 5px 5px;
}

.confirm-checkout-info {
    background-color: #E6E6E6;
    color: #333;
    font-family: Roboto-Light;
    font-size: 14px;
    padding: 4px 6px;
    border-radius: 5px 5px;
    display: inline-block;
}

.toggle-pill-wrapper {
    display: flex;
    justify-content: start;
    margin: 1rem 0;
    position: relative;
}

    .toggle-pill-wrapper input[type="checkbox"] {
        display: none;
    }

.toggle-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 166px;
    height: 40px;
    background-color: #3A3A3A;
    border-radius: 999px;
    position: relative;
    cursor: pointer;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.pill-label {
    flex: 1;
    /* width: 50%; */
    text-align: center;
    margin-top: 0;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    pointer-events: none;
    user-select: none;
    line-height: 40px;
}

.pill-slider {
    /* content: ""; */
    position: absolute;
    top: 3px;
    left: 4px;
    width: 80px;
    height: 34px;
    background-color: white;
    border-radius: 999px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: none;
}

/* Slide effect */
.toggle-pill-wrapper input[type="checkbox"]:checked + .toggle-pill .pill-slider {
    transform: translateX(78px);
}

.toggle-pill-wrapper input[type="checkbox"]:checked + .toggle-pill {
    /*background-color: #007bff; /* Bootstrap primary or change to garnet */
    background-color: #D67E9D;
}

.step-check-icon {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    visibility: hidden;
}

    .step-check-icon.show {
        opacity: 1;
        visibility: visible;
    }

.mobile-full-width {
}

/*****************************************************************/
/* Confirmation Summary */
/*****************************************************************/
.fullfillment-details-hdr {
    font-family: Roboto-Thin;
    font-size: 32px;
    padding: 5px;
}

.confirmation-summary {
    font-family: Roboto-Light;
    font-size: 14px;
    border-radius: 5px 5px;
}

.promo-code {
    background-color: #f7f7f7;
    color: #333;
    border-radius: 5px 5px 0px 0px; /* top-left, top-right, bottom-right, bottom-left */
}
