/*================================================
Default CSS
=================================================*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
  padding: 0;
  margin: 0;
  font-family: "Inter", serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #09101f;
}

a:hover, a:focus {
  color: #d31531;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6e727f;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

p:last-child {
  margin-bottom: 0;
}

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #09101f;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}

.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default btn CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 15px 25px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #ff4545;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  height: 100%;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  text-align: center;
  margin: 0 auto 35px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.section-title p {
  max-width: 525px;
  margin: auto;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: #ffffff;
}

.preloader .loader {
  left: 50%;
  top: 45%;
  -webkit-transform: translateX(-50%) translateY(-45%);
          transform: translateX(-50%) translateY(-45%);
  position: absolute;
}

.preloader .loader .sbl-half-circle-spin {
  height: 80px;
  width: 80px;
  color: #d31531;
  display: inline-block;
  position: relative;
  border: 5px solid #d31531;
  border-radius: 50%;
  animation: animeCircleSpin 5s ease-in-out infinite reverse;
}

.preloader .loader .sbl-half-circle-spin div {
  height: 50%;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  background-color: #000000;
  border-radius: 50%;
  -webkit-animation: animeCircleSpin 4s ease-in-out infinite;
          animation: animeCircleSpin 4s ease-in-out infinite;
}

@-webkit-keyframes animeCircleSpin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes animeCircleSpin {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

/*================================================
Top Header Area CSS
=================================================*/
.top-header-area {
  padding-top: 10px;
  padding-bottom: 10px;
  background:#000001;
}

.middle-header-logo img{
	width:200px;
	max-width:100%;
	height:auto;
}

.top-header-information {
  padding-left: 0;
  margin-bottom: 0;
}

.top-header-information li {
  font-size: 14px;
  font-weight: 500;
  list-style-type: none;
  display: inline-block;
  position: relative;
  margin-right: 15px;
  padding-left: 20px;
  color:#f8f8f8;
}

.top-header-information li:last-child {
  margin-right: 0;
}

.top-header-information li i {
  position: absolute;
  left: 0;
  top: 2px;
}

.top-header-optional {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
  line-height: 2;
}

.top-header-optional li {
  list-style-type: none;
  display: inline-block;
  margin-right: 20px;
  font-size: 15px;
  position: relative;
  color:#f8f8f8;
}

.top-header-optional li::before {
  content: '';
  position: absolute;
  right: -12px;
  top: 7px;
  width: 1px;
  height: 15px;
  background-color: #333333;
}

.top-header-optional li b {
  color: #d31531;
  position: relative;
  top: 1px;
}

.top-header-optional li:last-child {
  margin-right: 0;
}

.top-header-optional li:last-child::before {
  display: none;
}

.top-header-optional .language-switcher {
  position: relative;
}

.top-header-optional .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #f8f8f8;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-optional .language-switcher .dropdown-toggle::after {
  display: none;
}

.top-header-optional .language-switcher .dropdown-toggle span {
  display: inline-block;
  font-size: 15px;
}

.top-header-optional .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-optional .language-switcher .dropdown-toggle:hover {
  color: #ff4545;
}

.top-header-optional .language-switcher .dropdown-toggle:hover span i {
  color: #ff4545;
}

.top-header-optional .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 10px !important;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  right: 0 !important;
  left: auto !important;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #09101f;
  margin-bottom: 10px;
  font-weight: 600;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 400;
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item span:hover {
  color: #d31531;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item:hover, .top-header-optional .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.top-header-optional .language-switcher .dropdown-menu .dropdown-item:active, .top-header-optional .language-switcher .dropdown-menu .dropdown-item.active {
  color: #09101f;
  background-color: transparent;
}

.top-header-optional .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*================================================
Middle Header Area CSS
=================================================*/
.middle-header-area {
  padding-top: 20px;
  padding-bottom: 20px;
}

.middle-header-search form {
  position: relative;
}

.middle-header-search form label {
  display: block;
  margin-bottom: 0;
}

.middle-header-search form .screen-reader-text {
  display: none;
}

.middle-header-search form .search-field {
  background-color: #ffffff;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #e1e1e1;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 14px;
}

.middle-header-search form .search-field:focus {
  border-color: #d31531;
}

.middle-header-search form button {
  border: none;
  background-color: #d31531;
  color: #ffffff;
  height: 40px;
  width: 45px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 25px;
  cursor: pointer;
}

.middle-header-search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.middle-header-search form button:hover, .middle-header-search form button:focus {
  background-color: #ff4545;
  color: #ffffff;
}

.middle-header-optional {
  padding-left: 0;
  margin-bottom: 0;
  text-align: right;
}

.middle-header-optional li {
  list-style-type: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #09101f;
  margin-right: 25px;
  position: relative;
}

.middle-header-optional li::before {
  content: '';
  position: absolute;
  right: -15px;
  top: 12px;
  width: 1px;
  height: 20px;
  background-color: #d31531;
}

.middle-header-optional li:last-child {
  margin-right: 0;
}

.middle-header-optional li:last-child::before {
  display: none;
}

.middle-header-optional li:nth-child(2)::before {
  display: none;
}

.middle-header-optional li i {
  font-size: 30px;
  position: relative;
  top: 4px;
  margin-right: 5px;
}

.middle-header-optional li i span {
  position: absolute;
  right: -5px;
  top: -2px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  background: #ff4545;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.middle-header-optional li .user-btn {
  display: inline-block;
  padding: 10px 25px;
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
}

.middle-header-optional li .user-btn:hover {
  background-color: #ff4545;
}

.middle-header-optional li .user-btn i {
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
  display: none;
}

.main-navbar {
  background-color: #000011;
}

.main-navbar .navbar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0;
}

.main-navbar .navbar .navbar-brand {
  margin-right: 0;
}

.main-navbar .navbar .navbar-brand img {
  display: none;
}

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 20px;
  margin-right: 20px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	padding-left: 0;
	padding-right: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	text-transform: capitalize;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: -4px;
  margin-right: -4px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover, .main-navbar .navbar .navbar-nav .nav-item a:focus, .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover a, .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 60px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 280px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #09101f;
  font-size: 15px;
  font-weight: 500;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -280px;
  left: auto;
  margin-top: 15px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #09101f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #d31531;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .others-option .option-item span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}

.main-navbar .navbar .others-option .option-item span a {
  font-size: 15px;
  color: #ffffff;
}

.main-navbar .navbar .others-option .option-item span a:hover {
  color: #d31531;
}

.main-navbar .navbar .navbar-category {
  position: relative;
  width: 285px;
}

.main-navbar .navbar .navbar-category .category-title a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  background-color: #d31531;
  padding: 20px 30px;
  width: 285px;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  overflow: auto;
  max-height: 620px;
  -webkit-box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
          box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
  background-color: #ffffff;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list {
  padding-left: 0;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li {
  list-style-type: none;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li a {
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 1;
  color: #09101f;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li a:hover {
  color: #ffffff;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li a:hover::before {
  height: 100%;
}

.main-navbar .navbar .navbar-category .navbar-category-dropdown .category-list li:last-child a {
  border-bottom: none;
}

.main-navbar .navbar .navbar-category ::-webkit-scrollbar {
  width: 5px;
}

.main-navbar .navbar .navbar-category ::-webkit-scrollbar-track {
  background: #666666;
}

.main-navbar .navbar .navbar-category ::-webkit-scrollbar-thumb {
  background: #e1e1e1;
}

.navbar-two .main-navbar {
	padding:10px 0;
  background-color: #f8f8f8;
}

.navbar-two .main-navbar .navbar .navbar-brand img {
  display: block;
  width:80px;
  max-width:100%;
  height:auto;
}

.navbar-two .main-navbar .navbar .navbar-nav .nav-item a {
  color: #09101f;
}

.navbar-two .main-navbar .navbar .navbar-nav .nav-item a:hover, .navbar-two .main-navbar .navbar .navbar-nav .nav-item a:focus, .navbar-two .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #d31531;
}

.navbar-two .main-navbar .navbar .others-option .option-item span {
  color: #d31531;
}

.navbar-two .main-navbar .navbar .others-option .option-item span a {
  color: #d31531;
}

.navbar-two .main-navbar .navbar .others-option .option-item span a:hover {
  color: #ff4545;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.navbar-area.is-sticky .navbar-category {
  display: none;
}

.navbar-area.is-sticky .main-navbar {
  padding: 10px 0;
}

.navbar-area.is-sticky .main-navbar .navbar .navbar-brand img {
  display: block;
}

.navbar-area.p-relative.is-sticky .main-navbar .navbar .navbar-nav {
  margin: auto;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -28px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #09101f;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #d31531;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-option .option-item span {
  font-size: 16px;
  color: #d31531;
  font-weight: 500;
}

.others-option-for-responsive .option-inner .others-option .option-item span a {
  font-size: 15px;
  color: #09101f;
}

.others-option-for-responsive .option-inner .others-option .option-item span a:hover {
  color: #ff4545;
}

@media only screen and (max-width: 992px) {
  .main-responsive-nav {
    display: block;
  }
  .main-responsive-nav .main-responsive-menu {
    position: relative;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #ff4545;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow: auto;
    height: auto;
    background-color: #ffffff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
            box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  }
  .main-responsive-nav .main-responsive-menu.mean-container .others-option {
    display: none !important;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #09101f;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #09101f;
    position: relative;
  }
  .main-responsive-nav .logo {
    position: relative;
  }
  .main-responsive-nav .logo img {
    max-width: 100px !important;
  }
  .navbar-area {
    background-color: #ffffff;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .main-navbar {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}

/*================================================
Main Slider Area CSS
=================================================*/
.main-slides{
	background:#000001;
}
.main-slides-item {
  background-image: url(../img/main-slider/slider-bg-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}

.main-slides-item::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000000;
  z-index: -1;
  opacity: .50;
}

.main-slides-item.item-two {
  background-image: url(../img/main-slider/slider-bg-2.jpg);
}

.main-slides-item.item-three {
  background-image: url(../img/main-slider/slider-bg-3.jpg);
}

.main-slides-box {
  background-image: url(../img/main-slider/slider-bg-4.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 168px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}

.main-slides-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000000;
  z-index: -1;
  opacity: .77;
}

.main-slides-box.item-two {
  background-image: url(../img/main-slider/slider-bg-5.jpg);
}

.main-slides-box.item-three {
  background-image: url(../img/main-slider/slider-bg-6.jpg);
}

.main-slides-content span {
  display: inline-block;
  font-weight: 500;
  font-size: 25px;
  color: #ffffff;
}

.main-slides-content h1 {
  font-size: 75px;
  color: #ffffff;
  margin-top: 20px;
  margin-bottom: 0;
}

.main-slides-content .slides-btn {
  margin-top: 25px;
}

.main-slides-content .slides-btn .optional-btn {
  display: inline-block;
  padding: 15px 25px;
  background-color: #ffffff;
  color: #d31531;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-left: 20px;
}

.main-slides-content .slides-btn .optional-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #d31531;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-slides-content .slides-btn .optional-btn:hover {
  color: #ffffff;
}

.main-slides-content .slides-btn .optional-btn:hover::before {
  height: 100%;
}

.home-slides.owl-theme .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}

.home-slides.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 20px;
  background-color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #ffffff;
  position: relative;
}

.home-slides.owl-theme .owl-dots .owl-dot span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 4px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.home-slides.owl-theme .owl-dots .owl-dot:hover span::before, .home-slides.owl-theme .owl-dots .owl-dot.active span::before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.single-slides-offer {
  position: relative;
  margin-bottom: 30px;
}

.single-slides-offer:last-child {
  margin-bottom: 0;
}

.single-slides-offer .offer-content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 30px;
  max-width: 250px;
}

.single-slides-offer .offer-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}

.single-slides-offer .offer-content span {
  font-size: 20px;
  font-weight: 500;
  color: #d31531;
  border-bottom: 1px solid #d31531;
}

.single-slides-offer .offer-content .offer-btn {
  margin-top: 25px;
}

.single-slides-offer .offer-content .offer-btn a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffffff;
  color: #d31531;
  font-weight: 500;
}

.single-slides-offer .offer-content .offer-btn a:hover {
  background-color: #d31531;
  color: #ffffff;
}

/*================================================
Main Banner Area CSS
=================================================*/
.hero-banner {
  position: relative;
  z-index: 1;
  height: 515px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #09101f;
}

.hero-banner.banner-bg2 {
  background-image: url(../img/main-banner1.jpg);
}

.hero-banner.banner-bg3 {
  background-image: url(../img/main-banner2.jpg);
}

.hero-banner.banner-bg4 {
  background-image: url(../img/main-banner3.jpg);
}

.hero-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #09101f;
  opacity: .77;
}

.hero-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.hero-slides.owl-theme .owl-nav [class*=owl-] {
  color: #ffffff;
  font-size: 45px;
  margin: 0;
  padding: 0;
  background: transparent;
  display: inline-block;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hero-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.hero-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #d31531;
  -webkit-transform: translateX(-10px) translateY(-50%);
          transform: translateX(-10px) translateY(-50%);
}

.hero-slides.owl-theme .owl-nav [class*=owl-]:hover.owl-next {
  -webkit-transform: translateX(10px) translateY(-50%);
          transform: translateX(10px) translateY(-50%);
}

.hero-slides.owl-theme:hover .owl-nav [class*=owl-] {
  left: 20px;
  opacity: 1;
  visibility: visible;
}

.hero-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
}

.main-banner {
  position: relative;
}

.main-banner-with-form .main-banner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.main-banner-with-form .main-banner-content h1 {
  font-size: 55px;
  margin-bottom: 15px;
  color: #ffffff;
}

.main-banner-with-form .main-banner-content b {
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  color: #ffffff;
  font-weight: 600;
}

.main-search-wrap {
  margin-top: 45px;
}

.main-search-wrap form .form-group {
  margin-bottom: 0;
}

.main-search-wrap form .form-group .nice-select {
  background-color: #ffffff;
  border-radius: 0;
  border: none;
  display: block;
  height: 45px;
  line-height: 45px;
  color: #09101f;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 15px;
  width: 100%;
}

.main-search-wrap form .form-group .nice-select::after {
  border-color: #09101f;
  height: 8px;
  width: 8px;
  right: 15px;
}

.main-search-wrap form .form-group .nice-select .list {
  background-color: #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  width: 100%;
  -ms-overflow-style: none;
  max-width: 100%;
  height: 215px;
  overflow-y: scroll;
  margin-top: 0;
  margin-bottom: 0;
}

.main-search-wrap form .form-group .nice-select .list .option {
  line-height: 40px;
  min-height: 40px;
  color: #09101f;
  padding-left: 15px;
  padding-right: 15px;
}

.main-search-wrap form .form-group .nice-select .list .option.selected {
  background-color: #d31531 !important;
  color: #ffffff;
  font-weight: normal;
}

.main-search-wrap form .form-group .nice-select .list::-webkit-scrollbar {
  display: none;
}

.main-search-wrap form .main-search-btn .search-btn {
  border: none;
  padding: 10px 35px;
  display: inline-block;
  width: 100%;
  background-color: #d31531;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main-search-wrap form .main-search-btn .search-btn:hover {
  background-color: #ff4545;
}

/*================================================
Support Area CSS
=================================================*/
.support-area {
  padding-top: 50px;
}

.support-area.bg-color {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding-bottom: 30px;
}

.support-area.bg-color .custom-row {
  padding: 0;
  border: none;
}

.custom-row {
  overflow: hidden;
  padding: 45px 30px 25px;
  border: 1px solid #e1e1e1;
}

.custom-row .custom-item {
  width: 20%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.custom-row .custom-item .single-support {
  position: relative;
  padding-left: 65px;
  margin-bottom: 20px;
}

.custom-row .custom-item .single-support::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 0;
  width: 1px;
  height: 55px;
  background-color: #d31531;
}

.custom-row .custom-item .single-support .icon {
  position: absolute;
  left: 0;
  top: 70%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}

.custom-row .custom-item .single-support .icon i {
  font-size: 45px;
  color: #d31531;
  line-height: 0;
}

.custom-row .custom-item .single-support .support-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.custom-row .custom-item .single-support .support-content span {
  font-size: 16px;
  color: #363636;
  font-weight: 500;
}

.custom-row .custom-item:last-child .single-support::before {
  display: none;
}

/*================================================
Products Area CSS
=================================================*/
.tab .tabs_item {
  display: none;
}

.tab .tabs_item:first-child {
  display: block;
}

.products-list-tab .tabs {
	text-align: center;
	padding-left: 0;
	list-style-type: none;
	margin-bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 40px;
}

.products-list-tab .tabs li {
  display: inline-block;
  margin-right: 35px;
}

.products-list-tab .tabs li:last-child {
  margin-right: 0;
}

.products-list-tab .tabs li a {
  font-size: 20px;
  color: #09101f;
  font-weight: 500;
  padding-bottom: 5px;
}

.products-list-tab .tabs li.current a {
  color: #d31531;
  border-bottom: 1px solid #d31531;
}

.single-products {
  margin-bottom: 30px;
}

.single-products .products-image {
  position: relative;
  overflow: hidden;
}

.single-products .products-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products .products-image .tag {
  display: inline-block;
  background: #ffffff;
  border: 1px solid #c5c1c1;
  color: #d31531;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products .products-image .products-action {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-products .products-image .products-action li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.single-products .products-image .products-action li:last-child {
  margin-right: 0;
}

.single-products .products-image .products-action li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products .products-image .products-action li a i:hover {
  background-color: #ff4545;
  color: #ffffff;
}

.single-products .products-content {
  margin-top: 25px;
  text-align: center;
}

.single-products .products-content h3 {
  font-size: 22px;
  margin-bottom: 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.single-products .products-content h3 a {
  color: #09101f;
}
.single-products .products-content h3 small {
  color: #2f54a3;
  font-size:small;
}

.single-products .products-content .rating {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.single-products .products-content .rating li {
  display: inline-block;
  list-style-type: none;
}

.single-products .products-content .rating li i {
  color: #d31531;
  font-size: 16px;
}

.single-products .products-content span {
  font-size: 18px;
  color: #d31531;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products .products-content span:nth-child(4){
	color:#b1a8a8;
}

.single-products:hover .products-image .tag {
  background: #d31531;
  border: 1px solid #d31531;
  color: #ffffff;
}

.single-products:hover .products-image img {
  -webkit-transform: rotate(5deg) scale(1.5);
          transform: rotate(5deg) scale(1.5);
}

.single-products:hover .products-image .products-action {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}

.single-products-overview {
  margin-bottom: 30px;
  position: relative;
}

.single-products-overview::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  opacity: .50;
}

.single-products-overview img {
  width: 100%;
}

.single-products-overview .products-overview-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-products-overview .products-overview-content span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
}

.single-products-overview .products-overview-content h3 {
  font-size: 25px;
  margin-bottom: 0;
  margin-top: 15px;
  color: #ffffff;
}

.single-products-overview .products-overview-content .products-overview-btn {
  margin-top: 25px;
}

.single-products-overview .products-overview-content .products-overview-btn a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffffff;
  color: #d31531;
  font-weight: 500;
}

.single-products-overview .products-overview-content .products-overview-btn a:hover {
  background-color: #d31531;
  color: #ffffff;
}

.single-products-overview:hover .products-overview-content {
  bottom: 5px;
}

.products-category .category-title {
  text-align: center;
}

.products-category .category-title a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  background-color: #d31531;
  padding: 20px 30px;
  width: 100%;
}

.products-category .products-category-menu {
  overflow: auto;
  max-height: 620px;
  width: 100%;
  -webkit-box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
          box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
  background-color: #ffffff;
}

.products-category .products-category-menu .category-list {
  padding-left: 0;
  margin-bottom: 0;
}

.products-category .products-category-menu .category-list li {
  list-style-type: none;
}

.products-category .products-category-menu .category-list li a {
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 1;
  color: #09101f;
}

.products-category .products-category-menu .category-list li a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.products-category .products-category-menu .category-list li a:hover {
  color: #ffffff;
}

.products-category .products-category-menu .category-list li a:hover::before {
  height: 100%;
}

.products-category .products-category-menu .category-list li:last-child a {
  border-bottom: none;
}

.products-category ::-webkit-scrollbar {
  width: 5px;
}

.products-category ::-webkit-scrollbar-track {
  background: #666666;
}

.products-category ::-webkit-scrollbar-thumb {
  background: #e1e1e1;
}

.products-area.bg-ffffff .single-products {
  margin-bottom: 20px;
}

/*================================================
Coming Soon Area CSS
=================================================*/
.coming-soon-area {
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.coming-soon-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000000;
  z-index: -1;
  opacity: .77;
}

.coming-soon-area.item-two {
  background-image: url(../img/coming-soon-bg-2.jpg);
}

.coming-soon-area.item-two::before {
  display: none;
}

.coming-soon-area.item-two .coming-soon-title {
  max-width: 100%;
}

.coming-soon-area.item-two .container-fluid {
  padding-right: 0;
  overflow: hidden;
}

.coming-soon-title {
  max-width: 450px;
  text-align: center;
}

.coming-soon-title h3 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #ffffff;
}

.coming-soon-title h4 {
  font-size: 25px;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 500;
}

.coming-soon-title .coming-soon-btn {
  margin-top: 30px;
}

.coming-soon-title .coming-soon-btn .default-btn {
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
}

.coming-soon-title .coming-soon-content {
  text-align-last: left;
}

.coming-soon-title .coming-soon-content #timer {
  margin-top: 25px;
}

.coming-soon-title .coming-soon-content #timer div {
  color: #ffffff;
  font-size: 30px;
  font-weight: 500;
  margin-right: 30px;
  font-family: "Oswald", sans-serif;
}

.coming-soon-title .coming-soon-content #timer div span {
  display: block;
  font-size: 16px;
  font-weight: 400;
}

.coming-soon-title .coming-soon-content #timer div:last-child {
  margin-right: 0;
}

.coming-soon-area-two {
  height: 100vh;
  position: relative;
  z-index: 1;
  background-image: url(../img/coming-soon-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.coming-soon-area-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .77;
}

.coming-soon-content-two {
  max-width: 700px;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding: 45px 30px;
  -webkit-box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
          box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, 0.05);
  margin: auto;
}

.coming-soon-content-two .logo {
  display: inline-block;
}

.coming-soon-content-two h2 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 0;
}

.coming-soon-content-two #timer {
  margin-top: 30px;
}

.coming-soon-content-two #timer div {
  background-color: #333333;
  color: #ffffff;
  width: 100px;
  height: 105px;
  border-radius: 5px;
  font-size: 40px;
  font-weight: bold;
  margin-left: 5px;
  margin-right: 5px;
}

.coming-soon-content-two #timer div span {
  display: block;
  margin-top: -2px;
  font-size: 15px;
  font-weight: 500;
}

.coming-soon-content-two form {
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}

.coming-soon-content-two form .form-group {
  margin-bottom: 25px;
  width: 100%;
  position: relative;
}

.coming-soon-content-two form .form-group .label-title {
  margin-bottom: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  color: #09101f;
}

.coming-soon-content-two form .form-group .label-title i {
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 9px;
  font-size: 22px;
}

.coming-soon-content-two form .form-group .input-newsletter {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #eeeeee;
  padding: 0 0 0 32px;
  color: #09101f;
  height: 45px;
  display: block;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.coming-soon-content-two form .form-group .input-newsletter::-webkit-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content-two form .form-group .input-newsletter:-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content-two form .form-group .input-newsletter::-ms-input-placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content-two form .form-group .input-newsletter::placeholder {
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.coming-soon-content-two form .form-group .input-newsletter:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.coming-soon-content-two form .form-group .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
}

.coming-soon-content-two form .form-group .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
}

.coming-soon-content-two form .form-group .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
}

.coming-soon-content-two form .form-group .input-newsletter:focus::placeholder {
  color: transparent;
}

.coming-soon-content-two form .default-btn {
  border: none;
}

.coming-soon-content-two form .validation-danger {
  margin-top: 15px;
  color: red;
}

.coming-soon-content-two form .validation-success {
  margin-top: 15px;
}

.coming-soon-content-two form p {
  margin-top: 15px;
  margin-bottom: 0;
}

/*================================================
Top Products Area CSS
=================================================*/
.single-top-products {
  margin-bottom: 30px;
}

.single-top-products .top-products-image {
  position: relative;
  overflow: hidden;
  border: 1px solid #efefef;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products .top-products-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products .top-products-image .top-products-action {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-top-products .top-products-image .top-products-action li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.single-top-products .top-products-image .top-products-action li:last-child {
  margin-right: 0;
}

.single-top-products .top-products-image .top-products-action li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products .top-products-image .top-products-action li a i:hover {
  background-color: #ff4545;
  color: #ffffff;
}

.single-top-products .top-products-content {
  margin-top: 25px;
  text-align: center;
}

.single-top-products .top-products-content h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.single-top-products .top-products-content h3 a {
  color: #09101f;
}

.single-top-products .top-products-content .rating {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.single-top-products .top-products-content .rating li {
  display: inline-block;
  list-style-type: none;
}

.single-top-products .top-products-content .rating li i {
  color: #d31531;
  font-size: 16px;
}

.single-top-products .top-products-content span {
  font-size: 18px;
  color: #d31531;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products:hover .top-products-image {
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.single-top-products:hover .top-products-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-top-products:hover .top-products-image .top-products-action {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}

.overview-item .overview-image {
  margin-bottom: 30px;
}

.top-products-area.bg-color {
  background-color: #f5f4f4;
}

.single-top-products-box {
  margin-bottom: 30px;
}

.single-top-products-box .top-products-image {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products-box .top-products-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products-box .top-products-image .top-products-action {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding: 15px;
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-top-products-box .top-products-image .top-products-action li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.single-top-products-box .top-products-image .top-products-action li:last-child {
  margin-right: 0;
}

.single-top-products-box .top-products-image .top-products-action li a i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products-box .top-products-image .top-products-action li a i:hover {
  background-color: #ff4545;
  color: #ffffff;
}

.single-top-products-box .top-products-content {
  margin-top: 25px;
  text-align: center;
}

.single-top-products-box .top-products-content h3 {
  font-size: 22px;
  margin-bottom: 0;
}

.single-top-products-box .top-products-content h3 a {
  color: #09101f;
}

.single-top-products-box .top-products-content .rating {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.single-top-products-box .top-products-content .rating li {
  display: inline-block;
  list-style-type: none;
}

.single-top-products-box .top-products-content .rating li i {
  color: #d31531;
  font-size: 16px;
}

.single-top-products-box .top-products-content span {
  font-size: 18px;
  color: #d31531;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-top-products-box:hover .top-products-image img {
  -webkit-transform: rotate(2deg) scale(1.6);
          transform: rotate(2deg) scale(1.6);
}

.single-top-products-box:hover .top-products-image .top-products-action {
  bottom: 10px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Categories Area CSS
=================================================*/
.categories-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px 30px 10px;
}

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

.categories-box .categories-title h2 {
  font-size: 30px;
  margin-bottom: 0;
}

.categories-box .categories-row {
  overflow: hidden;
}

.categories-box .categories-row .categories-item {
  width: 20%;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
}

.categories-box .categories-row .categories-item .single-categories {
  text-align: center;
  margin-bottom: 20px;
}

.categories-box .categories-row .categories-item .single-categories .categories-image {
  margin-bottom: 10px;
}

.categories-box .categories-row .categories-item .single-categories .categories-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

/*================================================
Sepet Alanı CSS - Yeni Ekleme
=================================================*/

/* Sepetteki ürünlerin düzenli gösterimi */
ul.sepet-urunler {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.sepet-urunler li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
}

ul.sepet-urunler li .urun-adi {
    width: 60%;
}

ul.sepet-urunler li .urun-fiyat {
    width: 20%;
    text-align: right;
}

ul.sepet-urunler li .urun-adet {
    width: 20%;
    text-align: center;
}

/* Sepet toplamı ve sözleşme onayı */
.sepet-toplam {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 10;
}

.sepet-toplam h3 {
    margin-bottom: 20px;
}

.sepet-toplam .toplam-fiyat {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.sepet-toplam .sozlesme {
    margin-top: 20px;
}

.sepet-toplam .sozlesme input {
    margin-right: 10px;
}

/* Sepet onay butonu */
.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .sepet-toplam {
        position: static;
        width: auto;
        margin-top: 20px;
    }

    ul.sepet-urunler li {
        flex-direction: column;
        align-items: flex-start;
    }

    .sepet-toplam {
        width: 100%;
    }
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area {
  background-image: url(../img/newsletter/newsletter-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.newsletter-area .container-fluid {
  padding-right: 0;
  overflow: hidden;
}

.newsletter-area.item-two {
  background-image: url(../img/newsletter/newsletter-bg-2.jpg);
}

.newsletter-area.item-two .newsletter-content {
  max-width: 585px;
  margin-left: unset;
}

.newsletter-content {
  max-width: 640px;
  margin-left: auto;
}

.newsletter-content span {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
}

.newsletter-content h3 {
  font-size: 35px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: #ffffff;
}

.newsletter-content p {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 15px;
}

.newsletter-content .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.newsletter-content .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  height: 60px;
  padding-left: 25px;
  border-radius: 0;
  outline: 0;
  color: #ffffff;
}

.newsletter-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
  color: #ffffff;
}

.newsletter-content .newsletter-form .input-newsletter:-ms-input-placeholder {
  color: #ffffff;
}

.newsletter-content .newsletter-form .input-newsletter::-ms-input-placeholder {
  color: #ffffff;
}

.newsletter-content .newsletter-form .input-newsletter::placeholder {
  color: #ffffff;
}

.newsletter-content .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  background-color: #d31531;
  color: #ffffff;
  border: none;
  height: 52px;
  padding: 0 30px;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.newsletter-content .newsletter-form button:hover {
  background-color: #ff4545;
  color: #ffffff;
}

.newsletter-content .newsletter-form #validator-newsletter {
  color: red;
  position: relative;
  top: 8px;
  font-size: 14px;
  font-weight: 500;
}

/*================================================
Trending Products Area CSS
=================================================*/
.trending-products-box {
  background-image: url(../img/trending-products/trending-products-1.jpg);
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.trending-products-box::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: .70;
}

.trending-products-box .products-box-title {
  position: absolute;
  bottom: 0;
  padding: 30px;
}

.trending-products-box .products-box-title span {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}

.trending-products-box .products-box-title h2 {
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #ffffff;
}

.trending-products-box .products-box-title .box-btn a {
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffffff;
  color: #09101f;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.trending-products-box .products-box-title .box-btn a:hover {
  background-color: #d31531;
  color: #ffffff;
}

.trending-products-title {
  margin-bottom: 10px;
}

.trending-products-title h3 {
  font-size: 30px;
  margin-bottom: 0;
}

.single-trending-products {
  margin-top: 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 0 20px 20px;
}

.single-trending-products .trending-products-content {
  margin-top: 10px;
  text-align: center;
}

.single-trending-products .trending-products-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.single-trending-products .trending-products-content h3 a {
  color: #09101f;
}

.single-trending-products .trending-products-content .rating {
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 5px;
}

.single-trending-products .trending-products-content .rating li {
  display: inline-block;
  list-style-type: none;
}

.single-trending-products .trending-products-content .rating li i {
  color: #fbb74d;
  font-size: 16px;
}

.single-trending-products .trending-products-content span {
  font-size: 16px;
  color: #d31531;
  font-weight: 600;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Oswald", sans-serif;
}

.single-trending-products-box {
  margin-top: 20px;
}

.single-trending-products-box .trending-products-image {
  border: 1px solid #eeeeee;
}

.single-trending-products-box .trending-products-content {
  margin-top: 20px;
  text-align: center;
}

.single-trending-products-box .trending-products-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.single-trending-products-box .trending-products-content h3 a {
  color: #09101f;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog {
  margin-bottom: 30px;
  border: 1px solid #dcdbd9;
}

.single-blog .blog-image {
  position: relative;
  overflow: hidden;
}

.single-blog .blog-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .blog-image .tag {
  display: inline-block;
  padding: 5px 20px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  bottom: 20px;
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog .blog-content {
  padding: 25px;
}

.single-blog .blog-content span {
  font-size: 15px;
  font-weight: 500;
  color: #6e727f;
}

.single-blog .blog-content span a {
  color: #6e727f;
}

.single-blog .blog-content h3 {
  font-size: 25px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 20px;
}

.single-blog .blog-content h3 a {
  color: #09101f;
}

.single-blog .blog-content .blog-btn {
  font-size: 16px;
  color: #d31531;
  font-weight: 500;
}

.single-blog:hover .blog-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-blog:hover .blog-image .tag {
  background-color: #ff4545;
  bottom: 25px;
}

.single-blog:hover .blog-content span a {
  color: #d31531;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-item img {
  width: auto !important;
  margin: auto;
  border: 1px solid #adacac;
  padding: 30px;
}

/*================================================
Work Area CSS
=================================================*/
.work-area {
  background-color: #f5f4f4;
}

.single-work {
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-work .work-content {
  position: relative;
  padding-left: 80px;
}

.single-work .work-content .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.single-work .work-content .icon i {
  font-size: 65px;
  color: #d31531;
}

.single-work .work-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.single-work .work-content p {
  margin-bottom: 0;
  font-size: 15px;
}

.single-work:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area {
  background-image: url(../img/testimonials-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}

.testimonials-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.9;
}

.testimonials-item {
  text-align: center;
  max-width: 895px;
  margin: auto;
}

.testimonials-item .icon {
  margin-bottom: 15px;
}

.testimonials-item .icon i {
  font-size: 75px;
  color: #d31531;
  line-height: 1;
}

.testimonials-item p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 0;
}

.testimonials-item .testimonials-info {
  margin-top: 25px;
}

.testimonials-item .testimonials-info img {
  margin-bottom: 15px;
  display: inline-block;
  height: 100px;
  width: 100px;
  border-radius: 50px;
}

.testimonials-item .testimonials-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.testimonials-item .testimonials-info span {
  font-size: 15px;
  font-weight: 500;
  color: #d31531;
}

.testimonials-slides.owl-theme .owl-nav {
  margin-top: 0;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-] {
  color: #09101f;
  font-size: 45px;
  margin: 0;
  padding: 0;
  background: transparent;
  display: inline-block;
  border-radius: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 0;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #d31531;
  -webkit-transform: translateX(-10px) translateY(-50%);
          transform: translateX(-10px) translateY(-50%);
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-]:hover.owl-next {
  -webkit-transform: translateX(10px) translateY(-50%);
          transform: translateX(10px) translateY(-50%);
}

.testimonials-slides.owl-theme:hover .owl-nav [class*=owl-] {
  left: 20px;
  opacity: 1;
  visibility: visible;
}

.testimonials-slides.owl-theme:hover .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: 20px;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
	position: relative;
	z-index: 1;
	background-image: url(../img/page-banner-1.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding: 140px 0;
}

.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .70;
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1;
}

.page-banner-content ul {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: #d31531;
  position: relative;
}

.page-banner-content ul li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #d31531;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li:first-child::before {
  display: none;
}

.page-banner-content ul li a {
  display: block;
  color: #ffffff;
}

/*================================================
Story Area CSS
=================================================*/
.story-image {
  background-image: url(../img/story.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}

.story-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .30;
}

.story-image .video-btn {
  text-align: center;
}

.story-image .video-btn i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 80px;
  color: #d31531;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.story-image .video-btn i:hover {
  color: #ff4545;
}

.story-content {
  padding: 15px 0;
}

.story-content h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}

/*================================================
Mission Area CSS
=================================================*/
.mission-content {
  padding: 15px 0;
}

.mission-content h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}

.mission-content p {
  margin-bottom: 0;
}

.mission-content .mission-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.mission-content .mission-list li {
  color: #6e727f;
  font-size: 16px;
  margin-bottom: 15px;
  list-style-type: none;
}

.mission-content .mission-list li:last-child {
  margin-bottom: 0;
}

.mission-content .mission-list li i {
  margin-right: 5px;
  color: #d31531;
}

.mission-image {
  background-image: url(../img/mission.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Vision Area CSS
=================================================*/
.vision-content {
  padding: 15px 0;
}

.vision-content h3 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
}

.vision-content p {
  margin-bottom: 0;
}

.vision-content .vision-list {
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

.vision-content .vision-list li {
  color: #6e727f;
  font-size: 16px;
  margin-bottom: 15px;
  list-style-type: none;
}

.vision-content .vision-list li:last-child {
  margin-bottom: 0;
}

.vision-content .vision-list li i {
  margin-right: 5px;
  color: #d31531;
}

.vision-image {
  background-image: url(../img/vision.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
Fun Facts Area CSS
=================================================*/
.fun-facts-area {
  background-image: url(../img/fun-facts-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.fun-facts-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000000;
  z-index: -1;
  opacity: .77;
}

.single-fun-fact {
  margin-bottom: 30px;
  text-align: center;
}

.single-fun-fact h3 {
  margin-bottom: 10px;
  line-height: 1;
  font-size: 65px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.single-fun-fact p {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

/*================================================
Team Area CSS
=================================================*/
.single-team {
  margin-bottom: 30px;
}

.single-team .team-image {
  position: relative;
  overflow: hidden;
}

.single-team .team-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .team-image .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-team .team-image .social li {
  list-style-type: none;
  display: inline-block;
  margin: 0 5px;
}

.single-team .team-image .social li a i {
  display: inline-block;
  height: 38px;
  width: 38px;
  line-height: 38px;
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  font-size: 16px;
  border-radius: 50px;
}

.single-team .team-image .social li a i:hover {
  background-color: #ff4545;
}

.single-team .team-content {
  text-align: center;
  margin-top: 25px;
}

.single-team .team-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.single-team .team-content span {
  font-size: 15px;
  font-weight: 500;
  color: #d31531;
}

.single-team:hover .team-image img {
  -webkit-transform: rotate(1deg) scale(1.1);
          transform: rotate(1deg) scale(1.1);
}

.single-team:hover .team-image .social {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

/*================================================
Gallery Area CSS
=================================================*/
.single-gallery-box {
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.single-gallery-box::before {
  width: 100%;
  content: '';
  position: absolute;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-gallery-box .gallery-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 35px;
  color: #ffffff;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
}

.single-gallery-box:hover::before {
  opacity: .30;
  visibility: visible;
}

.single-gallery-box:hover .gallery-btn {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

/*================================================
Compare CSS
=================================================*/
.products-compare-table table {
  margin-bottom: 0;
}

.products-compare-table table tr td {
  color: #6e727f;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.products-compare-table table tr td:first-child {
  text-transform: uppercase;
  color: #09101f;
  font-weight: 600;
}

.products-compare-table table tr td .remove-btn {
  margin-bottom: 15px;
}

.products-compare-table table tr td .remove-btn a {
  color: red;
  display: inline-block;
}

.products-compare-table table tr:first-child {
  background-color: transparent !important;
}

.products-compare-table table tr:first-child td {
  border-bottom: 1px solid #eeeeee;
}

.products-compare-table table .products-item {
  margin-bottom: 20px;
}

.products-compare-table table .products-item .image .social {
  top: 70px;
  z-index: 1;
}

/*================================================
Track Order CSS
=================================================*/
.track-order-content {
  max-width: 700px;
  background-color: #ffffff;
  -webkit-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, 0.1);
  padding: 40px;
  margin: auto;
}

.track-order-content h2 {
  margin-bottom: 30px;
  font-size: 25px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.track-order-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: 0;
  background: #d31531;
}

.track-order-content form {
  text-align: left;
}

.track-order-content form .form-group {
  margin-bottom: 20px;
}

.track-order-content form .form-group label {
  display: block;
  color: #09101f;
  margin-bottom: 10px;
  font-weight: 500;
}

.track-order-content form .form-group .form-control {
  background-color: transparent;
  height: 60px;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  padding: 0 0 0 15px;
  border: 1px solid #f5f5f5;
  color: #09101f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.track-order-content form .form-group .form-control:focus {
  border-color: #d31531;
  background-color: #ffffff;
}

.track-order-content form .default-btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  margin-top: 5px;
}

/*================================================
My Account Area CSS
=================================================*/
.login-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #f9f7fc;
  max-width: 650px;
  margin: auto;
}

.login-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.login-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #d31531;
  height: 100%;
  width: 100px;
}

.login-form form .form-group {
  margin-bottom: 25px;
}

.login-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6e727f;
  font-weight: 500;
  font-size: 16px;
}

.login-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #ffffff !important;
  border: 1px solid #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.login-form form .form-group .form-control:focus {
  border: 1px solid #d31531;
  background-color: transparent !important;
}

.login-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form .lost-your-password {
  text-align: right;
}

.login-form form .lost-your-password a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: #6e727f;
}

.login-form form .lost-your-password a::before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #eeeeee;
}

.login-form form .lost-your-password a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: 0;
  content: '';
  background-color: #ff4545;
}

.login-form form .lost-your-password a:hover::before {
  width: 0;
}

.login-form form .lost-your-password a:hover::after {
  width: 100%;
}

.login-form form button {
  border: none;
  margin-top: 25px;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.login-form form button:hover {
  background-color: #ff4545;
}

.login-form.mb-30 {
  margin-bottom: 30px;
}

.register-form {
  padding: 35px;
  border-radius: 5px;
  background-color: #f9f7fc;
  max-width: 650px;
  margin: auto;
}

.register-form h2 {
  margin-bottom: 30px;
  font-size: 25px;
  border-bottom: 1px solid #dedddf;
  padding-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.register-form h2::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #d31531;
  height: 100%;
  width: 100px;
}

.register-form form .form-group {
  margin-bottom: 25px;
}

.register-form form .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6e727f;
  font-weight: 500;
  font-size: 16px;
}

.register-form form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #09101f;
  background-color: #ffffff !important;
  border: 1px solid #ffffff;
  border-radius: 0;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 400;
}

.register-form form .form-group .form-control:focus {
  border: 1px solid #d31531;
  background-color: transparent !important;
}

.register-form form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form .form-group .form-control:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form button {
  border: none;
  padding: 15px 30px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.register-form form button:hover {
  background-color: #ff4545;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  background: #f9f7fc;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 20px 40px 20px 20px;
  color: #09101f;
  position: relative;
  display: block;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #09101f;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i::before {
  color: #ff4545;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #ff4545;
  color: #6e727f;
  font-size: 15px;
  font-weight: 400;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

/*================================================
Terms of Service Area CSS
=================================================*/
.terms-of-service-content h3 {
  font-size: 22px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.terms-of-service-content p {
  font-size: 15px;
}

.terms-of-service-content .terms-of-service-title {
  margin-bottom: 20px;
}

.terms-of-service-content .terms-of-service-title h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.terms-of-service-content .terms-of-service-title p {
  font-size: 15px;
}

/*================================================
Privacy policy Area CSS
=================================================*/
.privacy-policy-content h3 {
  font-size: 20px;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.privacy-policy-content ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 0;
}

.privacy-policy-content ul li {
  margin-bottom: 10px;
  color: #6e727f;
  line-height: 1.8;
  list-style-type: none;
}

.privacy-policy-content ul li i {
  margin-right: 5px;
  font-size: 15px;
}

/*================================================
404 Error Area CSS
=================================================*/
.error-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}

.error-content h3 {
  font-size: 38px;
  margin-top: 45px;
  margin-bottom: 20px;
}

.error-content p {
  max-width: 520px;
  margin: 0 auto 25px;
  font-size: 15px;
}

.error-content .default-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.error-content .default-btn:hover {
  background-color: #ff4545;
}

/*================================================
Contact Info Area CSS
=================================================*/
.contact-info-box {
  text-align: center;
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
}

.contact-info-box .icon {
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 35px;
  color: #ff4545;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-bottom: 12px;
  position: relative;
}

.contact-info-box .icon i {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.contact-info-box h3 {
  margin-bottom: 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}

.contact-info-box p {
  margin-bottom: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-info-box p a {
  display: inline-block;
  color: #6e727f;
}

.contact-info-box p a:hover {
  color: #d31531;
}

.contact-info-box p:last-child {
  margin-bottom: 0;
}

.contact-info-box:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

/*================================================
Contact Area CSS
=================================================*/
.contact-form {
  border-radius: 5px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 30px;
  max-width: 1050px;
  margin: auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-group .form-control {
  display: block;
  width: 100%;
  height: 60px;
  outline: 0;
  background-color: #f1f1f1;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 12px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form .form-group .form-control:focus {
  outline: 0;
  background-color: #ffffff;
  border-color: #ff4545;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contact-form .form-group textarea.form-control {
  height: auto;
  padding: 8px 12px;
  line-height: 1.5rem;
}

.contact-form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-form .form-group .help-block.with-errors ul li {
  font-size: 14px;
}

.contact-form .form-group label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #msgSubmit.text-danger, .contact-form #msgSubmit.text-success {
  margin-top: 15px;
  font-size: 20px;
}

.contact-form .default-btn {
  margin-top: 10px;
  border: none;
}

/*================================================
Map Area CSS
=================================================*/
#map iframe {
  width: 100%;
  height: 500px;
  margin-bottom: -7px;
  border: none;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
}

.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 35px;
  color: #09101f;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #d31531;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
}

.pagination-area .page-numbers i {
  position: relative;
  top: 2px;
}

/*================================================
Widget Sidebar CSS
=================================================*/
.widget-area .widget {
  margin-bottom: 30px;
}

.widget-area .widget:last-child {
  margin-bottom: 0;
}

.widget-area .widget .widget-title {
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
}

.widget-area .widget .widget-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #d31531;
}

.widget-area .widget_search form {
  position: relative;
}

.widget-area .widget_search form label {
  display: block;
  margin-bottom: 0;
}

.widget-area .widget_search form .screen-reader-text {
  display: none;
}

.widget-area .widget_search form .search-field {
  background-color: transparent;
  height: 50px;
  padding: 8px 15px;
  border: 1px solid #eeeeee;
  width: 100%;
  display: block;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px;
}

.widget-area .widget_search form .search-field:focus {
  border-color: #ff4545;
}

.widget-area .widget_search form button {
  border: none;
  background-color: #eeeeee;
  color: #ff4545;
  height: 40px;
  width: 40px;
  position: absolute;
  right: 5px;
  padding: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 5px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.widget-area .widget_search form button i {
  position: absolute;
  left: 0;
  right: 0;
  top: 52%;
  -webkit-transform: translateY(-52%);
          transform: translateY(-52%);
}

.widget-area .widget_search form button:hover, .widget-area .widget_search form button:focus {
  background-color: #ff4545;
  color: #ffffff;
}

.widget-area .widget_maxon_posts_thumb {
  position: relative;
  overflow: hidden;
}

.widget-area .widget_maxon_posts_thumb .item {
  overflow: hidden;
  margin-bottom: 15px;
}

.widget-area .widget_maxon_posts_thumb .item:last-child {
  margin-bottom: 0;
}

.widget-area .widget_maxon_posts_thumb .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.widget-area .widget_maxon_posts_thumb .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.widget-area .widget_maxon_posts_thumb .item .thumb .fullimage.bg1 {
  background-image: url(../img/blog/blog-1.jpg);
}

.widget-area .widget_maxon_posts_thumb .item .thumb .fullimage.bg2 {
  background-image: url(../img/blog/blog-2.jpg);
}

.widget-area .widget_maxon_posts_thumb .item .thumb .fullimage.bg3 {
  background-image: url(../img/blog/blog-3.jpg);
}

.widget-area .widget_maxon_posts_thumb .item .info {
  overflow: hidden;
  margin-top: 5px;
}

.widget-area .widget_maxon_posts_thumb .item .info span {
  display: block;
  color: #ff4545;
  margin-top: -2px;
  margin-bottom: 5px;
  font-size: 14px;
}

.widget-area .widget_maxon_posts_thumb .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 17px;
  font-weight: bold;
}

.widget-area .widget_maxon_posts_thumb .item .info .title a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.widget-area .widget_maxon_posts_thumb .item .info .title a:hover {
  color: #ff4545;
}

.widget-area .widget_categories ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.widget-area .widget_categories ul li {
  margin-bottom: 15px;
  color: #09101f;
  font-size: 15px;
  font-weight: 500;
}

.widget-area .widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget-area .widget_categories ul li a {
  color: #09101f;
  display: inline-block;
  position: relative;
  width: 100%;
}

.widget-area .widget_categories ul li a:hover {
  color: #d31531;
}

.widget-area .widget_categories ul li a i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.widget-area .widget_tag_cloud {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  border-radius: 5px;
  padding: 25px;
}

.widget-area .widget_tag_cloud .widget-title {
  margin-bottom: 18px;
}

.widget-area .tagcloud a {
  background: #f5f5f5;
  display: inline-block;
  color: #09101f;
  padding: 7px 15px;
  border: none;
  border-radius: 3px;
  font-weight: 500;
  font-size: 15px !important;
  margin-top: 8px;
  margin-right: 5px;
}

.widget-area .tagcloud a:hover, .widget-area .tagcloud a:focus {
  color: #ffffff;
  background-color: #ff4545;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-desc .article-content {
  margin-top: 25px;
}

.blog-details-desc .article-content p {
  font-size: 15px;
}

.blog-details-desc .article-content .details-content .post-meta {
  color: #6e727f;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
}

.blog-details-desc .article-content .details-content .post-meta a {
  color: #6e727f;
}

.blog-details-desc .article-content .details-content .post-meta a:hover {
  color: #d31531;
}

.blog-details-desc .article-content .details-content h3 {
  font-size: 25px;
  margin-top: 12px;
  margin-bottom: 20px;
}

.blog-details-desc .article-content .details-content h3 a {
  color: #09101f;
}

.blog-details-desc .article-content .details-content p {
  font-size: 15px;
}

.blog-details-desc .article-content .details-content .share-list {
  padding-left: 0;
  margin-bottom: 20px;
}

.blog-details-desc .article-content .details-content .share-list li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.blog-details-desc .article-content .details-content .share-list li:last-child {
  margin-right: 0;
}

.blog-details-desc .article-content .details-content .share-list li span {
  font-size: 16px;
  font-weight: 500;
  color: #6e727f;
}

.blog-details-desc .article-content .details-content .share-list li a {
  display: inline-block;
  height: 35px;
  width: 35px;
  line-height: 38px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  border-radius: 50px;
}

.blog-details-desc .article-content .details-content .share-list li a:hover {
  background-color: #ff4545;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog-details-desc .article-content .details-post .post-image {
  position: relative;
}

.blog-details-desc .article-content .details-post .post-image img {
  margin-bottom: 15px;
}

.blog-details-desc .article-content .details-post .post-image span {
  display: inline-block;
  padding: 5px 20px;
  background-color: #d31531;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  position: absolute;
  top: 20px;
  left: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.blog-details-desc .article-content .details-post p {
  font-size: 15px;
}

blockquote, .blockquote {
  background-color: #f4f4f4;
  padding: 30px !important;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

blockquote .icon, .blockquote .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  z-index: -1;
}

blockquote .icon i, .blockquote .icon i {
  font-size: 30px;
  color: #d31531;
}

blockquote p, .blockquote p {
  color: #09101f;
  margin-bottom: 0;
  font-size: 18px !important;
  font-weight: 500;
  padding-left: 50px;
}

.comments-area {
  margin-top: 30px;
}

.comments-area .comments-title {
  margin-bottom: 30px;
  font-size: 20px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
}

.comments-area .comments-title::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: #d31531;
}

.comments-area ol, .comments-area ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .comment-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.comments-area .children {
  margin-left: 30px;
}

.comments-area .comment-body {
  color: #09101f;
  margin-bottom: 20px;
  background: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 15px 15px 15px 80px;
  position: relative;
}

.comments-area .comment-body .reply {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 111;
}

.comments-area .comment-body .reply a {
  font-size: 15px;
  font-weight: 400;
  color: #6e727f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-body .reply a:hover {
  color: #ff4545;
}

.comments-area .comment-author {
  font-size: 16px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.comments-area .comment-author .avatar {
  height: 50px;
  left: -65px;
  position: absolute;
  width: 50px;
  border-radius: 50px;
}

.comments-area .comment-author .fn {
  font-weight: 600;
}

.comments-area .comment-metadata {
  color: #6e727f;
  margin-bottom: 10px;
  font-size: 14px;
}

.comments-area .comment-metadata a {
  display: inline-block;
  color: #6e727f;
}

.comments-area .comment-metadata a:hover {
  color: #ff4545;
}

.comments-area .comment-respond {
  margin-top: 30px;
  background-color: #f4f4f4;
  padding: 30px;
}

.comments-area .comment-respond .comment-reply-title {
  margin-bottom: 0;
  font-size: 20px;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.comments-area .comment-respond .comment-reply-title::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100px;
  height: 1px;
  bottom: -1px;
  background: #d31531;
}

.comments-area .comment-respond .comment-form {
  overflow: hidden;
}

.comments-area .comment-respond .comment-form-comment {
  float: left;
  width: 100%;
}

.comments-area .comment-respond input[type="date"], .comments-area .comment-respond input[type="time"], .comments-area .comment-respond input[type="datetime-local"], .comments-area .comment-respond input[type="week"], .comments-area .comment-respond input[type="month"], .comments-area .comment-respond input[type="text"], .comments-area .comment-respond input[type="email"], .comments-area .comment-respond input[type="url"], .comments-area .comment-respond input[type="password"], .comments-area .comment-respond input[type="search"], .comments-area .comment-respond input[type="tel"], .comments-area .comment-respond input[type="number"], .comments-area .comment-respond textarea {
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding: 0 0 0 15px;
  height: 50px;
  outline: 0;
  border-radius: 2px;
  color: #09101f;
  border: 1px solid #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.comments-area .comment-respond input[type="date"]:focus, .comments-area .comment-respond input[type="time"]:focus, .comments-area .comment-respond input[type="datetime-local"]:focus, .comments-area .comment-respond input[type="week"]:focus, .comments-area .comment-respond input[type="month"]:focus, .comments-area .comment-respond input[type="text"]:focus, .comments-area .comment-respond input[type="email"]:focus, .comments-area .comment-respond input[type="url"]:focus, .comments-area .comment-respond input[type="password"]:focus, .comments-area .comment-respond input[type="search"]:focus, .comments-area .comment-respond input[type="tel"]:focus, .comments-area .comment-respond input[type="number"]:focus, .comments-area .comment-respond textarea:focus {
  border: 1px solid #d31531;
}

.comments-area .comment-respond input[type="date"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="time"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="week"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="month"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="text"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="email"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="url"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="password"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="search"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="tel"]::-webkit-input-placeholder, .comments-area .comment-respond input[type="number"]::-webkit-input-placeholder, .comments-area .comment-respond textarea::-webkit-input-placeholder {
  color: #6e727f;
}

.comments-area .comment-respond input[type="date"]:-ms-input-placeholder, .comments-area .comment-respond input[type="time"]:-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]:-ms-input-placeholder, .comments-area .comment-respond input[type="week"]:-ms-input-placeholder, .comments-area .comment-respond input[type="month"]:-ms-input-placeholder, .comments-area .comment-respond input[type="text"]:-ms-input-placeholder, .comments-area .comment-respond input[type="email"]:-ms-input-placeholder, .comments-area .comment-respond input[type="url"]:-ms-input-placeholder, .comments-area .comment-respond input[type="password"]:-ms-input-placeholder, .comments-area .comment-respond input[type="search"]:-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]:-ms-input-placeholder, .comments-area .comment-respond input[type="number"]:-ms-input-placeholder, .comments-area .comment-respond textarea:-ms-input-placeholder {
  color: #6e727f;
}

.comments-area .comment-respond input[type="date"]::-ms-input-placeholder, .comments-area .comment-respond input[type="time"]::-ms-input-placeholder, .comments-area .comment-respond input[type="datetime-local"]::-ms-input-placeholder, .comments-area .comment-respond input[type="week"]::-ms-input-placeholder, .comments-area .comment-respond input[type="month"]::-ms-input-placeholder, .comments-area .comment-respond input[type="text"]::-ms-input-placeholder, .comments-area .comment-respond input[type="email"]::-ms-input-placeholder, .comments-area .comment-respond input[type="url"]::-ms-input-placeholder, .comments-area .comment-respond input[type="password"]::-ms-input-placeholder, .comments-area .comment-respond input[type="search"]::-ms-input-placeholder, .comments-area .comment-respond input[type="tel"]::-ms-input-placeholder, .comments-area .comment-respond input[type="number"]::-ms-input-placeholder, .comments-area .comment-respond textarea::-ms-input-placeholder {
  color: #6e727f;
}

.comments-area .comment-respond input[type="date"]::placeholder, .comments-area .comment-respond input[type="time"]::placeholder, .comments-area .comment-respond input[type="datetime-local"]::placeholder, .comments-area .comment-respond input[type="week"]::placeholder, .comments-area .comment-respond input[type="month"]::placeholder, .comments-area .comment-respond input[type="text"]::placeholder, .comments-area .comment-respond input[type="email"]::placeholder, .comments-area .comment-respond input[type="url"]::placeholder, .comments-area .comment-respond input[type="password"]::placeholder, .comments-area .comment-respond input[type="search"]::placeholder, .comments-area .comment-respond input[type="tel"]::placeholder, .comments-area .comment-respond input[type="number"]::placeholder, .comments-area .comment-respond textarea::placeholder {
  color: #6e727f;
}

.comments-area .comment-respond textarea {
  height: auto !important;
  padding-top: 15px;
}

.comments-area .comment-respond .comment-form-author {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-email {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-url {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent {
  width: 100%;
  float: left;
  position: relative;
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.comments-area .comment-respond .comment-form-cookies-consent input {
  position: absolute;
  left: 0;
  top: 7.5px;
}

.comments-area .comment-respond .comment-form-cookies-consent label {
  display: inline-block;
  margin: 0;
  color: #6e727f;
}

.comments-area .comment-respond .form-submit {
  float: left;
  width: 100%;
}

.comments-area .comment-respond .form-submit input {
  background: #d31531;
  border: none;
  color: #ffffff;
  padding: 10px 30px 10px;
  display: inline-block;
  cursor: pointer;
  text-transform: capitalize;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
}

.comments-area .comment-respond .form-submit input:hover {
  background-color: #ff4545;
}

/*================================================
Shop Area CSS
=================================================*/
.shop-category .category-title {
  text-align: center;
}

.shop-category .category-title a {
  font-size: 16px;
  color: #ffffff;
  display: inline-block;
  background-color: #d31531;
  padding: 20px 30px;
  width: 100%;
}

.shop-category .shop-category-menu {
  width: 100%;
  overflow: auto;
  max-height: 620px;
  -webkit-box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
          box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
  background-color: #ffffff;
}

.shop-category .shop-category-menu .category-list {
  padding-left: 0;
  margin-bottom: 0;
}

.shop-category .shop-category-menu .category-list li {
  list-style-type: none;
}

.shop-category .shop-category-menu .category-list li a {
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  z-index: 1;
  color: #09101f;
}

.shop-category .shop-category-menu .category-list li a::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.shop-category .shop-category-menu .category-list li a:hover {
  color: #ffffff;
}

.shop-category .shop-category-menu .category-list li a:hover::before {
  height: 100%;
}

.shop-category .shop-category-menu .category-list li:last-child a {
  border-bottom: none;
}

.shop-category ::-webkit-scrollbar {
  width: 5px;
}

.shop-category ::-webkit-scrollbar-track {
  background: #666666;
}

.shop-category ::-webkit-scrollbar-thumb {
  background: #e1e1e1;
}

.shop-sidebar .brand-sidebar-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
          box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
  border-radius: 5px;
  padding: 25px;
  margin-top: 30px;
}

.shop-sidebar .brand-sidebar-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.shop-sidebar .brand-sidebar-item .brand-input-checkbox {
  padding-left: 0;
  margin-bottom: 0;
}

.shop-sidebar .brand-sidebar-item .brand-input-checkbox .checkbox {
  list-style-type: none;
  position: relative;
  margin-bottom: 12px;
}

.shop-sidebar .brand-sidebar-item .brand-input-checkbox .checkbox:last-child {
  margin-bottom: 0;
}

.shop-sidebar .brand-sidebar-item .brand-input-checkbox .checkbox .input {
  display: inline-block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 0;
  cursor: pointer;
}

.shop-sidebar .brand-sidebar-item .brand-input-checkbox .checkbox .label {
  margin-bottom: 0;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  color: #6e727f;
}

.shop-sidebar .discount-sidebar-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
          box-shadow: 0px 11px 92px 5px rgba(109, 109, 109, 0.21);
  border-radius: 5px;
  padding: 25px;
  margin-top: 30px;
}

.shop-sidebar .discount-sidebar-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 25px;
}

.shop-sidebar .discount-sidebar-item .discount-input-checkbox {
  padding-left: 0;
  margin-bottom: 0;
}

.shop-sidebar .discount-sidebar-item .discount-input-checkbox .checkbox {
  list-style-type: none;
  position: relative;
  margin-bottom: 12px;
}

.shop-sidebar .discount-sidebar-item .discount-input-checkbox .checkbox:last-child {
  margin-bottom: 0;
}

.shop-sidebar .discount-sidebar-item .discount-input-checkbox .checkbox .input {
  display: inline-block;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 0;
  cursor: pointer;
}

.shop-sidebar .discount-sidebar-item .discount-input-checkbox .checkbox .label {
  margin-bottom: 0;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 500;
  color: #6e727f;
}

.shop-item-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
          box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 45px 25px;
  border-radius: 5px;
  margin-bottom: 30px;
}

.shop-item-box:last-child {
  margin-bottom: 0;
}

.shop-item-box .shop-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.shop-item-box .shop-content .rating i {
  font-size: 15px;
  color: #fac64a;
}

.shop-item-box .shop-content .rating a {
  font-size: 15px;
  color: #6e727f;
}

.shop-item-box .shop-content .shop-list {
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
}

.shop-item-box .shop-content .shop-list li {
  list-style-type: none;
  margin-bottom: 10px;
  font-size: 15px;
}

.shop-item-box .shop-content .shop-list li:last-child {
  margin-bottom: 0;
}

.shop-item-box .shop-btn-list {
  padding-left: 0;
  margin-bottom: 0;
}

.shop-item-box .shop-btn-list li {
  list-style-type: none;
  margin-bottom: 15px;
  text-align: center;
}

.shop-item-box .shop-btn-list li:last-child {
  margin-bottom: 0;
}

.shop-item-box .shop-btn-list li span {
  font-size: 16px;
  color: #d31531;
  font-weight: 500;
}

.shop-item-box .shop-btn-list li a {
  display: inline-block;
  padding: 5px 20px;
  background-color: #d31531;
  color: #ffffff;
  width: 100%;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
  font-size: 14px;
}

.shop-item-box .shop-btn-list li a:hover {
  background-color: #ff4545;
}

/*================================================
Cart Area CSS
=================================================*/
.cart-area {
  background-color: #f5f5f5;
}

.cart-table table {
  margin-bottom: 0;
}

.cart-table table thead {
  background-color: #ffffff;
}

.cart-table table thead tr th {
  border-bottom-width: 0px;
  vertical-align: middle;
  padding: 20px 20px 20px 20px;
  border: none;
  white-space: nowrap;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.cart-table table tbody tr td {
  vertical-align: middle;
  color: #6e727f;
  white-space: nowrap;
  font-weight: bold;
  font-size: 15px;
  padding: 35px 0 35px 0;
  border-color: #e1e1e1;
  border-left: none;
  border-right: none;
  text-align: center;
}

.cart-table table tbody tr td.product-thumbnail a {
  display: block;
}

.cart-table table tbody tr td.product-thumbnail a img {
  width: 80px;
  border: 1px solid #ffffff;
}

.cart-table table tbody tr td.product-thumbnail .remove {
  color: #6e727f;
  font-size: 18px;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 50px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  height: 20px;
  width: 20px;
  line-height: 24px;
  background-color: #a4a4a4;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
}

.cart-table table tbody tr td.product-name a {
  display: inline-block;
}

.cart-table table tbody tr td.product-quantity .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.cart-table table tbody tr td.product-quantity .input-counter span {
  position: absolute;
  top: 0;
  background-color: #a4a4a4;
  cursor: pointer;
  color: #ffffff;
  width: 25px;
  height: 25px;
  line-height: 28px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  border-radius: 50%;
}

.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
  left: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
  right: 0;
}

.cart-table table tbody tr td.product-quantity .input-counter input {
  height: 25px;
  color: #09101f;
  outline: 0;
  display: block;
  border: none;
  background-color: #ffffff;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
  color: #09101f;
}

.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
  color: #09101f;
}

.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
  color: #09101f;
}

.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
  color: #09101f;
}

.cart-table table tbody tr td.product-subtotal {
  overflow: hidden;
}

.cart-table table tbody tr.top-class td {
  border: none;
}

.cart-buttons {
  margin-top: 30px;
  text-align: right;
}

.cart-buttons .shopping-coupon-code {
  position: relative;
  max-width: 530px;
}

.cart-buttons .shopping-coupon-code .form-control {
  height: 50px;
  color: #09101f;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 1px solid #e1e1e1;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  padding: -2px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.cart-buttons .shopping-coupon-code button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: #09101f;
  color: #ffffff;
  border: none;
  padding: 0 25px;
  line-height: 48px;
  outline: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.cart-buttons .shopping-coupon-code button:hover {
  background-color: #d31531;
}

.cart-buttons .default-btn {
  color: #ffffff !important;
  border-radius: 0;
  font-size: 15px;
  margin-bottom: -6px;
}

.cart-buttons .default-btn span {
  background-color: #09101f;
}

.cart-totals {
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
}

.cart-totals h3 {
  margin-bottom: 30px;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.cart-totals h3::before {
  content: '';
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #d31531;
}

.cart-totals ul {
  padding-left: 0;
  margin: 0 0 15px;
  list-style-type: none;
}

.cart-totals ul li {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0 15px 0;
  color: #09101f;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
}

.cart-totals ul li:first-child {
  padding-top: 0;
}

.cart-totals ul li:last-child {
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
}

.cart-totals ul li:last-child span {
  color: #09101f;
  font-weight: 600;
}

.cart-totals ul li span {
  float: right;
  color: #6e727f;
}

.cart-totals .default-btn {
  color: #ffffff !important;
  width: 100%;
  border-radius: 0;
  text-align: center;
  font-size: 15px;
}

.cart-totals .default-btn span {
  background-color: #09101f;
}

/*================================================
Wishlist Area CSS
=================================================*/
.wishlist-area {
  background-color: #f5f5f5;
}

.wishlist-table {
  max-width: 950px;
  margin: auto;
}

.wishlist-table .wishlist-title {
  background-color: #ffffff;
  padding: 30px;
}

.wishlist-table .wishlist-title h2 {
  font-size: 25px;
  margin-bottom: 0;
  font-weight: 500;
}

.wishlist-table table {
  margin-bottom: 0;
}

.wishlist-table table tbody tr td {
  vertical-align: middle;
  color: #6e727f;
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
  padding: 35px 0 35px 0;
  border-color: #e1e1e1;
  border-top: none;
  border-left: none;
  border-right: none;
}

.wishlist-table table tbody tr td.product-thumbnail a {
  display: block;
}

.wishlist-table table tbody tr td.product-thumbnail a img {
  width: 120px;
  text-align: center;
  border: 1px solid #ffffff;
}

.wishlist-table table tbody tr td.product-name a {
  display: inline-block;
}

.wishlist-table table tbody tr td.product-remove .remove {
  color: #6e727f;
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: 22px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 24px;
  background-color: #a4a4a4;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
}

.wishlist-table table tbody tr td.product-stock .stock {
  float: right;
}

.wishlist-table table tbody tr td.product-btn .default-btn {
  color: #ffffff !important;
  float: right;
}

.wishlist-table table tbody tr td.product-btn .default-btn span {
  background-color: #09101f;
}

.wishlist-table table tbody tr td.product-btn .default-btn i {
  color: #ffffff;
}

.wishlist-table table tbody tr.bottom-class td {
  border: none;
}

/*================================================
Checkout Area CSS
=================================================*/
.checkout-area {
  background-color: #f5f5f5;
}

.user-actions {
  background: #ffffff;
  padding: 15px 20px;
  position: relative;
  margin-bottom: 35px;
}

.user-actions i {
  color: #d31531;
  margin-right: 2px;
  font-size: 20px;
  position: relative;
  top: 3px;
}

.user-actions span {
  display: inline-block;
  color: #d31531;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
}

.user-actions span:last-child {
  margin-bottom: 0;
}

.user-actions span a {
  display: inline-block;
}

.billing-details .title {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
}

.billing-details .title::before {
  content: '';
  position: absolute;
  background: #d31531;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.billing-details .form-group {
  margin-bottom: 25px;
}

.billing-details .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 15px;
}

.billing-details .form-group label .required {
  color: #ff4545;
}

.billing-details .form-group .nice-select {
  display: block;
  float: unset;
  background: #ffffff;
  border-color: #eeeeee;
  color: #09101f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 0 0 12px;
  height: 55px;
  line-height: 50px;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

.billing-details .form-group .nice-select .list {
  background-color: #ffffff;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  list-style-type: none;
  border: none;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.billing-details .form-group .nice-select .list .option {
  line-height: 38px;
  min-height: 38px;
  color: #09101f;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 15px;
  font-weight: 5old;
}

.billing-details .form-group .nice-select .list .option:hover {
  background-color: #d31531 !important;
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option:hover::before {
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.focus, .billing-details .form-group .nice-select .list .option.selected.focus {
  background-color: transparent !important;
  color: #09101f;
}

.billing-details .form-group .nice-select .list .option.selected::before {
  opacity: 1;
  visibility: visible;
}

.billing-details .form-group .nice-select .list .option.selected:hover {
  background-color: #d31531 !important;
  color: #ffffff;
}

.billing-details .form-group .nice-select .list .option.selected:hover::before {
  color: #ffffff;
}

.billing-details .form-group .nice-select:after {
  border-color: #09101f;
  height: 8px;
  width: 8px;
  margin-top: -5px;
}

.billing-details .form-group .nice-select:hover {
  border-color: #d31531;
  background-color: transparent;
}

.billing-details .form-group .form-control {
  height: 55px;
  color: #09101f;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 1px solid #eeeeee;
  background-color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.billing-details .form-group .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.billing-details .form-group .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.billing-details .form-group .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.billing-details .form-group .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.billing-details .form-group .form-control:focus {
  border-color: #d31531;
  background-color: transparent;
}

.billing-details .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.billing-details .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.billing-details .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.billing-details .form-group .form-control:focus::placeholder {
  color: transparent;
}

.billing-details .form-group textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.billing-details .form-check {
  margin-bottom: 20px;
}

.billing-details .form-check .form-check-label {
  color: #09101f;
  font-weight: 500;
}

.billing-details .form-check label {
  position: relative;
  left: -3px;
  top: 0;
  font-weight: 500;
}

.billing-details .col-lg-12:last-child .form-group {
  margin-bottom: 0;
}

.order-details .cart-totals {
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
}

.order-details .cart-totals h3 {
  margin-bottom: 30px;
  font-size: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
  position: relative;
}

.order-details .cart-totals h3::before {
  content: '';
  position: absolute;
  left: 0;
  width: 50px;
  height: 1px;
  bottom: -1px;
  background: #d31531;
}

.order-details .cart-totals ul {
  padding-left: 0;
  margin: 0 0 15px;
  list-style-type: none;
}

.order-details .cart-totals ul li {
  border-bottom: 1px solid #ebebeb;
  padding: 10px 0 15px 0;
  color: #09101f;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
}

.order-details .cart-totals ul li:first-child {
  padding-top: 0;
}

.order-details .cart-totals ul li:last-child {
  font-size: 18px;
  border-bottom: none;
  padding-bottom: 0;
}

.order-details .cart-totals ul li:last-child span {
  color: #09101f;
  font-weight: 600;
}

.order-details .cart-totals ul li span {
  float: right;
  color: #6e727f;
}

.order-details .cart-totals .default-btn {
  color: #ffffff !important;
  width: 100%;
  border-radius: 0;
  text-align: center;
  font-size: 15px;
}

.order-details .cart-totals .default-btn span {
  background-color: #09101f;
}

.order-details .payment-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  margin-top: 30px;
  padding: 30px;
}

.order-details .payment-box .title {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  font-size: 20px;
}

.order-details .payment-box .title::before {
  content: '';
  position: absolute;
  background: #d31531;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 1px;
}

.order-details .payment-box .payment-method p [type="radio"]:checked, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) {
  display: none;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label {
  padding-left: 28px;
  cursor: pointer;
  display: block;
  color: #09101f;
  position: relative;
  margin-bottom: 8px;
  font-weight: bold;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::before, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after, .order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #d31531;
  position: absolute;
  top: 7px;
  left: 3px;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.order-details .payment-box .payment-method p [type="radio"]:not(:checked) + label::after {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.order-details .payment-box .payment-method p [type="radio"]:checked + label::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.order-details .payment-box .default-btn {
  margin-top: 15px;
  -webkit-box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
          box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2);
  color: #ffffff !important;
  width: 100%;
  text-align: center;
}

.order-details .payment-box .default-btn span {
  background-color: #09101f;
}

/*================================================
Products Details Area CSS
=================================================*/
.products-details-desc .product-content h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.products-details-desc .product-content .product-review {
  margin-bottom: 15px;
}

.products-details-desc .product-content .product-review .rating {
  display: inline-block;
  font-size: 20px;
}

.products-details-desc .product-content .product-review .rating i {
  color: #ffba0a;
}

.products-details-desc .product-content .price {
  margin-bottom: 15px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.products-details-desc .product-content .price .old-price {
  text-decoration: line-through;
  color: #828893;
}

.products-details-desc .product-content p {
  margin-bottom: 0;
}

.products-details-desc .product-content .products-info {
  list-style-type: none;
  padding-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
}

.products-details-desc .product-content .products-info li {
  color: #09101f;
  margin-bottom: 8px;
  font-size: 16px;
}

.products-details-desc .product-content .products-info li:last-child {
  margin-bottom: 0;
}

.products-details-desc .product-content .products-info li span {
  color: #09101f;
  font-size: 16px;
  font-weight: 700;
  margin-right: 5px;
}

.products-details-desc .product-content .products-info li a {
  display: inline-block;
  font-weight: 500;
  color: #6e727f;
  font-size: 16px;
}

.products-details-desc .product-content .products-info li a:hover {
  color: #d31531;
}

.products-details-desc .product-content .products-color-switch {
  margin-top: 10px;
}

.products-details-desc .product-content .products-color-switch p span {
  color: #09101f;
  font-size: 16px;
  font-weight: 700;
}

.products-details-desc .product-content .products-color-switch .available-color a {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 0;
  vertical-align: middle;
  margin-left: 6px;
}

.products-details-desc .product-content .product-quantities {
  margin-top: 20px;
}

.products-details-desc .product-content .product-quantities span {
  color: #09101f;
  font-size: 16px;
  font-weight: 700;
  margin-right: 5px;
}

.products-details-desc .product-content .product-quantities .input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.products-details-desc .product-content .product-quantities .input-counter span {
  position: absolute;
  top: 0;
  background-color: #a4a4a4;
  cursor: pointer;
  color: #ffffff;
  width: 25px;
  height: 25px;
  line-height: 28px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 18px;
  border-radius: 50%;
}

.products-details-desc .product-content .product-quantities .input-counter span.minus-btn {
  left: 0;
}

.products-details-desc .product-content .product-quantities .input-counter span.plus-btn {
  right: 0;
}

.products-details-desc .product-content .product-quantities .input-counter input {
  height: 25px;
  color: #09101f;
  outline: 0;
  display: block;
  border: none;
  background-color: #f8f8f8;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.products-details-desc .product-content .product-quantities .input-counter input::-webkit-input-placeholder {
  color: #09101f;
}

.products-details-desc .product-content .product-quantities .input-counter input:-ms-input-placeholder {
  color: #09101f;
}

.products-details-desc .product-content .product-quantities .input-counter input::-ms-input-placeholder {
  color: #09101f;
}

.products-details-desc .product-content .product-quantities .input-counter input::placeholder {
  color: #09101f;
}

.products-details-desc .product-content .product-add-to-cart {
  margin-top: 20px;
}

.products-details-desc .product-content .product-add-to-cart .default-btn {
  position: relative;
  border: none;
  padding: 12px 30px;
  background-color: #d31531;
  color: #ffffff;
  border: 1px solid #d31531;
  cursor: pointer;
  border-radius: 0;
}

.products-details-desc .product-content .product-add-to-cart .default-btn i {
  margin-right: 2px;
}

.products-details-tabs {
  margin-top: 50px;
}

.products-details-tabs .nav {
  padding-left: 0;
  margin-bottom: 30px;
  list-style-type: none;
  display: block;
}

.products-details-tabs .nav .nav-item {
  display: inline-block;
  margin-right: 30px;
}

.products-details-tabs .nav .nav-item:last-child {
  margin-right: 0;
}

.products-details-tabs .nav .nav-item .nav-link {
  border: none;
  border-bottom: 1px solid #eeeeee;
  padding: 0;
  background-color: transparent;
  position: relative;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #09101f;
}

.products-details-tabs .nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #d31531;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  bottom: -2px;
}

.products-details-tabs .nav .nav-item .nav-link:hover, .products-details-tabs .nav .nav-item .nav-link.active {
  color: #09101f;
}

.products-details-tabs .nav .nav-item .nav-link:hover::before, .products-details-tabs .nav .nav-item .nav-link.active::before {
  width: 100%;
}

.products-details-tabs .tab-content .tab-pane h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.products-details-tabs .tab-content .tab-pane p {
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 20px;
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane ul li {
  margin-bottom: 12px;
  position: relative;
  color: #6e727f;
  padding-left: 15px;
  font-weight: 500;
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #6e727f;
}

.products-details-tabs .tab-content .tab-pane ul li:last-child {
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane .products-reviews h3 {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .row {
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .side {
  float: left;
  width: 9%;
  margin-top: 10px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .side div {
  font-weight: bold;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .middle {
  margin-top: 14px;
  float: left;
  width: 82%;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .right {
  text-align: right;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-container {
  width: 100%;
  background-color: #f1f1f1;
  text-align: center;
  color: #ffffff;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-5 {
  width: 70%;
  height: 18px;
  background-color: #d31531;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-4 {
  width: 20%;
  height: 18px;
  background-color: #d31531;
  border-radius: 5px;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-3 {
  width: 5%;
  height: 18px;
  background-color: #d31531;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-2 {
  width: 3%;
  height: 18px;
  background-color: #d31531;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-reviews .bar-1 {
  width: 2%;
  height: 18px;
  background-color: #d31531;
  border-radius: 5px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form {
  margin-top: 45px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title {
  position: relative;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating {
  display: inline-block;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .rating i {
  color: #ebebeb;
  font-size: 16px;
  margin-right: -1px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn {
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  color: #ffffff !important;
  padding: 10px 25px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-title .default-btn span {
  background-color: #09101f;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments {
  margin-top: 35px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item {
  margin-top: 30px;
  position: relative;
  border-top: 1px dashed #eeeeee;
  padding-top: 30px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating .bx.bxs-star {
  color: #ffba0a;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item .rating i {
  font-size: 16px;
  color: #ebebeb;
  margin-right: -1px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item h3 {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span {
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item span strong {
  font-weight: 500;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-comments .review-item p {
  margin-bottom: 0;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form {
  margin-top: 30px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-group {
  margin-bottom: 20px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control {
  height: 55px;
  color: #09101f;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 3px;
  padding: 1px 0 0 15px;
  font-size: 15px;
  font-weight: 500;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::-webkit-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::-ms-input-placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control::placeholder {
  color: #7e7e7e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus {
  border-color: #d31531;
  background-color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .form-control:focus::placeholder {
  color: transparent;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn {
  color: #ffffff !important;
  cursor: pointer;
  border: none;
}

.products-details-tabs .tab-content .tab-pane .products-review-form .review-form .default-btn span {
  background-color: #09101f;
}

.products-details-tabs .tab-content .tab-pane .information-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.products-details-tabs .tab-content .tab-pane .information-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 0;
  font-size: 16px;
  font-weight: bold;
  color: #09101f;
}

.products-details-tabs .tab-content .tab-pane .information-list li::before {
  display: none;
}

.products-details-tabs .tab-content .tab-pane .information-list li span {
  font-weight: 500;
  color: #6e727f;
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane .information-list li a {
  display: inline-block;
  font-weight: 500;
  position: relative;
  color: #6e727f;
  font-size: 15px;
}

.products-details-tabs .tab-content .tab-pane .information-list li a:hover::before {
  width: 100%;
}

.products-details-tabs .tab-content .tab-pane .information-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.products-details-tabs .tab-content .tab-pane .information-list li:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
  Genel Stil Ayarları
--------------------------------------------------------------*/
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Sepet Konteyneri */
.sepet-container {
    display: flex;
    justify-content: space-between;
    margin: 20px;
    gap: 20px;
}

/* Sol Taraf: Ürünler */
.left-column {
    width: 65%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.sepet-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.sepet-table th, .sepet-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.sepet-table th {
    background-color: #f8f8f8;
}

.sepet-table tr:last-child td {
    border-bottom: none;
}

.sepet-table tr:hover {
    background-color: #f2f2f2;
}

/* Sağ Taraf: Toplam Ücret ve Onay */
.right-column {
    width: 30%; /* Sağ tarafın genişliği */
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin-top: 20px; /* Üstten boşluk */
}

.right-column h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #007bff;
}

.right-column p {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.right-column h4 {
    font-size: 18px;
    margin-top: 20px;
    color: #444;
    font-weight: 600;
}


.label-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  cursor: pointer;
}

/* Sepet Onayla Butonu */
.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* İkonlar ve Sözleşme Onayları */
.right-column input[type="checkbox"] {
    margin-right: 10px;
}

.right-column label {
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 15px; /* Sözleşme etiketleri arasına boşluk ekleyin */
}

/* Sepet Başlık */
h2 {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 40px;
}

/* Sepet Tablosu: Ürünler ve Fiyatlar */
.sepet-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.sepet-table th, .sepet-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sepet-table th {
    background-color: #f8f8f8;
    font-weight: bold;
    color: #007bff;
}

.sepet-table td {
    font-size: 16px;
}

.sepet-table tr:hover {
    background-color: #f1f1f1;
}

/* Sol Taraf: Ürünler ve Detaylar */
.left-column {
    width: 65%; /* Sol taraftaki alanın genişliğini ayarlayın */
    padding-right: 20px;
    margin-top: 20px; /* Üstten boşluk ekleyin */
}

.left-column table {
    width: 100%;
    margin-top: 20px;
}

/* Arka Plan ve Düğmeler */
body {
    background-color: #f8f9fa; /* Sayfa arka planını hafif gri yapalım */
}

.sepet-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
}

/* Mobil Uyumlu Tasarım */
@media screen and (max-width: 768px) {
    .sepet-container {
        flex-direction: column; /* Sağ ve sol kısmı alt alta yerleştir */
    }

    .right-column {
        width: 100%;
        margin-top: 20px;
    }

    .left-column {
        width: 100%;
    }

    .btn-primary {
        width: 100%; /* Mobilde buton tam genişlikte olsun */
    }
}




/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-image: url(../img/footer-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  background-attachment: fixed;
}

.footer-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  background-color: #000000;
  z-index: -1;
  opacity: 0.9;
}

.single-footer-widget {
  margin-bottom: 30px;
}

.single-footer-widget img {
  margin-bottom: 25px;
}

.single-footer-widget p {
  color: #ffffff;
  margin-bottom: 0;
  font-size: 15px;
}

.single-footer-widget .footer-social {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 25px;
}

.single-footer-widget .footer-social li {
  list-style-type: none;
  display: inline-block;
  margin-right: 10px;
}

.single-footer-widget .footer-social li:last-child {
  margin-right: 0;
}

.single-footer-widget .footer-social li i {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background-color: #ffffff;
  color: #d31531;
  font-size: 18px;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .footer-social li i:hover {
  background-color: #d31531;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.single-footer-widget h2 {
  position: relative;
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #ffffff;
}

.single-footer-widget h2::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: #ffffff;
}

.single-footer-widget .footer-post {
  position: relative;
  overflow: hidden;
}

.single-footer-widget .footer-post .item {
  overflow: hidden;
  margin-bottom: 25px;
}

.single-footer-widget .footer-post .item:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-post .item .thumb {
  float: left;
  height: 80px;
  overflow: hidden;
  display: block;
  position: relative;
  width: 80px;
  margin-right: 15px;
  z-index: 1;
}

.single-footer-widget .footer-post .item .thumb .fullimage {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 5px;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center !important;
}

.single-footer-widget .footer-post .item .thumb .fullimage.bg1 {
  background-image: url(../img/footer-post/footer-post-1.jpg);
}

.single-footer-widget .footer-post .item .thumb .fullimage.bg2 {
  background-image: url(../img/footer-post/footer-post-2.jpg);
}

.single-footer-widget .footer-post .item .info {
  overflow: hidden;
}

.single-footer-widget .footer-post .item .info .title {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.single-footer-widget .footer-post .item .info .title a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #ffffff;
}

.single-footer-widget .footer-post .item .info span {
  display: block;
  color: #ff4545;
  margin-bottom: 5px;
  font-size: 14px;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .quick-links li {
  margin-bottom: 15px;
  color: #ffffff;
  font-size: 14px;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: #d31531;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.single-footer-widget .quick-links li i {
  color: #d31531;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
  padding-left: 35px;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  color: #d31531;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 20px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #d31531;
}

.single-footer-widget .footer-contact-info li a:hover::before {
  width: 100%;
}

.single-footer-widget .footer-contact-info li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #d31531;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}

.copyright-area .copyright-area-content p {
	color: rgb(9 16 31 / 55%);
	font-size: 12px;
}

.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #d31531;
}

.copyright-area .copyright-area-content p a:hover {
  color: #09101f;
}

.copyright-area .copyright-area-content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  text-align: right;
}

.copyright-area .copyright-area-content ul li {
  display: inline-block;
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
}

.copyright-area .copyright-area-content ul li a {
  display: inline-block;
  color: #09101f;
}

.copyright-area .copyright-area-content ul li a:hover {
  color: #d31531;
}

.copyright-area .copyright-area-content ul li::before {
  content: '';
  position: absolute;
  top: 5px;
  right: -13px;
  width: 1px;
  height: 14px;
  background-color: #d31531;
}

.copyright-area .copyright-area-content ul li:last-child {
  margin-right: 0;
}

.copyright-area .copyright-area-content ul li:last-child::before {
  display: none;
}

.copyright-area .copyright-area-content ul li:first-child {
  margin-left: 0;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #09101f;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: #d31531;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
	.footer-area {
        background-color: #000;
        color: #fff;
        padding: 70px 0 50px;
        position: relative;
    }
    
    .footer-area::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        opacity: 0.1;
        pointer-events: none;
    }
    
    .single-footer-widget {
        margin-bottom: 30px;
    }
    
    .single-footer-widget h2 {
        font-size: 22px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
        color: #fff;
    }
    
    .single-footer-widget h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: #e50000;
    }
    
    .footer-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }
    
    .footer-social {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
        display: flex;
        justify-content: center;
    }
    
    .footer-social li {
        margin: 0 5px;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: #e50000;
        color: #fff;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background-color: #fff;
        color: #e50000;
        transform: translateY(-3px);
    }
    
    .quick-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .quick-links li {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }
    
    .quick-links li i {
        color: #e50000;
        margin-right: 10px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .quick-links a {
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 16px;
    }
    
    .quick-links a:hover {
        color: #e50000;
        padding-left: 5px;
    }
    
    .quick-links li:hover i {
        transform: translateX(5px);
    }
    
    .footer-contact-info {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-contact-info li {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contact-info i {
        color: #e50000;
        margin-right: 15px;
        font-size: 20px;
        min-width: 20px;
    }
    
    .footer-contact-info span {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
        color: #e50000;
    }
    
    .footer-contact-info a {
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer-contact-info a:hover {
        color: #e50000;
    }
    
    .copyright-area {
        background-color: #0a0a0a;
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .copyright-area p {
        margin: 0;
        color: #fff;
        font-size: 14px;
    }
    
    .go-top {
        position: fixed;
        right: 20px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        background-color: #e50000;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .go-top.active {
        opacity: 1;
        visibility: visible;
    }
    
    .go-top:hover {
        background-color: #000;
        transform: translateY(-5px);
    }
	
	
		.filter-panel {
			background: white;
			border-radius: 12px;
			box-shadow: 0 4px 16px rgba(0,0,0,0.1);
			overflow: hidden;
			transition: all 0.3s ease;
		}
		
		.filter-header {
			padding: 16px;
			border-bottom: 1px solid #e5e7eb;
			display: flex;
			align-items: center;
			justify-content: space-between;
			cursor: pointer;
		}
		
		.filter-header h3 {
			margin: 0;
			font-size: 18px;
			font-weight: 600;
			color: #1f2937;
			display: flex;
			align-items: center;
			gap: 8px;
		}
		
		.filter-icon {
			width: 20px;
			height: 20px;
			display: inline-block;
			vertical-align: middle;
		}
		
		.filter-body {
			padding: 16px;
			transition: max-height 0.3s ease;
			overflow: hidden;
		}
		
		.filter-group {
			margin-bottom: 20px;
		}
		
		.filter-group:last-child {
			margin-bottom: 0;
		}
		
		.filter-label {
			display: block;
			font-weight: 600;
			font-size: 14px;
			color: #374151;
			margin-bottom: 8px;
		}
		
		.filter-select, .filter-input {
			width: 100%;
			padding: 10px 12px;
			border: 1px solid #d1d5db;
			border-radius: 8px;
			font-size: 14px;
			color: #1f2937;
			background-color: #f9fafb;
			transition: all 0.2s ease;
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
			background-repeat: no-repeat;
			background-position: right 12px center;
			padding-right: 36px;
		}
		
		.filter-select:focus, .filter-input:focus {
			outline: none;
			border-color: #3b82f6;
			box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
		}
		
		.price-inputs {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 12px;
		}
		
		.input-with-icon {
			position: relative;
		}
		
		.input-icon {
			position: absolute;
			left: 12px;
			top: 50%;
			transform: translateY(-50%);
			color: #6b7280;
		}
		
		.input-with-icon .filter-input {
			padding-left: 32px;
		}
		
		.currency-buttons {
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 10px;
		}
		
		.currency-btn {
			padding: 10px;
			border: 1px solid #d1d5db;
			border-radius: 8px;
			background: white;
			cursor: pointer;
			transition: all 0.2s ease;
			text-align: center;
			font-size: 14px;
		}
		
		.currency-btn.active {
			background-color: #eff6ff;
			border-color: #3b82f6;
			color: #1d4ed8;
			font-weight: 600;
		}
		
		.filter-btn {
			width: 100%;
			padding: 12px;
			background: #d31531;
			color: white;
			border: none;
			border-radius: 8px;
			font-weight: 600;
			cursor: pointer;
			transition: background 0.2s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 8px;
			margin-top: 24px; /* Buton ile son dropdown arasında boşluk */
		}
		
		.filter-btn:hover {
			background: #1d4ed8;
		}
		
		.chevron-icon {
			transition: transform 0.3s ease;
		}
		
		.rotate-icon {
			transform: rotate(180deg);
		}
		
		/* Dropdown için z-index ayarı */
		.nice-select {
			width: 100%;
			text-align: left !important;
			padding: 10px 12px;
			border: 1px solid #d1d5db;
			border-radius: 8px;
			background-color: #f9fafb;
			height: auto;
			line-height: 1.5;
		}
		
		.nice-select .current {
			display: block;
			width: 100%;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}
		
		.nice-select .list {
			width: 100%;
			margin-top: 4px;
			border-radius: 8px;
			box-shadow: 0 4px 12px rgba(0,0,0,0.1);
			z-index: 100;
		}
		
		.nice-select .option {
			padding: 10px 12px;
			min-height: auto;
			line-height: 1.5;
		}
		
		/* Mobil için daraltılabilir panel */
		@media (max-width: 768px) {
			.filter-body.collapsed {
				max-height: 0;
				padding-top: 0;
				padding-bottom: 0;
			}
			
			.filter-body.expanded {
				max-height: 1000px;
				padding: 16px;
			}
		}
		
		/* Masaüstü için her zaman açık */
		@media (min-width: 769px) {
			.filter-body {
				max-height: 1000px !important;
				padding: 16px !important;
			}
		}
		
		.products-content h4{
			font-size: 16px;
			font-weight: 400;
			text-align: center;
			font-family: 'Inter';
		}
/*# sourceMappingURL=style.css.map */