.modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

.modal-container {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 24px;
    border: 1px solid #888;
    width: 75%;
    max-height: 75%;
    overflow-y: scroll;
}

.modal .modal-header {
    margin-bottom: 24px;
}

.modal .heading-container {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

h2.heading {
    padding-right: 24px;
    width: auto;
}

.notice{
    display: none;
}

.modal .heading-container .heading {
    color: var(--black-color);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin: 0;
    
}

.table tr th {
    font-weight: 600;
    padding: 8px;
    border-right: 1px solid var(--white-color);
}

.modal .close {
    color: var(--black-color);
    float: right;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.modal .close:hover {
    color: var(--black-color);
}

.btn {
    /* margin-top: 24px; */
    border: none;
    padding: 8px 24px;
    display: flex;
    height: 40px;
    padding: 0px 24px;
    justify-content: center;
    align-items: center;
}

.btn img {
    margin-right: 8px;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--black-color);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.table tr td {
    border: none;
}

.table thead {
    border: none;
    background: var(--extra-light-green);
    -webkit-print-color-adjust: exact;
}

.table td {
    color: var(--black-color);
    font-style: normal;
    line-height: normal;
    width: inherit;
}

.table thead td {
    font-size: 14px;
    font-weight: 600;
}

.table tbody td {
    font-size: 12px;
    font-weight: 400;
}

table tr td {
    padding: 12px 8px;
}

.flex {
    display: flex;
}

.w-50 {
    width: 50%;
}

.product-container input {
    position: relative;
}

.modal-container input[type=checkbox]:checked::before {
    content: url(../images/check.svg) !important;
    position: absolute;
    right: 4px;
    width: 16px;
    height: 16px;
    bottom: 4px;
}

.space-between {
    justify-content: space-between;
    align-items: center;
}

input {
    margin: 0px !important;
}

input#cutoff-hours {
    color: var(--black-color);
    padding: 9.5px 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 782px) {
    .modal-container input[type=checkbox]:checked::before {
        right: 9px !important;
        bottom: 6px !important;
    }
}

@media (max-width: 767px) {
    .modal-container {
        max-height: 100%;
        width: 100%;
    }


    .m-block {
        display: block !important;
    }

    .m-w-100 {
        width: 100% !important;
    }

    .m-hide {
        display: none !important;
    }

    .modal-header .m-show .close {
        float: none !important;
    }

    input#cutoff-hours {
        height: 48px;
        width: 48px;
    }

    input#cutoff-hours {
        color: var(--black-color);
        padding: 13.5px 8px;


    }
}

@media (min-width: 767px) {
    .m-block {
        display: initial;
    }

    .flex {
        display: flex;
    }

    .m-show {
        display: none !important;
    }
}

.supperclub-toast {
    position: fixed;
    right: 12px;
    bottom: 12px;
    background: #50C878;
    padding: 10px;
    transition: transform 0.5s;
    transform: translateY(100px);
}

.supperclub-toast.show {
    transform: translateY(-2px);
}

.supperclub-toast p {
    margin: 0;
    color: var(--white-color);
    padding: 0 32px;
}

.w-100 {
    width: 100%;
}

.my-4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mb-8 {
    margin-bottom: 8px;
}

.display-selected-date{
    line-height: normal;
}