@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* --- base reset --- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; }
button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; }
table { border-collapse: collapse; border-spacing: 0; }
td, th { padding: 0; }
img { border: 0; }

body {
  background: #e5f0f6 url("../img/bg.png");
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

body.fixed {
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  width: 1320px;
  margin: 0 auto;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  .container {
    width: 920px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 919px) {
  .container {
    width: 95%;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mx-auto {
  margin: auto;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.m-0 {
  margin: 0 !important;
}

.w-49 {
  width: 49%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-container {
  z-index: 99999999;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999998;
}

#header .top {
  background: #eee;
  padding: 5px 0 0 0;
}

#header .top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 579px) {
  #header .top .container {
    display: block;
  }
}

@media only screen and (max-width: 579px) {
  #header .top .logo {
    display: block;
    text-align: center;
  }
  #header .top .logo img {
    max-width: 250px;
  }
}

#header .top .top-right {
}

#header .top .top-right .lang-area {
  overflow: hidden;
}

@media only screen and (max-width: 579px) {
  #header .top .top-right .lang-area {
    text-align: center;
    margin-top: 20px;
    display: none;
  }
}

#header .top .top-right .lang-area .language {
  color: #333;
  font-size: 15px;
  display: inline-block;
}

@media only screen and (max-width: 579px) {
  #header .top .top-right .lang-area .language {
    float: none;
  }
}

#header .top .top-right .lang-area .language .fas {
  margin-right: 5px;
}

#header .top .top-right .cart {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  background: #ca324e;
  border-radius: 20px;
  color: #fff;
  padding: 8px 15px;
  margin-top: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 579px) {
  #header .top .top-right .cart {
    text-align: center;
    display: none;
  }
}

#header .top .top-right .cart .fas {
  margin-right: 5px;
}

#header .top .top-right .cart:hover {
  opacity: 0.6;
}

#header .navbar {
  background: #0072a9;
}

#header .navbar .mobile-header {
  display: none;
}

@media only screen and (max-width: 919px) {
  #header .navbar {
    left: -100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    bottom: 0;
    width: 100%;
    overflow: auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  #header .navbar .mobile-header {
    display: block;
  }
  #header .navbar .mobile-header .m-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
  }
  #header .navbar .mobile-header .language {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
  }
  #header .navbar.open {
    left: 0;
  }
  #header .navbar .container {
    width: 100%;
  }
  #header .navbar ul.nav {
    display: block !important;
    margin-top: 50px !important;
  }
  #header .navbar ul.nav .nav-item {
    margin-right: 0 !important;
  }
  #header .navbar ul.nav .nav-item .nav-link {
    width: 100% !important;
    display: block !important;
    padding: 0 !important;
  }
  #header .navbar ul.nav .nav-item.dropdown {
    position: static !important;
    height: auto !important;
  }
  #header .navbar ul.nav .nav-item.dropdown.active .nav-link:after {
    content: "\f106";
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
  }
  #header .navbar ul.nav .nav-item.dropdown .menu {
    position: static !important;
    top: 0 !important;
    width: 96% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    -webkit-box-shadow: 0 0 0 !important;
    box-shadow: 0 0 0 !important;
    display: none !important;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu.open {
    display: block !important;
    padding: 12px !important;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu ul li {
    background: #eee !important;
    width: 100% !important;
    margin-right: 0px !important;
    margin-bottom: 5px !important;
    border-bottom: 1px solid #ccc !important;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu ul li:hover {
    background: #1497d3;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu ul li:hover a {
    color: #fff;
  }
  #header .navbar ul.nav .nav-item.dropdown .menu ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    color: #007fbc;
  }
}

@media only screen and (max-width: 919px) and (max-width: 919px) {
  #header .navbar ul.nav .nav-item.dropdown .menu ul li a {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 919px) {
  #header .navbar ul.nav .nav-item.dropdown .menu ul li a img {
    width: 40px;
    height: 40px;
    border-right: 1px solid #b09b59;
    margin-right: 10px;
  }
}

@media only screen and (max-width: 919px) and (max-width: 919px) {
  #header .navbar ul.nav .nav-item.dropdown .menu ul li a img {
    display: none;
  }
}

#header .navbar ul.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  justify-content: center;
}

#header .navbar ul.nav .nav-item {
  height: 40px;
  line-height: 40px;
  margin-right: 10px;
}

#header .navbar ul.nav .nav-item:last-child {
  margin-right: 0;
}

#header .navbar ul.nav .nav-item .nav-link {
  color: #fff;
  padding: 0 10px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  text-align: center;
}

#header .navbar ul.nav .nav-item .nav-link.active,
#header .navbar ul.nav .nav-item .nav-link:hover {
  background: #005680;
}

#header .navbar ul.nav .nav-item .menu {
  z-index: -999;
  display: none;
}

#header .navbar ul.nav .nav-item.dropdown .nav-link:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-left: 10px;
  font-size: 12px;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu {
  position: absolute;
  top: 100%;
  width: 1115px;
  left: 0;
  z-index: 999;
  background: url("../img/bg.png");
  display: block;
  padding: 12px;
  -webkit-box-shadow: 0px 10px 30px #555;
  box-shadow: 0px 10px 30px #555;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu.open {
  display: block !important;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li {
  background: #eee;
  width: 215px;
  margin-right: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li:nth-child(5n + 0) {
  margin-right: 0;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li:hover {
  background: #1497d3;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li:hover a {
  color: #fff;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 13px;
  color: #007fbc;
}

@media only screen and (max-width: 919px) {
  #header .navbar ul.nav .nav-item.dropdown:hover .menu ul li a {
    padding-left: 10px;
    width: 100%;
  }
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li a img {
  width: 40px;
  height: 40px;
  border-right: 1px solid #b09b59;
  margin-right: 10px;
}

@media only screen and (max-width: 919px) {
  #header .navbar ul.nav .nav-item.dropdown:hover .menu ul li a img {
    display: none;
  }
}

#header .mobile-nav {
  display: none;
  background: #0072a9;
  padding: 10px 0;
  color: #fff;
}

#header .mobile-nav .nav-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .mobile-nav .nav-top .cart {
  margin: auto;
  color: #fff;
}

#header .mobile-nav .nav-top .cart .fas {
  margin-right: 10px;
}

#header .mobile-nav .search-bar {
  margin-top: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: none;
}

#header .mobile-nav .search-bar.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#header .mobile-nav .search-bar input {
  width: 100%;
  padding: 10px;
  color: #666;
}

#header .mobile-nav .search-bar button {
  background: none;
  color: #ffffff;
  border: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  margin-left: 20px;
}

@media only screen and (min-width: 320px) and (max-width: 919px) {
  #header .mobile-nav {
    display: block;
  }
}

#header .bottom {
  height: 50px;
  width: 850px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (min-width: 320px) and (max-width: 919px) {
  #header .bottom {
    display: none;
  }
}

#header .bottom .previous-visits {
  background: url(../img/pv.png);
  height: 40px;
  width: 248px;
  z-index: 25;
  position: absolute;
  left: 0px;
  display: block;
}

#header .bottom .search-area {
  background: url(../img/search.png);
  height: 45px;
  width: 641px;
  z-index: 23;
  position: absolute;
  right: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header .bottom .search-area .search-form {
  margin-left: 280px;
}

#header .bottom .search-area .search-form input {
  background: #fff;
  height: 25px;
  width: 270px;
  font-size: 14px;
  border: 0;
  padding: 0 10px;
}

#header .bottom .search-area .search-form .btn {
  width: 50px;
  height: 30px;
  border: none;
  background: none;
  font-size: 14px;
  color: #fff;
  font-weight: bold;
}

#main {
  margin-top: 160px;
  margin-bottom: 50px;
}

#main.mt-250 {
  margin-top: 250px;
}

#main .slider {
  position: relative;
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
}

#main .slider .slide {
  height: 300px;
}

#main .slider .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: #007fbc;
  border: 1px solid #fff;
  z-index: 99;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .slider .btn:hover {
  background: #fff;
  color: #007fbc;
}

#main .slider .btn.prev {
  left: 20px;
}

#main .slider .btn.next {
  right: 20px;
}

#main .home-cats {
  border-radius: 12px;
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #eee;
}

#main .home-cats .col-2 {
  margin-right: 20px;
  margin-bottom: 20px;
  width: 234px;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  #main .home-cats .col-2 {
    width: 129px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 919px) {
  #main .home-cats .col-2 {
    width: 30.6666666667%;
  }
  #main .home-cats .col-2:nth-child(3n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 580px) and (max-width: 767px) {
  #main .home-cats .col-2 {
    width: 48%;
  }
  #main .home-cats .col-2:nth-child(2n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 320px) and (max-width: 579px) {
  #main .home-cats .col-2 {
    width: 50%;
    margin-right: 0;
  }
}

#main .home-cats .product {
  border-top: 4px solid #1497d3 !important;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 580px) {
  #main .home-cats .product {
    margin-right: 5px;
  }
}

#main .home-cats .product .product-thumbnail-link {
  display: block;
}

#main .home-cats .product .product-thumbnail {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .home-cats .product .product-title {
  color: #007fbc;
  text-align: center;
  height: 50px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: bold;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .home-cats .product:hover .product-thumbnail {
  opacity: 0.6;
}

#main .home-cats .product:hover .product-title {
  color: #000;
}

#main .home-cats .w-430 {
  width: 50%;
}

#main .home-cats .w-430:nth-child(1) {
  margin-bottom: 20px;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  #main .home-cats .w-430 {
    width: 49%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 919px) {
  #main .home-cats .w-430 {
    width: 100%;
    margin-bottom: 20px;
  }
}

#main .home-cats .w-620 {
  width: 620px;
}

#main .home-cats .w-620:nth-child(1) {
  margin-bottom: 20px;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  #main .home-cats .w-620 {
    width: 49%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 919px) {
  #main .home-cats .w-620 {
    width: 100%;
    margin-bottom: 20px;
  }
}

#main .home-cats .box {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#main .home-cats .box .title-area {
  color: #007fbc;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  #main .home-cats .box .title-area {
    font-size: 20px;
  }
}

@media only screen and (max-width: 579px) {
  #main .home-cats .box .title-area {
    font-size: 16px;
  }
}

#main .home-cats .box .title-area .fas,
#main .home-cats .box .title-area .far {
  margin-right: 10px;
}

#main .home-cats .box .title-area .all {
  font-size: 12px;
  text-shadow: 1px 1px 1px #fff;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  margin-left: auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .home-cats .box .title-area .all:hover {
  color: #017fbd;
}

#main .home-cats .box .title-area .all:before {
  content: "[";
}

#main .home-cats .box .title-area .all:after {
  content: "]";
}

#main .home-cats .box .title-area .btn {
  background: #007fbc;
  border: 1px solid #fff;
  z-index: 99;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

#main .home-cats .box .title-area .btn .fas,
#main .home-cats .box .title-area .btn .far {
  margin-right: 0;
}

#main .home-cats .box ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main .home-cats .box ul.list li {
  margin-bottom: 10px;
}

#main .home-cats .box ul.list li:last-child {
  margin-bottom: 0;
}

#main .home-cats .box ul.list li a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .home-cats .box ul.list li:before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 5px;
}

#main .home-cats .box ul.list li:hover a {
  color: #017fbd;
}

#main .home-cats .box.logos-area .swiper-slide img {
  width: 100%;
}

#main .home-cats .box .content-area p {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}

#main .home-cats .box .more {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  position: relative;
  margin: 20px 0;
}

#main .home-cats .box .more a {
  color: #2b5464;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 4px;
  max-width: 120px;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#main .home-cats .box .more a:before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 5px;
}

#main .home-cats .box .more a.open:before {
  content: "\f106";
}

#main .main-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

#main .main-box .w-240 {
  width: 240px;
}

@media only screen and (min-width: 768px) and (max-width: 919px) {
  #main .main-box .w-240 {
    width: 35%;
  }
}

@media only screen and (max-width: 767px) {
  #main .main-box .w-240 {
    display: none;
  }
}

#main .main-box .w-810 {
  width: calc(100% - 260px);
}

@media only screen and (min-width: 920px) and (max-width: 1115px) {
  #main .main-box .w-810 {
    width: 600px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 919px) {
  #main .main-box .w-810 {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) {
  #main .main-box .w-810 {
    width: 100%;
  }
}

#main .main-box .sidebar .catalog-link {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  border-radius: 3px;
  background: #d03350;
  display: block;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}

#main .main-box .sidebar .catalog-link:before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
  position: absolute;
  left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .sidebar .catalog-link:hover:before {
  left: 15px;
}

#main .main-box .sidebar .catalog-link.color-1 {
  background: #007fbc;
}

#main .main-box .sidebar .catalog-link.color-2 {
  background: #009ef0;
}

#main .main-box .sidebar .widget-box {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  margin-bottom: 10px;
}

#main .main-box .sidebar .widget-box .widget-title {
  font-size: 20px;
  color: #007fbc;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

#main .main-box .sidebar .widget-box .widget-title .far,
#main .main-box .sidebar .widget-box .widget-title .fas {
  margin-right: 10px;
}

#main .main-box .sidebar .widget-box ul.cats {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main .main-box .sidebar .widget-box ul.cats li {
  background: #eee;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

#main .main-box .sidebar .widget-box ul.cats li:hover {
  background: #1497d3;
}

#main .main-box .sidebar .widget-box ul.cats li:hover a {
  color: #fff;
}

#main .main-box .sidebar .widget-box ul.cats li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0072a9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .sidebar .widget-box ul.cats li a .cat-thumbnail {
  border-right: 1px solid #b09b59;
  width: 45px;
  height: 45px;
  display: block;
  margin-right: 5px;
  object-fit: contain;
  background-color: #eeeeee;
}

#main .main-box .sidebar .widget-box ul.side-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main .main-box .sidebar .widget-box ul.side-list .item {
  margin: 10px 0;
}

#main .main-box .sidebar .widget-box ul.side-list .item .item-link {
  color: #000;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .sidebar .widget-box ul.side-list .item .item-link:before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 5px;
}

#main .main-box .sidebar .widget-box ul.side-list .item .item-link:hover {
  color: #017fbd;
}

#main .main-box .sidebar .cart-box {
  background: #ff6100;
  color: #fff;
  padding: 10px;
  font-size: 12px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  border-radius: 3px;
}

#main .main-box .sidebar .cart-box .cart-title {
  font-size: 16px;
  font-weight: bold;
}

#main .main-box .sidebar .cart-box .cart-title .far,
#main .main-box .sidebar .cart-box .cart-title .fas {
  margin-right: 10px;
}

#main .main-box .sidebar .cart-box .cart-link {
  display: inline-block;
  background: #0072a9;
  color: #fff;
  text-decoration: none;
  width: auto;
  padding: 5px 9px 5px 9px;
  margin-top: 7px;
  font-weight: bold;
  min-width: 40%;
  text-align: center;
  border: 1px solid #0072a9;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .sidebar .cart-box .cart-link:hover {
  background: #00aada;
}

#main .main-box .content-area {
  line-height: 25px;
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  #main .main-box .content-area.dfm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #main .main-box .content-area.dfm .box {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  #main .main-box .content-area.dfm .page-title.mbl {
    border: 1px solid #ddd;
    padding: 20px;
    line-height: 35px;
    font-size: 24px;
  }
}

#main .main-box .content-area .post a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .content-area .post a:hover {
  color: #017fbd;
}

#main .main-box .content-area .page-title {
  color: #007fbc;
  font-size: 30px;
  text-shadow: 1px 1px 1px #ccc;
  font-weight: normal;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  #main .main-box .content-area .page-title.mbl {
    display: none;
  }
}

#main .main-box .content-area .page-title.product-title {
  font-size: 24px;
  text-shadow: 2px 1px #fff;
  margin-bottom: 10px;
}

#main .main-box .content-area .page-title.product-title .far,
#main .main-box .content-area .page-title.product-title .fas {
  margin-right: 5px;
  font-size: 20px;
}

#main .main-box .content-area .gallery .image-link {
  display: inline-block;
}

#main .main-box .content-area .gallery .image-link img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
  object-fit: cover;
  display: inline-block;
}

#main .main-box .content-area .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main .main-box .content-area .product-list.cat .product {
  -webkit-box-shadow: 3px 3px 3px #f3723e;
  box-shadow: 3px 3px 3px #f3723e;
}

#main .main-box .content-area .product-list.cat .product img {
  height: 264px;
  display: block;
}

#main .main-box .content-area .product-list.cat .product .product-title {
  font-size: 16px;
  line-height: 30px;
}

#main .main-box .content-area .product-list.cat .product:hover img {
  opacity: 1;
}

#main .main-box .content-area .product-list.product-others-list .product {
  -webkit-box-shadow: 3px 3px 3px #007dc5;
  box-shadow: 3px 3px 3px #007dc5;
}

#main .main-box .content-area .product-list.normal-list .product {
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
}

#main
  .main-box
  .content-area
  .product-list.normal-list
  .product
  .product-title {
  text-transform: none;
  font-family: Arial, Helvetica, sans-serif;
}

#main .main-box .content-area .product-list .product {
  background: #fff;
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-right: 20px;
  margin-bottom: 20px;
  display: block;
  width: 23%;
  color: #007fbc;
}

#main .main-box .content-area .product-list .product.new {
  position: relative;
}

#main .main-box .content-area .product-list .product.new:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/yeni.png");
  width: 46px;
  height: 40px;
  z-index: 9;
}

@media only screen and (min-width: 1115px) {
  #main .main-box .content-area .product-list .product:nth-child(4n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 580px) and (max-width: 1115px) {
  #main .main-box .content-area .product-list .product {
    width: 30%;
  }
  #main .main-box .content-area .product-list .product:nth-child(3n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 480px) and (max-width: 580px) {
  #main .main-box .content-area .product-list .product {
    width: 47%;
  }
  #main .main-box .content-area .product-list .product:nth-child(2n + 0) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 480px) {
  #main .main-box .content-area .product-list .product {
    width: 48%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: 10px;
  }
  #main .main-box .content-area .product-list .product:nth-child(2n + 0) {
    margin-right: 0;
  }
  #main .main-box .content-area .product-list .product img {
    height: 125px !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

#main .main-box .content-area .product-list .product img {
  width: 100%;
  height: 157px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 919px) {
  #main .main-box .content-area .product-list .product img {
    height: 125px !important;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

#main .main-box .content-area .product-list .product .product-title {
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  line-height: 15px;
  padding: 10px 5px;
}

#main .main-box .content-area .product-list .product .product-title a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: #007fbc;
}

#main .main-box .content-area .product-list .product:hover .product-title a {
  color: #000;
}

#main .main-box .content-area .product-list .product:hover img {
  opacity: 0.6;
}

#main .main-box .content-area .cat-head {
  margin: 20px 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 580px) {
  #main .main-box .content-area .cat-head {
    display: block;
  }
  #main .main-box .content-area .cat-head .total {
    width: 100%;
    text-align: center;
  }
  #main .main-box .content-area .cat-head select {
    width: 100%;
    margin-top: 20px;
  }
}

#main .main-box .content-area .cat-head select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
}

#main .main-box .content-area .product-content-area {
  margin-bottom: 20px;
}

#main .main-box .content-area .product-content-area .w-320 {
  width: 350px;
}

@media only screen and (min-width: 991px) and (max-width: 1115px) {
  #main .main-box .content-area .product-content-area .w-320 {
    width: 280px;
  }
}

@media only screen and (max-width: 990px) {
  #main .main-box .content-area .product-content-area .w-320 {
    width: 100%;
  }
}

#main .main-box .content-area .product-content-area .w-460 {
  width: calc(100% - 370px);
}

@media only screen and (min-width: 991px) and (max-width: 1115px) {
  #main .main-box .content-area .product-content-area .w-460 {
    width: 300px;
  }
}

@media only screen and (max-width: 990px) {
  #main .main-box .content-area .product-content-area .w-460 {
    width: 100%;
    margin-top: 20px;
  }
}

#main .main-box .content-area .product-content-area .product-thumbnail {
  -webkit-box-shadow: 3px 3px 3px #007dc5;
  box-shadow: 3px 3px 3px #007dc5;
}

#main .main-box .content-area .product-content-area .product-thumbnail a {
  position: relative;
  display: block;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-thumbnail
  a:before {
  content: "";
  background: url("../img/desen_sol.png");
  position: absolute;
  top: 0;
  left: 0;
  width: 95px;
  height: 105px;
  z-index: 9;
}

#main .main-box .content-area .product-content-area .product-thumbnail a:after {
  content: "";
  background: url("../img/desen_sag.png");
  position: absolute;
  bottom: 0;
  right: 0;
  width: 95px;
  height: 105px;
  z-index: 9;
}

#main .main-box .content-area .product-content-area .product-thumbnail img {
  min-height: 402px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

#main .main-box .content-area .product-content-area .product-code {
  background: #007dc5;
  padding: 5px;
  border-radius: 3px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin: 10px 0 5px;
}

#main .main-box .content-area .product-content-area .product-code .code {
  display: block;
  margin-top: 10px;
}

#main .main-box .content-area .product-content-area .addcart {
  border: 1px solid #0f719e;
  background: #f4ebdc;
  height: 38px;
  padding: 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  line-height: 38px;
  /* text-transform: uppercase; */
  display: block;
  color: #007fbc;
  margin: 0 50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 991px) and (max-width: 1115px) {
  #main .main-box .content-area .product-content-area .addcart {
    margin: 0;
  }
}

#main .main-box .content-area .product-content-area .addcart:hover {
  background: #66b1dc;
  color: #fff;
  border-color: #004465;
}

#main .main-box .content-area .product-content-area .addcart:before {
  content: "\f07a";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 16px;
  margin-right: 10px;
}

#main .main-box .content-area .product-content-area .quote-btn {
  background: #f4ebdc;
  border: 1px solid #007fbc;
  color: #007fbc;
  line-height: 18px;
  text-align: center;
  padding: 8px;
  margin-top: 10px;
  display: block;
  border-radius: 4px;
}

#main .main-box .content-area .product-content-area .quote-btn span {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

#main .main-box .content-area .product-content-area .other-images-area {
  margin: 10px 0;
}

#main .main-box .content-area .product-content-area .other-images-area .title {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

#main
  .main-box
  .content-area
  .product-content-area
  .other-images-area
  .swiper {
  margin-top: 20px;
}

#main .main-box .content-area .product-content-area .other-images-area img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 3px;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#main .main-box .content-area .product-content-area .box .box-title {
  font-weight: bold;
  text-shadow: 2px 1px #fff;
  padding: 5px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}

#main .main-box .content-area .product-content-area .box .box-title.bt-none {
  border-top: none;
}

#main .main-box .content-area .product-content-area .box .box-title.red {
  color: #e91e63;
}

#main
  .main-box
  .content-area
  .product-content-area
  .box
  .box-title.font-normal {
  font-weight: bold;
  color: #545454;
}

#main .main-box .content-area .product-content-area .box .box-content {
  margin-top: 5px;
}

#main .main-box .content-area .product-content-area .rate .height {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

#main .main-box .content-area .product-content-area .rate .p-img {
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid #999;
}

#main .main-box .content-area .product-content-area .product-details .logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media only screen and (min-width: 991px) and (max-width: 1114px) {
  #main .main-box .content-area .product-content-area .product-details .logos {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .logos
  .logo {
  border: 1px solid #eee;
  text-align: center;
  padding: 5px;
  margin-right: 5px;
}

@media only screen and (min-width: 991px) and (max-width: 1114px) {
  #main
    .main-box
    .content-area
    .product-content-area
    .product-details
    .logos
    .logo {
    width: 49%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
  #main
    .main-box
    .content-area
    .product-content-area
    .product-details
    .logos
    .logo:nth-child(2n + 0) {
    margin-right: 0;
  }
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .logos
  .logo:last-child {
  margin-right: 0;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .logos
  .logo
  img {
  width: 36px;
  height: 20px;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .logos
  .logo
  span {
  display: block;
  font-size: 10px;
  font-weight: bold;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  border-top: 1px solid #a6a6a6;
  overflow: hidden;
  position: relative;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  p {
  max-width: 100%;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  .left {
  font-weight: bold;
  text-shadow: 2px 1px #fff;
  color: #545454;
  white-space: nowrap;
  min-width: 200px;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  .right {
  text-align: left;
  padding-left: 20px;
  position: relative;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  .warning {
  border: 2px solid #005b87;
  font-size: 14px;
  padding: 0 12px 0 12px;
  background: #eee;
  border-radius: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-shadow: 2px 1px #fff;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  .warning:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
  font-family: 14px;
}

#main .main-box .content-area .product-content-area .product-info,
#main .main-box .content-area .product-content-area .product-description {
  margin-top: 5px;
}

#main .main-box .content-area .item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#main .main-box .content-area .item-box .item {
  background: #eeeeee;
  border: 2px solid #eeeeee;
  width: 191px;
  margin-right: 10px;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1115px) {
  #main .main-box .content-area .item-box .item:nth-child(4n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 920px) and (max-width: 1115px) {
  #main .main-box .content-area .item-box .item {
    width: 189px;
  }
  #main .main-box .content-area .item-box .item:nth-child(3n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 480px) and (max-width: 919px) {
  #main .main-box .content-area .item-box .item {
    width: 47%;
  }
  #main .main-box .content-area .item-box .item:nth-child(2n + 0) {
    margin-right: 0;
    margin-left: auto;
  }
}

@media only screen and (max-width: 480px) {
  #main .main-box .content-area .item-box .item {
    width: 100%;
    margin-right: 0;
  }
}

#main .main-box .content-area .item-box .item .item-img {
  max-height: 280px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

#main .main-box .content-area .item-box .item .item-title {
  color: #0072a9;
  line-height: 22px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 5px 0;
  max-height: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#main .main-box .content-area .image-box .image {
  background: #fafafa;
  -webkit-box-shadow: 1px 1px 5px #ddd;
  box-shadow: 1px 1px 5px #ddd;
  padding: 15px;
  width: 19%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  margin-right: 20px;
}

#main .main-box .content-area .image-box .image img {
  width: 100%;
  max-height: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 1115px) {
  #main .main-box .content-area .image-box .image:nth-child(4n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 920px) and (max-width: 1115px) {
  #main .main-box .content-area .image-box .image {
    width: 17%;
  }
  #main .main-box .content-area .image-box .image:nth-child(4n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 919px) {
  #main .main-box .content-area .image-box .image {
    width: 22%;
  }
  #main .main-box .content-area .image-box .image:nth-child(3n + 0) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 670px) and (max-width: 767px) {
  #main .main-box .content-area .image-box .image {
    width: 17%;
  }
  #main .main-box .content-area .image-box .image:nth-child(4n + 0) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 669px) {
  #main .main-box .content-area .image-box .image {
    width: 100%;
    margin-right: 0;
  }
}

#main .main-box .content-area .form-box .icon-box {
  margin-right: 20px;
  font-size: 16px;
}

#main .main-box .content-area .form-box .right-area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#main .main-box .content-area .form-box .right-area input {
  width: 100%;
  height: 38px;
  border: 1px solid #d1d1d1;
  padding: 0 10px;
}

#main .main-box .content-area .form-box .right-area input:focus {
  background: #f5f5f5;
  border: 1px solid #999 !important;
}

#main .main-box .content-area .form-box .right-area button {
  border: 1px solid #0f719e;
  background: #1497d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  margin-top: 20px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .content-area .form-box .right-area button:hover {
  opacity: 0.6;
}

#main .main-box .content-area .post-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

#main .main-box .content-area .post-list .post-box {
  padding: 0 10px;
  width: 25%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media only screen and (max-width: 580px) {
  #main .main-box .content-area .post-list .post-box {
    width: 100%;
  }
}

#main .main-box .content-area .post-list .post-box .post-link {
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  border-radius: 12px;
  display: block;
}

#main .main-box .content-area .post-list .post-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

#main .main-box .content-area .post-list .post-box .title-box {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#main .main-box .content-area .post-list .post-box .title-box .title {
  color: #007fbc;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

#main .main-box .content-area .post-list .post-box:hover .title-box .title {
  color: #000;
}

#main .main-box .content-area .post-list.news-list {
  padding: 0 10px;
}

#main .main-box .content-area .post-list.news-list .post-box {
  margin: 0;
  padding: 0 10px;
  list-style: none;
  margin-bottom: 20px;
  width: 50%;
}

#main .main-box .content-area .post-list.news-list .post-box .title-box {
  padding: 5px 10px;
}

#main .main-box .content-area .post-list.news-list .post-box .title-box .title {
  position: relative;
  padding-left: 20px;
}

#main
  .main-box
  .content-area
  .post-list.news-list
  .post-box
  .title-box
  .title:before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  left: 0;
}

#main .main-box .content-area .post-content img {
  max-width: 100%;
}

#main .main-box .content-area.montages-area .product-list .product {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

#main .main-box .content-area.montages-area .product-list .product img {
  height: 210px;
}

#main
  .main-box
  .content-area.montages-area
  .product-list
  .product
  .product-title
  a {
  font-size: 16px;
}

#main .main-box .box {
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#main .main-box .box .title-area {
  color: #007fbc;
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

@media only screen and (min-width: 920px) and (max-width: 1114px) {
  #main .main-box .box .title-area {
    font-size: 20px;
  }
}

@media only screen and (max-width: 579px) {
  #main .main-box .box .title-area {
    font-size: 16px;
  }
}

#main .main-box .box .title-area .fas,
#main .main-box .box .title-area .far {
  margin-right: 10px;
}

#main .main-box .box .title-area .btn {
  background: #007fbc;
  border: 1px solid #fff;
  z-index: 99;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

#main .main-box .box .title-area .btn .fas,
#main .main-box .box .title-area .btn .far {
  margin-right: 0;
}

#main .main-box .box .more {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #eee;
  position: relative;
  margin: 20px 0;
}

#main .main-box .box .more a {
  color: #2b5464;
  background: #ffffff;
  border: 1px solid #eee;
  padding: 4px;
  max-width: 120px;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#main .main-box .box .more a:before {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 5px;
}

#main .main-box .box .more a.open:before {
  content: "\f106";
}

#main .main-box .h-r .page-title {
  font-size: 15px;
  font-weight: bold;
}

#main .main-box .h-r .hr-form .title {
  font-weight: bold;
  margin-bottom: 5px;
  color: #1497d3;
  font-size: 15px;
}

#main .main-box .h-r .hr-form .input-box {
  width: 49%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  #main .main-box .h-r .hr-form .input-box {
    width: 100%;
  }
}

#main .main-box .h-r .hr-form .input-box.w-100 {
  width: 100%;
}

#main .main-box .h-r .hr-form .input-box input,
#main .main-box .h-r .hr-form .input-box select {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #d1d1d1;
  font-size: 14px;
}

#main .main-box .h-r .hr-form .input-box input:focus,
#main .main-box .h-r .hr-form .input-box select:focus {
  background: #f5f5f5;
  border-color: #999;
}

#main .main-box .h-r .hr-form .input-box input[type="file"] {
  border: 0;
}

#main .main-box .h-r .hr-form .input-box textarea {
  width: 100%;
  height: 70px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #d1d1d1;
  font-size: 14px;
}

#main .main-box .h-r .hr-form .input-box textarea:focus {
  background: #f5f5f5;
  border-color: #999;
}

@media only screen and (min-width: 768px) {
  #main .main-box .h-r .hr-form .input-box:nth-child(2n + 0) {
    margin-left: auto;
  }
}

#main .main-box .h-r .hr-form button {
  border: 1px solid #0f719e;
  background: #1497d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .h-r .hr-form button:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  #main .main-box .contact-box {
    width: 100%;
  }
}

#main .main-box .contact-box .title-area {
  font-size: 32px;
}

#main .main-box .contact-box .info {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
}

#main .main-box .contact-box .address {
  font-size: 15px;
}

#main .main-box .contact-box .address .bold {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#main .main-box .contact-box .address .address-line {
  display: block;
  margin: 3px 0;
}

#main .main-box .contact-box .phone {
  margin: 20px 0;
  font-size: 15px;
}

#main .main-box .contact-box .phone .bold {
  font-weight: bold;
  text-transform: uppercase;
}

#main .main-box .contact-box .phone a {
  margin-left: 5px;
  text-decoration: underline;
  color: #000;
}

#main .main-box .contact-box .phone .fsl {
  font-size: 9px;
  position: relative;
  top: -2px;
}

#main .main-box .contact-box .email {
  font-size: 15px;
  margin-top: 20px;
}

#main .main-box .contact-box .email .title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#main .main-box .contact-box .email .email-line span {
  font-weight: bold;
  margin-right: 20px;
}

#main .main-box .contact-box .email .email-line a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .contact-box .email .email-line a:hover {
  color: #017fbd;
}

@media only screen and (max-width: 768px) {
  #main .main-box .contact-form-content {
    width: 100%;
    margin-top: 20px;
  }
}

#main .main-box .contact-form-content .title-area {
  font-weight: bold;
}

#main .main-box .contact-form-content .contact-form .input-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

#main .main-box .contact-form-content .contact-form .input-box:last-child {
  margin-bottom: 0;
}

#main .main-box .contact-form-content .contact-form .input-box .input-icon {
  width: 30px;
  color: #000;
}

#main .main-box .contact-form-content .contact-form .input-box .input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#main .main-box .contact-form-content .contact-form .input-box .input input {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #d1d1d1;
  font-size: 14px;
}

#main
  .main-box
  .contact-form-content
  .contact-form
  .input-box
  .input
  input:focus {
  background: #f5f5f5;
  border-color: #999;
}

#main .main-box .contact-form-content .contact-form .input-box .input textarea {
  width: 100%;
  height: 70px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #d1d1d1;
  font-size: 14px;
}

#main
  .main-box
  .contact-form-content
  .contact-form
  .input-box
  .input
  textarea:focus {
  background: #f5f5f5;
  border-color: #999;
}

#main .main-box .contact-form-content .contact-form button {
  border: 1px solid #0f719e;
  background: #1497d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  font-weight: bold;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-left: 30px;
}

#main .main-box .contact-form-content .contact-form button:hover {
  opacity: 0.6;
}

#main .main-box .showroom-box-area .info {
  font-size: 14px;
  margin-bottom: 10px;
}

#main .main-box .showroom-box-area .info:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
}

#main .main-box .showroom-box-area .gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}

#main .main-box .showroom-box-area .gallery .gallery-link {
  width: 25%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  #main .main-box .showroom-box-area .gallery .gallery-link {
    width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  #main .main-box .showroom-box-area .gallery .gallery-link {
    width: 50%;
    margin-bottom: 20px;
  }
}

#main .main-box .showroom-box-area .gallery .gallery-link img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-shadow: 3px 3px 3px #007dc5;
  box-shadow: 3px 3px 3px #007dc5;
}

#main .main-box .road-info-box {
  border: 2px dashed #ffff0f;
  width: 100%;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  background: #007fbc;
  padding: 10px 30px 10px 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px 0;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  height: 70px;
}

@media only screen and (max-width: 580px) {
  #main .main-box .road-info-box {
    font-size: 16px;
    line-height: 30px;
    height: 100px;
  }
  #main .main-box .road-info-box:before {
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

#main .main-box .road-info-box:before {
  content: "\f018";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 40px;
  color: #ffff0f;
  position: absolute;
  left: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .road-info-box span {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#main .main-box .road-info-box:hover:before {
  left: 15px;
}

#main .main-box .direction-box-area .info {
  font-size: 14px;
  margin-bottom: 10px;
}

#main .main-box .direction-box-area .info:before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
}

#main .main-box .direction-box-area ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#main .main-box .direction-box-area ul.list .item {
  margin: 5px 0;
}

#main .main-box .direction-box-area ul.list .item a {
  color: #000;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .direction-box-area ul.list .item a:before {
  content: "\f167";
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #dd0000;
  margin-right: 10px;
  font-size: 24px;
}

#main .main-box .direction-box-area ul.list .item a:hover {
  color: #017fbd;
}

#main .main-box .map-box {
  width: 100%;
  height: 400px;
  margin-top: 20px;
}

#main .main-box .page-title-line {
  color: #007fbc;
  font-size: 30px;
  text-shadow: 1px 1px 1px #ccc;
  font-weight: normal;
  margin: 20px 0;
}

#main .main-box .responsive-table .table-head {
  padding: 12px 10px;
  background: #e0e0e0;
  border: 1px solid #ddd;
}

@media only screen and (max-width: 579px) {
  #main .main-box .responsive-table .table-head {
    display: block;
  }
  #main .main-box .responsive-table .table-head .col {
    padding: 20px 0;
    text-align: center;
  }
  #main .main-box .responsive-table .table-head .col.mw-50 {
    max-width: 100% !important;
  }
}

#main .main-box .responsive-table .table-head .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bold;
  font-size: 15px;
}

#main .main-box .responsive-table .table-head .col:first-child {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

#main .main-box .responsive-table .table-head .col.text-center {
  text-align: center;
}

#main .main-box .responsive-table .table-head .col.mw-50 {
  max-width: 50px;
}

#main .main-box .responsive-table .table-box-content .table-box {
  border: 1px solid #ddd;
}

@media only screen and (max-width: 579px) {
  #main .main-box .responsive-table .table-box-content .table-box {
    display: block;
  }
  #main .main-box .responsive-table .table-box-content .table-box .col {
    padding: 20px 0;
    text-align: center;
  }
  #main .main-box .responsive-table .table-box-content .table-box .col.mw-50 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    max-width: 50% !important;
  }
}

#main .main-box .responsive-table .table-box-content .table-box .col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 10px 0;
  line-height: 40px;
}

#main
  .main-box
  .responsive-table
  .table-box-content
  .table-box
  .col:first-child {
  padding-left: 10px;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

#main .main-box .responsive-table .table-box-content .table-box .col.mw-50 {
  max-width: 50px;
}

#main .main-box .responsive-table .table-box-content .table-box .col input {
  width: 100%;
}

#main
  .main-box
  .responsive-table
  .table-box-content
  .table-box
  .col.text-center {
  text-align: center;
}

#main .main-box .responsive-table .table-box-content .table-box .col a {
  color: #000;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .responsive-table .table-box-content .table-box .col a:hover {
  color: #017fbd;
}

#main .main-box .quote-form .col.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

@media only screen and (max-width: 579px) {
  #main .main-box .quote-form .col.flex-3 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

#main .main-box .quote-form .col.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 579px) {
  #main .main-box .quote-form .col.flex-1 {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
}

@media only screen and (max-width: 579px) {
  #main .main-box .quote-form .textarea-box {
    display: block;
  }
}

#main .main-box .quote-form .input-box {
  margin-right: 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 579px) {
  #main .main-box .quote-form .input-box {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    margin-bottom: 20px;
  }
  #main .main-box .quote-form .input-box:last-child {
    margin-bottom: 0;
  }
}

#main .main-box .quote-form .input-box:last-child {
  margin-right: 0;
}

#main .main-box .quote-form .input-box input,
#main .main-box .quote-form .input-box select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  font-size: 15px;
  width: 100%;
}

#main .main-box .quote-form .input-box input:focus,
#main .main-box .quote-form .input-box select:focus {
  border: 1px solid #999;
  background: #f5f5f5;
}

#main .main-box .quote-form .input-box textarea {
  height: 100px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  font-size: 15px;
  width: 100%;
  resize: none;
}

#main .main-box .quote-form .input-box textarea:focus {
  border: 1px solid #999;
  background: #f5f5f5;
}

#main .main-box .quote-form .button-box {
  margin-left: 20px;
}

@media only screen and (max-width: 579px) {
  #main .main-box .quote-form .button-box {
    margin-left: 0;
    margin-top: 20px;
  }
}

#main .main-box .quote-form .button-box button {
  border: 1px solid #0f719e;
  background: #1497d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  font-weight: bold;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .quote-form .button-box button:hover {
  opacity: 0.6;
}

#main .main-box .search-content-area {
  margin-top: 10px;
}

#main .main-box .search-content-area .search-form {
  margin-bottom: 20px;
}

#main .main-box .search-content-area .search-form input {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#main .main-box .search-content-area .search-form button {
  border: 1px solid #0f719e;
  background: #1497d3;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  height: 38px;
  padding: 0 16px;
  font-weight: bold;
  margin-left: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .search-content-area .search-form button:hover {
  opacity: 0.6;
}

#main .main-box .search-content-area .page-title.fs-26 {
  font-size: 26px;
}

#main .main-box .search-content-area .search-cats-box {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

#main .main-box .search-content-area .search-cats-box .col {
  width: 33.3333%;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media only screen and (max-width: 919px) {
  #main .main-box .search-content-area .search-cats-box .col {
    width: 50%;
  }
}

@media only screen and (max-width: 580px) {
  #main .main-box .search-content-area .search-cats-box .col {
    width: 100%;
  }
}

#main .main-box .search-content-area .search-cats-box .cat {
  border: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 16px;
}

#main .main-box .search-content-area .search-cats-box .cat img {
  max-width: 40px;
  max-height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

#main .main-box .search-content-area .search-cats-box .cat .title {
  color: #007fbc;
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#main .main-box .search-content-area .search-cats-box .cat:hover .title {
  color: #000000;
}

#footer .top {
  background: #007fbc;
  padding: 60px 0;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  #footer .top {
    padding: 60px 20px;
  }
}

#footer .top .col-3 {
  width: 315px;
  margin-right: 20px;
}

#footer .top .col-3:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1114px) {
  #footer .top .col-3 {
    width: 49%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #footer .top .col-3:nth-child(2n + 0) {
    margin-left: auto;
  }
}

@media only screen and (max-width: 767px) {
  #footer .top .col-3 {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0;
  }
}

#footer .top .logo {
  margin-bottom: 20px;
}

#footer .top ul.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .top ul.list li {
  font-size: 12px;
  margin: 5px 0;
  line-height: 15px;
}

#footer .top ul.list li a {
  color: #fff;
}

#footer .top ul.list.list-icon li {
  border-top: 1px solid #b1e3fb;
  padding: 8px 0;
  display: block;
  margin: 0;
}

#footer .top ul.list.list-icon li a {
  font-size: 13px;
  color: #b1e3fb;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#footer .top ul.list.list-icon li a:hover {
  color: #fff;
}

#footer .top ul.list.list-icon li a:before {
  content: "\f101";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
  font-size: 11px;
  color: #fff;
}

#footer .top .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

#footer .top .footer-social a {
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
}

#footer .top .footer-title {
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

#footer .top .footer-title .fas,
#footer .top .footer-title .far {
  margin-right: 10px;
}

#footer .bottom {
  background: #262a35;
  color: #8e95ac;
  padding: 20px 0px;
  text-align: center;
  font-size: 13px;
}

.menu-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-btn i {
  margin-left: 10px;
}

/* custom */

#header .logo img {
  max-width: 240px;
}

#header .logo {
  display: flex;
  align-items: center;
}

.header-main-menu {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px 20px;
  font-weight: 500;
  font-size: 16px;
  margin: 0;
}

.header-main-menu a {
  color: #042c3f;
}

@media (max-width: 992px) {
  .header-main-menu {
    display: none;
  }
}

#mobileMenuModal .modal-dialog {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #eee;
}
#mobileMenuModal .modal-dialog .logo img {
  max-width: 200px;
}
#mobileMenuModal .modal-dialog .modal-content {
  background-color: #eee;
  height: 100%;
  border: none;
}
#mobileMenuModal .modal-dialog .modal-content .modal-header {
  background-color: transparent;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#mobileMenuModal .modal-dialog .modal-content .modal-header button {
  background: none;
  color: white;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#mobileMenuModal .modal-dialog .modal-content .modal-header button i {
  margin-left: 10px;
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer .links {
  margin: 0.75rem 0;
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer .links a {
  color: var(--general-color-2);
  margin-bottom: 10px;
  width: 100%;
  display: block;
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer .links a i {
  color: var(--general-color-2);
  margin-right: 0.75rem;
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--general-color-2);
}
#mobileMenuModal .modal-dialog .modal-content .modal-footer .social-links li a {
  display: inline-block;
  padding: 0px 10px 0px 0px;
}

#mobileMenuModal .btn-close {
  position: absolute;
  top: 15px;
  right: 25px;
  background: none;
  color: white;
  font-size: 38px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: none;
  border: none;
  color: #222;
}

.show .btn-close {
  opacity: 1 !important;
}

.mobile-nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav ul li button {
  background-color: transparent;
  float: right;
  padding: 5px 15px;
  border: none;
  font-size: 20px;
}
.mobile-nav ul li button i {
  color: var(--general-color-2);
  font-size: 1.5rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mobile-nav ul li button.toggled i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.mobile-nav ul li a {
  color: var(--general-color-2);
  padding: 10px 15px;
  display: block;
}
.mobile-nav ul li ul {
  display: none;
  width: 100%;
}
.mobile-nav ul li ul li {
  padding-left: 1rem;
}
.mobile-nav ul li ul li a {
  text-transform: none;
  color: var(--general-color-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
}
.mobile-nav ul li ul li a::before {
  content: "\f86c";
  color: black;
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background: black;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}

.mobile-nav ul {
  padding: 0;
}

.modal figure {
  padding: 0;
  margin: 0;
  margin-left: 17px;
}

#mobileMenuModal .lang-area {
  display: flex;
  padding-left: 15px;
  font-size: 18px;
  color: #222 !important;
}

.header-main-menu .dropdown .drop-menu {
  position: absolute;
  top: 91px;
  z-index: 99;
  background: #eee;
  min-width: 180px;
  left: 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.3s ease;
}

.header-main-menu .nav-new-link {
  padding: 32px 0;
}

.header-main-menu li.dropdown {
  position: relative;
  padding: 34px 0;
}

.header-main-menu .dropdown .drop-menu a {
  padding: 12px 20px;
  display: block;
}

.header-main-menu .dropdown .drop-menu ul {
  padding: 0;
  list-style-type: none;
}

.header-main-menu .dropdown:hover .drop-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scaleY(1);
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item
  .right::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #a6a6a6;
  left: 0;
}

@media (max-width: 992px) {
  #main .home-cats .product .product-title {
    font-size: 14px;
    font-weight: 400;
  }

  #main .home-cats {
    padding: 5px;
  }

  #main .main-box {
    padding: 5px;
  }

  #main .main-box .content-area .post-list.news-list .post-box {
    width: 100%;
  }
  #main
    .main-box
    .content-area
    .product-content-area
    .product-details
    ul.list-details
    .detail-item
    .left {
    min-width: 160px;
  }

  #main
    .main-box
    .content-area
    .product-content-area
    .product-details
    ul.list-details
    .detail-item
    .right {
    padding-left: 10px;
  }

  #main .main-box .content-area .page-title.product-title {
    font-size: 20px;
  }
}

#mobileMenuModal .modal-body {
  background: #eeeeee;
}

.scroll-area {
  position: relative;
}
.button-container {
  position: fixed;
  bottom: 120px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.scroll-button {
  background-color: #0b87c1c2;
  border: none;
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.scroll-button:hover {
  background-color: #45a049ad;
}

@media (min-width: 992px) {
  .button-container {
    display: none;
  }
}

.slider-scroll {
  position: absolute;
  z-index: 1;
  left: 43%;
  transform: translate(-50%, 50%);
  bottom: 96px;
}

@media (max-width: 992px) {
  .slider-scroll {
    display: none;
  }
}

@media (max-width: 992px) {
  .down-icon {
    display: none;
  }
}
.down-icon {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, 50%);
  animation: tablescroll 0.5s infinite;
}

.slider-scroll img {
  position: absolute;
  width: 150px;
}

.down-icon {
  left: 61px;
  position: relative;
  bottom: -95px;
}

.down-icon img {
  width: 30px;
  position: absolute;
}

@keyframes tablescroll {
  0% {
    margin-top: 10px;
  }

  50% {
    margin-top: 2px;
  }

  100% {
    margin-top: 10px;
  }
}

/* back to top */

.back-to-top {
  position: fixed;
  bottom: 5px;
  left: 30px;
  z-index: 2020;
  background-color: #0276ae;
  color: #ffffff;
  padding: 5px 5px;
  cursor: pointer;
  font-size: 0.85em;
  border-radius: 3px;
  -webkit-transition: bottom 0.2s;
  transition: bottom 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 991px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top-on {
  bottom: 65px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.back-to-top i {
  font-size: 30px;
  display: block;
  text-align: center;
}

.back-to-top:hover,
.back-to-top:active {
  opacity: 0.8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

#header .cart span {
    color: #f27a1a !important;
}

#header .top .top-right .cart {
    background: #f27a1a !important;
}
.lang-area {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
}
.fixedButton {
  position: fixed;
  bottom: 65px;
  right: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1111;
  -webkit-transition: none;
  transition: none;
}

@media (max-width: 992px) {
  .fixedButton {
    display: none;
  }
}

.fixedButton .close {
  position: absolute;
  top: 0;
  right: 0;
  height: 25px;
  width: 25px;
  font-size: 15px;
  background-color: rgba(34, 34, 34, 0.7);
  color: white;
  border-radius: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.fixedButton .fixedButton-icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #4ac959;
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fixedButton .fixedButton-icon:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.fixedButton-content {
  --fixedButton-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  --fixedButton-bg-c: #fff;
  width: 190px;
  padding: 10px 10px;
  -webkit-box-shadow: var(--fixedButton-shadow);
  box-shadow: var(--fixedButton-shadow);
  margin-bottom: 20px;
  border-radius: 18px;
  position: relative;
  background-color: var(--fixedButton-bg-c);
  color: #303030;
  font-weight: 700;
  line-height: initial;
  font-size: 14px;
}

.fixedButton-content::before {
  --offset: 10px;
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: calc(0px - var(--offset));
  width: 0;
  height: 0;
  border-left: var(--offset) solid transparent;
  border-right: var(--offset) solid transparent;
  border-top: var(--offset) solid var(--fixedButton-bg-c);
  -webkit-filter: drop-shadow(var(--fixedButton-shadow));
  filter: drop-shadow(var(--fixedButton-shadow));
}

/* --- custom.css --- */
#main .main-box .content-area.w-100 {
  width: 100%;
}

.text-danger {
  color: red;
}

.fly-alert {
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 999999999;
  margin: 0;
  font-size: 18px;
  padding: 10px 15px;
  color: #fff;
}

.alert-success {
  background-color: #4caf50;
}

.alert-danger {
  background-color: #f44336;
}

#main .main-box .content-area .product-content-area .other-images-area img {
  width: 84px;
  height: 108px;
}

.price-list-images img {
  width: 100%;
  max-width: 100%;
}

.orange {
  background-color: #ff3d01 !important;
}

.orange-shadow {
  -webkit-box-shadow: 3px 3px 3px #ff3d01 !important;
  box-shadow: 3px 3px 3px #ff3d01 !important;
}

#main .main-box .content-area .product-list.cat .product.blue-shadow {
  -webkit-box-shadow: 3px 3px 3px #007dc5;
  box-shadow: 3px 3px 3px #007dc5;
}

#header .navbar ul.nav .nav-item.dropdown:hover .menu ul li {
  display: flex;
  line-height: 1.6;
}

.fancybox-caption__body {
  background-color: #ca324e;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
  white-space: nowrap;
  font-size: 20px;
}

#mouse-tooltip {
  position: absolute;
  border: 1px solid #b3253f;
  padding: 2px 5px;
  color: #fff;
  font-size: 14px;
  display: none;
  padding: 5px;
  background: #ca324e;
  z-index: 1000000;
}

.box.rate .bot-area {
  display: flex;
}

.box.rate .box-person-image {
  flex: 0 0 50%;
}

.box.rate .box-product-image {
  flex: 0 0 50%;
  position: relative;
  margin-left: 15px;
}

#main .main-box .content-area .product-content-area .rate .p-img {
  margin-left: 5px;
  max-width: 130px;
  max-height: 300px;
  object-fit: unset;
}

.box.rate .width {
  margin-left: 5px;
}

.box.rate .box-title {
  margin-bottom: 15px;
}

.box.rate .height {
  position: absolute;
  left: 0;
  top: 52px;
  transform-origin: left bottom;
  line-height: 1;
}

.box.rate .bottom-align {
  align-items: flex-end;
}

.box.rate .bottom-align .height {
  bottom: 10px;
  top: unset;
}

.btn-none {
  background-color: transparent;
  border: none;
}

#main .main-box .sidebar .widget-box ul.cats li.active {
  background-color: #1497d3;
}

#main .main-box .sidebar .widget-box ul.cats li.active > a {
  color: #fff;
}

#main .main-box .sidebar .widget-box ul.cats li ul {
  background-color: #eeeeee;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  border-top: 1px solid #cccccc;
}

.product-tooltip {
  position: relative;
}

.product-tooltip .tooltip-text {
  visibility: hidden;
  width: auto;
  background-color: #ca324e;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  padding: 0 10px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.product-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #ca324e transparent transparent transparent;
}

.product-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.pre-alert {
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  max-width: 500px;
  text-align: center;
  background: #f1f1f1;
  padding: 10px;
  color: #005b87;
  -khtml-border-radius: 5px 5px 5px 5px;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  border: 1px solid #005b87;
  margin-bottom: 0;
}

.pre-alert p {
  margin: 0;
}

.page-404 {
  margin-top: 250px;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 50px;
  min-height: calc(100vh - 667px);
  justify-content: center;
  text-align: center;
}

.simple-btn {
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.1) inset;
  border-radius: 3px;
  background: #d03350;
  display: block;
  padding: 10px 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}

.product-price-wrapper {
  border: 2px solid #005b87;
  font-size: 14px;
  padding: 12px;
  background: #eee;
  border-radius: 5px;
  text-shadow: 2px 1px #fff;
  font-size: 20px;
}

.product-price-wrapper .warning::before {
  content: "\f071";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-right: 10px;
}

.product-price-wrapper .warning {
  color: red;
  text-align: center;
  margin-top: 15px;
  font-size: initial;
}

.product-price-wrapper .line + .line {
  margin-top: 15px;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .logos
  .logo
  span {
  line-height: 1.3;
  color: #545454;
}

#header {
  z-index: 99999;
}

.general-shadow {
  -webkit-box-shadow: 3px 3px 3px #d03350 !important;
  box-shadow: 3px 3px 3px #d03350 !important;
}

.footer-sticky-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #0072a9;
  z-index: 9999;
  text-align: center;
}

.footer-sticky-bar a {
  color: #fff;
  width: 100%;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  padding: 15px 0;
  justify-content: center;
  align-items: center;
}

.footer-sticky-bar a i {
  position: relative;
  bottom: -1px;
  margin-right: 10px;
  font-size: 30px;
}

#main {
  margin-top: 145px;
}

#main .slider .btn.prev {
  left: -15px;
}

#main .slider .btn.next {
  right: -15px;
}

#main .slider .btn {
  outline: none;
  width: 30px;
  height: 30px;
  line-height: 32px;
  font-size: 18px;
}

ul.half {
  display: flex;
  flex-wrap: wrap;
}

ul.half > li {
  width: 50%;
}

ul.half > li:last-child {
  width: 100%;
}

.post-content a {
  color: inherit;
}

.content-images .gallery-link,
.content-images .gallery-link img {
  width: auto !important;
}

ul.links {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  margin: 0 0 10px 0;
  padding: 0;
}

ul.links li + li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  margin: 0 10px;
}
.popup-wrapper {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-body {
  padding: 40px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 1);
  border-radius: 3px;
  background: #fff;
  max-width: 50%;
  position: relative;
}
.popup-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0px;
  right: 0px;
  transition: ease 0.25s all;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border-radius: 100%;
  background: rgba(0, 0, 0, 0.8);
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#main .main-box.home-cats {
  margin-top: 0;
}

.height-auto {
  height: auto !important;
  max-height: 100% !important;
}

.language {
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .popup-body {
    max-width: 90%;
    padding: 15px;
  }
  .breadcrumb-wrapper {
    margin-bottom: 10px;
  }

  .bread-item i {
    margin-left: 15px;
    margin-right: 15px;
  }

  .bread-item {
    display: inline-flex;
    align-items: center;
  }

  .bread-item:nth-child(2) {
    display: none;
  }

  .js-bread-list {
    display: none;
    background-color: #fdfdfe;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px 30px 20px;
    font-size: 12px;
    z-index: 15;
  }
  .js-bread-list {
    box-sizing: border-box;
    padding: 10px;
    box-shadow: 0px 5px 6px 2px rgba(0, 0, 0, 0.1);
  }
  .mobile-bread {
    display: flex;
    width: 100%;
    padding-bottom: 0px;
    align-items: center;
    justify-content: center;
  }

  .bread-item {
    display: none;
  }

  .bread-item:first-child {
    display: inline-flex;
  }

  .bread-item:last-child {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .breadcrumb-list {
    padding-top: 10px;
  }

  .bread-item:nth-child(2) {
    display: inline-flex;
  }

  .js-bread-list .bread-item {
    display: block;
  }

  .js-bread-list .bread-item:nth-child(2) {
    margin-left: 10px;
  }

  .js-bread-list .bread-item:nth-child(3) {
    margin-left: 20px;
  }

  .js-bread-list .bread-item:nth-child(4) {
    margin-left: 30px;
  }

  .js-bread-list .bread-item + .bread-item {
    margin-top: 20px;
  }

  .bread span {
    margin: 0px;
  }

  .js-bread-list .close-btn {
    position: absolute;
    top: 20px;
    right: 50px;
  }

  .bread-main-title {
    font-size: 20px;
    margin-bottom: 0;
  }

  .breadcrumb-wrapper {
    position: relative;
    width: 100%;
  }

  .breadcrumb-area {
    margin-bottom: 10px;
  }

  .js-bread-list {
    color: #151515;
  }

  .js-bread-list a {
    color: #151515;
  }

  #main .slider .btn.next,
  #main .slider .btn.prev {
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 32px;
  }

  #main .slider .btn.next {
    right: 0;
  }

  #main .slider .btn.prev {
    left: 0;
  }

  #header {
    position: relative;
  }

  #main.mt-250,
  #main {
    margin-top: 20px;
  }

  .footer-sticky-bar {
    display: block;
  }

  .fly-alert {
    top: 30px;
    left: 10px;
    right: 10px;
    font-size: 16px;
    text-align: center;
  }

  #main .main-box .content-area .product-list .product img {
    height: auto !important;
  }

  #main .main-box .page-title + .box {
    border-bottom: none;
  }

  #main .main-box .content-area .product-list + .box {
    border-top: none;
    margin-top: -20px;
  }

  .page-404 {
    margin-top: 200px;
  }

  #main .main-box .content-area .product-content-area .product-details .logos {
    margin-bottom: 5px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  #main
    .main-box
    .content-area
    .product-content-area
    .product-details
    .logos
    .logo {
    margin-bottom: 5px;
  }

  #main .slider .slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
  }
}

#main .main-box .contact-form-content .captcha-contact {
  margin-top: 10px !important;
  margin-left: 30px !important;
  margin-bottom: -10px !important;
}

@media (min-width: 992px) {
  #main .main-box .content-area .list-6 .product {
    width: 16.666%;
  }

  .sticky-box {
    position: sticky;
    top: 200px;
  }

  #main.mt-250 {
    margin-top: 160px;
  }
}

@media screen and (max-width: 415px) {
  #main .main-box .contact-form-content .captcha-contact {
    margin-left: 0px !important;
  }

  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.77);
    -webkit-transform: scale(0.77);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
  }
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  .malzeme-title
  .left {
  font-weight: bold;
  text-shadow: 2px 1px #fff;
  color: #545454;
  white-space: nowrap;
}

#main
  .main-box
  .content-area
  .product-content-area
  .product-details
  ul.list-details
  .detail-item:last-child {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-top: 1px solid #a6a6a6;
}

.pagination {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.pagination .page-item {
  padding: 0 5px;
  margin-bottom: 5px;
  display: inline-flex;
}

.pagination .page-item a {
  border: 1px solid #0072a9;
  color: #222;
  padding: 5px 15px;
  font-weight: 700;
}

.pagination .page-item.active a,
.pagination .page-item a:hover {
  background-color: #007fbc;
  color: #fff;
}
@media (min-width: 920px) and (max-width: 1199px) {
  #header .navbar ul.nav .nav-item {
    margin: 0;
  }

  #header .navbar ul.nav .nav-item .nav-link {
    padding: 0 5px;
  }
}

.covid-19 .content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 25px;
  padding: 50px;
}

.covid-19 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

.covid-19 .close-covid {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 44px;
  color: #177dc0;
  cursor: pointer;
}

@media (max-width: 991px) {
  .covid-19 .content {
    width: 75%;
  }
}

.g-recaptcha {
  position: relative;
}
.fake_error {
  white-space: nowrap;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 10px;
  background-color: #f44336;
  color: #fff;
  padding: 5px 15px;
  top: 50%;
  left: 0;
  transform: translate(50%, 15px);
  position: absolute;
  z-index: 99;
  font-weight: 500;
}
.fake_error:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(194, 225, 245, 0);
  border-bottom-color: #f44336;
  border-width: 10px;
  margin-left: -10px;
}
.mobile-sitcky-nav {
  --clr-primary: #0072a9;
  --icon-height: 1.5rem;
  --absolute-icon-size: 2.875rem;
  font-size: 0.625rem;
  background: #303030;
  color: #eee;
  border-top: 0.1px solid var(--clr-primary);
  -webkit-box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.625rem;
  z-index: 8;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.125rem 1fr 0.125rem 1fr 0.125rem 1fr 0.125rem 1fr;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 0 0.125rem;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mobile-sitcky-nav.closed {
  -webkit-transform: translateY(calc(100% + var(--absolute-icon-size) / 2));
  -ms-transform: translateY(calc(100% + var(--absolute-icon-size) / 2));
  transform: translateY(calc(100% + var(--absolute-icon-size) / 2));
}

.mobile-sitcky-nav .item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: inherit;
  font-size: inherit;
  gap: 5px;
}

.mobile-sitcky-nav .item svg {
  height: var(--icon-height);
}

.mobile-sitcky-nav .nav-phone {
  background-color: var(--clr-primary);
  border: 1px solid var(--clr-primary);
  -webkit-box-shadow: 0 0 4px rgb(255 174 0 / 50%);
  box-shadow: 0 0 4px rgb(255 174 0 / 50%);
  color: #fff;
  width: var(--absolute-icon-size);
  height: var(--absolute-icon-size);
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

@media (min-width: 992px) {
  .mobile-sitcky-nav {
    display: none;
  }
}

.post-content a {
  color: blue;
  font-weight: bold;
}

#header .cart span {
  background: white;
  font-size: 15px;
  padding: 6px;
  border-radius: 20px;
  font-weight: 700;
  color: #ca324e;
  position: absolute;
  box-shadow: 0px 0px 4px black;
  bottom: 10px;
  right: 4px;
}

.wd50 {
  width: auto;
  height: 50px;
}

#header .top .top-right .cart {
  position: relative;
  padding-right: 45px;
}

.mobile-nav .cart span {
  position: relative !important;
  bottom: 0;
  top: 0;
  left: 0;
}

.header-main-menu .nav-new-link {
  padding: 32px 0;
  font-size: 15px;
}

/* --- modal.css --- */
.modal-open {
    overflow: hidden; }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0; }

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none; }

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px); }

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none; } }

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none; }

.modal-dialog-scrollable {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    max-height: calc(100% - 1rem); }

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }

.modal-dialog-scrollable .modal-footer, .modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0; }

.modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    min-height: calc(100% - 1rem); }

.modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""; }

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%; }

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none; }

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none; }

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: .3rem;
    outline: 0; }

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000; }

.modal-backdrop.fade {
    opacity: 0; }

.modal-backdrop.show {
    opacity: .5; }

.modal-header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem; }

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5; }

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1rem; }

.modal-footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem; }

.modal-footer > :not(:first-child) {
    margin-left: .25rem; }

.modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll; }

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto; }
    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem); }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem); }
    .modal-sm {
        max-width: 300px; } }

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 800px; } }

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px; } }

.fade {
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear; }

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none; } }

.fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
    display: none; }

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease; }

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none; } }

.lb-loader, .lightbox {
    text-align: center;
    line-height: 0; }

.lb-dataContainer:after, .lb-outerContainer:after {
    content: "";
    clear: both; }