html, body {
    margin: 0px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    color: #6F6F6F;
}

/* Removes the blueish highlight when clicking on an element */
* {
    -webkit-tap-highlight-color: transparent;
}


input:focus, textarea:focus, select:focus{
    outline: none;
}

/*#time_slots_container {*/
/*    !*height: 40px;*!*/
/*    !*overflow-y:auto;*!*/
/*}*/
option{
    overflow-y:scroll;
    height: 40px;
}

.x-logo-placehoder {
    background-color: #122050 !important;
    padding: 2rem;
    max-height: 7rem;
    text-align: center;
}   
.x-logo-placehoder img {
    height: 7.5rem;
}

.x-main-table {
    margin:0 auto;
    min-width: 40%;
    max-width: 100%;
}

.x-main-table .x-heading {
    padding: 1rem;
    padding-bottom: 0px !important;
}
.x-main-table .h4 {
    color: #4EB283 !important;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5rem;
}

.x-main-table .x-content-block {
    padding: 0.6rem;
    padding-bottom: 0px !important;
}
.x-main-table .x-content-container {
    background-color: #F4F4F2;
    border-radius: 1rem;
    min-height: 5rem;
    padding: 1rem;
}

.x-main-table .x-content-container table {
    width: 100%;
}

.x-main-table .x-content-container table .label {
    width: 40%;
    color: #040404 !important;
}
.x-main-table .x-content-container table td{
    padding: 0.3rem;
}

.x-schedule-slots {
    padding: 1rem;
    /*padding-top: 0px !important;*/
}

.x-schedule-slots p {
    font-size: 1rem;
    font-weight: 300;
    color: #040404; 
    line-height: 1.5rem;
}

.x-checkout-qty {
margin-top: 0.3rem;
}

.x-schedule-slots .x-schedule-day {
    background-color: #F4F4F2;
    min-height: 2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.x-schedule-slots .x-schedule-day .x-schedule-button {
    background-color: #F4F4F2;
    color: #4EB283;
    font-size: 1.2rem;
    height: 3.2rem;
    align-items: center;
    flex: 2;
    justify-content: space-between;
    border-radius: 1.5rem;
    border: 0px;
    cursor: pointer;
}

.x-schedule-slots .x-schedule-day .active {
    background-color: #4EB283 !important;
    color: #FFFFFF;
}

.x-schedule-slots .x-schedule-time {
    background-color: #F4F4F2;
    height: 3.2rem;
    border-radius: 1.5rem;
    align-items: flex-start;
    padding: 0.5rem 2rem;
}

.x-schedule-slots .x-schedule-time select {
    height: 100%;
    width: 100%;
    background-color: transparent;
    border: 0;
}


.x-schedule-slots .x-schedule-time select option {
}













.x-alert {
    position: relative;
    top: 10;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 10px;
    line-height: 1.8;
    border-radius: 5px;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 400;
    text-align: left;
}
.x-alert-success {
    background-color: #EFE;
    border: 1px solid #DED;
    color: #9A9;
}
.x-alert-error {
    background-color: #FEE;
    border: 1px solid #EDD;
    color: #A66;
}





.x-submit-button {
    margin-top: 1.7rem;
    background-color: #1888CA;
    border-radius: 1.5rem;
    border: 0px;
    height: 3.2rem;
    min-width: 60%;
    align-self: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 2rem;
	cursor: pointer;
}

.x-submit-button-modal {
    margin-bottom: 0;
}

@media (max-width: 600px){


    .x-modal-window > div {
        width: 80%;
        padding: 0;
    }
    .x-main-table {
        width: 100%;
    overflow: hidden;
    }

    .x-submit-button {
        min-width: 100%;
        /*background-color: green;*/
    }

    .x-schedule-selected {
        font-size: 0.8rem;
    }

}

.x-footer {
    padding: 1rem;
    text-align: center;
}


.x-text-center {
    text-align: center;
}

.x-text-blue {
    color: #1888CA;
}
.x-text-green {
    color: #45B97C;
}
.x-text-right {
    text-align: right;
    width: 40%;
}
.x-min-width {
    min-width: 30vw;
}
.x-100-width {
    width: 100%;
}
.x-schedule-slots-title {
    /*margin-bottom: 0.1rem;*/
}
.x-schedule-checkout-item {
    padding-bottom: 0.2rem;
    padding-top: 0.1rem;
}





/*the container must be positioned relative:*/
.x-schedule-time {
    position: relative;
    color: #000;
}

.x-schedule-time select {
    display: none; /*hide original SELECT element:*/
}

.x-select-selected {
    background-color: #F4F4F2;
    /*border-radius: 13px;*/
}

/*style the arrow inside the select element:*/
.x-schedule-selected:after {
    position: absolute;
    content: "";
    top: 2rem;
    right: 2rem;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #000000 transparent transparent transparent;
    /*padding: 0.7rem 1rem;*/
}

/*point the arrow upwards when the select box is open (active):*/
.x-schedule-selected.x-schedule-arrow-active:after {
    border-color: transparent transparent #000000 transparent;
    top: 1rem;
}

/*style the items (options), including the selected item:*/
.x-schedule-items div,.x-schedule-selected {
    /*color: #ffffff;*/
    padding: 1rem 1rem;
    /*border: 1px solid transparent;*/
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    color: #000;
}

/*style items (options):*/
.x-schedule-items {
    position: absolute;
    background-color: #F4F4F2;
    bottom: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.x-schedule-hide {
    display: none;
}

.x-schedule-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}



/*******************************************/
/*        Payment Options dropdown         */
/*******************************************/

/*the container must be positioned relative:*/
.x-payment-selector {
    position: relative;
    color: #000;
}

.x-payment-selector select {
    display: none; /*hide original SELECT element:*/
}



/*style the items (options), including the selected item:*/
.x-payment-selector div,.x-schedule-selected {
    /*color: #ffffff;*/
    padding: 1rem 1rem;
    /*border: 1px solid transparent;*/
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    color: #000;
}

/*style items (options):*/
.x-payment-selector {
    position: absolute;
    background-color: #F4F4F2;
    bottom: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.x-schedule-hide {
    display: none;
}

.x-payment-selector div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}





.x-checkout-list {
    /*inline-size: 70%;*/
    overflow-wrap: break-word;
    margin-bottom: 0;
}

.x-clearfix::after {
    content: "";
    clear: both;
    display: table;
}


.x-line-input {
    border: 0;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid #E2E8ED;
    width: 100%;
    padding: 0.6rem;
}
.x-trans-input {
    padding: 1rem;
    background: transparent;
    border: 0;
}

.x-textarea {
    background-color: #F4F4F2;
    min-height: 3.2rem;
    border-radius: 1.5rem;
    /*align-items: flex-start;*/
    width: 100%;
    border: 0;
    /*padding: 1.2rem;*/
    padding: 1rem;
    box-sizing: border-box;
}

.x-textarea:focus,
.x-textarea:active{
    border: 0;
}



    /* Modal */

.x-modal-button {
    border: 0.2rem solid #45B97C ;
    color: #45B97C;
    padding: 0.5rem;

    /*margin-top: 1.7rem;*/
    background-color: transparent;
    border-radius: 1.5rem;
    /*height: 1rem;*/
    /*min-width: 60%;*/
    align-self: center;
    font-size: 0.7rem;
    font-weight: 300;
    /*margin-bottom: 1.5rem;*/
    text-decoration: none;
	min-width: 3rem;
	text-align: center;
}

.x-modal-window {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.25);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}
.x-modal-window:target {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    background: #707070;
}
.x-modal-window > div {
    min-width: 20%;
    max-width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*padding: 2em;*/
    background: white;
    padding: 1rem;
}
.x-modal-window header {
    font-weight: bold;
}
.x-modal-window h1 {
    /*font-size: 150%;*/
    /*margin: 0 0 15px;*/
}

.x-modal-close {
    color: #aaa;
    line-height: 50px;
    font-size: 80%;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 70px;
    text-decoration: none;
}
.x-modal-close:hover {
    color: black;
}

.x-modal-title {
    color: #414042;
}

.x-modal-text {
    color: #707070;
}

.spinner {
    display: block;
    position: fixed;
    z-index: 1031; /* High z-index so it is on top of the page */
    top: 50%;
    right: 50%; /* or: left: 50%; */
    margin-top: -..px; /* half of the elements height */
    margin-right: -..px; /* half of the elements width */
}

/* Loading spinner */
#loading-spinner {
}

.hide {
    display: none;
}
.lds-ring {
    display: inline-block;
    position: relative;
    position: absolute;
    width: 380px;
    height: 380px;
    z-index: 10;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #122050;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #122050 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


#notifications {
    text-align: center;
    margin: 1rem;
}



/* Styling the select element */
.x-select {
    /* Your styles here */
    width: 100%;
    height: 3.7rem;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px; /* Adjust the value to control the roundness */
    /*padding: 5px;*/
    background-color: #fff;
    color: #333;
    padding: 1rem 2rem 1rem;
}

/* Styling the dropdown arrow */
.x-select::-ms-expand {
    display: none; /* Remove the default arrow in IE10+ */
}

.x-select::after {
    content: "\25BC"; /* Unicode character for down arrow */
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 2px;
    background-color: #fff;
    color: #333;
}

/* Styling the options */
.x-select option {
    /* Your styles here */
}

/* Styling when the select element is focused */
.x-select:focus {
    /* Your styles here */
}




/* Styling the select element */
.x-select-payment {
    /* Your styles here */
    width: 100%;
    height: 3.7rem;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px; /* Adjust the value to control the roundness */
    /*padding: 5px;*/
    background-color: #fff;
    color: #333;
    padding: 1rem 2rem 1rem;
}

/* Styling the dropdown arrow */
.x-select-payment::-ms-expand {
    display: none; /* Remove the default arrow in IE10+ */
}

.x-select-payment::after {
    content: "\25BC"; /* Unicode character for down arrow */
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0 2px;
    background-color: #fff;
    color: #333;
}

/* Styling the options */
.x-select-payment option {
    /* Your styles here */
}

/* Styling when the select element is focused */
.x-select-payment:focus {
    /* Your styles here */
}


.x-custom-select-elm {
    padding: 1rem;
    width: 100%;
    background-color: #F4F4F3;
    color: #333;
    min-height: 2rem;
    border-radius: 1.5rem;
    border: 0;
}
.x-custom-select-elm:focus,
.x-custom-select-elm:hover,
.x-custom-select-elm:active {
    /*border-width: 1px;*/
}



/*
=========================================================================
            Google Map Page Styles
=========================================================================
*/

.google-map {
    height: 100vh;
    position: relative;
}

.google-map iframe {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
.google-map-proceed {
    width: 100%;
    position: absolute;
    bottom: 2rem;
    justify-content: center;
    display: flex;
}
.google-map-proceed-btn {
    background-color: #1888CA;
    border-radius: 1.5rem;
    border: 0px;
    height: 3.2rem;
    width: 25%;
    align-self: center;
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 2rem;
}

#map-search-container {
    position: absolute;
    top: 3rem;
    text-align: center;
    z-index: 10;
    width: 100%;
}
#address-input {
    padding: 1rem;
    width: 25%;
    border: 0;
    box-shadow: #6F6F6F;
}


@media (max-width: 600px) {
    #address-input {
        width: 80%;
        margin-top: 10%;
    }
    .google-map-proceed {
        width: 100%;
    }

    .x-submit-button {
        font-size: 1rem;
    }

    .google-map-proceed-btn {
        width: 90%;
    }
}

.ScrollStyle {
    /*max-height: 150px;*/
    /*overflow-y: scroll;*/
}


/* Radio Styles */
.radio {
    margin: 0.5rem;
}
.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
    outline: none;
    border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
    margin-right: 0;
}


#success-page {
    padding: 10% 7% 10%;
}

#success-page .need-help {
    text-decoration: none;
    font-weight: 700;
}

/* We are pleased to inform you that your order will be delivered soon. */
#success-page .action-container {
    border-radius: 1.3rem;
    background-color: #F4F4F2;
    border-color: #b4b4b4;
    padding: 1rem 1.5rem 1rem;
    margin-top: 0.6rem;
    min-height: 2.6rem;

    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}
#success-page .action-container:active, #success-page .action-container:visited {
    color: inherit;
}


#success-page .action-group .action-container .action-container-left {
    display: flex;
}

#success-page .action-group .action-container .action-container-left div:first-child {
    margin-top: 0.5rem;
}

#success-page .action-group .action-container .action-container-left div:last-child {
    padding-left: 1.2rem;
}


#success-page .action-group {
    margin-top: 5rem;
}

.success-icon {
    width: 10%;
}


.carot-icon {
    margin-top: 0.5rem;
}

@media (max-width: 700px) {
    #success-page {
        padding: 25% 2.5% 10%;
    }
    .success-icon {
        width: 30%;
    }
    #success-page .action-group {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .success-icon-text {
        padding: 3%;
    }
}

#success-page .message-title {
    margin-bottom: 1.5rem;
}


#success-page .caret {
    position: relative;
}

#success-page .caret:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 30px solid #ff0000;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
}

#success-page .caret:after {
    content: '';
    position: absolute;
    left: 1px;
    top: 0;
    border-top: 29px solid #b4b4b4;
    border-left: 29px solid transparent;
    border-right: 29px solid transparent;
}