@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@100;300;400;500;600;700;900&family=Roboto:wght@100;300;400;500;700&display=swap');

html {
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  position: relative;
  overflow-x: hidden;
  height: 100%;
  font-family: 'Roboto', sans-serif;
}

.form-control:focus {
  box-shadow: none;
}

.dropdown-menu {
  border: none;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
}

.link {
  position: relative;
}

.dropdown-menu.active {
  position: absolute;
  inset: 0px auto auto 0px;
  margin: 0px;
  left: 160px;
  top: 0px;
  display: block;
}

.dropdown-item {
  color: #152e48;
  font-size: 14px;
  opacity: .6;
  transition: .5s;
}

.dropdown-menu.submenu {
  padding: 7px 10px;
}

.dropdown-menu.submenu ul {
  list-style: none;
  padding-left: 0;
}

.dropdown-menu.submenu ul li {
  cursor: pointer;
}

.dropdown-item:hover {
  opacity: 1;
}

.btn:focus {
  box-shadow: none;
}

a {
  text-decoration: none;
}

p {
  font-family: 'Roboto', sans-serif !important;
}

.global-div {
  position: relative;
  height: 100%;
}

header .topbar {
  position: relative;
  padding: 15px 0;
  background: #152e48;
}

header .topbar.nav-user {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

header .topbar .logo {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  text-decoration: none;
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  line-height: 20px;
  position: relative;
  margin-left: 50px;
}

header .topbar .logo .logo-icon {
  width: 40px;
  height: 40px;
  background: #57DD43;
  color: #fff;
  position: absolute;
  border-radius: 7px;
  font-size: 25px;
  left: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .topbar .logo .logo-icon svg {
  transform: rotate(-15deg);
}

header .topbar .logo span {
  display: block;
}

header .topbar .logo span.sm-text {
  font-size: 15px;
  color: #febd69;
}

header .topbar .logo .line {
  position: absolute;
  width: 70px;
  height: 35px;
  top: -10px;
  right: 0px;
}

header .topbar .logo .line path {
  stroke: #57DD43;
}

header .topbar .form-control {
  border: none;
  background: #fff;
  height: 45px;
}

header .topbar .form-control::placeholder {
  opacity: .5;
  font-size: 14px;
}

header .topbar form .btn {
  background: #57DD43;
  border: none;
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  position: relative;
}

header .topbar .avatar-user {
  width: 40px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.349);
  border-radius: 50px;
  font-size: 25px;
  color: #fff;
  align-items: center;
  justify-content: center;

}

header .topbar .cart {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 50px;
  font-size: 25px;
  color: #fff;
  align-items: center;
  justify-content: center;

}

header .topbar .cart .badgeNum {
  font-size: 14px;
  color: #febd69;
}

header .block-help {
  position: relative;
  line-height: 15px;
}

header .block-help::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.075);
  left: -50px;
}

header .block-help .fas {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #57DD43;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  left: -35px;
  top: 2px;
}

header .block-user {
  margin-left: 70px;
}

header .block-user .btn {
  color: #fff;
  border: 1px solid #57DD43;
  border-radius: 10px;
  transition: .5s;
  position: relative;
}

header .block-user .btn:hover {
  background: #57DD43;
  border: 1px solid #57DD43;
  color: #fff;
}

header form .btn .dropdown-menu {
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  display: block !important;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  border-radius: .25rem;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header form .btn:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

header form ul {
  list-style: none;
  padding-left: 0;
}

header form ul li {
  position: relative;
  width: 100%;
}

header form .submenu {
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  border-radius: .25rem;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 100%;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header form .submenu li {
  padding: .25rem 1rem;
  font-size: 14px;
}

header form .submenu li a {
  display: block;
  opacity: .5;
  color: #152e48;
}

header form .submenu li a:hover {
  opacity: 1;
}

header form ul li:hover .submenu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

header .topbar .user-login {
  position: absolute;
  background: #fff;
  width: 220px;
  z-index: 2;
  border-radius: 10px;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  right: 170px;
  top: 65px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header .topbar .user-login.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

header .topbar .user-login .close-user-login {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 5px;
  cursor: pointer;
  top: 20px;
  right: 20px;
  transition: .5s background;
}

header .topbar .user-login .close-user-login:hover {
  background: #febd69;
}

header .topbar .user-login .content {
  position: relative;
  padding: 20px;
}

header .topbar .user-login .content .btn {
  font-size: 12px;
  transition: .5s;
}

header .topbar .user-login .content .btn.btn-login {
  background: #57DD43;
  color: #fff;
}

header .topbar .user-login .content .btn.btn-logout {
  background: red;
  color: #fff;
}

header .topbar .user-login .content .btn.btn-ins:hover {
  color: #57DD43;
}

header .topbar .user-login .content span {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  color: #152e48;
  font-weight: 700;
}

header .navbar {
  background: #fff;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
}

header .navbar .nav-link {
  color: #152e48;
  font-size: 14px;
  transition: .5s;
  letter-spacing: 1px;
  font-weight: 400;
  opacity: .6;
}

header .navbar .nav-link:hover {
  color: #57DD43;
  opacity: 1;
}

header .navbar .nav-item {
  position: relative;
}

header .navbar .nav-item .dropmenu {
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  border-radius: .25rem;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header .navbar .nav-item:hover .dropmenu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

header .navbar .nav-item .dropmenu ul {
  list-style: none;
  padding-left: 0;
}

header .navbar .nav-item .dropmenu ul li {
  font-size: 14px;
  padding: .25rem 1rem;
  width: 100%;
  position: relative;
}

header .navbar .nav-item .dropmenu ul li a {
  opacity: .5;
  color: #212529;
  transition: .5s;
  display: block;
}

header .navbar .nav-item .dropmenu ul li a:hover {
  opacity: 1;
  color: #57DD43;
}

header .navbar .nav-item .sub-menu {
  position: absolute;
  z-index: 1000;
  min-width: 10rem;
  padding: .5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  border-radius: .25rem;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 100%;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header .navbar .nav-item .dropmenu ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

header .navbar .nav-item .sub-menu ul {
  list-style: none;
  padding-left: 0;
}

header .navbar .nav-item .sub-menu ul li {
  font-size: 14px;
  padding: .25rem 1rem;
}

header .navbar .nav-item .dropMenu {
  position: absolute;
  width: 1024px;
  padding: 20px 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  opacity: 0;
  top: 45px;
  visibility: hidden;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

header .navbar .nav-item:hover .dropMenu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

header .navbar ul li:nth-child(1) .dropMenu {
  left: 7px;
}

header .navbar ul li:nth-child(2) .dropMenu {
  left: -122px;
}

header .navbar ul li:nth-child(3) .dropMenu {
  left: calc(-244px - 7px);
}

header .navbar ul li:nth-child(4) .dropMenu {
  left: calc(-366px + 15px);
}

header .navbar ul li:nth-child(5) .dropMenu {
  left: calc(-488px + 25px);
}

header .navbar ul li:nth-child(6) .dropMenu {
  left: calc(-610px + 73px);
}

header .navbar ul li:nth-child(7) .dropMenu {
  left: calc(-732px + 95px);
}

header .navbar ul li:nth-child(8) .dropMenu {
  left: calc(-854px + 140px);
}

header .navbar ul li:nth-child(9) .dropMenu {
  left: calc(-976px + 190px);
}

.banner {
  margin-top: 100px;
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #57DD43;
}

.banner-content {
  position: relative;
  height: inherit;
}

.banner-content .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-content h1 {
  position: relative;
  font-size: 42px;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
}

.banner-content h2 {
  position: relative;
  font-weight: 300;
  font-size: 25px;
}

.banner-content p {
  opacity: .9;
  padding-right: 220px;
  font-size: 14px;
}

.banner-content .img-left {
  position: absolute;
  top: 30px;
  right: -100px;
  width: 50%;
}

.banner-content::before {
  content: '';
  position: absolute;
  /* width: 250px;
    height: 250px; */
  background: #fff;
  /* border-radius: 50%; */
  top: 70px;
  right: 50px;
}

.block-about {
  position: relative;
  z-index: 1;
  padding: 20px 0;
  background: #f4f4f4;
}

.block-about .card {
  padding: 30px 20px;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  margin-top: -40px;
}

.block-about .card .text-star {
  position: relative;
  padding-left: 50px;
}

.block-about .card .text-star span {
  font-size: 35px;
  left: 5px;
  position: absolute;
  color: #152e48;
  opacity: .7;
}

.block-about .card h4 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #57DD43;
  margin-bottom: 0px;
}

.block-about .card p {
  font-size: 14px;
}

.block-promotion {
  margin-top: -25px;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.block-promotion h1 {
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: #152e48;
  position: relative;
}

.block-promotion h1::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: #57DD43;
  bottom: -20px;
  left: 0;
}

.block-promotion .item {
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 10px;
  border-radius: 10px;
  position: relative;
}

.block-promotion .block-img {
  position: relative;
  overflow: hidden;
}

.block-promotion .item .badge-promo {
  position: absolute;
  z-index: 1;
  background: #febd69;
  display: inline-block;
  padding: 10px 10px;
  top: -6px;
  left: 25px;
  text-align: center;
  border-top-left-radius: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.block-promotion .item .badge-promo::before {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  right: -5.5px;
  top: 0.1px;
  border-bottom: 6px solid #8D5A20;
  border-right: 6px solid transparent;
}

.block-promotion .item .badge-promo::after {
  content: '';
  position: absolute;
  height: 0;
  width: 100%;
  bottom: -29.5px;
  left: 0;
  border-left: 43px solid #febd69;
  border-right: 43px solid #febd69;
  border-bottom: 30px solid transparent;
}

.block-promotion .owl-wrapper-outer {
  padding: 20px 0;
}

.block-promotion h4 {
  padding: 0;
  font-size: 18px;
  color: #152e48;
  opacity: .9;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

.block-promotion .customNavigation {
  text-align: left;
  line-height: 0px;
}

.block-promotion .customNavigation a {
  float: right;
  color: #fff;
  background: #57DD43;
  margin: 5px;
  margin-top: -30px;
  padding: .375rem .75rem;
  font-size: 15px;
  cursor: pointer;
  transition: .5s;
}

.slide_arrow a {
  color: #fff;
  background: #57DD43;
  margin: 5px;
  padding: .375rem .75rem;
  font-size: 15px;
  cursor: pointer;
  transition: .5s;
}

.block-promotion .item p {
  padding: 0;
  font-size: 14px;
}

.block-promotion .item img {
  height: 350px;
  object-fit: cover;
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  border-radius: 10px;
}

.block-promotion .item:hover img {
  transform: scale(1.2);
}

.block-promotion .price {
  color: #57DD43;
  font-size: 18px;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
}

.block-promotion .views svg {
  fill: #57DD43;
}

.block-promotion .views {
  font-size: 14px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.3);
}

.block-promotion .fa-star {
  color: #febd69;
}

.block-promotion .card-body {
  position: relative;
}

.block-promotion .card-body .btn-cart {
  position: absolute;
  border: 1px solid #57DD43;
  color: #57DD43;
  top: 70px;
  right: 30px;
  transition: .5s;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.block-promotion .card-body .btn-cart:hover {
  background: #57DD43;
  color: #fff;
}

.block_bundel {
  position: relative;
  padding: 50px 0;
  background: #152e48;
  overflow: hidden;
  z-index: 1;
}

.block_bundel h1 {
  font-size: 26px;
  letter-spacing: 2px;
  font-family: 'Rubik', sans-serif;
}

.block_bundel .btn {
  color: #fff;
  border: 1px solid #57DD43;
  border-radius: 10px;
  transition: .5s;
}

.block_bundel .btn:hover {
  background: #57DD43;
}

.block_bundel::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  right: -220px;
  width: 50%;
  height: 100%;
  background: #febd69;
  transform: skew(-45deg) scale(1.2);
}

.block_bundel::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 100%;
  top: 20px;
  right: 70px;
}

.block_bundel .img-block {
  position: absolute;
  width: 30%;
  top: 0px;
  right: 50px;
  z-index: 1;
}

.all-products {
  position: relative;
  padding: 5px 0;
}

.all-products h1 {
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: #152e48;
  position: relative;
}

.all-products h1::before {
  content: '';
  position: absolute;
  width: 70px;
  height: 2px;
  background: #57DD43;
  bottom: -20px;
  left: 0;
}

.all-products .card {
  border: none;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 5px 10px;
  position: relative;
  transition: .5s;
}

.all-products .card:hover {
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
}

.all-products .card .block-ribbon {
  position: absolute;
  width: 100%;
  height: 220px;
  top: -8px;
  left: 8px;
  overflow: hidden;
}

.all-products .card .block-ribbon::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 8px;
  right: 100px;
  background: #4D6530;
  border-radius: 8px 8px 0px 0px;
}

.all-products .card .block-ribbon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 40px;
  right: 0px;
  top: 100px;
  background: #4D6530;
  border-radius: 0px 8px 8px 0px;
}

.all-products .card .ribbon {
  width: 200px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  top: 30px;
  right: -50px;
  z-index: 2;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px dashed #fff;
  color: #fff;
  box-shadow: 0 0 0 3px #57DD43, 0px 21px 5px -18px rgba(0, 0, 0, 0.6);
  background: #57DD43;
  text-align: center;
}

/* Image Height by Daniel M. Mugeni original Height 330*/
.all-products .card-img {
  height: 275px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.all-products .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  will-change: transform;
  border-radius: 10px;
}

.all-products .card:hover .card-img img {
  transform: scale(1.2);
}

.all-products .card-body {
  position: relative;
}

.all-products .card-body .btn {
  position: absolute;
  background: #fff;
  color: #57DD43;
  top: -25px;
  right: 20px;
  transition: .5s;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.all-products .card-body .btn-cart:hover {
  background: #57DD43;
  color: #fff;
}

.all-products .card-sm {
  position: relative;
  margin-bottom: 20px;
  height: 150px;
}

.all-products .card-sm img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-products .card-lg .card-img {
  height: 520px;
}

.all-products .avatar-vendeur {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  margin-right: 20px;
}

.all-products .vendeur .text-star {
  margin-top: 15px;
  line-height: 10px;
}

.all-products .vendeur .text-star h6 {
  font-weight: 700;
}

.all-products .far {
  color: #febd69;
}

.all-products .avatar-vendeur img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.all-products .btn-add {
  background: #fff;
}

.all-products .btn-panier {
  background: #dc3545;
  color: #fff;
}

.all-products h5 {
  font-size: 15px;
}

.all-products p {
  font-size: 14px;
}

.all-products .in-stock {
  color: #fff;
  display: inline-block;
  background: #57DD43;
  padding: 5px 7px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
}

.all-products .solde {
  color: #fff;
  display: inline-block;
  background: #febd69;
  padding: 5px 7px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
}

.all-products .out-stock {
  color: #fff;
  display: inline-block;
  background: rgb(250, 64, 64);
  padding: 5px 7px;
  border-radius: 50px;
  font-family: 'Rubik', sans-serif;
}

.all-products .content-product {
  position: relative;
  transition: .5s;
}

.all-products .content-product.active {
  padding-right: 250px;
}

.all-products .filter {
  position: absolute;
  width: 250px;
  padding: 30px 20px;
  background: #fff;
  top: 50px;
  right: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transform: translateX(350px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.all-products .filter h5 {
  font-family: 'Rubik', sans-serif;
  color: #152e48;
}

.all-products .filter.active {
  transform: translateX(0px);
  opacity: 1;
  visibility: visible;
}

.all-products .btn-filter {
  background: #57DD43;
  color: #fff;
  z-index: 1;
  margin-right: 20px;
}

footer {
  background: #152e48;
  padding-top: 40px;
}

footer .logo-lg {
  color: #fff;
  font-size: 20px;
  position: relative;
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  line-height: 30px;
}

footer .logo-lg span {
  display: block;
}

footer .logo-lg span.sm-text {
  font-size: 15px;
  color: #febd69;
}

footer .logo-lg .logo-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #57DD43;
  color: #fff;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  left: -60px;
  top: 35px;
}

footer .logo-lg .logo-icon svg {
  transform: rotate(-15deg);
}

footer .logo-lg .line {
  position: absolute;
  width: 70px;
  height: 50px;
  left: 75px;
  top: 20px;
}

footer .logo-lg .line path {
  stroke: #57DD43;
}

footer h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
}

footer h6::before {
  content: '';
  position: absolute;
  width: 65px;
  height: 2px;
  background: #febd69;
  bottom: -10px;
}

footer .div-link a {
  display: block;
  color: #fff;
  opacity: .8;
  transition: .5s;
  font-size: 14px;
  margin-bottom: 10px;
}

footer .div-link a:hover {
  opacity: 1;
}

footer .bottombar {
  background: #152e48;
  padding: 15px 10px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.089);
}

footer .net-work {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #57DD43; /*#57DD43;*/
  color: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  margin-right: 5px;
}

footer .logo-oper {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

footer .logo-oper img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.block-modal-login {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.block-modal-login.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.block-modal-login .card {
  border: none;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  width: 350px;
  padding: 20px 30px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.block-modal-login.active .card.card-login {
  opacity: 1;
  transform: scale(1);
}

.block-modal-login .card label {
  color: #152e48;
  font-size: 14px;
  margin: 10px 0;
}

.block-modal-login .card .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  border-radius: 10px;
  color: #febd69;
}

.block-modal-login .card .form-control:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #58dd435e;
}

.block-modal-login .card .form-control::placeholder {
  font-size: 14px;
  opacity: .7;
}

.block-modal-login .card .btn {
  border: 1px solid #57DD43;
  color: #57DD43;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: .5s;
}

.block-modal-login .card .btn:hover {
  background: #57DD43;
  color: #fff;
}

.block-modal-login .card .btn:active {
  transform: scale(.9);
}

.block-modal-login .close-div {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #57DD43;
  border-radius: 10px;
  top: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: .5s;
}

.block-modal-login .close-div:hover {
  transform: rotate(360deg);
}

.block-modal-login .close-div::before {
  content: '';
  position: relative;
  width: 45px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}

.block-modal-login .close-div::after {
  content: '';
  position: relative;
  width: 45px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}

.block-login {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: .3s cubic-bezier(.68, -0.55, .27, 1.55);
}

.block-login.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.card-ord.active,
.card-spe.active {
  opacity: 1;
  transform: scale(1);
}

.block-modal-login h6 {
  color: #152e48;
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.block-modal-login p.text-muted {
  font-size: 14px;
  position: relative;
  padding-left: 20px;
  padding-bottom: 18px;
  margin-bottom: 0;
}

.block-modal-login p.text-muted .fas {
  position: absolute;
  left: -5px;
  width: 20px;
  height: 20px;
  background: #57DD43;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  font-size: 10px;
}

.block-modal-login .btn.btn-ord {
  border-color: #febd69;
  color: #febd69;
}

*.block-modal-login .btn.btn-ord:hover {
  background: #febd69;
}

.link-register {
  color: #57DD43;
  transition: .3s;
}

.link-register:hover {
  color: #febd69;
}

.block-register {
  position: relative;
  padding: 70px 0;
}

.btn-sub-categorie {
  color: #fff;
  background-color: #57DD43;
  border-color: #57DD43
}

.btn-sub-categorie:hover {
  color: #fff;
  background-color: #57DD43;
  border-color: #43dd90
}

.block-register .card {
  border: none;
  width: 350px;
  padding: 40px 30px;
  box-shadow: rgba(3, 0, 71, 0.09) 0px 8px 45px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.block-register .card .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  border-radius: 10px;
  color: #febd69;
}
.block-register .card .eye-color-one {/*.block-register .card .eye-color-one #fa_eye*/
  color: #febd69; /*#febd69*/
}

.block-register .card .eye-color-two {/*.block-register .card .eye-color-two #fa_eye*/
  color: #58dd43; /*#58dd43*/
}

.block-register .form-control:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #58dd435e;
}

.block-register label {
  color: #152e48;
  font-size: 14px;
  margin: 10px 0;
}

.block-register .form-control::placeholder {
  font-size: 14px;
  opacity: .7;
}

.block-register .card .btn {
  border: 1px solid #57DD43;
  color: #57DD43;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: .5s;
}

.block-register .btn:hover {
  background: #57DD43;
  color: #fff;
}

.block-register h3 {
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: #152e48;
  position: relative;
}

.block-register h3 span {
  font-size: 35px;
  color: #57DD43;
}

.block-register h5 {
  position: relative;
  margin-bottom: 25px;
  margin-left: 40px;
  color: #152e48;
  font-weight: 400;
}

.block-register h5 .fas {
  background: #57DD43;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border-radius: 100%;
  left: -40px;
}

.banner-sm {
  position: relative;
  height: 210px;
  background: #57DD43;
  margin-top: 100px;
}

.banner-sm h1 {
  position: relative;
  font-size: 42px;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
}

.bg-dash {
  background: rgba(88, 221, 67, 0.062);
}

.block-dash {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.block-dash .sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 0 .75rem 1.5rem rgba(29, 63, 18, 0.03);
  z-index: 1;
}

.block-dash .user-block {
  position: relative;
  margin-top: 100px;
  padding-left: 70px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.block-dash .user-block .avatar {
  width: 40px;
  height: 40px;
  position: absolute;
  top: -2px;
  left: 20px;
}

.block-dash .user-block .avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.block-dash .user-block h6 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  color: #152e48;
  margin-bottom: 0px;
  font-size: 15px;
}

.block-dash .user-block p {
  color: #152e48;
  font-size: 12px;
  opacity: .5;
}

.block-dash .block-link-user {
  position: relative;
}

.block-dash .block-link-user .content {
  position: relative;
}

.block-dash .block-link-user .content ul {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.block-dash .block-link-user .content ul li {
  padding: 20px 0;
  padding-left: 70px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.block-dash .block-link-user .content ul li button {
  display: block;
  color: #fff;
  position: relative;
  font-size: 14px;
}

.block-dash .block-link-user .content ul li button span {
  color: #152e48;
}

.block-dash .block-link-user .content ul li button.active span {
  color: #57DD43;
  opacity: 1;
}

.block-dash .block-link-user .content ul li button .fas {
  background: rgba(88, 221, 67, 0.329);
  color: #57DD43;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
  position: absolute;
  top: -3px;
  left: -40px;
  font-size: 14px;
}

.block-dash .block-content-dash {
  position: relative;
  padding: 120px 0;
  padding-left: 250px;
}

.block-dash .block-content-dash .card-circle {
  border: none;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 15px 20px;
}

.block-dash .block-content-dash .card-circle .text-star {
  padding-left: 20px;
  line-height: 10px;
}

.block-dash .block-content-dash .card-circle h1 {
  color: #6c7072;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  font-size: 18px;
  margin-bottom: 0;
}

.block-dash .block-content-dash .card-circle h5 {
  color: #152e48;
  font-size: 18px;
  margin-bottom: 0;
  position: relative;
}

.block-dash .block-content-dash .card-circle h5::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #57DD43;
  border-radius: 100%;
  left: -20px;
  top: 100%;
  transform: translateY(-50%);
}

.block-dash .block-content-dash .card2 h5::before {
  background: #febd69;
}

.block-dash .block-content-dash .card3 h5::before {
  background: #152e48;
}

.block-dash .block-content-dash .card4 h5::before {
  background: #dc3545;
}

.block-dash .block-content-dash .card-circle .fas {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #57DD43;
  color: #fff;
  line-height: 40px;
  border-radius: 5px;
  margin-bottom: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  text-align: center;
}

.block-dash .block-content-dash .card-circle .fas svg {
  width: 20px;
  height: 20px;
}

.block-dash .block-content-dash .card2 .fas {
  background: #febd69;
}

.block-dash .block-content-dash .card3 .fas {
  background: #152e48;
}

.block-dash .block-content-dash .card4 .fas {
  background: #dc3545;
}

.block-dash h1 {
  color: #152e48;
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
  font-size: 25px;
}

.block-dash .card-produit {
  border: none;
  box-shadow: 0 .75rem 1.5rem rgba(29, 63, 18, 0.03);
}

.block-dash .card-produit .card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.block-dash .card-produit .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  will-change: transform;
  border-radius: 10px;
}

.block-dash .card-produit svg {
  width: 20px;
  height: 20px;
}

.block-dash .card-produit .view1 svg {
  fill: #febd69;
}

.block-dash .card-produit .view2 svg {
  fill: #152e48;
}

.block-dash .card-produit .view3 svg {
  fill: #dc3545;
}

.block-dash .card-produit span {
  color: #6c7072;
  opacity: .5;
}

.block-dash .card-produit h5 {
  color: #152e48;
  font-size: 17px;
  opacity: .7;
}

.block-dash .nav-tabs {
  border: none;
}

.block-dash .nav-link {
  border: none;
  color: #152e48;
  transition: .5s;
  font-size: 20px;
  padding: 15px 30px;
}

.block-dash .nav-link:hover {
  color: #57DD43;
}

.block-dash .nav-link.active {
  background: #ffff;
  color: #57DD43;
}

.block-dash .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: .5s cubic-bezier(.68, -0.55, .27, 1.55);
  border-radius: 10px;
  color: #6c7072;
  font-size: 14px;
}

.block-dash label {
  color: #152e48;
  font-size: 14px;
  margin: 10px 0;
  font-weight: 700;
}

.block-dash .form-control:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #58dd435e;
}

.block-dash form .card {
  /* width: 170px; */
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.block-dash form .card input {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.block-dash form .card svg {
  width: 50px;
  height: 50px;
  fill: #57DD43;
  position: relative;
  z-index: 1;
}

.block-dash form .card .img-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  transition: .5s;
}

.block-dash .block-promo {
  position: relative;
  border-radius: 0px 5px 5px 5px;
  margin-top: 10px;
  padding: 30px 20px;
}

.block-dash .block-promo1 {
  border: 1px solid #57DD43;
}

.block-dash .block-promo1 h4 {
  background: #57DD43;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  position: absolute;
  padding: 7px 20px;
  border-radius: 5px 5px 0px 0;
  left: -1px;
  top: -36px;
}

.block-dash .form-switch .form-check-input {
  width: 4rem;
  height: 2rem;
  margin-right: 6px;
}

.block-dash .block-promo1 .form-check-input:checked {
  background-color: #57DD43;
  border-color: #57DD43;
}

.block-dash .block-promo1 .form-check-input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #58dd435e;
}

.block-dash .block-promo2 {
  border: 1px solid #4D6530;
}

.block-dash .block-promo2 h4 {
  background: #4D6530;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  position: absolute;
  padding: 7px 20px;
  border-radius: 5px 5px 0px 0;
  left: -1px;
  top: -36px;
}

/* Strip off all button style */
.side-menu {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

.block-dash .block-promo2 .form-check-input:checked {
  background-color: #4D6530;
  border-color: #4D6530;
}

.block-dash .block-promo2 .form-check-input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px rgba(77, 101, 48, 0.267);
}

.block-dash .block-promo3 {
  border: 1px solid #febd69;
}

.block-dash .block-promo3 h4 {
  background: #febd69;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  position: absolute;
  padding: 7px 20px;
  border-radius: 5px 5px 0px 0;
  left: -1px;
  top: -36px;
}

.block-dash .block-promo2 .form-check-input:checked {
  background-color: #4D6530;
  border-color: #4D6530;
}

.block-dash .block-promo2 .form-check-input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px rgba(77, 101, 48, 0.267);
}

.block-dash .block-promo3 {
  border: 1px solid #febd69;
}

.block-dash .block-promo3 h4 {
  background: #febd69;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  position: absolute;
  padding: 7px 20px;
  border-radius: 5px 5px 0px 0;
  left: -1px;
  top: -36px;
}

.block-dash .block-promo3 .form-check-input:checked {
  background-color: #febd69;
  border-color: #febd69;
}

.block-dash .block-promo3 .form-check-input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #febd6969;
}

.block-dash .block-promo4 {
  border: 1px solid #dc3545;
}

.block-dash .block-promo4 h4 {
  background: #dc3545;
  display: inline-block;
  font-size: 18px;
  color: #fff;
  position: absolute;
  padding: 7px 20px;
  border-radius: 5px 5px 0px 0;
  left: -1px;
  top: -36px;
}

.block-dash .block-promo4 .form-check-input:checked {
  background-color: #dc3545;
  border-color: #dc3545;
}

.block-dash .block-promo4 .form-check-input:focus {
  border: 1px solid transparent;
  box-shadow: 0 0 0 5px #dc354569;
}

.block-dash .btn-post {
  background: #57DD43;
  color: #fff;
  padding: 15px 50px;
  border-radius: 10px;
}

label span {
  font-size: 18px;
}

.global-div .modal-content {
  border: none;
}

.global-div .modal-title {
  font-family: 'Rubik', sans-serif;
  color: #152e48;
  font-weight: 400;
}

.global-div .modal .item {
  height: 520px;
}

.global-div .modal .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.global-div .modal h3 {
  color: #152e48;
  font-weight: 400;
  font-family: 'Rubik', sans-serif;
  margin-bottom: 20px;
}

.global-div .modal h4 {
  color: #152e48;
  opacity: .7;
  font-size: 18px;
  font-weight: 400;
}

.global-div .modal .text-star {
  position: relative;
}

.global-div .modal .text-star .badge {
  position: absolute;
  color: #152e48;
  display: inline-block;
  font-size: 18px;
  right: 0;
}

.global-div .modal .text-star .badge.bg-green {
  background: #57DD43;
  border-radius: 25px;
  color: #fff;
  padding: 7px 14px;
  top: 0px;
}

.global-div .modal .text-star .sm-badge {
  position: relative;
  display: inline-block;
  background: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 25px;
}

.global-div .modal .price {
  color: #57DD43;
  font-family: 'Rubik';
  font-weight: 700;
}

.global-div .modal .text-center svg {
  width: 30px;
  height: 30px;
}

.global-div .modal .text-center h5 {
  opacity: .5;
  font-size: 15px;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-fliter {
  position: relative;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.041);
  padding: 30px 40px;
  border-radius: 10px;
}

.card-fliter h5 {
  color: #152e48;
  font-weight: 400;
  font-size: 18px;
  font-family: 'Rubik';
  margin-bottom: 20px;
}

.card-fliter ul {
  list-style: none;
  padding-left: 0;
}

.card-fliter ul li {
  position: relative;
  width: 100%;
}

.card-fliter ul li a {
  position: relative;
  width: 100%;
  display: block;
  color: #6c7072;
  padding-bottom: 20px;
  transition: .5s;
}

.card-fliter ul li a:hover {
  color: #57DD43;
}

.card-fliter ul li a .fas {
  position: absolute;
  right: 0;
  top: 2px;
}

.card-fliter form .btn {
  background: #57DD43;
  color: #fff;
  border-radius: 10px;
}

.card-promo {
  position: relative;
  z-index: 2;
  padding: 50px 70px;
  border-radius: 25px;
  /* box-shadow: 0 5px 25px rgba(0, 0, 0, 0.041); */
  background: #fff;
  margin-top: -30px;
}

.card-promo .block-promotion .item img {
  height: 150px;
}

.card-promo .block-promotion {
  padding: 0;
}

.card-promo .block-promotion h4 {
  font-size: 14px;
}

.card-promo .block-promotion .price {
  font-size: 14px;
}

.all-products .card .far {
  color: #febd69;
}