@import url('https://fonts.googleapis.com/css2?family=Exo:wght@100;200;300;400;500;600;700;900&display=swap');
:root {
    --main-color: #41763E;
    --sec-color: #F5D010;
  }
  
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: #41763E;
	border: 1px solid #555555;
}
a {
    text-decoration: none;
}
  body {
    font-family: exo;
    background-color: #f7f7f7;
}
img{
    max-width: 100%;
}
.zoomsoft-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    position: absolute;
    transition: 0.3s all;
    transform: scale(0);
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
}
.zoomsoft-screen.active {
    transition: 0.3s all;
    transform: scale(1);
    opacity: 9;
}
.bold {
    font-weight: 800;
}
.btn:hover {
    background-color: var(--sec-color);
}
.btn:hover {
    background-color: var(--sec-color);
}

.btn {
    background-color: var(--main-color);
    color: #fff;
    width: 300px;
    /* height: 60px; */
    font-size: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.offers h1 {
    font-size: 6rem;
    text-shadow: 7px 1px 1px #000;
    color: #fff;
}
.zoomsoft-nav {
    position: fixed;
    top: 15px;
    left: 0px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zoomsoft-box img {
    height: 100px;
}
.zoomsoft-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 25px;
}
.zoomsoft-box h3 {
    border-top: 1px solid #41763e;
    padding-top: 10px;
    margin-top: 10px;
}
.zoomsoft-box:hover {
    background-color: #F5D010;
}
/* .zoomsoft-nav img {
    width: 100px;
} */
.zoomsoft-nav img {
    width: 100px;
}
.zoomsoft-screen .fullwith {
    width: 100%;
}
ul#categories {
    overflow-y: auto;
    display: block;
    height: 70vh;
    padding-top: 8px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 0px;
}
ul.cat_list {
    padding-left: 22px;
}
ul#categories li {
    list-style: none;
    border: 1px solid #e3e3e3;
    margin-bottom: 12px;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    cursor: pointer;
    width: 200px;
}
ul#categories li img {
    display: block;
    margin: auto;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #f2c602;
}
.flex {
    display: flex;
    align-items: center;
}
.pt-260 {
    padding-top: 150px;
}
/* li.product:hover {
    transform: scale(0.9);
} */
li.product {
    list-style: none;
    border: 1px solid #d5d5d5f7;
    width: 300px;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s all;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
button.addtocart {
    width: 100%;
    border: 1px solid;
    height: 50px;
    border-radius: 6px;
    background-color: #41763e;
    color: #fff;
    font-size: 18px;
}
ul#content {
    display: flex;
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
    height: 70vh;
    overflow-y: auto;
    align-content: baseline;
}
p.price {
    font-size: 20px;
    font-weight: 600;
    color: #41763e;
}
.sp-quantity {
    display: flex;
    margin: auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.sp-minus.fff {
    background-color: red;
}
.fff {
    height: 50px;
    width: 40px;
    font-size: 32px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    border-radius: 5px;
}
.fff a {
    color: #fff;
}
.sp-input {
    margin-left: 5px;
    margin-right: 5px;
}
.sp-input input {
    width: 60px;
    text-align: center;
    font-size: 30px;
    border-radius: 6px;
}
.sp-plus.fff {
    background-color: #41763e;
}
/* .customize {
    min-height: 500px;
} */
.customize h3 {
    border-top: 1px solid #c1c2c3;
    padding-top: 16px;
}
/* .customize.active {
    display: block;
} */
.toppings .text-muted {
    color: #000 !important;
    width: 50%;
    font-size: 22px;
}
ul#myTab {
    margin-bottom: 20px;
}
.topping-box .row.form_items h1 {
    font-size: 22px;
    text-align: left;
    padding-top: 10px;
}
.topping-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topping-box .customize h3 {
    border-top: 1px solid #c1c2c3;
    padding-top: 10px;
    margin-top: 1rem;
}
.customize-btn {
    background-color: var(--sec-color);
    color: #000;
    width: 100px;
}
.customize .form_group {
    justify-content: space-between;
    flex-direction: row-reverse;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 0px;
    display: block;
    text-align: left;
    font-size: 22px;
    position: relative;
    padding-top: 19px;
    padding-bottom: 20px;
}
.variable-box a {
    display: inline-block;
    color: #fff;
    font-size: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

.variable-box {
    background-color: #41763ef7;
    position: absolute;
    border: 0px solid;
    width: 100%;
    left: 50%;
    top: 50%;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    display: none;
    max-width: 800px;
    height: 400px;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.shade:after,.shades:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000ba;
    z-index: 1;
}
.variable-box.active {
    display: flex;
}
i.closed {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background-color: red;
    border-radius: 21px;
}
i.fas.fa-pizza-slice {
    display: block;
    font-size: 40px;
    margin-bottom: 20px;
}
.variable-box a i:before {
    height: 80px;
    /* border: 1px solid; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.variable-box a:nth-child(3) i {
    font-size: 60px;
}
.variable-box a:nth-child(4) i {
    font-size: 80px;
}
.variable-box a:nth-child(6) i {
    font-size: 120px;
}

.variable-box a:nth-child(5) i {
    font-size: 100px;
}
/* h3.hdr {
    background-color: #B72025;
    padding: 8px 0px;
    color: #fff;
    border-radius: 8px;
    border-top: unset;
} */
h3.hdr {
    padding: 8px 0px;
    /* color: #fff; */
    border-radius: 8px;
    border-top: 3px solid #41763E;
    color: #41763E;
    border-bottom: 3px solid #41763E;
    background-image: linear-gradient(180deg, #e5e5e5, #41763e00);
}
.cart {
    background-color: #41763e;
    border-radius: 0px;
    padding: 20px;
    position: absolute;
    bottom: 30px;
    color: #fff;
    right: 0px;
    padding-bottom: 30px;
    width: 100%;
}
.cart-popup {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    background-color: #41763E;
    transform: translate(-50%, -50%);
    padding: 40px;
    border-radius: 35px;
    color: #fff;
    display: none;
    max-width: 900px;
    width: 100%;
}
.text-muted {
    color: #fff !important;
    text-align: left;
}
button.addtocart:hover {
    background-color: #F5D010;
}
.btn.checkout {
    background-color: #F5D010;
    width: 100%;
    color: #000;
    margin-top: 20px;
}
span.x {
    position: relative;
}
.remove_coupon_btn {
    position: absolute;
    top: 0px;
    right: 10px;
    height: 100%;
    background-color: unset;
    border: unset;
}
button.coupon_btn {
    background-color: #f5d010;
    width: 150px;
    border-radius: 5px;
    border: 1px solid;
    height: 48px;
}
.form-control {
    height: 48px;
    border: 1px solid;
    border-radius: 5px;
}
input#txtCoupon {
    width: 460px;
}
div#cartSummary {
    margin-top: 20px;
    font-size: 22px;
}
table.table-cart.cartTables td {
    padding: 6px;
}

.cartTables .title a {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}
table.table-cart.cartTables tr {
    border-bottom: 1px solid white;
    text-align: left;
}
.panel-cart-contents {
    width: 70%;
    font-size: 6rem;
    font-weight: bold;
}
table.table-cart.cartTables {
    width: 100%;
}
.zoomsoft-screen.main-screen {
    align-items: baseline;
}

.tdr-popup {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: 0.1s all;
    z-index: 9;
}
.tdr-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 99;
    color: var(--white);
    font-size: 35px;
    cursor: pointer;
}
.tdr-close i {
    color: #fff;
    right: 0px;
    background-color: red;
    border-radius: 50%;
    font-size: 26px;
}
.tdr-popup-content {
    position: relative;
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    /* max-height: 800px; */
    overflow-y: scroll;
    overflow-x: hidden;
    border: 7px solid #ffffff;
    padding-bottom: 0px;
    max-height: 90%;
}
.tdr-popup .row.tdr-stiky {
    position: sticky;
    bottom: 0px;
    background-color: #fff;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding-top: 5px;
    padding-bottom: 5px;
}
button.btn.add_to_cart {
    background-color: #00A96C;
    border: unset;
    margin-top: 3px;
    display: block;
    width: 100%;
}
button#sub {
    background-color: red;
}
.nav-tabs .nav-link {
    color: #41763E;
    font-weight: 700;
    font-size: 26px;
    padding: 14px 30px;
    position: relative;
}
.nav-link.active:before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 90%);
    border: 20px solid transparent;
    border-top-color: #41763E;
}

.nav-link.active {
    background-color: #41763E !important;
    color: #fff !important;
    border-radius: 38px;
}
input#quant {
    border-right: unset;
    width: 100px;
    padding: 0px;
    text-align: center;
    border-left: unset;
    border-radius: unset;
    height: 57px;
    font-size: 30px;
}
button.btn.btn-success.btn-number {
    background-color: var(--sec-color);
    border-color: var(--sec-color);
}
a.btn.customize-btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 18px;
}
.toppings {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 100%;
    text-align: left;
    font-size: 20px;
    align-items: center;
}
.toppings_box img.right_half {
    transform: rotate(180deg);
}
li.nav-item button {
    font-size: 22px;
}
.toppings p {
    width: 50%;
    margin-bottom: 0px;
    font-weight: 600;
    font-size: 25px;
}
.toppings_box {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 0px;
}
.toppings_box span:first-child {
    margin: 5px;
}
.toppings_box input {
    visibility: hidden;
}
.form_group input {
    width: 40px;
    position: absolute;
    right: 0px;
    top: 14px;
    height: 40px;
    accent-color: #00a96c;
}
.topping_click input:checked + label img.empty {
    filter: none;
}.topping_click input:checked + label img {
    box-sizing: border-box;
    filter: unset;
}img.empty {
    filter: grayscale(1);
}
.toppings_box img {
    cursor: pointer;
    width: 40px;
    max-width: 350px;
    margin-right: 0px;
    filter: invert(1) drop-shadow(0px 0px 1px black);
}
input[type="checkbox"] + label span {
    padding: 10px;
    border-radius: 10px;
    margin-left: 16px;
}
input[type="checkbox"]:checked + label span {
    background-color: #1D9E63;
    color: #fff;
}
.cart-btn img:hover {
    transform: scale(0.9);
    transition: 0.5s all;
}

.cart-btn img {
    max-width: 100px;
    transition: 0.5s all;
    width: 100%;
}
.cart-btn {
    width: 30%;
    border-left: 1px solid;
}
.panel-cart-content .flex {
    justify-content: center;
}
.panel-cart-content {
    margin-top: 20px;
}
.cart-popup.active {
    display: block;
    z-index: 8;
}
.zoomsoft-screen.offers {
    display: block;
}
.slider-image {
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
div#mlkeyboard {
    bottom: 20%;
}
td.actions i img {
    background-color: #f7f7f7;
    margin-right: 8px;
    padding: 4px;
    border-radius: 5px;
    cursor: pointer;
    width: 30px;
}
td.actions i img:hover {
    background-color: #fff;
}
td.actions {
    width: 100px;
    text-align: center;
}
.zoomsoft-screen.offers>div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
}
li.item-header span {
    font-size: 22px;
    font-weight: bold;
}
.checkout-form .form-box {
    margin-bottom: 12px;
    justify-content: center;
}
.checkout-form {
    text-align: left;
    margin-top: 2rem;
    display: none;
}
.form-box.flex button:hover {
    transform: scale(0.9);
}

.form-box.flex button {
    background-color: unset;
    border: unset;
    transition: 0.5s all;
}
button.btn.payonline {
    background-color: #F5D010;
    margin-right: 1.9%;
}
.form-box.cards img {
    height: 90px;
    margin: auto;
    display: block;
}
.form-box.cards img {
    width: 190px;
    margin: auto;
    display: block;
}
.form-box.flex button img {
    width: 250px;
}
.order-details-show {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid;
    padding-bottom: 11px;
}
.form-box.harf {
    display: inline-block;
    width: 32.9%;
}
.checkout-form form h3.title {
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid #fff;
    padding-top: 1rem;
}
.cartTable td.title {
    text-align: left;
}
table.table-cart.cartTable {
    width: 100%;
}
table.table-cart.cartTable tr td {
    padding-bottom: 15px;
    padding-top: 15px;
}

table.table-cart.cartTable tr {
    border: 1px solid #5c8959;
    height: 70px;
}
table.table-cart.cartTable tr span.name a {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    display: block;
}
td.title br {
    display: none;
}
td.price {
    padding-right: 15px;
}

div#addonModal .modal-dialog {
    max-width: 90%;
    width: 100%;
}
div#addonModal .modal-body-addon {
    padding: 20px;
}
.zoomsoft-screen.offers.active {
    background-image: url('https://pizza101.quickup.ca/kiosk1/images/offer-slide-2.png');
    background-size: cover;
}
div#product_content_upsell {
    display: flex;
    flex-wrap: wrap;
}
div#product_content_upsell .product_box {
    width: 300px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    padding: 10px;
}
div#product_content_upsell .product_box img {
    height: 300px;
    object-fit: contain;
}

.zoomsoft-btn {
    align-items: center;
    appearance: none;
    background-image: radial-gradient(100% 100% at 100% 0, #9b7d1f 0, #cba513 100%);
    border-radius: 50%;
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 200px;
    width: 200px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 22px;
    border: 10px solid #e6bf05 !important;
    font-weight: 700;
    margin: 2rem;
}

.zoomsoft-btn:focus {
  box-shadow: #000 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #000 0 -3px 0 inset;
}

.zoomsoft-btn:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #0000008c 0 -3px 0 inset;
    transform: translateY(-2px);
}

.zoomsoft-btn:active {
  box-shadow: #000 0 3px 7px inset;
  transform: translateY(2px);
}

#saveBtn {
    background-image: radial-gradient(100% 100% at 100% 0, #5ecf57 0, #81B67E 100%);
    box-shadow: rgba(45, 35, 66, .4) 0 2px 4px,rgba(45, 35, 66, .3) 0 7px 13px -3px,rgba(58, 65, 111, .5) 0 -3px 0 inset;
    border: 10px solid #92e98e !important;
}
div#preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffffe0;
    visibility: hidden;
}
div#preloader img {
    width: 200px;
}