.order_popup_wrap {
    background-color: rgba(43, 46, 56, 0.9);
    display: none;
    position: fixed;
    z-index: 99999 !important;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
}

.order_popup_overlay {
    width: 100%;
    height: 100%;
}

.order_popup_collection {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 32px 32px;
    text-align: center;
    border-radius: 13px;
    background: whitesmoke;
    font-size: 13px;
    color: gray;
}

.popup_body {
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.modal__btn {
    padding: 16px 16px;
    font-size: 16px;
    font-family: inherit;
    transition: .2s;
    cursor: pointer;
}

.modal__btn:nth-of-type(1) {
    margin-right: 16px;
}

.modal__btn:hover, .modal__btn:focus {
    transform: translateY(4px);
    filter: brightness(100%);
}

.order-now {
    white-space: nowrap;
    width: auto;
    display: inline-block;
    position: relative;
    -webkit-font-smoothing: antialiased;
    padding-right: 4.7em;
    transition: .2s
}

.order-now:after, .order-now:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-top: inherit;
    padding-bottom: inherit;
    width: 2.8em;
    content: "\f232";
    font-family: FontAwesome, sans-serif;
    font-size: 1.2em;
    text-align: center;
    transition: .2s;
    transform-origin: 50% 60%
}

.close-btn {
    display: block!important;
    width: 52px;
    height: 52px;
    font-size: 28px;
    position: absolute;
    top: 16px;
    right: 16px;
    justify-content: center;
    align-items: center;
    transition: .2s
}

.close-btn::before {
    content: 'x';
}

.close-btn:hover, .close-btn:focus {
    transform: translateY(-4px);
    cursor: pointer;
}

.model-loader {
    position: absolute;
    border: 16px solid #f3f3f3;
    border-top: 16px solid#139675;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
}

.product-description {
    margin-top: 26px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: space-between;
    align-items: center;
    display: grid;
    gap: 10px;
}

.col-span-2 {
    grid-column: span 3/span 3;
}

.col-span-4 {
    overflow: hidden;
    grid-column: span 3/span 3;
    text-align: justify;
    padding-right: 10px;
    height: 200px;
}

.col-span-4:hover {
    overflow-y: auto;
}

.product-description .text-heading {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.025em;
    color: black;
}

.product-description p {
    width: fit-content;
    margin-top: 16px;
    line-height: 16px;
    font-size: 13px;
    color: gray;
}

.product-description img {
    object-fit: cover;
    border-radius: 5px;
}

.button-div, .cart-button {
    display: flex;
    margin-top: 32px;
    justify-content: center;
    align-items: center;
}

.table {
    margin-top: 8px;
    width: -webkit-fill-available;
    width: -moz-available;
}

.table thead th {
    text-align: center;
    border: 2px solid;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 16px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.table tbody th, .table tbody td {
    text-align: center;
    color: black;
    border: none;
    font-size: 14px;
    border-bottom: 4px solid lightgray;
    vertical-align: middle;
}

.quantity {
    width: 10%;
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

input.input-number {
    display: block;
    width: 100%;
    height: calc(1.5em + 12px + 2px);
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 4px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.cart-div-collection {
    display: none;
}

.cart-button-collection {
    margin-top: 0;
}

.cart-para {
    color: black;
}

@media only screen and (max-width:768px) {
    .button-whatsapp:after, .button-whatsapp:before {
        width: 0em;
    }
    .button-whatsapp {
        font-size: 12px !important;
        max-width: 100%;
        margin-left: 0!important;
    }
}

@media only screen and (max-width:1100px) {
    .order_popup_collection {
        width: 90%;
        padding: 32px 5px
    }
    .modal__btn {
        padding: 10px 7px;
    }
    .button-whatsapp {
        padding-right: 0rem;
    }
    .order-now:after, .order-now:before {
        width: 0%;
    }
}
