@import "../dist/fonts/remixicon.css";

:root {
    --color-background: #fff;
    --font-color: #818181;
    --font-color-dark: #080809;
    --font-family: "Inter", serif;
    --font-style: normal;
    --border-color: #e5e5e5;
    --box-background: #EFF4F8;
    --primary-color: #0d6efd;

}

.alert,.brand,.btn-simple,.h1,.h2,.h3,.h4,.h5,.h6,.navbar,.td-name,a,body,button.close,h1,h2,h3,h4,h5,h6,p,td{
    -moz-osx-font-smoothing:grayscale;
    -webkit-font-smoothing:antialiased;
    font-family: "Inter", serif;
}

body,html{
    font-size:14px;
    color: var(--font-color-dark)
}

body{
    font-family: "Inter", serif;
    font-size: 14px;
    line-height: 1.5715;
    color: var(--font-color-dark);
    /* background-color: rgba(#aeaeff,.45); */
    background: linear-gradient(180deg, #e2effa, #EFF4F8);
    background-image: linear-gradient(180deg, #E8F8F8, #EFF4F8);
    /* background-image: url('../img/background-light.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
}

.winter-backgroind{

    background-image: url('../img/winter.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.spring-backgroind{

    background-image: url('../img/spring.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.summer-backgroind{

    background-image: url('../img/summer.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.autumn-backgroind{

    background-image: url('../img/autumn.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.container-header {
  border-bottom: 1px solid var(--border-color);
}

header .header-logo {
   width: 100%;
}

header .search-input{
    font-family: remixicon;
    font-weight: normal;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    background-color: var(--color-background);
    border-radius: 25px;
    font-size: 18px;
    padding: 5px 10px;
    color: var(--font-color);
}
header .search-input:focus{
    box-shadow:none;
}

header .btn-search{
    width: 50px;
    border: 1px solid #d3d3d3;
    background-color: #f8f8f8;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}
header .btn-search:hover{
    background-color: var(--color-background);
}

header .btn-search i{
    font-size: 18px;
    color: #6c757d;
}

header .search-body{
    position: relative;
}

header .search-body .resultDiv {
    /* display: block;
    width: 85%;
    top: 45px;
    left: 39px;
    max-height: 400px;
    position: absolute;
    cursor: pointer;
    overflow: auto;
    border: 1px solid #e6e6e6;
    z-index: 9999999;
    background-color: #fff; */
    display: none;
    position: absolute;
    width: 85%;
    top: 46px;
    left: 39px;
    background-color: #fff;
    border: 1px solid #ccc;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: rgb(204, 204, 204);
    border-top: 0;
    border-radius: 12px;
    padding: 16px 0 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    z-index: 2010;
    overflow: auto;
    text-align: left;
}

header .search-body .resultDiv ul{
    list-style: none;
    padding: 0px;
}

header .search-body .resultDiv ul li{
    font-size: 14px;
    padding: 8px 20px;
    list-style: none;

}

header .search-body .resultDiv ul li:hover{
    background-color: #f5f5f5;
}

header .search-body .resultDiv ul li a{
   text-decoration: none;
   color: var(--font-color-dark);
}

header .link-user-profile{
    color: #f3f3f3;
    font-family: var(--font-family);
    font-weight: 400;
    text-decoration: none;
    border-radius: 25px;
    padding: 12px;
    font-size: 13px;
    background-color: var(--primary-color);
    text-transform: uppercase;
    text-wrap: nowrap;
}

.display-4 {
  font-size: 2.5rem;
}

@media screen and (min-width: 600px) {
    .mobile-container{
        display: none;
    }
}

@media screen and (min-width: 0px) and (max-width: 600px) {
    .desktop-container{
        display: none;
    }
}

main{
    min-height: 60vh;
}

main .left-categtoy-box{
    background-color: var(--color-background);
    border-radius: 25px;
    margin-bottom: 20px;
}

main .left-categtoy-box .categ-header{
    padding: 10px 20px 5px 20px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid #e6e6e6;
}

main .left-categtoy-box .categ-header h4{
    font-size: 16px;
    font-weight: 600;

}
main .left-categtoy-box .categ-header span{
    font-size: 20px;
    font-weight: 500;
}

main .left-categtoy-box .categ-list{
    padding-bottom: 20px;
}
main .left-categtoy-box ul{
    padding: 0px;
}
main .left-categtoy-box ul .active{
    background-color: #f5f5f5;
}
main .left-categtoy-box ul li{
    padding: 3px 20px;
}

main .left-categtoy-box ul li a{
    font-family: var(--font-family);
    font-size: 14px;
    color: var(--font-color-dark);
    text-decoration: none;
}

main .left-categtoy-box ul li:hover{
    background-color: #f5f5f5;

}

main .center-products-box .carousel .carousel-item-img{
    border-radius: 25px;
    width: 100%;
}

main .cart-box{
    background-color: var(--color-background);
    border-radius: 25px;
    margin-bottom: 20px;

}

main .cart-box .cart-header{
    padding: 10px 20px 5px 20px;
    display: flex;
    justify-content: space-between;
    align-content: center;
    border-bottom: 1px solid #e6e6e6;
}

main .cart-box .cart-header h4{
    font-size: 16px;
    font-weight: 600;

}

main .cart-box .item-box{
    padding-bottom: 10px;
    padding-top: 10px;
    border-bottom: solid 1px var(--border-color);
}

main .cart-box .cart-footer button{
    width: 100%;
}
main .cart-box .item-box a{
    color: var(--font-color-dark);
    text-decoration: none;
    font-size: 16px;
}

main .cart-box .item-box a:hover{
    color: var(--primary-color);
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }


}


.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.brand-box{
    padding-bottom: 20px;
}
.brand-box .switer-box{
    overflow: hidden;
    border: solid 1px var(--border-color);
    border-radius: 25px;
    padding: 5px;
}
.brand-box .swiper-slide {
    width: auto !important;
    padding: 10px 20px;
    background: var(--color-background);
    border-radius: 25px;
    margin-right: 5px;
  }

  .brand-box .swiper-slide:hover{
    background: var(--primary-color);
  }

 .card-item{
   background: var(--color-background);
   border-radius: 25px;
   padding: 15px;
   margin-bottom: 20px;
}
.card-item .img-product{
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
 }

  .card-item .text-recipe{
    background-color: #f3f3f3;
    border-radius: 25px;
    padding: 3px 8px;
    font-size: 12px;
 }
 .card-item .text-prod-date{
    font-size: 12px;
 }

.card-item .content-text a{
    font-size: 14px;
    color: var(--font-color-dark);
    margin-top: 5px;
    margin-bottom: 5px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.2;

 }

 .card-item .text-category{
     font-size: 12px;
 }
 .card-item .product-footer{
    display: flex;
    justify-content: space-between;
    border-top: solid 1px var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}


 .card-item .product-footer .old-price{
    padding-right: 10px;
    color: var(--font-color);
    text-decoration: line-through;
}
 .card-item .product-footer .new-price{
    font-weight: 600;
}

 .card-item .product-footer .input-group{
   max-width: 80px;
   margin-right: 10px;
}
  .brand-box .swiper-slide a{
    color: var(--font-color-dark);
    font-family: var(--font-family);
    text-decoration: none;
  }
  .brand-box .swiper-slide a:hover{
    color: var(--color-background);
  }
.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/*
 * detail
 */
main .image-box img{
    width: 100%;
    border-radius: 14px;

}

main .image-box .sub-image-box{
    padding: 10px 0px;
}
main .image-box .sub-image-box a{
    padding: 0px 5px;
}

.center-products-box .card-item .product-footer{
    display: flex;
    justify-content: space-between;
    border-top: solid 1px var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

main .product-box{
    background-color: var(--color-background);
    padding: 20px;
    border-radius: 25px;
}
main .profile-box{
    background-color: var(--color-background);
    padding: 20px;
    border-radius: 25px;
}

main .product-box .product-footer .old-price{
    padding-right: 10px;
    color: var(--font-color);
    text-decoration: line-through;
}
main .product-box .product-footer .new-price{
    font-weight: 600;
}

main .product-box .product-footer .input-group{
   max-width: 80px;
   margin-right: 10px;
}
main .product-box .product-desc-box{
    padding: 20px 0px;

}
main .product-box .product-desc-box .desc-text{
    font-size: 16px;
    font-weight: 600;
    border-bottom: solid 1px var(--border-color);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

header .user-menu-box button{
    background-color: #26dc00;
    border-color: #26dc00;
    color: #fff;
    border-radius: 25px;
    padding: 8px;
}
/*
 * Footer
 */
.blog-footer {

  padding: 2.5rem 0;
  color: #727272;
  text-align: center;
  background-color: var(--color-background);
  border-top: .05rem solid #e5e5e5;
}

.blog-footer .footer-menu{
    list-style-type: none;
    display: inline-block;
    text-align: left;
}

.blog-footer .footer-menu li{
    float: left;
    padding: 0px 10px;
    border-right: solid 1px var(--font-color);
}
.blog-footer .footer-menu li:last-child{
    border-right: none;
}
.blog-footer .footer-menu li a{
    text-decoration: none;
    font-size: 16px;
    color: var(--primary-color);
}
.blog-footer p:last-child {
  margin-bottom: 0;
}

.help-block{
    color: #f21b1b;
    font-size: small;
}

main .center-products-box .carousel .carousel-inner .card{
    background: #ffffff;
    border: none;
    border-radius: 12px;

}

main .center-products-box .carousel .carousel-inner .card img{
    border-radius: 12px;
    width: 100%;

}

main .center-products-box .carousel{
    margin-bottom: 20px;
}
main .center-products-box .carousel .carousel-indicators{
    position: relative;
    margin-bottom: 0px;
}

main .center-products-box .carousel .carousel-inner .card .card-body{
    padding: 10px;
}
main .center-products-box .carousel .carousel-inner .card-text{
    font-size: 12px;
    height: 40px;
    overflow: hidden;
}
