:root {
    --hover: #ff8119;
    --bg: #fff;
    --text: #181e23;
    --main: #d8dee9;
    --light: #181e23;
    --light-hover: #0A0A0A;
    --textw: .92vw;
    --buttons: .96vw;
    --titles: 1.06vw;
    --primary: #ff7200;
    --danger: #ff7200;
}

@font-face {
    font-family: 'Tanker-Regular';
    src: url('fonts/Tanker-Regular.woff2') format('woff2'),
        url('fonts/Tanker-Regular.woff') format('woff'),
        url('fonts/Tanker-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'PT Sans';
    src: url('OpenSans_Condensed-Medium.ttf') format('ttf');
    font-weight: bold;
}

.modal-body,
.modal-content,
.modal-dialog,
.modal-footer,
.modal-header {
    background-color: var(--bg) !important;
    color: var(--text) !important;
}



.alert-light {
    background-color: var(--bg) !important;
    color: var(--text) !important;
}




::selection {
    background: var(--hover);
    color: var(--bg);
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--hover) var(--bg);
    font-family: 'Open Sans Condensed Medium', sans-serif;
}

.text-danger {
    color: var(--danger) !important;
}

h1,
h2,
h3,
h4 {
    font-family: 'Tanker-Regular';
    font-weight: bold;
    text-transform: uppercase;

}

p {
    font-size: large;
}

body::-webkit-scrollbar-track {
    background: var(--bg);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--hover);
    border-radius: 0px;
    border: 3px solid var(--bg);
}

::-webkit-scrollbar {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background-color: var(--hover);

}

::-webkit-scrollbar-corner {
    background: #000;
}

.text-primary {
    color: var(--hover) !important;
}

.bg-primary {
    background-color: var(--hover) !important;
}

.drowflex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;

}

@media (max-width: 1000px) {
    .drowflex {
        flex-direction: column;
    }
}

.auto-hide {
    display: block;
    position: fixed;
    top: 5px;
    left: 10vw;
    z-index: 9999;
    width: 80vw;
}

html {
    scroll-behavior: smooth;
}

.mob .btn {
    margin-top: 20px;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999 !important;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: var(--bg);
    text-align: center;
    padding-top: 25%;
}

.bg-light {
    background-color: var(--primary) !important;
    color: var(--bg) !important;
}

.bg-light a {
    color: var(--bg) !important;
}



.bg-dark {
    background-color: var(--danger) !important;
}

.btn {
    padding: 6px 14px !important;
    border-radius: 6px;
    border: 1px solid transparent !important;
    font-size: 1.2rem;
    transition: 0.5s ease;

}

.drow-item .btn,
.selector .btn {
    font-size: 1rem;
    border: 1px solid var(--hover);
    padding: 5px 10px !important;
    background-color: var(--bg);
    color: var(--text);
}

.drow-item .btn:hover,
.selector .btn:hover {

    background-color: var(--hover);
    color: var(--bg);
}

.selector {
    color: var(--bg);
}

.bgl {
    background-color: var(--danger);
    margin-top: 0px !important;

}

.main-header {
    background-color: var(--primary);
    color: white;

}

.btn:focus,
.btn:active,
.btn:hover {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    background-color: var(--hover);
    border-color: var(--hover);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
    outline: none !important;
    box-shadow: none !important;
}

.overflow {
    width: 24vw;
    height: 24vw;
    transition: all 0.5s ease;
}

.sx {
    width: 18vw;
    height: 18vw;
}

.sticky-top {
    position: sticky;
    top: 0;
    transition: all 0.5s ease;
}

.bg-warning {
    border: 2px solid var(--danger) !important;
}


.right-info {
    z-index: 1;
    padding-top: 6vh;
}

.main-nav {
    transition: all 0.5s ease;
    position: fixed;
    top: 5vh;
    left: 0;
    border-bottom: 2px dashed transparent;
    z-index: 10;
}

.fancy-border {
    border-bottom: 2px dashed transparent;
}

.stick-top {
    transition: all 0.5s ease;
    top: 0px;

}





.hover-dash {
    border: 2px dashed transparent;
    transition: all 0.4s ease;
}

.hover-dash:hover {
    border: 2px dashed var(--main);
    transition: all 0.4s ease;

}



@media (max-width: 986px) {
    .huge-sm {
        min-width: 150vw !important;
        max-width: 150vw !important;
        transform: translateX(-25vw);

        height: auto !important;


    }
}

.mr-2 {
    margin-right: 5px;
    font-size: 17px;
}

.product {
    position: relative;
}

.product .details {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    padding-top: 5%;

}

.product:hover .details {
    display: block;
}

body {
    min-height: 100vh;
    background-color: var(--bg);
    color: var(--text);
}

.btn-light {
    background-color: var(--bg);
    color: var(--text) !important;


}

.btn-light i {
    color: var(--hover);
}


.btn-light:hover,
.btn-light:focus {

    color: var(--hover) !important;
    outline: none !important;
    box-shadow: none !important;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .4) !important;
}

.btn-dark i {
    color: var(--bg);
}

.btn-dark {
    background-color: var(--hover) !important;
    color: var(--bg) !important;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
}


.btn-dark:hover,
.btn-dark:focus {
    background-color: var(--bg);
    color: var(--bg) !important;
    outline: none !important;
    box-shadow: none !important;
}

.dashed-full {
    border-bottom: 3px solid var(--main);
    border-radius: 0px;
    padding: 15px;
}

.form-control {
    border-radius: 0px;
    padding: 6px 10px;
    transition: all 0.2s;
    font-weight: 600;
    background-color: var(--bg) !important;
    font-size: 16px;
    margin-top: 6px;
    transition: all 0.5s ease;
}

.form-control:active,
.form-control:focus {
    border: 1px solid var(--primary) !important;
    outline: none;
    color: var(--hover)
}

label {
    margin-top: 8px;
}

.sticky-top {
    transition: all 0.5s ease;
}

.form-control:focus,
.form-control:active {
    border: 3px solid #cfcfcf;
    box-shadow: none !important;
    outline: none;
}

.nav-grid a {
    text-align: left !important;
}

.nav-grid a i {
    margin-right: 10px;
}



.ptop {
    margin-top: 100px !important;
}

.mobileMenu {
    transition: all 0.5s ease;
    padding-bottom: 6vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: scroll;
    width: 100vw;
    overflow-x: hidden;
    height: 100vh;
    background-color: white;
    z-index: 9999;
    transform: translateY(-100vh);
}

.togggled {
    transform: translateY(0vh);
}

.selector {
    position: fixed;
    bottom: 0;
    left: 10vw;
    width: 80vw;
    background-color: var(--light);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .3);
}

.cart-count {
    background-color: var(--danger);
    padding: 6px;
    border-radius: 12px;

}

.border {
    border: 1px solid var(--primary);
}

.fancy-card {
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
    border: 1px solid var(--light);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0);
    background-color: var(--light);
    padding: 1rem;
    margin: 1rem;
}

.fancy-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .1);
    background-color: var(--light-hover);

}


.required::after {
    content: "*";
    color: var(--danger);
    margin-left: 5px;
}

.parallax {
    background-position: 0% 40%;
    background-repeat: no-repeat;
    height: 620px;
    width: 100%;
}

.parallax-content {
    position: relative;
    top: 20%;
    transform: translateY(-50%);
    text-align: center;
}


.menu-item {
    font-weight: 600;
    border-radius: 0px;
    line-height: 1.7;
    position: relative;
    color: var(--text);
    padding-top: 25px;
    padding-bottom: 25px;
    transition: all 0.2s;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;

}

.menu-item::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0%;
    height: 4px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}

.menu-item:hover::after {
    width: 100%;
    left: 0;

}


.current::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);

}



.bg-dark .menu-item {
    color: var(--bg);
}

.bg-dark .fancy-border {
    border-bottom: 1px solid white;
}




.dashed {
    border-top: 2px dashed #ebebeb;
}

.rotate-i i {
    transition: all .8s;
}

.rotate-i:hover i {
    transform: rotate(220deg);
}

.wow {
    min-height: 80vh;
}

.element {
    position: relative;

    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.background-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.background-inner {
    background-position: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-repeat: repeat;
    background-size: inherit;
}

.element .btn-light {
    background-color: transparent !important;
    box-shadow: none !important;
}

.cookie-conscent {

    position: fixed;
    bottom: 10px;
    left: 5%;
    width: 90%;
    background-color: white;
    z-index: 9999;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3);
}

.ingredient {
    font-size: 19px;
    padding:6px 14px;
    display: block;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}
.ingredient:hover {
    background-color: var(--hover);
    color: var(--bg);
    transition: all 0.4s ease-in-out;
}
.ingredient i {
    width: 30px;
}
.selected{
    background-color: var(--hover);
    color: var(--bg);
    transition: all 0.4s ease-in-out;
}