@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1380px !important;
    }
}
body {
    margin: 0;
    font-family: "Quicksand", "Open Sans", sans-serif !important;
    color: #666;
}

header {
    background-color: transparent;
    padding: 10px 0;
    position: fixed;
    z-index: 9999;
    width: 100%;
}
header.fixed{
    background: white;
    transition: background 0.6s ease-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
nav ul.menu {
    display: flex;
}
nav ul.menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #333;
    width: 100%;
    padding: 10px;
}

nav ul li {
    padding: 0px;
    margin: 0 20px;
    display: inline-block;
    font-size: 14px;
    position: relative;
    line-height: 1em;
    word-wrap: break-word;

}

nav ul li a {
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: black;
    display: flex; /* Dodato za flexbox */
    align-items: center; /* Centriranje po visini */
    padding: 15px 0px;
}

nav ul li a:hover {
    background-color: transparent;
    color: black;
}

.logo img {
    max-height: 50px;
}

nav ul li input[type="text"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
nav .burger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: black;
}
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border-top:2px solid black;
    min-width: max-content;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 15px 20px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;

}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.submenu {
    position: relative;
}

.submenu-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-top: 2px solid black;
    padding: 15px 20px;
}

.submenu:hover .submenu-content {
    display: block;
}

.dropbtn {
    background-color: transparent;
    color: black;
    padding: 5px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}
.dropbtn:after {
    content: url("/template/DeliAlati/assets/img/angle-down-svgrepo-com.svg");
    margin-right: 5px;
    width: 20px;
}
.drop-a:after {
    content: url("/template/DeliAlati/assets/img/angle-down-svgrepo-com.svg");
    margin-right: 5px;
    width: 20px;
}
#search-icon {
    cursor: pointer;
}

#search-overlay {
    display: none;
    position: relative;
    width: 1000px;
    margin: auto;
    left: 0;
    height: 100%;
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: visibility 0.3s, opacity 0.3s;
}
#close-search {
    position: absolute;
    top: -60px;
    right: 20px;;
    font-size: 30px;
    color: black;
    cursor: pointer;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}
#search-overlay input[type="text"] {
    width: 900px;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid black;
    top: -55px;
    position: relative;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
}
#search-overlay .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}


#search-overlay.active #search-input {
    transform: translateY(0);
}
#search-overlay.active #close-search {
    transform: translateY(0);
}
.description{
    padding: 55px 0;
}
.description h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 30px;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 2.75%;
    line-height: 1em;
    font-weight: 500;
}
.description .subtitle{
   font-size: 22px;
    text-align: center;
    color: #666;
}
.category-box{
  padding: 20px;
    position: relative;
    margin-bottom: 20px;
    height: 350px;
}
.category-box .desc{
    height: 72px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-box h3{
   font-weight: normal;
    text-transform: uppercase;
    width: 88%;
}
.category-box:hover{
   background: white!important;
    transition: background-color 300ms linear;

}
.category-box:hover .hover-img{
    transition: opacity 0.6s ease-in-out;
    opacity: 1;
}
.category-box span img{
    width: 66px;
    position: absolute;
    right: 10px;
    top: 0px;
}
.hover-img{
    width: -webkit-fill-available;
    margin-bottom: 20px;
    opacity: 0;
}
.view-more-btn{
    font-size: 18px;
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
}
.banner{
   width: 100%;
    height: 540px;
    position: relative;
    margin-bottom: 50px;
    background-size: cover !important;
    background-position: center;
}
.banner-box{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(100%) translateY(-50%);
}
.banner-box h2{
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    width: 90%;
}
.banner-box p{
   color: white;
    font-size: 20px;
    width: 90%;
}
.banner-box .btn{
    color: #ffffff;
    border-radius: 2px;
    font-size: 18px;
    padding: 12px 80px;
    border: 1px solid white;
}
.banner-box .btn:hover{
    background-color: rgba(0, 0, 0, .05);
    color: #ffffff;
    border: 1px solid transparent;
}
.banner-box2{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.banner-box2 h2{
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 20px;
    width: 90%;
}
.banner-box2 p{
    color: black;
    font-size: 20px;
    width: 90%;
}
.banner-box2 .btn, .text-o-nama .btn{
    color: #000;
    border-radius: 2px;
    font-size: 18px;
    padding: 12px 80px;
    border: 1px solid black;
}
.banner-box2 .btn:hover, .text-o-nama .btn:hover{
    background-color: rgba(0, 0, 0, .05);
    color: black;
    border: 1px solid transparent;
}
.promotion{
   margin-top: 50px;
    padding: 50px;
}
.promotion-title{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.promotion-title h2{
    font-size: 30px;
    color: #000000;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.promotion-title .btn{
    color: #000;
    border-radius: 2px;
    font-size: 18px;
    padding: 12px 100px;
    border: 1px solid black;
    text-transform: uppercase;

}
.promotion-title .btn:hover{
    background-color: rgba(0, 0, 0, .05);
    color: black;
    border: 1px solid transparent;
}
.banner-f{
    margin-bottom: 200px;
}
.banner-f h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
}
.banner-footer{
    width: 100%;
    height: 540px;
    position: relative;
    margin-bottom: 50px;
    background-size: cover !important;
    background-position: center;
}
.slick-slider img{
    max-width: 100%;
    margin: 0 auto;
}
.slider-mini{
   padding: 20px;
    text-align: center;
}
.slider-mini img{
    width: 200px;
    margin: auto;
}
.title{
    padding: 150px 0px 35px;
    text-align: center;
}
.title h1{
    font-size: 55px;
    color: #000000 !important;
    text-transform: uppercase;
}
.title p{
    font-size: 18px;
    font-weight: 500;
}
.answer{
    font-weight: 500;
}
.answer p{
    font-size: 18px;

}
.answer img{
    margin: 0 auto;
    display: block;
}
.answer ol,.answer ul{
    margin-left: 0px;
    padding-left: 15px;
}

.promotion-category{
    margin-top: 50px;
    padding: 50px;
    border-bottom:2px solid black;
}
.promotion-category-title{
    position: relative;
    top: 74%;
    transform: translateY(-50%);
}
.promotion-category-title h2{
    font-size: 30px;
    color: #000000;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 18px;
}
#tekst {
    transition: max-height 0.5s ease; /* Dodaj animaciju */
    text-align: left;
}

#read-more-btn {
    display: none;
    cursor: pointer;
}
.category-problem{
   padding: 80px;
    text-align: center;
    border-bottom: 1px solid black;
}
.category-problem .problem-box{
   width: 70%;
    margin: auto;
}
.problem-box p{
    font-size: 18px;
    font-weight: 500;
}
.textbox .text{
    font-size: 18px;
    font-weight: 500;
}
.category-problem .main-image{
  width:100%
}
.read-more-box .title-read-more{
    font-size: 25px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
}
.read-more-box .title-read-more:after{
  content: url("/template/DeliAlati/assets/img/arrow-down-sign-to-navigate.png");
    float: right;
    font-size: 20px;

}
.arrow-rotate:after {
    transform: rotate(180deg);
}
.border-bottom-1{
   border-bottom: 1px solid black;
    margin-bottom: 30px;
}
.mt-50 {
margin-top: 50px;
}
.mt-20 {
    margin-top: 20px!important;
}
.mb-150 {
    margin-bottom: 150px;
}
.single-product {
    text-align: center;
    padding: 0px 50px!important;
    margin-bottom: 80px;
 }
.single-product img{
    width: 230px;
    margin-bottom: 30px;

}
.single-product h3{
   text-transform: uppercase;
    font-weight: normal;
    text-decoration: none;
    color: black;
}
.single-product p{
    text-decoration: none;
    color: black;
}
.single-product a{
    text-decoration: none;
    color: black;
}
.single-product .single-product-link{
    color: black;
    font-size: 15px;
    font-weight: 700 !important;

 }
.single-product .single-product-link:hover{
    color: black;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.3em 2em 0.3em 1em;
    transition: all 0.2s;
}
.single-product a:hover img{
    opacity: 0.2;
    border: 1px solid black;
    transition: all 0.2s;
}
.text-center-2{
  margin: auto!important;
    line-height: 1.6em;
    font-size: 20px;
    padding-right: 10% !important;
    color: #666;
}
.text-center-2-1{
    margin: auto!important;
    line-height: 1.6em;
    font-size: 30px;
    padding-right: 10% !important;
    color: #666;
}
.text-center-3{
    margin: auto!important;
    line-height: 1.6em;
    font-size: 30px;
    padding-left: 10% !important;
    color: #666;

}
.text-o-nama{
    margin: auto!important;
    padding: 10px 0px
}
.text-o-nama h2{
    font-size: 26px;
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
}
.text-o-nama p{
    font-size: 20px;
    color: #666;
    margin-bottom: 5px;
}
.video-iskustva{
   width: 100%;
}

#faq {
    margin: 50px auto;
    padding: 20px;
}

#faq h3 {
    font-size: 26px;
}

.faq-item {
    margin-bottom: 15px;
    border-top: 1px solid #000;
    padding: 10px 20px;
}

.question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 0;
    font-weight: bold;
}

.answer {
    display: none;
    padding: 10px 0;
}

.toggle-icon {
    width: 18px;
    height: 18px;
    content: url("/template/DeliAlati/assets/img/arrow-down-sign-to-navigate.png");
    background-size: cover;
    transition: transform 0.3s;
}

.question.open .toggle-icon {
    transform: rotate(180deg);
    content: url("/template/DeliAlati/assets/img/arrow-down-sign-to-navigate.png");
}
#blogs .blog{
    color: #000;
    height: 330px;
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 150px;
    margin-top: 60px;
}
#blogs .blog img{
    max-width: 350px;
    position: absolute;
    top: 30px;
    left: 30px;
}
#blogs .blog .text-blog{
    position: absolute;

    margin-left: 380px;
    padding: 25px 0px 0px 60px !important;
}
#blogs .blog .category-blog{
   text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-size: 15px;
}
#blogs .blog .blog-title{
    font-size: 3vh;
    text-transform: uppercase;
    padding-bottom: 40px;
    line-height: 50px;
    margin-top: 20px;
}
.blog-title a{
    color: black;
    text-decoration: none;
}
.blog-title a:hover{
    color: black;
}
#blogs .blog .blog-desc{
    font-size: 16px;
    padding-bottom: 30px;
}
#blogs .blog .see-all{
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
}
#blog{
   padding-top: 120px;
}
#blog .blog{
    color: #000;
    height: 330px;
    display: flex;
    position: relative;
    width: 100%;
    margin-bottom: 150px;
    margin-top: 60px;
}
#blog .blog img{
    max-width: 350px;
    position: absolute;
    top: 30px;
    left: 30px;
}
#blog .blog .text-blog{
    position: absolute;

    margin-left: 380px;
    padding: 25px 0px 0px 60px !important;
}
#blog .blog .category-blog{
    text-decoration: none;
    text-transform: uppercase;
    color: black;
    font-size: 15px;
}
#blog .blog .blog-title{
    font-size: 3vh;
    text-transform: uppercase;
    padding-bottom: 40px;
    line-height: 50px;
    margin-top: 20px;
}
#blog .blog .blog-desc{
    font-size: 16px;
    padding-bottom: 30px;
}
#blog .blog .see-all{
    color: #000;
    text-decoration: underline;
    text-transform: uppercase;
}
#blog-post{
    padding-top: 120px;
}
#blog-post h1{
    font-size: 34px;
}
#blog-post h2{
    font-size: 30px;
}
#blog-post h3{
    font-size: 26px;
}
#blog-post h4{
    font-size: 22px;
}
#blog-post img{
    margin-bottom: 20px;
}
#blog-post p{
   color: #666;
    font-size: 14px;

}
#o-nama img{
   width:auto

}
#o-nama .all-products{
    text-transform: uppercase;
    color: #000000 !important;
    border: 1px solid black;
    padding: 0.3em 1em !important;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition-property: all !important;
    transition: all 300ms ease 0ms;
}
#o-nama .all-products:hover{
   border: 1px solid transparent;
    background-color: rgba(0, 0, 0, .05);
    transition: all 300ms ease 0ms;
    padding: 0.3em 1em !important;
}

.title-kontakt{
    padding: 150px 0px 40px;
    text-align: center;
}
.title-kontakt h1{
    font-size: 30px;
    color: #000000 !important;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.title-kontakt p a{
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}
.title-kontakt{
    color: black;
    font-size: 18px;
    font-weight: 500;
}
.contact-hr{
   color: black;
    opacity: 1;
}
.contact-info{
    text-align: center;
    margin-top: 100px;
    border-bottom: 1px solid black;
    margin-bottom: 40px;
    padding-bottom: 50px;
}
.contact-info .category{
    font-size: 30px;
    color: #333;
    padding-bottom: 10px;
    line-height: 1em;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 50px;
}
.contact-info .title-contact{
    font-size: 30px;
    color: #333;
    line-height: 1em;
    font-weight: 500;
}
.contact-info .info2{
    font-size: 22px;
    color: #333;
    line-height: 1em;
    font-weight: 500;
}
.contact-info .address{
    font-size: 18px;
    color: #333;
    line-height: 1em;
    font-weight: 500;
    margin-bottom: 50px;
}
.contact-info .btn-contact{
    margin-top: 2.75%;
    color: #000000 !important;
    background-color: #FFFFFF;
    transition: all 300ms ease 0ms;
    font-size: 20px;
    font-weight: 500;
    padding: .3em 1em;
    line-height: 1.7em !important;
    border: 2px solid black;
    border-radius: 3px;
    transition-property: all !important;
text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
}
.contact-info .btn-contact:hover{
    color: #000000 !important;
    background-color: white;
    border: 0px solid black;
    padding: .3em 2em .3em .7em;
}
.btn-contact:after {
    transition: all 300ms ease 0ms;
    content: url("/template/DeliAlati/assets/img/next1.png");
    opacity: 0;
    width: 10px;
    display: inline-block; /* Dodano */
    height: auto; /* Dodano */
    margin-left: 0px;
}
.btn-contact:hover:after {
    opacity: 1;
    margin-left: 10px !important;
}
.social-media{
    position: fixed;
    top: 45%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.social-media ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-media li {
    margin-bottom: 10px;
}

.social-media a {
    display: inline-block;
}

.social-media img {
    width: 20px;
    height: auto;
}
.product-header{
    padding: 150px 0px 95px;
    position: relative;
}
.product-header .category-name{
    font-size: 30px;
    width: 50%;
    font-weight: 500;
}
.product-header h1{
    font-size: 40px;
    line-height: 50px;
    width: 50%;
}
.product-header h3{
    font-size: 20px;
    font-weight: 400;
    width: 50%;
}
.product-header span p{
    font-size: 14px;
    width: 50%;
}
.product-header img{
    position: absolute;
    right: 5%;
    top: 40%;
    z-index: 999;
}
.product-icon ul{
    list-style:none;
    text-align: center;
    display: inline-flex;
    margin-left: 0px;
    padding-left: 0px;
    margin-top: 20px;
    margin-bottom: 80px;
}
.product-icon ul li{
   margin-right: 20px;
}
.product-icon ul li p{
    font-weight: 600;
}
.product-icon ul li span{
    font-weight: 200;
}
.product-desc{
    margin: 50px 0px;
    text-align: center;
}
.product-desc ul{
   text-align: left;
}
.product-desc .btn-arrow{
    margin-top: 30px;
}
.btn-arrow{
    color: #000000 !important;
    background-color: #FFFFFF;
    transition: all 300ms ease 0ms;
    border: 1px solid black;
    display: inline-block;
    width: auto!important;
    margin: auto;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    padding: .3em 1em;
}
.btn-arrow:after{
    transition: all 300ms ease 0ms;
    content: url("/template/DeliAlati/assets/img/next1.png");
    opacity: 0;
    width: 10px;
    display: inline-block; /* Dodano */
    height: auto; /* Dodano */
}
.btn-arrow:hover:after{
    transition: all 300ms ease 0ms;
    opacity: 1;

}
.btn-arrow:hover{
    padding: .3em 1em .3em .7em;

}
.big-icon-product{
   margin-top: 50px!important;
    display: inline-flex;
    list-style: none;
    text-align: center;
}
.big-icon-product li{
margin: auto;
}
.big-icon-product li p{
   text-transform: uppercase;
    font-size: 18px;
    width: 230px;
    font-weight: 500;
    margin-top: 20px;
}

.desc-faq {
   padding: 50px 0px;
}
.accordion {
    font-size: 26px;
    border-top: 1px solid black;
    background: transparent;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
}
h4.accordion {
    font-size: 26px;
    border-top: 1px solid black;
    background: transparent;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-weight: normal!important;
}
.active, .accordion:hover {
    background: transparent;
}

.accordion:after {
    content: '\002B';
    color: #F7E5D9;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    border: 1px solid black;
    border-radius: 50%;
    width: 38px;
    text-align: center;
    background: black;
}
#search-overlay.active:after {
    content: "\2212";
    display: none;
}
.menu.active:after {
    content: "\2212";
    display: none;
}
.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    font-size: 20px;
    color: black;
    line-height: 1.3em;
}
.product-faq{
   margin-top: 50px;
    text-align: center;
    margin-bottom: 50px;
}
.product-faq h3{

}
.product-faq .panel{
    text-align: left;
}
.product-faq .subtitle{
    font-size: 20px;
margin-bottom: 50px;
}
.product-faq .accordion:after {
    content: '\002B';
    color: #fff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    border: 1px solid black;
    border-radius: 50%;
    width: 38px;
    text-align: center;
    background: black;
}
.btn-faq{
    color: #000000 !important;
    border:1px solid black;
    border-radius: 2px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: auto !important;
    margin: auto;
    padding: 10px 30px;
}
.blog-list-footer{
    padding: 60px 0px;
    margin-bottom: 100px;
}
.bc-white{
    background: white;
}
.padd-25{
    padding: 15px 40px
}
.blog-list-footer .blog-desc{
    margin: auto;
    padding: 20px 0px 0px 20px;
}
.blog-list-footer .blog-desc p{
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-list-footer h3{
    font-size: 20px!important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.small-text{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-desc a{
   color: black
}
.blog-desc a:hover{
    color: black
}
.blog-list-footer img{
   width: 100%;
}
.img-100{
    width: 100%;
}
.read-more-box .title-read-more:after {
    content: url(/template/DeliAlati/assets/img/arrow-down-sign-to-navigate.png);
    float: right;
    font-size: 20px;
    align-items: center;
    display: flex;
}
.video{
    min-height: 470px;
}
.video .text-o-nama{
    padding: 0px 3%;
}
.video .iframe:first-child{
    padding: 30px 0px;
}
.video .holder{
    position: relative;
    width: 100%;
    padding-bottom: 54.67%; /* (6/9) * 100% = 66.67% */
    background-color: lightblue; /* Samo za vizuelizaciju */
}
.video .holder iframe{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Samo za vizuelizaciju */
}
.contact-info h4{
    font-size: 22px;
    margin-bottom: 0px;
}
.contact-info p{
    font-size: 18px;
}
.gdekupiti{
    font-size: 23px;
    font-weight:500;
}
.gdekupiti img{
    margin-bottom: 40px;
    height: 120px;
}
.category-box{
    width: 100%;
    boder-bottom: 1px solid black;
}
.cat-box h3 a{
    color: black;
    text-decoration: none;
}
.cat-box .slick-arrow{
    position: absolute;
    top: 48%;
}
.cat-box .slick-arrow.slick-next{
    right: 0px;
    font-size: 0px;
    background: white;
    border: 0px;
    width: 50px;
    height: 50px;
}
.cat-box .slick-arrow.slick-next:after{
    content:url("/template/DeliAlati/assets/img/right.png");
    display: block;
    font-size: 20px;
}
.cat-box .slick-arrow.slick-prev{
    left: 0px;
    font-size: 0px;
    background: white;
    border: 0px;
    width: 50px;
    height: 50px;
}
.cat-box .slick-arrow.slick-prev:after{
    content:url("/template/DeliAlati/assets/img/left.png");
    display: block;
    font-size: 20px;
}

.longdesc{
    background-color: #F7E5D9;
    padding: 50px 0px;
}
@media (max-width: 768px) {
    nav ul {
        display: none;
    }
    .accordion {
        font-size: 26px;
        border-top: 1px solid black;
        background: transparent;
        color: #000;
        cursor: pointer;
        padding: 18px 30px;
        width: 100%;
        text-align: left;
        outline: none;
        transition: 0.4s;
    }
    .panel {
        padding: 0 30px;
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        font-size: 20px;
        color: black;
        line-height: 1.3em;
    }
    .dropdown:hover .dropdown-content {
        display: contents;
    }
    .logo {
       margin: auto;
    }
    header {
        background-color: white;
    }
    .slick-track{
      margin-top: 100px;
    }
    nav ul.menu {
         display: none;
    }
    #search-overlay .search-container {
        display: block!important;
        justify-content: center;
        align-items: center;
        width: 100%;
        flex-direction: column;
    }
    #search-overlay input[type="text"] {
        width: auto!important;
        left: 13%!important;
    }
    #close-search {
        z-index: 999;
        position: absolute;
        top: -60px;
        right: auto!important;
        font-size: 30px;
        color: black;
        cursor: pointer;
        transform: translateY(-100%);
        transition: transform 0.5s ease-in-out;
        left: 30%;
    }
    .description h1{
       margin-bottom: 40px;
    }
    .big-icon-product {
        display: block!important;
        list-style: none;
        text-align: center;
    }
    .submenu:hover .submenu-content {
        display: contents;
    }
    .product-icon ul {
        list-style: none;
        text-align: center;
        display: block!important;
        margin-left: 0px!important;
        margin-top: 20px;
        margin-bottom: 80px;
    }
    .product-header {
        padding: 150px 0px 95px;
        position: relative;
    }

    nav ul li a {
        padding: 8px 5px;
        font-size: 14px;
        border: none;
        cursor: pointer;
        font-weight: 500;
    }
    .big-icon-product li p {
        text-transform: uppercase;
        font-size: 18px;
        width: 100%!important;
        font-weight: 500;
        margin-top: 20px;
        text-align: center!important;
    }
    .product-header img {
        position: relative!important;
        right: 0!important;
        top: 0!important;
        z-index: 999;
    }
    .banner-box2 h2 {
        font-size: 30px;
        font-weight: normal;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }
    .banner-box2 p {
        color: black;
        font-size: 20px;
        width: 100%;
        margin-bottom: 20px;
    }
    .banner-box2 .btn{
        color: #000;
        border-radius: 2px;
        font-size: 18px;
        padding: 12px 80px;
        border: 1px solid black;
        margin: auto;
        display: block;
        width: 70%;
    }
    #o-nama .row{
        margin-right: 0px;
        margin-left: 0px;
    }
    #o-nama .text-o-nama p {
        font-size: 20px;
        color: #666;
        margin-bottom: 5px;
        padding: 0px 20px;
    }
    .toggle-icon {
        width: 18px;
        height: 18px;
        content: url(/template/DeliAlati/assets/img/arrow-down-sign-to-navigate.png);
        background-size: cover;
        transition: transform 0.3s;
        align-items: center;
        display: flex;
        justify-content: center;
        margin: auto 0px;
    }
    .textbox .text {
        font-size: 18px;
        font-weight: 500;
        padding: 0px 20px;
    }
    .title {
        padding: 150px 40px 35px;
        text-align: center;
    }
    .title h1 {
        font-size: 40px;
        color: #000000 !important;
        text-transform: uppercase;
    }
    .banner-footer {
        width: 100%;
        height: 200px;
        position: relative;
        margin-bottom: 50px;
        background-size: cover !important;
        background-position: center;
    }
    .category-problem {
        padding: 80px 0px;
        text-align: center;
        border-bottom: 1px solid black;
    }
    .read-more-box .title-read-more {
        font-size: 25px;
        color: #000000;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer;
        padding: 0px 15px;
    }
    .promotion-title h2 {
        font-size: 30px;
        color: #000000;
        font-weight: normal;
        text-transform: uppercase;
        margin-bottom: 18px;
        text-align: center;
    }
    .promotion-title .btn {
        color: #000;
        border-radius: 2px;
        font-size: 18px;
        padding: 12px 50px;
        border: 1px solid black;
        text-transform: uppercase;
        width: 100%;
    }
    .promotion .slick-prev, .promotion .slick-next{
        display: none!important;
    }
    .promotion-category {
      margin-top: 0px;
        padding: 0px 20px;
        border-bottom: 2px solid black;
    }
    .promotion-category-title {
        position: relative;
        top: 60%;
        transform: translateY(-50%);
    }
    #o-nama .col-md-6 {
       padding-left: 0px;
        padding-right: 0px;
    }
    #o-nama .col-md-6.mt-20 {
       margin-top: 60px!important;
    }
    nav .burger {
        display: block;
    }
    .one-product img{
       width:100%
    }
    nav ul.menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 50px;
        right: 23px;
        background: #fff !important;
        border-top: 3px solid black !important;
        width: 320px;
        padding: 10px;
        -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    }
    .banner {
        background-position: right;
    }
    .banner-box h2 {
        font-size: 30px;
        font-weight: normal;
        margin-bottom: 20px;
        width: 100%;
    }
    .banner-box p {
        color: white;
        font-size: 20px;
        width: 100%;
    }
    .banner-box {
        position: absolute;
        width: 83%;
        top: 54%;
        right: 91%;
        transform: translateX(100%) translateY(-55%);
    }
    .video .text-o-nama{
        margin-top: 0px !important;
    }
    #blog .blog img{
        max-width: 100%;
    }
    #blog .blog{
        display: block;
        height: inherit !important;
        margin-bottom: 0px !important;
    }
    #blog .blog img{
        position: inherit !important;
    }
    #blog .blog .text-blog{
        position: inherit;
        margin-left: 0px;
        padding: 20px 35px !important;
    }
}
@media (max-width: 768px) {
    .dropdown-content, .submenu-content {
        display: none !important;
        position: inherit !important;
    }
    .dropdown-content.show {
        display: block !important;
    }
    .submenu-content.show{
        display: contents !important;
    }
}
.single-product{
    position: relative;
}

section img.fr-dib{
    width: inherit !important;
}
.sticker{
    position:absolute;
    top:40px;
    left:10px;
    width: 100%;
    height: 50%;
    z-index: 1;
}
.sticker img{
    height:50px;
    width: initial !important;
    z-index: 1;
}
.position-1,.position-0{
    position:absolute;
    left:0px;
    left: 10px;
    top: 5px;
}
.position-2{
    position:absolute;
    right:10px;
}
.position-3{
    position:absolute;
    left:10px;
    bottom:0px;
}
.position-4{
    position:absolute;
    right:10px;
    bottom:0px;
}