/*-----------------------------------------------------------------------------------

    Template Name: Kngu - Flower HTML Bootstrap 5 Template
    Version: 1.0

-----------------------------------------------------------------------------------
    
    CSS INDEX
    ===================
	
    01. Theme default CSS
	02. Elements CSS
		2.1 - Button CSS
		2.2 - Form CSS
		2.3 - Blockquote CSS		
	03. Header CSS
		3.1 - Header Top CSS
		3.2 - Header Main CSS
	04. Pages CSS (All Page Styles)
		4.1 - Slider CSS
		4.2 - Shipping CSS
		4.3 - Product CSS
		4.4 - About CSS
		4.5 - Testimonial CSS
		4.6 - Experts CSS
		4.7 - Blog CSS
		4.8 - Newsletter CSS
		4.9 - Chose CSS
		4.10 - Brand CSS
		4.11 - Shop CSS
		4.12 - Shop Single CSS
		4.13 - Login CSS
		4.14 - Cart CSS
		4.15 - Checkout CSS
		4.16 - Compare CSS
		4.17 - Empty Cart CSS
		4.18 - My Account CSS
		4.19 - Contact CSS
		4.20 - Blog CSS
		4.21 - Quick View CSS		
	05. Widget CSS
		5.1 - Sidebar Widget CSS
	07. Footer CSS

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
/*-- Google Font --*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800&display=ap");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
/*-- Common Style --*/
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:root {
  --primary-color: #ff0000;
}


/* html, body, .site-wrapper {
  height: 100%;
  scroll-behavior: smooth;
} */

body {
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  font-style: normal;
  font-weight: 400;
  visibility: visible;
  font-family: "Roboto", serif;
  color: #000000;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik", sans-serif;
  color: #222222;
  font-weight: 600;
  margin-top: 0;
  line-height: 1.5;
}

.h1, .h2, .h3, .h4, .h5, .h6 {
  margin: 0;
  line-height: 1.5;
}

h1, .h1 {
  font-size: 36px;
}

@media only screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 30px;
  }
}

h2, .h2 {
  font-size: 30px;
}

@media only screen and (max-width: 767px) {
  h2, .h2 {
    font-size: 24px;
  }
}

h3, .h3 {
  font-size: 24px;
}

@media only screen and (max-width: 767px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

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

a, button {
  color: inherit;
  display: inline-block;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
}

a, button, img, input {
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

*:focus {
  outline: none !important;
}

a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #ffffff;
}

button, input[type="submit"] {
  cursor: pointer;
}

img {
  max-width: 100%;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  opacity: 1;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
}

ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}

figure {
  margin-bottom: 0;
}

/*-- Common Classes --*/
.fix {
  overflow: hidden;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.section,
.main-wrapper {
  float: left;
  width: 100%;
}

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

@media only screen and (max-width: 575px) {
  .container {
    max-width: 450px;
  }
}

@media only screen and (max-width: 479px) {
  .container {
    max-width: 300px;
  }
}

/*Background Color*/
.bg-white {
  background-color: #ffffff !important;
}

.bg-gray {
  background-color: #f8f8f8 !important;
}

.bg-dark {
  background-color: #222222 !important;
}

.bg-primary {
  background-color: #ff0000 !important;
}

.bg-primary-light {
  background-color: #feedec !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #4CAF50 !important;
}

.bg-danger {
  background-color: #F44336 !important;
}

.bg-warning {
  background-color: #FFC107 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

/*Text Color*/
.text-white {
  color: #ffffff !important;
}

.text-body {
  color: #666666 !important;
}

.text-body-light {
  color: #7e7e7e !important;
}

.text-heading {
  color: #222222 !important;
}

.text-primary {
  color: #ff0000 !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #4CAF50 !important;
}

.text-danger {
  color: #ff0000 !important;
}

.text-warning {
  color: #FFC107 !important;
}

.text-info {
  color: #ff0000 !important;
}

/*White Space*/
.white-space-nowrap {
  white-space: nowrap;
}

/*--Tab Content & Pane Fix--*/
.tab-content {
  width: 100%;
}

.tab-content .tab-pane {
  display: block;
  height: 0;
  max-width: 100%;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
}

.tab-content .tab-pane.active {
  height: auto;
  visibility: visible;
  opacity: 1;
  overflow: visible;
}

/*--Background Image--*/
[data-bg-image] {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*--Section Spacing--*/
.section-padding {
  padding-top: 100px;
}

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

.section-padding-2 {
  padding-top: 90px;
}

@media only screen and (max-width: 767px) {
  .section-padding-2 {
    padding-top: 55px;
  }
}

.section-padding-3 {
  padding-top: 70px;
}

@media only screen and (max-width: 767px) {
  .section-padding-3 {
    padding-top: 55px;
  }
}

.section-padding-4 {
  padding-top: 50px;
}

@media only screen and (max-width: 767px) {
  .section-padding-4 {
    padding-top: 10px;
  }
}

.section-padding-5 {
  padding-top: 90px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .section-padding-5 {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.section-padding-6 {
  padding-top: 20px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .section-padding-6 {
    padding-top: 10px;
    padding-bottom: 60px;
  }
}

.section-padding-7 {
  padding-top: 70px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .section-padding-7 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.section-padding-7 {
  padding-top: 70px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
  .section-padding-7 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

/*--Section Title--*/
.section-title .title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 22px;
  color: #222222;
}

@media only screen and (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
    line-height: 28px;
  }
}

.section-title p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #222222;
  font-weight: 300;
}

@media only screen and (max-width: 767px) {
  .section-title p {
    font-size: 14px;
  }
}

/*Page Pagination*/
.page-pagination {
  margin-top: 50px;
  padding: 10px 15px;
  text-align: center;
}

.page-pagination .pagination .page-item {
  margin: 0 3px;
}

.page-pagination .pagination .page-item .page-link {
  border-radius: 3px;
  padding: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 0;
  background-color: #f1f1f1;
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.page-pagination .pagination .page-item .page-link.prev, .page-pagination .pagination .page-item .page-link.next {
  width: auto;
  padding: 0 12px;
}

.page-pagination .pagination .page-item.active .page-link, .page-pagination .pagination .page-item .page-link:hover {
  background-color: #ff0000;
  color: #ffffff;
}

/*Custom Animation*/
@-webkit-keyframes cusFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes cusFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.cusFadeInUp {
  -webkit-animation-name: cusFadeInUp;
  animation-name: cusFadeInUp;
}

/*Scroll To Top*/
.scrolltotop {
  width: 40px;
  height: 40px;
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  position: fixed;
  right: 30px;
  bottom: -90px;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.scrolltotop.show {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}

.scrolltotop:hover {
  background-color: #222222;
}

.scrolltotop:focus {
  color: #ffffff;
}

.scrolltotop i {
  font-size: 18px;
}

/*----------------------------------------*/
/*  02. Elements CSS
/*----------------------------------------*/
/*--
/*  2.1 - Button CSS
/*----------------------------------------*/
.btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: -5px;
}

.btn-wrap .btn {
  margin: 5px;
}

.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border-color: transparent;
  color: #666666;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  padding: 2px 35px;
  height: 50px;
  line-height: 48px;
  border-width: 1px;
  border-style: solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: 0;
}

.btn:focus {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn:not([type="submit"]) {
    height: 44px;
    line-height: 44px;
    padding: 0 30px;
  }
}

@media only screen and (max-width: 767px) {
  .btn:not([type="submit"]) {
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
}

@media only screen and (max-width: 575px) {
  .btn:not([type="submit"]) {
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
  }
}

.btn-group {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.btn-group .btn {
  border-radius: 0;
}

.btn-group .btn:first-child {
  border-radius: 4px 0 0 4px;
}

.btn-group .btn:last-child {
  border-radius: 0 4px 4px 0;
}

.btn-round {
  border-radius: 100px;
}

.btn-square {
  border-radius: 0;
}

[class*="btn-icon-"] i {
  position: absolute;
  top: 0;
  width: 60px;
  height: 60px;
  line-height: 28px;
  text-align: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1);
}

.btn-icon-left {
  padding-left: 69px;
}

.btn-icon-left i {
  left: 0;
  right: auto;
}

.btn-icon-right {
  padding-right: 69px;
}

.btn-icon-right i {
  left: auto;
  right: 0;
}

.btn-box {
  width: 50px;
  padding: 10px;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50px;
      -ms-flex: 1 0 50px;
          flex: 1 0 50px;
}

.btn-box i {
  display: block;
  line-height: 24px;
}

.btn-primary {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}

.btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: #60686f;
  border-color: #60686f;
}

.btn-success {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #ffffff;
}

.btn-success:hover {
  background-color: #449d48;
  border-color: #449d48;
}

.btn-danger {
  background-color: #F44336;
  border-color: #F44336;
  color: #ffffff;
}

.btn-danger:hover {
  background-color: #f32c1e;
  border-color: #f32c1e;
}

.btn-warning {
  background-color: #FFC107;
  border-color: #FFC107;
  color: #222222;
}

.btn-warning:hover {
  background-color: #edb100;
  border-color: #edb100;
}

.btn-info {
  background-color: #17a2b8;
  border-color: #17a2b8;
  color: #ffffff;
}

.btn-info:hover {
  background-color: #148ea1;
  border-color: #148ea1;
}

.btn-light {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  color: #222222;
}

.btn-light:hover {
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-dark {
  background-color: #343a40;
  border-color: #343a40;
  color: #ffffff;
}

.btn-dark:hover {
  background-color: #292d32;
  border-color: #292d32;
}

.btn-android {
  background-color: #7AC157;
  border-color: #7AC157;
  color: #ffffff;
}

.btn-android:hover {
  background-color: #6bba45;
  border-color: #6bba45;
}

.btn-apple {
  background-color: #B8B8B8;
  border-color: #B8B8B8;
  color: #ffffff;
}

.btn-apple:hover {
  background-color: #ababab;
  border-color: #ababab;
}

.btn-behance {
  background-color: #1869FF;
  border-color: #1869FF;
  color: #ffffff;
}

.btn-behance:hover {
  background-color: #0059fe;
  border-color: #0059fe;
}

.btn-codepen {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-codepen:hover {
  background-color: black;
  border-color: black;
}

.btn-dribbble {
  background-color: #EA4C8A;
  border-color: #EA4C8A;
  color: #ffffff;
}

.btn-dribbble:hover {
  background-color: #e7357b;
  border-color: #e7357b;
}

.btn-dropbox {
  background-color: #007EE5;
  border-color: #007EE5;
  color: #ffffff;
}

.btn-dropbox:hover {
  background-color: #0070cc;
  border-color: #0070cc;
}

.btn-evernote {
  background-color: #78D525;
  border-color: #78D525;
  color: #ffffff;
}

.btn-evernote:hover {
  background-color: #6cbf21;
  border-color: #6cbf21;
}

.btn-facebook {
  background-color: #4867AA;
  border-color: #4867AA;
  color: #ffffff;
}

.btn-facebook:hover {
  background-color: #405c98;
  border-color: #405c98;
}

.btn-github {
  background-color: #313131;
  border-color: #313131;
  color: #ffffff;
}

.btn-github:hover {
  background-color: #242424;
  border-color: #242424;
}

.btn-google-drive {
  background-color: #1DA462;
  border-color: #1DA462;
  color: #ffffff;
}

.btn-google-drive:hover {
  background-color: #198e55;
  border-color: #198e55;
}

.btn-google-earth {
  background-color: #4285F4;
  border-color: #4285F4;
  color: #ffffff;
}

.btn-google-earth:hover {
  background-color: #2a75f3;
  border-color: #2a75f3;
}

.btn-google-glass {
  background-color: #EA4335;
  border-color: #EA4335;
  color: #ffffff;
}

.btn-google-glass:hover {
  background-color: #e82e1e;
  border-color: #e82e1e;
}

.btn-google-maps {
  background-color: #5083C3;
  border-color: #5083C3;
  color: #ffffff;
}

.btn-google-maps:hover {
  background-color: #4076ba;
  border-color: #4076ba;
}

.btn-google-play {
  background-color: #01B9FD;
  border-color: #01B9FD;
  color: #ffffff;
}

.btn-google-play:hover {
  background-color: #01a6e4;
  border-color: #01a6e4;
}

.btn-google-plus {
  background-color: #DD5144;
  border-color: #DD5144;
  color: #ffffff;
}

.btn-google-plus:hover {
  background-color: #d93d2e;
  border-color: #d93d2e;
}

.btn-google {
  background-color: #4285F4;
  border-color: #4285F4;
  color: #ffffff;
}

.btn-google:hover {
  background-color: #2a75f3;
  border-color: #2a75f3;
}

.btn-instagram {
  background-color: #B23A94;
  border-color: #B23A94;
  color: #ffffff;
}

.btn-instagram:hover {
  background-color: #9f3484;
  border-color: #9f3484;
}

.btn-css3 {
  background-color: #0277BD;
  border-color: #0277BD;
  color: #ffffff;
}

.btn-css3:hover {
  background-color: #0267a4;
  border-color: #0267a4;
}

.btn-html5 {
  background-color: #E44D26;
  border-color: #E44D26;
  color: #ffffff;
}

.btn-html5:hover {
  background-color: #d6411b;
  border-color: #d6411b;
}

.btn-javascript {
  background-color: #F9DC3D;
  border-color: #F9DC3D;
  color: #ffffff;
}

.btn-javascript:hover {
  background-color: #f8d824;
  border-color: #f8d824;
}

.btn-python {
  background-color: #0C9DBF;
  border-color: #0C9DBF;
  color: #ffffff;
}

.btn-python:hover {
  background-color: #0a89a7;
  border-color: #0a89a7;
}

.btn-lastfm {
  background-color: #E31B23;
  border-color: #E31B23;
  color: #ffffff;
}

.btn-lastfm:hover {
  background-color: #cc181f;
  border-color: #cc181f;
}

.btn-linkedin {
  background-color: #007BB6;
  border-color: #007BB6;
  color: #ffffff;
}

.btn-linkedin:hover {
  background-color: #006a9d;
  border-color: #006a9d;
}

.btn-paypal {
  background-color: #002F86;
  border-color: #002F86;
  color: #ffffff;
}

.btn-paypal:hover {
  background-color: #00266d;
  border-color: #00266d;
}

.btn-pinterest {
  background-color: #BD081B;
  border-color: #BD081B;
  color: #ffffff;
}

.btn-pinterest:hover {
  background-color: #a50718;
  border-color: #a50718;
}

.btn-pocket {
  background-color: #EF3E56;
  border-color: #EF3E56;
  color: #ffffff;
}

.btn-pocket:hover {
  background-color: #ed2641;
  border-color: #ed2641;
}

.btn-polymer {
  background-color: #F87292;
  border-color: #F87292;
  color: #ffffff;
}

.btn-polymer:hover {
  background-color: #f75a7f;
  border-color: #f75a7f;
}

.btn-rss {
  background-color: #F99C3A;
  border-color: #F99C3A;
  color: #ffffff;
}

.btn-rss:hover {
  background-color: #f89021;
  border-color: #f89021;
}

.btn-share {
  background-color: #2C9CFF;
  border-color: #2C9CFF;
  color: #ffffff;
}

.btn-share:hover {
  background-color: #1390ff;
  border-color: #1390ff;
}

.btn-stackoverflow {
  background-color: #F38024;
  border-color: #F38024;
  color: #ffffff;
}

.btn-stackoverflow:hover {
  background-color: #f0720d;
  border-color: #f0720d;
}

.btn-steam {
  background-color: #15497B;
  border-color: #15497B;
  color: #ffffff;
}

.btn-steam:hover {
  background-color: #113c65;
  border-color: #113c65;
}

.btn-twitter {
  background-color: #1DA1F2;
  border-color: #1DA1F2;
  color: #ffffff;
}

.btn-twitter:hover {
  background-color: #0d95e8;
  border-color: #0d95e8;
}

.btn-vk {
  background-color: #5181B8;
  border-color: #5181B8;
  color: #ffffff;
}

.btn-vk:hover {
  background-color: #4574aa;
  border-color: #4574aa;
}

.btn-wikipedia {
  background-color: #E9E9E9;
  border-color: #E9E9E9;
  color: #222222;
}

.btn-wikipedia:hover {
  background-color: gainsboro;
  border-color: gainsboro;
}

.btn-windows {
  background-color: #0078D6;
  border-color: #0078D6;
  color: #ffffff;
}

.btn-windows:hover {
  background-color: #006abd;
  border-color: #006abd;
}

.btn-500px {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-500px:hover {
  background-color: black;
  border-color: black;
}

.btn-8tracks {
  background-color: #122D4B;
  border-color: #122D4B;
  color: #ffffff;
}

.btn-8tracks:hover {
  background-color: #0d2136;
  border-color: #0d2136;
}

.btn-amazon {
  background-color: #F79B34;
  border-color: #F79B34;
  color: #ffffff;
}

.btn-amazon:hover {
  background-color: #f68f1b;
  border-color: #f68f1b;
}

.btn-blogger {
  background-color: #F06A35;
  border-color: #F06A35;
  color: #ffffff;
}

.btn-blogger:hover {
  background-color: #ee581d;
  border-color: #ee581d;
}

.btn-delicious {
  background-color: #0000FE;
  border-color: #0000FE;
  color: #ffffff;
}

.btn-delicious:hover {
  background-color: #0000e5;
  border-color: #0000e5;
}

.btn-disqus {
  background-color: #2E9EFE;
  border-color: #2E9EFE;
  color: #ffffff;
}

.btn-disqus:hover {
  background-color: #1592fe;
  border-color: #1592fe;
}

.btn-flattr {
  background-color: #7AB831;
  border-color: #7AB831;
  color: #ffffff;
}

.btn-flattr:hover {
  background-color: #6da42c;
  border-color: #6da42c;
}

.btn-flickr {
  background-color: #FE0084;
  border-color: #FE0084;
  color: #ffffff;
}

.btn-flickr:hover {
  background-color: #e50077;
  border-color: #e50077;
}

.btn-odnoklassniki {
  background-color: #F58220;
  border-color: #F58220;
  color: #ffffff;
}

.btn-odnoklassniki:hover {
  background-color: #f1750b;
  border-color: #f1750b;
}

.btn-outlook {
  background-color: #0072C6;
  border-color: #0072C6;
  color: #ffffff;
}

.btn-outlook:hover {
  background-color: #0063ad;
  border-color: #0063ad;
}

.btn-playstation {
  background-color: #07418E;
  border-color: #07418E;
  color: #ffffff;
}

.btn-playstation:hover {
  background-color: #063676;
  border-color: #063676;
}

.btn-reddit {
  background-color: #FF4500;
  border-color: #FF4500;
  color: #ffffff;
}

.btn-reddit:hover {
  background-color: #e63e00;
  border-color: #e63e00;
}

.btn-skype {
  background-color: #00A9F0;
  border-color: #00A9F0;
  color: #ffffff;
}

.btn-skype:hover {
  background-color: #0097d7;
  border-color: #0097d7;
}

.btn-slideshare {
  background-color: #0077B5;
  border-color: #0077B5;
  color: #ffffff;
}

.btn-slideshare:hover {
  background-color: #00669c;
  border-color: #00669c;
}

.btn-soundcloud {
  background-color: #FE4900;
  border-color: #FE4900;
  color: #ffffff;
}

.btn-soundcloud:hover {
  background-color: #e54200;
  border-color: #e54200;
}

.btn-tumblr {
  background-color: #36465D;
  border-color: #36465D;
  color: #ffffff;
}

.btn-tumblr:hover {
  background-color: #2d3a4d;
  border-color: #2d3a4d;
}

.btn-twitch {
  background-color: #6441A4;
  border-color: #6441A4;
  color: #ffffff;
}

.btn-twitch:hover {
  background-color: #593a92;
  border-color: #593a92;
}

.btn-vimeo {
  background-color: #1AB7EA;
  border-color: #1AB7EA;
  color: #ffffff;
}

.btn-vimeo:hover {
  background-color: #14a7d7;
  border-color: #14a7d7;
}

.btn-whatsapp {
  background-color: #189D0E;
  border-color: #189D0E;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #14860c;
  border-color: #14860c;
}

.btn-xbox {
  background-color: #107C0F;
  border-color: #107C0F;
  color: #ffffff;
}

.btn-xbox:hover {
  background-color: #0d650c;
  border-color: #0d650c;
}

.btn-yahoo {
  background-color: #4101AF;
  border-color: #4101AF;
  color: #ffffff;
}

.btn-yahoo:hover {
  background-color: #380196;
  border-color: #380196;
}

.btn-youtube {
  background-color: #FE0000;
  border-color: #FE0000;
  color: #ffffff;
}

.btn-youtube:hover {
  background-color: #e50000;
  border-color: #e50000;
}

/*--
/*  2.2 - Form CSS
/*----------------------------------------*/
label {
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 17px;
}

/*Input Field & Select*/
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea {
  border: 1px solid #e5e5e5;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #7e7e7e;
  border-radius: 0;
  background-color: #ffffff;
  margin-bottom: 0;
  padding: 0px 15px;
  max-width: 100%;
  width: 100%;
  font-size: 14px;
  height: 40px;
  font-weight: 400;
  color: #222222;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]):focus,
textarea:focus {
  border-color: #ccc;
}

input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) + input,
textarea + input {
  margin-top: 10px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/icons/select-arrow-down.png);
  background-position: calc(100% - 15px) 50%;
  background-repeat: no-repeat;
  font-family: "Reddit Sans", sans-serif;
  width: 100%;
  border: none;
  background-color: #ffffff;
  line-height: 24px;
  font-weight: 400;
  height: 50px;
  padding: 10px 44px 10px 21px;
  color: #666666;
  border-radius: 0;
  max-width: 500px;
}

.single-form {
  margin-top: 15px;
}

/*Switch*/
.ht-mcs-switcher-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -5px -10px;
}

.ht-mcs-switcher-wrap.inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.ht-mcs-switcher-wrap .ht-mcs-switcher {
  margin: 5px 10px;
}

.ht-mcs-switcher {
  position: relative;
  line-height: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.ht-mcs-switcher input {
  position: absolute;
  left: -9999px;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

.ht-mcs-switcher input:checked + label {
  background-color: rgba(243, 79, 63, 0.3);
}

.ht-mcs-switcher input:checked + label::before {
  background-color: #ff0000;
  -webkit-box-shadow: 0 0 15px rgba(243, 79, 63, 0.5);
          box-shadow: 0 0 15px rgba(243, 79, 63, 0.5);
  left: 26px;
}

.ht-mcs-switcher input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.ht-mcs-switcher label {
  width: 52px;
  height: 18px;
  display: inline-block;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  margin: 4px 0;
  position: relative;
  text-indent: -9999px;
  cursor: pointer;
}

.ht-mcs-switcher label::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: left 0.5s ease 0s, background-color 0.3s ease 0s;
  -o-transition: left 0.5s ease 0s, background-color 0.3s ease 0s;
  transition: left 0.5s ease 0s, background-color 0.3s ease 0s;
}

.ht-mcs-switcher.primary input:checked + label {
  background-color: rgba(243, 79, 63, 0.3);
}

.ht-mcs-switcher.primary input:checked + label::before {
  background-color: #ff0000;
  -webkit-box-shadow: 0 0 15px rgba(243, 79, 63, 0.5);
          box-shadow: 0 0 15px rgba(243, 79, 63, 0.5);
}

.ht-mcs-switcher.secondary input:checked + label {
  background-color: rgba(108, 117, 125, 0.3);
}

.ht-mcs-switcher.secondary input:checked + label::before {
  background-color: #6c757d;
  -webkit-box-shadow: 0 0 15px rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 15px rgba(108, 117, 125, 0.5);
}

.ht-mcs-switcher.success input:checked + label {
  background-color: rgba(76, 175, 80, 0.3);
}

.ht-mcs-switcher.success input:checked + label::before {
  background-color: #4CAF50;
  -webkit-box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
          box-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.ht-mcs-switcher.danger input:checked + label {
  background-color: rgba(244, 67, 54, 0.3);
}

.ht-mcs-switcher.danger input:checked + label::before {
  background-color: #F44336;
  -webkit-box-shadow: 0 0 15px rgba(244, 67, 54, 0.5);
          box-shadow: 0 0 15px rgba(244, 67, 54, 0.5);
}

.ht-mcs-switcher.warning input:checked + label {
  background-color: rgba(255, 193, 7, 0.3);
}

.ht-mcs-switcher.warning input:checked + label::before {
  background-color: #FFC107;
  -webkit-box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.ht-mcs-switcher.info input:checked + label {
  background-color: rgba(23, 162, 184, 0.3);
}

.ht-mcs-switcher.info input:checked + label::before {
  background-color: #17a2b8;
  -webkit-box-shadow: 0 0 15px rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 15px rgba(23, 162, 184, 0.5);
}

/*Custom Checkbox*/
.cus-checkbox-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -5px -10px;
}

.cus-checkbox-wrap.inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cus-checkbox-wrap .cus-checkbox {
  margin: 5px 10px;
}

.cus-checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.cus-checkbox input {
  position: absolute;
  left: -9999px;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

.cus-checkbox input:checked + label::before {
  background-color: #ff0000;
  border-color: #ff0000;
  content: '\f00c';
  font-family: FontAwesome;
  color: #ffffff;
}

.cus-checkbox input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.cus-checkbox label {
  display: inline-block;
  line-height: 16px;
  height: 20px;
  position: relative;
  padding-left: 15px;
  cursor: pointer;
  margin: 0;
  font-size: 14px;
}

.cus-checkbox label span {
  padding-left: 8px;
}

.cus-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  line-height: 13px;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 13px;
}

.cus-checkbox.primary input:checked + .icon {
  background-color: #ff0000;
  border-color: #ff0000;
}

.cus-checkbox.secondary input:checked + .icon {
  background-color: #6c757d;
  border-color: #6c757d;
}

.cus-checkbox.success input:checked + .icon {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.cus-checkbox.danger input:checked + .icon {
  background-color: #F44336;
  border-color: #F44336;
}

.cus-checkbox.warning input:checked + .icon {
  background-color: #FFC107;
  border-color: #FFC107;
}

.cus-checkbox.info input:checked + .icon {
  background-color: #17a2b8;
  border-color: #17a2b8;
}

/*Custom Radio*/
.cus-radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -5px -10px;
}

.cus-radio-wrap.inline {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}

.cus-radio-wrap .cus-radio {
  margin: 5px 10px;
}

.cus-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.shipping-list {
  margin-left: 24px;
}

.cus-radio:last-child {
  margin-bottom: 0;
}

.cus-radio input {
  position: absolute;
  left: -9999px;
  top: 0;
  opacity: 0;
  width: 0;
  height: 0;
  visibility: hidden;
  margin: 0;
}

.cus-radio input:checked + label::after {
  opacity: 1;
}

.cus-radio input:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
}

.cus-radio label {
  display: inline-block;
  line-height: 23px;
  position: relative;
  padding-left: 15px;
  min-width: 22px;
  min-height: 22px;
  cursor: pointer;
  margin: 0;
  font-size: 20px;
}

.cus-radio label span {
  padding-left: 6px;
  font-weight: 500;
}

.cus-radio label::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  border: 1px solid #ff0000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cus-radio label span:first-child {
  padding-left: 12px;
}

.cus-radio label span:last-child {
  font-weight: unset;
}

.cus-radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ff0000;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.cus-radio.primary input:checked + .icon {
  background-color: #ff0000;
}

.cus-radio.secondary input:checked + .icon {
  background-color: #6c757d;
}

.cus-radio.success input:checked + .icon {
  background-color: #4CAF50;
}

.cus-radio.danger input:checked + .icon {
  background-color: #F44336;
}

.cus-radio.warning input:checked + .icon {
  background-color: #FFC107;
}

.cus-radio.info input:checked + .icon {
  background-color: #17a2b8;
}

.single-select2 {
  margin-top: 15px;
}

.single-select2 .form-select2 {
  height: 40px;
  border-radius: 3px;
  border: 1px solid #e5e5e5;
}

.single-select2 .form-select2 .select2-container {
  display: block;
  width: 100% !important;
}

.single-select2 .form-select2 .select2-container .selection {
  display: block;
  width: 100%;
}

.single-select2 .form-select2 .select2-container .selection .select2-selection {
  width: 100%;
  border-radius: 0;
  border: 0;
}

.single-select2 .form-select2 .select2-container .selection .select2-selection:focus {
  outline: 0;
}

.single-select2 .form-select2 .select2-container .selection .select2-selection .select2-selection__rendered {
  line-height: 38px;
  padding-left: 15px;
  font-size: 14px;
  color: #000000;
}

.single-select2 .form-select2 .select2-container .selection .select2-selection .select2-selection__arrow {
  height: 38px;
  right: 10px;
}

.select2-container .select2-dropdown {
  top: 11px;
}

.select2-container .select2-dropdown .select2-results .select2-results__options .select2-results__option {
  font-size: 14px;
}

/*Custom Upload*/
.cus-upload {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.cus-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  padding: 0;
}

/*--
/*  2.3 - Blockquote CSS
/*----------------------------------------*/
blockquote {
  background-color: #f6f6f6;
  padding: 30px 45px;
  margin: 31px 0 31px 40px;
  border: 1px solid #ebebeb;
  border-left: 4px solid #ff0000;
}

@media only screen and (max-width: 575px) {
  blockquote {
    margin-left: 0;
    padding: 20px 25px;
  }
}

blockquote p {
  font-size: 16px;
  font-style: italic;
  color: #666666;
  line-height: 24px;
  font-weight: 400;
}

/*----------------------------------------*/
/*  03. Header CSS
/*----------------------------------------*/
/*--
/*  3.1 - Header Top CSS
/*----------------------------------------*/
/* .top-notification-bar {
  -webkit-background: -webkit-gradient(linear, left top, right top, from(#fff), to(#ff0000));
  -webkit-background: -webkit-linear-gradient(left, #fff 0%, #ff0000 100%);
  -moz-background: linear-gradient(to right, #fff 0%, #ff0000 100%);
  -ms-background: linear-gradient(to right, #fff 0%, #ff0000 100%);
  -o-background: -o-linear-gradient(left,#fff 0%, #ff0000 100%);
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#ff0000));
  background: linear-gradient(to right, #fff 0%, #ff0000 100%);
  position: relative;
  padding: 5px 0;
} */
.top-notification-bar {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), #ff0000, rgba(255, 255, 255, 0.5));
  position: relative;
  padding: 5px 0;
}

.top-notification-bar .notification-entry p {
  color: #000;
}

.top-notification-bar .notification-close {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-notification-bar .notification-close .notification-close-btn {
  padding: 0;
  border: 0;
  background: none;
  color: #000000;
  cursor: pointer;
  line-height: 24px;
  font-size: 14px;
}

/*--
/*  3.2 - Header Main CSS
/*----------------------------------------*/
.header-section {
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-section.sticky {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 15px 0;
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.site-main-nav .site-nav ul > li {
  margin: 0 20px;
  display: inline-block;
  line-height: 54px;
  position: relative;
}

.site-main-nav .site-nav ul > li > a {
  position: relative;
  font-size: 13px;
  text-transform: uppercase;
  color: #222222;
  font-weight: 500;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
}

.site-main-nav .site-nav ul > li > a span {
  position: absolute;
  display: inline-block;
  width: 45px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  font-size: 11px;
  left: 60%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -8px;
  font-weight: 800;
  border-radius: 50px;
  letter-spacing: 0px;
  padding-top: 2px;
}

.site-main-nav .site-nav ul > li > a span::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  bottom: -2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 8px;
}

@keyframes blink {
  50% {
      opacity: 0;
  }
}

.blinking {
  animation: blink 1.5s infinite;
}

.site-main-nav .site-nav ul > li > a span.new {
  background: #ff0000;
}

.site-main-nav .site-nav ul > li > a span.new::before {
  background: #FF0000;
}

.site-main-nav .site-nav ul > li > a span.sale {
  background: #43b5f4;
}

.site-main-nav .site-nav ul > li > a span.sale::before {
  background: #43b5f4;
}

.site-main-nav .site-nav ul > li.menu-item-has-children > a::after {
  content: "\f107";
  font-family: fontAwesome;
  margin-left: 5px;
  font-size: 16px;
  color: #222222;
}

.site-main-nav .site-nav ul > li:hover > a {
  color: #ff0000;
}

.site-main-nav .site-nav ul > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  width: 280px;
  -webkit-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  -o-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  padding: 30px 0;
  margin-top: 45px;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .site-main-nav .site-nav ul > li .sub-menu {
    width: 240px;
  }
}

.site-main-nav .site-nav ul > li .sub-menu li {
  display: block;
  margin: 0;
  padding: 0 30px;
}

.site-main-nav .site-nav ul > li .sub-menu li + li {
  margin-top: 15px;
}

.site-main-nav .site-nav ul > li .sub-menu li.menu-item-has-children > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f105";
  font-family: fontAwesome;
  margin-left: 5px;
  font-size: 16px;
  color: #000000;
}

.site-main-nav .site-nav ul > li .sub-menu li a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #757575;
  text-transform: capitalize;
}

.site-main-nav .site-nav ul > li .sub-menu li:hover > a {
  color: #ff0000;
}

.site-main-nav .site-nav ul > li .sub-menu li .sub-menu {
  margin-top: 20px;
  left: 100%;
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.site-main-nav .site-nav ul > li .sub-menu li:hover .sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.site-main-nav .site-nav ul > li:last-child .sub-menu li .sub-menu {
  left: auto;
  right: 100%;
}

.site-main-nav .site-nav ul > li .mega-sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #ffffff;
  width: 1100px;
  -webkit-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  -o-box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 2px 81px -27px rgba(0, 0, 0, 0.3);
  padding: 30px;
  z-index: 9;
  margin-top: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .site-main-nav .site-nav ul > li .mega-sub-menu {
    width: 870px;
  }
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown {
  margin: 0;
  width: 25%;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000000;
  display: inline-block;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-title:hover {
  color: #ff0000;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-title::after {
  display: none;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown .menu-banner {
  display: block;
  overflow: hidden;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown .menu-banner img {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown .menu-banner:hover img {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item > li {
  display: block;
  line-height: 22px;
  margin-left: 0;
  margin-right: 0;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item > li + li {
  margin-top: 15px;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item > li > a {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
  color: #757575;
  text-transform: capitalize;
}

.site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item > li:hover > a {
  color: #ff0000;
}

.site-main-nav .site-nav ul > li:hover .sub-menu,
.site-main-nav .site-nav ul > li:hover .mega-sub-menu {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.header-meta-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.header-meta-info .header-search {
  width: 100%;
  position: relative;
  margin-right: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-meta-info .header-search {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-meta-info .header-search {
    margin-right: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .header-meta-info .header-search {
    margin-right: 0px;
  }
}

.header-meta-info .header-search input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  padding: 0;
  background: none;
  height: 40px;
  font-size: 14px;
  color: #222222;
  font-weight: 400;
  opacity: 0.7;
  padding-right: 32px;
  border: 0;
}

.header-meta-info .header-search button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background: none;
  font-size: 20px;
  color: #666666;
  height: 40px;
}

.header-meta-info .header-account {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.header-meta-info .header-account .header-account-list + .header-account-list {
  margin-left: 27px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-meta-info .header-account .header-account-list + .header-account-list {
    margin-left: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .header-meta-info .header-account .header-account-list + .header-account-list {
    margin-left: 20px;
  }
}

.header-meta-info .header-account .header-account-list > a {
  font-size: 24px;
  line-height: 24px;
  position: relative;
  color: #666666;
  font-weight: 400;
}

.header-meta-info .header-account .header-account-list > a:hover{
    text-decoration: none;
    color: var(--primary-color);
}

@media only screen and (max-width: 767px) {
  .header-meta-info .header-account .header-account-list > a {
    font-size: 20px;
  }
}

.header-meta-info .header-account .header-account-list > a .item-count {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #ff0000;
  border-radius: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
}

.header-meta-info .header-account .header-account-list.top-link .dropdown-menu {
  border: 1px solid #e1e1e1;
  padding: 10px 20px;
  border-radius: 3px;
  top: 100% !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.header-meta-info .header-account .header-account-list.top-link .dropdown-menu li a {
  text-transform: capitalize;
  display: block;
  font-size: 13px;
  white-space: nowrap;
  line-height: 28px;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-meta-info .header-account .header-account-list.top-link .dropdown-menu li a:hover {
  color: #ff0000;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu {
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 9.3px 0.7px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  left: auto !important;
  right: 0;
  min-width: 350px;
  padding: 0;
  -webkit-transform: translate(0) !important;
  -ms-transform: translate(0) !important;
  transform: translate(0) !important;
  top: 30px !important;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart {
  max-height: 271px;
  overflow-y: scroll;
  padding: 0 20px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box + .single-cart-box {
  border-top: 1px solid #ededed;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-img {
  position: relative;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-img a img {
  width: 70px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-img .pro-quantity {
  border-radius: 100%;
  color: #ffffff;
  background-color: #ff0000;
  font-size: 12px;
  line-height: 23px;
  min-width: 27px;
  padding: 2px 0 2px;
  position: absolute;
  text-align: center;
  top: -12px;
  right: -8px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 10px;
  padding-bottom: 15px;
  padding-right: 15px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content .title {
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content .title a {
  display: block;
  font-size: 14px;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content .cart-price .sale-price {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #ff0000;
  font-weight: 500;
  margin-right: 3px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content .cart-price .regular-price {
  display: inline-block;
  font-size: 12px;
  text-decoration: line-through;
  color: #666666;
  font-weight: 500;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-cart .single-cart-box .cart-content .del-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: #222222;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-total {
  padding: 0 20px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-total .cart-total {
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-total .cart-total li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #222222;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-total .cart-total li span {
  color: #ff0000;
  display: block;
  float: right;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-btn {
  padding: 40px 20px 20px;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-btn .btn {
  height: 44px;
  line-height: 44px;
  font-weight: 400;
  text-transform: capitalize;
}

.header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu .product-btn .btn:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}

.header-meta-info .header-account .header-account-list.mobile-menu-trigger button {
  padding: 0;
  border: 0;
  background: none;
  margin-top: 3px;
}

.header-meta-info .header-account .header-account-list.mobile-menu-trigger button span {
  width: 25px;
  height: 2px;
  margin: 6px 0;
  background-color: #666666;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 767px) {
  .header-meta-info .header-account .header-account-list.mobile-menu-trigger button span {
    width: 22px;
    margin: 5px 0;
  }
}

.header-meta-info .header-account .header-account-list.mobile-menu-trigger button:hover span {
  background-color: #ff0000;
}

.header-mobile {
  padding: 15px 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header-mobile.sticky {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -ms-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  -o-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.11);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 10px 0;
  -webkit-animation: sticky 1s;
  animation: sticky 1s;
}

.header-mobile-menu {
  position: fixed;
  top: 0;
  left: -310px;
  width: 300px;
  height: 100%;
  z-index: 999;
  background-color: #ffffff;
  padding: 70px 30px 30px;
  overflow-y: scroll;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media only screen and (max-width: 479px) {
  .header-mobile-menu {
    width: 270px;
    padding: 70px 20px 20px;
  }
}

.header-mobile-menu.open {
  left: 0;
}

.header-social {
  padding-top: 30px;
  padding-bottom: 30px;
}

.header-social .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.header-social .social li + li {
  margin-left: 10px;
}

.header-social .social li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #f7f7f7;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 14px;
}

.header-social .social li a:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.overlay.open {
  opacity: 0.7;
  visibility: visible;
}

.mobile-menu-close {
  width: 24px;
  height: 24px;
  border: 0;
  background: none;
  padding: 0;
  position: absolute;
  top: 15px;
  right: 15px;
}

.mobile-menu-close span {
  width: 24px;
  height: 1px;
  display: block;
  position: relative;
  background-color: #222222;
}

.mobile-menu-close span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 11px;
}

.mobile-menu-close span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px;
}

.header-mobile-menu .site-main-nav {
  padding-top: 30px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li {
  display: block;
  margin: 0;
  position: relative !important;
}

.header-mobile-menu .site-main-nav .site-nav ul > li > a span {
  left: 0;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  top: 0;
}

.header-mobile-menu .site-main-nav .site-nav ul > li.menu-item-has-children > a::after {
  content: '';
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mobile-menu-expand {
  position: absolute;
  right: 0;
  top: 20px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mobile-menu-expand::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #000000;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mobile-menu-expand::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  background-color: #000000;
  left: 50%;
  bottom: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-mobile-menu .site-main-nav .site-nav ul > li.active-expand > .mobile-menu-expand::after {
  height: 0;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .sub-menu {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
  width: 100%;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  padding: 0;
  padding-left: 15px;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  display: none;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .sub-menu li + li {
  margin-top: 10px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .sub-menu li .mobile-menu-expand {
  top: 3px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .sub-menu li .sub-menu {
  margin-top: 0;
  position: relative;
  left: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  padding-top: 15px;
  padding-bottom: 3px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .sub-menu li.menu-item-has-children > a::after {
  content: '';
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu {
  position: relative;
  left: 0;
  top: 0;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 0s linear;
  -o-transition: all 0s linear;
  transition: all 0s linear;
  width: 100%;
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  display: block;
  padding: 15px;
  display: none;
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding-top: 0;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown {
  width: 100%;
  line-height: 1.1;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown + .mega-dropdown {
  margin-top: 15px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown .mobile-menu-expand {
  top: 1px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-title {
  margin-bottom: 0;
  display: block;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item {
  padding: 15px;
  padding-bottom: 0;
  padding-right: 0;
}

.header-mobile-menu .site-main-nav .site-nav ul > li .mega-sub-menu > .mega-dropdown > .mega-item > li + li {
  margin-top: 10px;
}

.header-mobile-menu .site-main-nav .site-nav ul > li:hover .sub-menu,
.header-mobile-menu .site-main-nav .site-nav ul > li:hover .mega-sub-menu {
  top: 0;
  opacity: 1;
}

/*----------------------------------------*/
/*  04. Pages CSS (All Page Styles)
/*----------------------------------------*/
/*--
/*  4.1 - Slider CSS
/*----------------------------------------*/
@media only screen and (min-width: 1500px) {
  .slider-area .container {
    max-width: 1427px;
  }
}

.single-slider {
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  height: 800px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-slider {
    height: 610px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-slider {
    height: 610px;
  }
}

@media only screen and (max-width: 767px) {
  .single-slider {
    height: 538px;
    background-position: left  center;
  }
}

.slider-content {
  opacity: 0;
}

.slider-content .sub-title {
  font-size: 16px;
  color: #222222;
  font-family: "Reddit Sans", sans-serif;
  line-height: 20px;
  font-weight: 500;
  border-left: 2px solid #000000;
  padding-left: 8px;
  margin-bottom: 33px;
}

.slider-content .main-title {
  font-weight: 500;
  line-height: 63px;
  color: #323232;
  font-family: "Reddit Sans", sans-serif;
  font-size: 63px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .slider-content .main-title {
    font-size: 30px;
    line-height: 40px;
  }
}

.slider-content p {
  color: #323232;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
}

@media only screen and (max-width: 767px) {
  .slider-content p {
    font-size: 16px;
  }
}

.slider-content .slider-btn {
  padding-top: 30px;
}

@media only screen and (max-width: 767px) {
  .slider-content .slider-btn {
    padding-top: 20px;
  }
}

.slider-content .slider-btn li {
  margin-top: 10px;
  display: inline-block;
  margin-right: 15px;
}

.slider-content .slider-btn li:last-child {
  margin-right: 0;
}

.slider-content .slider-btn li .btn {
  height: 60px;
  line-height: 58px;
  padding: 2px 45px;
  font-size: 15px;
}

@media only screen and (max-width: 767px) {
  .slider-content .slider-btn li .btn {
    height: 45px;
    line-height: 43px;
    padding: 0 35px;
  }
}

.slider-content .slider-btn li .btn:hover {
  background-color: #000000;
  border-color: #000000;
}

.animation-style-01.swiper-slide-active .slider-content {
  opacity: 1;
}

.animation-style-01.swiper-slide-active .slider-content .sub-title {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .main-title {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content p {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .slider-btn li:nth-child(2n+1) .btn {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animation-style-01.swiper-slide-active .slider-content .slider-btn li:nth-child(2n+2) .btn {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.swiper-banner .swiper-next,
.swiper-banner .swiper-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 150px;
  height: 100%;
  line-height: 700px;
  font-size: 80px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-banner .swiper-next,
  .swiper-banner .swiper-prev {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .swiper-banner .swiper-next,
  .swiper-banner .swiper-prev {
    display: none;
  }
}

.swiper-banner .swiper-next:hover,
.swiper-banner .swiper-prev:hover {
  color: #ff0000;
}

.swiper-banner .swiper-next {
  left: auto;
  right: 0px;
}

.swiper-banner:hover .swiper-next,
.swiper-banner:hover .swiper-prev {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1500px) {
  .swiper-banner .swiper-pagination {
    display: block;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .swiper-banner .swiper-pagination {
    display: block;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-banner .swiper-pagination {
    display: block;
  }
}

.swiper-banner .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #222222;
  opacity: 0.8;
}

.swiper-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ff0000;
}

/*--
/*  4.2 - Shipping CSS
/*----------------------------------------*/
.single-shipping {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

.single-shipping .shipping-icon img {
  width: 70px;
}

.single-shipping .shipping-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.single-shipping .shipping-content .title {
  font-size: 15px;
  line-height: 16px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 7px;
  color: #222222;
}

.single-shipping .shipping-content p {
  font-size: 15px;
  line-height: 18px;
  font-weight: 300;
  font-family: "Rubik", sans-serif;
  color: #222222;
}

/*--
/*  4.3 - Product CSS
/*----------------------------------------*/
.product-wrapper {
  padding-top: 25px;
}

.single-product {
  margin-top: 30px;
}

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

.single-product .product-image a {
  display: block;
}

.single-product .product-image img {
  width: 100%;
}

.single-product .product-image .sticker-new {
  top: 11px;
  left: 10px;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  padding: 0 14px;
  text-align: center;
  display: block;
  border-radius: 2px;
  position: absolute;
  font-weight: 300;
  border-radius: 50px;
}

.single-product .product-image .sticker-new.soldout-title {
  background-color: #ff0000;
  color: #ffffff;
}

.single-product .product-image .sticker-new.label-sale {
  background-color: #000;
  color: var(--primary-color);
}

.single-product .product-image .action-links {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  right: 8px;
  z-index: 9;
  top: 8px;
  opacity: 0;
  visibility: hidden;
}

.single-product .product-image .action-links ul li a {
  width: 45px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 6px;
  background: #ffffff;
  height: 45px;
  line-height: 46px;
  border-radius: 50%;
}

.single-product .product-image .product-countdown {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-product .product-image .product-countdown .single-count {
  width: 50px;
  height: 50px;
  background-color: #000;
  text-align: center;
  margin-top: 1px;
}

.single-product .product-image .product-countdown .single-count .count {
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
  line-height: 16px;
}

.single-product .product-image .product-countdown .single-count p {
  font-size: 12px;
  color: var(--primary-color);
  line-height: 16px;
}

.single-product .product-content {
  padding-top: 22px;
}

.single-product .product-content .rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.single-product .product-content .rating li {
  margin: 0 2px;
  color: #666666;
  font-size: 15px;
}

.single-product .product-content .rating li.rating-on {
  color: #FF9800;
}

.single-product .product-content .product-name {
  margin-bottom: 0;
}

.single-product .product-content .product-name a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Reddit Sans", sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
    -webkit-line-clamp: 2; /* Số dòng tối đa */
    -webkit-box-orient: vertical;
  height: 2.5em; /* Điều chỉnh chiều cao theo dòng chữ, thường là 1.2em đến 1.5em trên dòng */
  line-height: 1.25em;
}

.single-product .product-content .product-name a:hover {
  color: #ff0000;
}

.single-product .product-content .price-box .current-price {
  font-weight: 500;
  font-size: 15px;
  color: #ff0000;
}

.single-product .product-content .price-box .old-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
  color: #666666;
}

.single-product.product-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .single-product.product-list {
    display: block;
  }
}

.single-product.product-list .product-image {
  max-width: 290px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-product.product-list .product-image {
    max-width: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .single-product.product-list .product-image {
    max-width: inherit;
  }
}

.single-product.product-list .product-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 0;
  padding-left: 25px;
}

@media only screen and (max-width: 767px) {
  .single-product.product-list .product-content {
    padding-top: 25px;
    padding-left: 0;
  }
}

.single-product.product-list .product-content .rating {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 6px;
}

.single-product.product-list .product-content .rating li {
  font-size: 20px;
  line-height: 20px;
}

.single-product.product-list .product-content .product-name {
  margin-bottom: 8px;
}

.single-product.product-list .product-content .product-name a {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Reddit Sans", sans-serif;
}

.single-product.product-list .product-content .product-name a:hover {
  color: #ff0000;
}

.single-product.product-list .product-content .price-box {
  margin-bottom: 13px;
}

.single-product.product-list .product-content .price-box .current-price {
  font-weight: 500;
  font-size: 15px;
  color: #ff0000;
}

.single-product.product-list .product-content .price-box .old-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 12px;
  margin-left: 5px;
  color: #666666;
}

.single-product.product-list .product-content p {
  max-width: 630px;
  font-size: 14px;
}

.single-product.product-list .product-content .action-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}

.single-product.product-list .product-content .action-links li {
  margin-top: 10px;
}

.single-product.product-list .product-content .action-links li + li {
  margin-left: 20px;
}

.single-product.product-list .product-content .action-links li a {
  width: 45px;
  text-align: center;
  font-size: 18px;
  display: inline-block;
  margin-bottom: 6px;
  background: #ff0000;
  height: 45px;
  line-height: 46px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
}

.single-product.product-list .product-content .action-links li a.add-cart {
  width: auto;
  padding: 0 55px;
  border-radius: 50px;
  font-weight: 300;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-product.product-list .product-content .action-links li a.add-cart {
    padding: 0 25px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-product.product-list .product-content .action-links li a.add-cart {
    padding: 0 35px;
  }
}

@media only screen and (max-width: 767px) {
  .single-product.product-list .product-content .action-links li a.add-cart {
    padding: 0 25px;
  }
}

.single-product:hover .product-image .action-links {
  opacity: 1;
  visibility: visible;
}

.single-product:hover .product-image .product-countdown {
  -webkit-transform: translate(100%, -50%);
  -ms-transform: translate(100%, -50%);
  transform: translate(100%, -50%);
  opacity: 0;
  visibility: hidden;
}

.product-active .swiper-next,
.product-active .swiper-prev {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 100%;
  line-height: 400px;
  font-size: 70px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.product-active .swiper-next:hover,
.product-active .swiper-prev:hover {
  color: #ff0000;
}

.product-active .swiper-next {
  left: auto;
  right: 0;
}

.product-active:hover .swiper-next,
.product-active:hover .swiper-prev {
  opacity: 1;
  visibility: visible;
}

.product-tab-menu {
  margin-top: 20px;
}

.product-tab-menu .nav li {
  margin-right: 45px;
}

@media only screen and (max-width: 767px) {
  .product-tab-menu .nav li {
    margin-right: 20px;
  }
}

.product-tab-menu .nav li:last-child {
  margin-right: 0;
}

.product-tab-menu .nav li a {
  font-size: 14px;
  font-family: "Reddit Sans", sans-serif;
  line-height: 24px;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid transparent;
  color: #ff0000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.product-tab-menu .nav li a.active {
   /* border-color: #ff0000;  */
}

.product-items-tab:not(:first-child) {
  margin-top: 0;
}

/*--
/*  4.4 - About CSS
/*----------------------------------------*/
.about-image {
  margin-top: 45px;
}

.about-image img {
  width: 100%;
}

.about-content {
  margin-top: 40px;
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content {
    padding-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-content {
    padding-left: 0;
  }
}

.about-content .title {
  font-size: 31px;
  margin-bottom: 20px;
  line-height: 39px;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .about-content .title {
    font-size: 24px;
    line-height: 32px;
  }
}

.about-content p {
  margin-top: 17px;
  font-weight: 300;
}

.about-content ul li {
  padding-left: 4px;
  list-style: disc;
  margin-left: 15px;
  font-weight: 400;
  font-size: 16px;
  margin-top: 4px;
}

.about-content .about-btn {
  margin-top: 40px;
}

.about-thumb img {
  width: 100%;
}

.about-page-content {
  padding-top: 26px;
}

.about-page-content .title {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 21px;
  color: #222222;
}

@media only screen and (max-width: 767px) {
  .about-page-content .title {
    font-size: 18px;
    line-height: 28px;
  }
}

.about-page-content p {
  max-width: 890px;
  margin: 0 auto;
  font-size: 14px;
}

.about-page-content .about-signature {
  margin-top: 25px;
}

/*--
/*  4.5 - Testimonial CSS
/*----------------------------------------*/
.testimonial-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.single-testimonial {
  padding-bottom: 95px;
  padding-top: 90px;
}

.single-testimonial p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 0;
  padding: 0 147px;
  line-height: 35px;
  font-family: "Rubik", sans-serif;
  color: #222222;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-testimonial p {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 767px) {
  .single-testimonial p {
    padding: 0;
    font-size: 16px;
    line-height: 28px;
  }
}

.single-testimonial .testimonial-author {
  padding-top: 22px;
}

.single-testimonial .testimonial-author img {
  border-radius: 50%;
}

.single-testimonial .testimonial-author .author-name {
  display: block;
  margin-top: 17px;
  color: #222222;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.testimonial-active .swiper-next,
.testimonial-active .swiper-prev {
  position: absolute;
  top: 50%;
  left: 50px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .testimonial-active .swiper-next,
  .testimonial-active .swiper-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    left: 0;
  }
}

.testimonial-active .swiper-next:hover,
.testimonial-active .swiper-prev:hover {
  color: #ff0000;
}

.testimonial-active .swiper-next {
  left: auto;
  right: 50px;
}

@media only screen and (max-width: 767px) {
  .testimonial-active .swiper-next {
    left: auto;
    right: 0;
  }
}

.testimonial-active:hover .swiper-next,
.testimonial-active:hover .swiper-prev {
  opacity: 1;
  visibility: visible;
}

/*--
/*  4.6 - Experts CSS
/*----------------------------------------*/
.expert-wrapper {
  padding-top: 25px;
}

.single-expert {
  margin-top: 30px;
}

.single-expert .expert-image img {
  border-radius: 50%;
}

.single-expert .expert-content {
  margin-top: 20px;
}

.single-expert .expert-content .name {
  font-size: 16px;
  line-height: 19px;
  font-weight: 800;
  color: #222222;
  margin-bottom: 0;
  font-family: "Reddit Sans", sans-serif;
}

.single-expert .expert-content p {
  font-weight: 300;
  color: #222222;
}

/*--
/*  4.7 - Blog CSS
/*----------------------------------------*/
.blog-bg {
  background-color: #F7F7F7;
}

.blog-wrapper {
  padding-top: 25px;
}

.single-blog .blog-image a img {
  width: 100%;
}

.single-blog .blog-gallery .blog-gallery-next,
.single-blog .blog-gallery .blog-gallery-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .single-blog .blog-gallery .blog-gallery-next,
  .single-blog .blog-gallery .blog-gallery-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
  }
}

.single-blog .blog-gallery .blog-gallery-next:hover,
.single-blog .blog-gallery .blog-gallery-prev:hover {
  color: #ff0000;
}

.single-blog .blog-gallery .blog-gallery-next {
  left: auto;
  right: 0px;
}

.single-blog .blog-gallery:hover .blog-gallery-next,
.single-blog .blog-gallery:hover .blog-gallery-prev {
  opacity: 1;
  visibility: visible;
}

.single-blog .blog-embed .ratio-16x9 {
  --aspect-ratio: calc(9 / 15 * 100%);
}

.single-blog .blog-content {
  padding-top: 27px;
}

.single-blog .blog-content .title a {
  font-size: 18px;
  font-family: "Reddit Sans", sans-serif;
  text-transform: capitalize;
  line-height: 21px;
  margin-bottom: 5px;
  font-weight: 600;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: uppercase;
}

.single-blog .blog-content .title a:hover {
  color: #ff0000;
}

.single-blog .blog-content .articles-date {
  margin-bottom: 22px;
}

.single-blog .blog-content .articles-date p {
  font-size: 13px;
  line-height: 15px;
  color: #323232;
}

.single-blog .blog-content .articles-date p span {
  color: #ff0000;
}

.single-blog .blog-content > p {
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 21px;
  border-bottom: 1px solid #e1e1e1;
  color: #323232;
  font-family: "Rubik", sans-serif;
}

.single-blog .blog-content .blog-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.single-blog .blog-content .blog-footer .more {
  font-size: 14px;
  line-height: 14px;
  text-decoration: underline;
  display: inline-block;
}
.more:hover {
  color: #ff0000;
}
.single-blog .blog-content .blog-footer .comment-count {
  font-size: 18px;
  color: #323232;
}

.blog-active .swiper-next,
.blog-active .swiper-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 50px;
  height: 100%;
  line-height: 500px;
  font-size: 75px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

@media only screen and (max-width: 767px) {
  .blog-active .swiper-next,
  .blog-active .swiper-prev {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
  }
}

.blog-active .swiper-next:hover,
.blog-active .swiper-prev:hover {
  color: #ff0000;
}

.blog-active .swiper-next {
  left: auto;
  right: 0px;
}

.blog-active:hover .swiper-next,
.blog-active:hover .swiper-prev {
  opacity: 1;
  visibility: visible;
}

/*--
/*  4.8 - Newsletter CSS
/*----------------------------------------*/
.newsletter-form .form-wrapper {
  max-width: 630px;
  margin: 30px auto 0;
  position: relative;
}

.newsletter-form .form-wrapper input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 100%;
  border: 0;
  background: none;
  padding: 0 85px 0 30px;
  height: 48px;
  font-size: 15px;
  border-bottom: 1px solid #373737;
  color: #222222;
  font-weight: 400;
}

.newsletter-form .form-wrapper button {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 0;
  background: inherit;
}

.newsletter-form .form-wrapper i {
  position: absolute;
  top: 56%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 25px;
  color: #666666;
}

/*--
/*  4.9 - Chose CSS
/*----------------------------------------*/
.single-chose {
  margin-top: 30px;
}

.single-chose .chose-icon {
  margin-bottom: 23px;
}

.single-chose .chose-icon img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-chose .chose-content .title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 19px;
  color: #222222;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-chose .chose-content .title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .single-chose .chose-content .title {
    font-size: 20px;
  }
}

.single-chose .chose-content p {
  font-weight: 300;
}

.single-chose:hover .chose-icon img {
  -webkit-transform: rotatey(180deg);
  -ms-transform: rotatey(180deg);
  transform: rotatey(180deg);
}

/*--
/*  4.10 - Brand CSS
/*----------------------------------------*/
.brand-area {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .brand-area {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.brand-active .swiper-next,
.brand-active .swiper-prev {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.brand-active .swiper-next:hover,
.brand-active .swiper-prev:hover {
  color: #ff0000;
}

.brand-active .swiper-next {
  left: auto;
  right: 0;
}

.brand-active:hover .swiper-next,
.brand-active:hover .swiper-prev {
  opacity: 1;
  visibility: visible;
}

/*--
/*  4.11 - Shop CSS
/*----------------------------------------*/
.shop-top-bar {
  margin-top: 50px;
  border: 1px solid #e5e5e5;
  padding: 0px 15px 10px;
}

@media only screen and (max-width: 767px) {
  .shop-top-bar {
    padding: 0px 10px 10px;
  }
}

.top-bar-btn {
  padding-top: 8px;
}

@media only screen and (max-width: 575px) {
  .top-bar-btn .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}

.top-bar-btn .nav .nav-item + .nav-item {
  margin-left: 20px;
}

@media only screen and (max-width: 767px) {
  .top-bar-btn .nav .nav-item + .nav-item {
    margin-left: 15px;
  }
}

.top-bar-btn .nav .nav-item .nav-link {
  padding: 0;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
}

/* .top-bar-btn .nav .nav-item .nav-link.grid {
  background-image: url(../images/bkg_grid.png);
}

.top-bar-btn .nav .nav-item .nav-link.list {
  background-image: url(../images/bkg_list.png);
}

.top-bar-btn .nav .nav-item .nav-link.active.grid {
  background-image: url(../images/bkg_grid_hover.png);
}

.top-bar-btn .nav .nav-item .nav-link.active.list {
  background-image: url(../images/bkg_list_hover.png);
} */

.top-bar-sorter {
  padding-top: 10px;
}

@media only screen and (max-width: 575px) {
  .top-bar-sorter .sorter-wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}

.top-bar-sorter .sorter-wrapper label {
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  margin-right: 15px;
  margin-bottom: 0;
}

.top-bar-sorter .sorter-wrapper select {
  border: 1px solid #e5e5e5;
  background-color: #ffffff;
  width: auto;
  max-width: 100%;
  padding: 8px 10px;
  height: 42px;
  font-family: "Reddit Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  padding-right: 35px;
}

.top-bar-page-amount {
  padding-top: 10px;
}

@media only screen and (max-width: 575px) {
  .top-bar-page-amount {
    text-align: center;
  }
}

.top-bar-page-amount p {
  font-size: 14px;
}

.shop-banner {
  margin-top: 50px;
}

.shop-sidebar {
  padding-top: 20px;
}

/*--
/*  4.12 - Shop Single CSS
/*----------------------------------------*/
.shop-image {
  position: relative;
  margin-top: 50px;
}

.shop-image .shop-single-preview-image .zoomWrapper {
  overflow: hidden;
}

.shop-image .shop-single-preview-image .zoomWrapper img {
  width: 100%;
  border: 2px solid red;
}

.shop-image .shop-single-preview-image .sticker-new {
  top: 40px;
  left: 40px;
  font-size: 14px;
  height: 24px;
  line-height: 24px;
  padding: 0 14px;
  text-align: center;
  display: block;
  border-radius: 2px;
  position: absolute;
  font-weight: 300;
  border-radius: 50px;
  z-index: 8;
}

@media only screen and (max-width: 767px) {
  .shop-image .shop-single-preview-image .sticker-new {
    top: 20px;
    left: 20px;
  }
}

.shop-image .shop-single-preview-image .sticker-new.soldout-title {
  background-color: #ff0000;
  color: #ffffff;
}

.shop-image .shop-single-preview-image .sticker-new.label-sale {
  background-color: #222222;
  color: #ffffff;
}

.shop-image .shop-single-thumb-image {
  margin-top: 20px;
}

.shop-image .shop-single-thumb-image .single-product-thumb a {
  border: 2px solid transparent;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-image .shop-single-thumb-image .single-product-thumb a.active {
  border-color: #ff0000;
}

.shop-thumb-active .swiper-thumb-next,
.shop-thumb-active .swiper-thumb-prev {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 50px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.shop-thumb-active .swiper-thumb-next:hover,
.shop-thumb-active .swiper-thumb-prev:hover {
  color: #ff0000;
}

.shop-thumb-active .swiper-thumb-next {
  left: auto;
  right: 0;
}

.shop-thumb-active:hover .swiper-thumb-next,
.shop-thumb-active:hover .swiper-thumb-prev {
  opacity: 1;
  visibility: visible;
}

.shop-single-content {
  margin-top: 50px;
}

.shop-single-content .title {
  text-transform: capitalize;
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #222222;
  line-height: 20px;
  font-family: "Reddit Sans", sans-serif;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .title {
    font-size: 20px;
  }
}

.shop-single-content .product-sku {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666666;
}

.shop-single-content .product-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.shop-single-content .product-rating .rating-star {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop-single-content .product-rating .rating-star li {
  margin: 0 1px;
  color: #666666;
  font-size: 15px;
}

.shop-single-content .product-rating .rating-star li.rating-on {
  color: #FF9800;
}

.shop-single-content .product-rating span {
  margin-left: 4px;
  font-size: 13px;
  color: #666666;
}

.shop-single-content .thumb-price {
  margin-top: 10px;
  margin-bottom: 20px;
}

.shop-single-content .thumb-price .current-price {
  font-weight: 500;
  font-size: 23px;
  color: #ff0000;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .thumb-price .current-price {
    font-size: 20px;
  }
}

.shop-single-content .thumb-price .old-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 20px;
  margin-left: 5px;
  color: #222222;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .thumb-price .old-price {
    font-size: 18px;
  }
}

.shop-single-content .thumb-price .discount {
  background: #ff0000;
  color: #fff;
  padding: 3px 16px;
  margin-top: 4px;
  margin-left: 5px;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .thumb-price .discount {
    font-size: 14px;
  }
}

@media only screen and (max-width: 575px) {
  .shop-single-content p {
    font-size: 14px;
  }
}

.shop-single-content .shop-single-size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 38px;
}

.shop-single-content .shop-single-size .size-title {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 0;
}

.shop-single-content .shop-single-size .size-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop-single-content .shop-single-size .size-list li {
  margin-left: 15px;
}

.shop-single-content .shop-single-size .size-list .size-radio input[type="radio"] {
  display: none;
}

.shop-single-content .shop-single-size .size-list .size-radio input[type="radio"] + label {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f7f8fa;
  color: #666666;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .shop-single-content .shop-single-size .size-list .size-radio input[type="radio"] + label {
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }
}

.shop-single-content .shop-single-size .size-list .size-radio input[type="radio"]:checked + label {
  background-color: #ff0000;
  color: #ffffff;
}

.shop-single-content .shop-single-color {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 38px;
}

.shop-single-content .shop-single-color .color-title {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 0;
}

.shop-single-content .shop-single-color .color-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop-single-content .shop-single-color .color-list li {
  margin-left: 15px;
}

.shop-single-content .shop-single-color .color-list .color-radio input[type="radio"] {
  display: none;
}

.shop-single-content .shop-single-color .color-list .color-radio input[type="radio"] + label {
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 0;
  position: relative;
  border: 1px solid #ddd;
}

@media only screen and (max-width: 767px) {
  .shop-single-content .shop-single-color .color-list .color-radio input[type="radio"] + label {
    width: 30px;
    height: 30px;
  }
}

.shop-single-content .shop-single-color .color-list .color-radio input[type="radio"]:checked + label {
  outline: 1px solid #666;
}

.shop-single-content .shop-single-material {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 28px;
}

.shop-single-content .shop-single-material .material-title {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 0;
}

.shop-single-content .shop-single-material .material-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop-single-content .shop-single-material .material-list li {
  margin-left: 15px;
  margin-top: 10px;
}

.shop-single-content .shop-single-material .material-list .material-radio input[type="radio"] {
  display: none;
}

.shop-single-content .shop-single-material .material-list .material-radio input[type="radio"] + label {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  text-align: center;
  background-color: #f7f8fa;
  color: #666666;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .shop-single-content .shop-single-material .material-list .material-radio input[type="radio"] + label {
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }
}

.shop-single-content .shop-single-material .material-list .material-radio input[type="radio"]:checked + label {
  background-color: #ff0000;
  color: #ffffff;
}

.shop-single-content .product-additional-information {
  padding-top: 30px;
}

.shop-single-content .product-additional-information li {
  display: inline-block;
  margin-right: 15px;
}

.shop-single-content .product-additional-information li:last-child {
  margin-right: 0;
}

.shop-single-content .product-additional-information li button {
  background: none;
  color: #222222;
  border: 0;
  font-size: 14px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-single-content .product-additional-information li button i {
  margin-right: 6px;
  font-size: 17px;
  position: relative;
  top: 2px;
}

.shop-single-content .product-additional-information li button:hover {
  color: #ff0000;
}

.shop-single-content .product-quantity {
  padding-top: 43px;
}

.shop-single-content .product-quantity .quantity-title {
  font-weight: 500;
  color: #222222;
  font-size: 14px;
  padding-right: 30px;
}

.shop-single-content .quantity {
  border-bottom: 2px solid #ccc;
}

.shop-single-content .quantity button {
  height: 30px;
  width: 30px;
  background: none;
  border: 0;
  font-size: 14px;
  color: #222222;
}

.shop-single-content .quantity input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 152px;
  padding: 0 10px;
  background: none;
  text-align: center;
  color: #222222;
  border: 0;
}

.shop-single-content .product-quantity-group {
  margin-top: 40px;
}

.shop-single-content .product-quantity-group .table {
  width: 430px;
  margin-bottom: 0;
}

.shop-single-content .product-quantity-group .table tbody tr td {
  border: 1px solid #e1e1e1;
  vertical-align: middle;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  width: 33.33%;
}

.shop-single-content .product-quantity-group .table tbody tr td .quantity {
  display: inline-block;
}

.shop-single-content .product-quantity-group .table tbody tr td .quantity input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 60px;
  height: 30px;
}

.shop-single-content .product-action {
  padding-top: 40px;
}

.shop-single-content .product-action .action {
  margin-right: 30px;
  margin-top: 10px;
}

.shop-single-content .product-action .action:last-child {
  margin-right: 0;
}

.shop-single-content .product-action .action .btn {
  font-size: 16px;
  width: 285px;
  border-radius: 5px;
  height: 42px;
  line-height: 40px;
  font-weight: 400;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .product-action .action .btn {
    width: 100%;
  }
}

.shop-single-content .product-action .action .btn:hover {
  border-color: #3E444A;
  background-color: #3E444A;
}

.shop-single-content .product-action .action .btn:focus {
  border-color: #3E444A;
  background-color: #3E444A;
}

.shop-single-content .product-action .action a {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background-color: #ff0000;
  color: #ffffff;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-single-content .product-action .action a:hover {
  border-color: #3E444A;
  background-color: #3E444A;
}

.shop-single-content .dynamic-checkout-button {
  padding-top: 45px;
}

.shop-single-content .dynamic-checkout-button .checkout-checkbox input[type="checkbox"] {
  display: none;
}

.shop-single-content .dynamic-checkout-button .checkout-checkbox input[type="checkbox"] + label {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}

.shop-single-content .dynamic-checkout-button .checkout-checkbox input[type="checkbox"] + label span {
  width: 14px;
  height: 14px;
  border: 1px solid #ccc;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.shop-single-content .dynamic-checkout-button .checkout-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: '\f00c';
  font-family: FontAwesome;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-single-content .dynamic-checkout-button .checkout-checkbox input[type="checkbox"]:checked + label span::before {
  opacity: 1;
  visibility: visible;
}

.shop-single-content .dynamic-checkout-button .checkout-btn {
  padding-top: 10px;
}

.shop-single-content .dynamic-checkout-button .checkout-btn .btn {
  max-width: 400px;
  width: 100%;
  height: 40px;
  line-height: 38px;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 300;
}

@media only screen and (max-width: 575px) {
  .shop-single-content .dynamic-checkout-button .checkout-btn .btn {
    width: 100%;
  }
}

.shop-single-content .dynamic-checkout-button .checkout-btn .btn:hover {
  border-color: #3E444A;
  background-color: #3E444A;
}

.shop-single-content .dynamic-checkout-button.disabled .checkout-btn .btn {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.6;
}

.shop-single-content .dynamic-checkout-button.disabled .checkout-btn .btn:hover {
  border-color: #3E444A;
  background-color: #3E444A;
}

.shop-single-content .custom-payment-options {
  padding-top: 40px;
}

.shop-single-content .custom-payment-options p {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 0;
}

.shop-single-content .custom-payment-options .payment-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shop-single-content .custom-payment-options .payment-options li {
  padding-right: 10px;
}

.shop-single-content .social-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 38px;
}

.shop-single-content .social-share .share-title {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  margin-bottom: 0;
}

.shop-single-content .social-share .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.shop-single-content .social-share .social li {
  margin-left: 15px;
}

.shop-single-content .social-share .social li a {
  border: 1px solid #777;
  border-radius: 100%;
  color: #4b4b4b;
  display: block;
  height: 40px;
  line-height: 38px;
  text-align: center;
  width: 40px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.shop-single-content .social-share .social li a:hover {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.shop-single-info {
  border: 1px solid #e1e1e1;
  padding: 20px 30px 27px;
  margin-top: 100px;
}

@media only screen and (max-width: 575px) {
  .shop-single-info {
    padding: 10px 20px 17px;
  }
}

.shop-single-info .shop-info-tab .nav {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
}

.shop-single-info .shop-info-tab .nav .nav-item {
  margin-right: 35px;
}

@media only screen and (max-width: 575px) {
  .shop-single-info .shop-info-tab .nav .nav-item {
    margin-right: 15px;
  }
}

.shop-single-info .shop-info-tab .nav .nav-item .nav-link {
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  padding: 0;
}

@media only screen and (max-width: 575px) {
  .shop-single-info .shop-info-tab .nav .nav-item .nav-link {
    font-size: 16px;
  }
}

.shop-single-info .shop-info-tab .nav .nav-item .nav-link.active {
  color: #ff0000;
}

.shop-single-info .description {
  padding-top: 25px;
}

.shop-single-info .description p {
  font-weight: 300;
}

@media only screen and (max-width: 575px) {
  .shop-single-info .description p {
    font-size: 14px;
  }
}

.shop-single-info .reviews {
  padding: 24px;
  border: 1px solid #ECECEC;
  margin-top: 5px;
  margin-top: 25px;
}

@media only screen and (max-width: 575px) {
  .shop-single-info .reviews {
    padding: 15px;
  }
}

.shop-single-info .reviews .review-title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Reddit Sans", sans-serif;
}

@media only screen and (max-width: 575px) {
  .shop-single-info .reviews .review-title {
    font-size: 18px;
  }
}

.reviews-items {
  padding-top: 24px;
}

.reviews-items .single-review {
  padding: 24px 0;
  border-top: 1px solid #ECECEC;
}

.reviews-items .single-review .name {
  font-size: 16px;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  color: #222222;
}

.reviews-items .single-review .rating-date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.reviews-items .single-review .rating-date .rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.reviews-items .single-review .rating-date .rating li {
  margin: 0 1px;
  color: #666666;
  font-size: 13px;
  line-height: 14px;
}

.reviews-items .single-review .rating-date .rating li.rating-on {
  color: #ff0000;
}

.reviews-items .single-review .rating-date .date {
  font-size: 13px;
  color: #666666;
  margin-left: 10px;
}

.reviews-items .single-review p {
  margin-top: 10px;
}

@media only screen and (max-width: 575px) {
  .reviews-items .single-review p {
    font-size: 14px;
  }
}

.reviews-form .reviews-rating {
  margin-top: 15px;
}

.reviews-form .reviews-rating .rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.reviews-form .reviews-rating .rating li {
  font-size: 30px;
  color: #ff0000;
  margin: 0 2px;
  cursor: pointer;
}

.reviews-form .reviews-rating .rating li i {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.reviews-form .reviews-rating .rating li i.hover::before {
  content: "\f005" !important;
}

.reviews-form .single-form textarea {
  height: 275px;
  resize: none;
}

/*--
/*  4.13 - Login CSS
/*----------------------------------------*/
.login-register-content .title {
  font-size: 24px;
  font-weight: 500;
  color: #222222;
  font-family: "Reddit Sans", sans-serif;
}

@media only screen and (max-width: 575px) {
  .login-register-content .title {
    font-size: 20px;
  }
}

.login-register-content .forget a {
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.login-register-content .forget a:hover {
  color: #ff0000;
}

.login-register-content .single-form .btn-primary:hover {
  background-color: #292d32;
  border-color: #292d32;
}

.login-register-content .single-form .btn-dark:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}

/*--
/*  4.14 - Cart CSS
/*----------------------------------------*/
.cart-table .table thead {
  background-color: rgba(249, 140, 140, 0.8);
}

.cart-table .table thead tr th {
  background-color: #fff;
  border: 1px solid rgba(249, 140, 140, 0.1) !important;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
  padding: 15px;
  text-align: center;
  background: none;
  min-width: 16.66%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cart-table .table thead tr th {
    min-width: 140px;
  }
}

@media only screen and (max-width: 767px) {
  .cart-table .table thead tr th {
    min-width: 140px;
  }
}

.cart-table .table tbody tr td {
  border: 1px solid rgba(249, 140, 140, 0.8);
  text-align: center;
  vertical-align: middle;
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #222222;
}

.cart-table .table tbody tr td.image img {
  width: 128px;
}

.cart-table .table tbody tr td.product {
  text-align: left;
}

.cart-table .table tbody tr td.product a {
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.cart-table .table tbody tr td.product a:hover {
  color: #ff0000;
}

.cart-table .table tbody tr td.product span {
  font-size: 13px;
  font-weight: 300;
  color: #222222;
  display: block;
}

.cart-table .table tbody tr td.quantity .quantity {
  border-bottom: 2px solid #ccc;
}

.cart-table .table tbody tr td.quantity .quantity button {
  height: 40px;
  width: 30px;
  background: none;
  border: 0;
  font-size: 14px;
  color: #222222;
}

.cart-table .table tbody tr td.quantity .quantity input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 60px;
  padding: 0 10px;
  background: none;
  text-align: center;
  color: #222222;
  border: 0;
}

.cart-table .table tbody tr td.remove a {
  font-size: 16px;
  color: #222222;
}

.cart-btn {
  padding-top: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

@media only screen and (max-width: 575px) {
  .cart-btn {
    display: block;
  }
}

.cart-btn .cart-btn-left,
.cart-btn .cart-btn-right {
  margin-top: 15px;
}

.cart-btn .btn {
  border: 1px solid #e6e6e6;
  border-radius: 3px;
  color: #222222;
  font-weight: 500;
}

.cart-btn .btn:hover {
  border-color: #ff0000;
  background-color: #ff0000;
  color: #ffffff;
}

.cart-btn .btn.btn-primary {
  border-color: #ff0000;
  color: #ffffff;
}

.cart-btn .btn.btn-primary:hover {
  background-color: #292d32;
  border-color: #292d32;
}

.cart-btn .main-btn {
  padding: 0 30px;
  margin-right: 5px;
}

@media only screen and (max-width: 767px) {
  .cart-btn .main-btn {
    padding: 0 20px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
}

.cart-btn .main-btn:last-child {
  margin-right: 0;
}

.cart-shipping,
.cart-coupon,
.cart-totals {
  margin-top: 40px;
}

.cart-title .title {
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  font-size: 18px;
  color: #222222;
  position: relative;
  text-transform: uppercase;
  position: relative;
  line-height: 18px;
}

.cart-form .cart-form-btn {
  padding-top: 15px;
}

.cart-form .cart-form-btn .btn {
  height: 40px;
  line-height: 38px;
  font-weight: 500;
  border-radius: 3px;
}

.cart-form .cart-form-btn .btn:hover {
  background-color: #292d32;
  border-color: #292d32;
}

.cart-totals .cart-total-table {
  background-color: #f7f7f7;
  padding: 15px 20px;
}

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

.cart-totals .cart-total-table .table tbody tr td {
  border-top: 0;
}

.cart-totals .cart-total-table .value {
  font-size: 14px;
  font: 400px;
  color: #000000;
  text-transform: capitalize;
}

.cart-totals .cart-total-table .price {
  font-size: 14px;
  font: 400px;
  color: #000000;
}

.cart-total-btn {
  margin-top: 20px;
}

.cart-total-btn .btn {
  font-weight: 500;
  border-radius: 3px;
}

.cart-total-btn .btn:hover {
  background-color: #292d32;
  border-color: #292d32;
}

/*--
/*  4.15 - Checkout CSS
/*----------------------------------------*/
.checkout-info .info-header {
  padding: 14px 30px;
  margin: 0 0 30px;
  position: relative;
  background-color: #eeeff2;
  list-style: none outside !important;
  width: auto;
  word-wrap: break-word;
  color: #000000;
  font-size: 14px;
}

.checkout-info .info-header strong {
  font-weight: 700;
  color: #000000;
}

.checkout-info .info-header i {
  font-size: 12px;
  color: #6dde6d;
  margin-right: 10px;
}

.checkout-info .info-header a {
  color: #000000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.checkout-info .info-header a:hover {
  color: #ff0000;
}

.checkout-info .info-header.error i {
  color: #c43002;
}

.checkout-info .card-body {
  padding: 0;
}

.checkout-info .card-body p {
  font-size: 14px;
  color: #666666;
}

.checkout-info .card-body .single-form {
  margin-top: 15px;
}

.checkout-info .card-body .single-form .btn {
  padding: 0 30px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
}

.checkout-info .card-body .single-form .cus-checkbox {
  margin-left: 20px;
}

.checkout-info .card-body .forget {
  margin-top: 15px;
}

.checkout-info .card-body .forget a {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.checkout-info .card-body .forget a:hover {
  color: #ff0000;
}

.checkout-title .title {
  font-size: 20px;
  font-family: "Reddit Sans", sans-serif;
  font-weight: 600;
  color: #000000;
  position: relative;
}

.checkout-title .title::after {
  content: "";
  width: 50px;
  display: block;
  margin-top: 10px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: inherit;
}

.checkout-form .checkout-account {
  display: none;
}

.checkout-form .checkout-shipping {
  display: none;
}

.checkout-form .checkout-note textarea {
  background-color: #f7f7f7;
  border-color: #f7f7f7;
  height: 120px;
}

.checkout-form .checkout-checkbox {
  margin-top: 15px;
}

.checkout-review-order {
  border: 2px solid #e1e1e1;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .checkout-review-order {
    padding: 40px;
  }
}

@media only screen and (max-width: 575px) {
  .checkout-review-order {
    padding: 20px;
  }
}

.checkout-review-order .table {
  margin-bottom: 0;
}

.checkout-review-order .table thead tr th {
  padding: 10px 0;
  border-top: 0;
  border-bottom: 1px solid #e1e1e1;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  vertical-align: middle;
}

.checkout-review-order .table thead tr th.Product-price {
  text-align: right;
}

.checkout-review-order .table tbody tr td {
  padding: 5px 0;
  border-top: 0;
  vertical-align: middle;
}

.checkout-review-order .table tbody tr td p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.checkout-review-order .table tbody tr td.Product-price {
  text-align: right;
}

.checkout-review-order .table tbody tr:first-child td {
  padding-top: 20px;
}

.checkout-review-order .table tbody tr:last-child td {
  padding-bottom: 20px;
}

.checkout-review-order .table tfoot tr td {
  padding: 10px 0;
  vertical-align: middle;
}

.checkout-review-order .table tfoot tr td p {
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}

.checkout-review-order .table tfoot tr td.Product-price {
  text-align: right;
}

.checkout-review-order .table tfoot tr td.total-price {
  text-align: right;
}

.checkout-review-order .table tfoot tr td.total-price p {
  font-size: 18px;
}

.checkout-review-order .table tfoot tr td .cus-radio {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.checkout-review-order .table tfoot tr td .cus-radio label {
  white-space: nowrap;
}

.checkout-payment {
  margin-top: 30px;
}

.checkout-payment .single-payment .payment-radio label .payment {
  width: 100px;
  padding: 0 2px;
}

.checkout-payment .single-payment .payment-radio label a {
  color: #000000;
  text-decoration: underline;
  text-transform: capitalize;
}

.checkout-payment .single-payment .payment-radio .payment-details {
  display: none;
  padding: 10px 0;
}

.checkout-payment .single-payment .payment-radio .payment-details p {
  font-size: 14px;
  color: #666666;
}

.checkout-payment .cus-radio {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.checkout-payment .checkout-btn {
  margin-top: 20px;
}

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

.compare-table .table tbody tr th {
  width: 200px;
  text-align: center;
  padding: 15px 15px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  .compare-table .table tbody tr th {
    padding: 20px 15px;
  }
}

.compare-table .table tbody tr td {
  padding: 15px 15px;
  text-align: center;
  border: 1px solid var(--primary-color);
  color: #222222;
  font-size: 16px;
  min-width: 245px;
}

@media only screen and (max-width: 767px) {
  .compare-table .table tbody tr td {
    padding: 20px 15px;
    font-size: 16px;
  }
}

.compare-table .table tbody tr td .product-image-title .product-image img {
  display: block;
}

.compare-table .table tbody tr td .product-image-title .category {
  color: #666666;
  font-size: 15px;
  display: block;
  margin-top: 25px;
}

.compare-table .table tbody tr td .product-image-title .category:hover {
  color: #ff0000;
}

.compare-table .table tbody tr td .product-image-title .title a {
  font-size: 16px;
  font-family: "Reddit Sans", sans-serif;
  color: #222222;
  font-weight: 600;
  margin-top: 15px;
}

.compare-table .table tbody tr td .description {
  text-align: left;
}

.compare-table .table tbody tr td .description p {
  font-size: 15px;
}

.compare-table .table tbody tr td .btn {
  border-radius: 3px;
  font-weight: 500;
}

.compare-table .table tbody tr td .delete {
  font-size: 18px;
  color: #222222;
}

.compare-table .table tbody tr td .rating li {
  display: inline-block;
  font-size: 14px;
  color: #666666;
}

.compare-table .table tbody tr td .rating li.rating-on {
  color: #FF9800;
}

/*--
/*  4.17 - Empty Cart CSS
/*----------------------------------------*/
.empty-cart-content .empty-cart-title {
  color: #222222;
  font-family: "Reddit Sans", sans-serif;
  font-size: 35px;
}

@media only screen and (max-width: 767px) {
  .empty-cart-content .empty-cart-title {
    font-size: 24px;
  }
}

.empty-cart-content .empty-cart-img {
  margin: 0 auto;
  padding-top: 25px;
}

.empty-cart-content p {
  font-size: 16px;
  color: #666666;
  text-transform: capitalize;
  margin-top: 30px;
  color: #222222;
}

.empty-cart-content .btn {
  border-radius: 3px;
  margin-top: 20px;
  font-weight: 400;
  font-size: 13px;
}

.empty-cart-content .btn:hover {
  background-color: #292d32;
  border-color: #292d32;
}

/*--
/*  4.18 - My Account CSS
/*----------------------------------------*/
.my-account-menu .account-menu-list {
  background-color: #f7f7f7;
}

.my-account-menu .account-menu-list li a {
  width: 100%;
  padding: 10px 30px;
  font-size: 14px;
  color: #666666;
  margin-top: -1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.my-account-menu .account-menu-list li a i {
  margin-right: 5px;
}

.my-account-menu .account-menu-list li a:hover, .my-account-menu .account-menu-list li a.active {
  background-color: #ff0000;
  color: #ffffff;
}

.my-account-tab .account-title {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
}

.account-table .table thead tr th {
  border: 1px solid #ECECEC;
  border-bottom-color: #ECECEC !important;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  padding: 8px 15px;
}

.account-table .table thead tr th.name {
  min-width: 140px;
}

.account-table .table thead tr th.date {
  min-width: 130px;
}

.account-table .table tbody tr td {
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  vertical-align: middle;
  border: 1px solid #ECECEC;
  padding: 0;
}

.account-table .table tbody tr td a {
  padding: 0 15px;
  color: #000000;
}

.my-account-dashboard .welcome-dashboard {
  margin-top: 10px;
}

.my-account-dashboard .welcome-dashboard p {
  font-size: 14px;
  color: #666666;
}

.my-account-dashboard .welcome-dashboard p strong {
  font-weight: 500;
}

.my-account-dashboard .welcome-dashboard p a {
  color: #000000;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.my-account-dashboard .welcome-dashboard p a:hover {
  color: #ff0000;
}

.my-account-dashboard p {
  color: #666666;
}

.my-account-payment p {
  color: #666666;
  font-weight: 500;
  font-size: 14px;
}

.my-account-address .account-address .name {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
}

.my-account-address .account-address p {
  margin-top: 20px;
  font-size: 14px;
  color: #666666;
}

.my-account-address .account-address .btn {
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 14px;
  margin-top: 20px;
  border-radius: 3px;
  font-weight: 500;
}

.my-account-details .account-details .title {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  font-family: "Reddit Sans", sans-serif;
}

.my-account-details .account-details .single-form .btn {
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  font-weight: 400;
}

/*--
/*  4.19 - Contact CSS
/*----------------------------------------*/
.contact-map #contact-map {
  height: 500px;
  border-width: 100%;
}

.form-message.success, .form-message.error {
  font-size: 16px;
  color: #000000;
  background: #ddd;
  padding: 10px 15px;
  margin-left: 15px;
  margin-top: 15px;
}

.form-message.error {
  color: #f00;
}

.contact-info-content {
  padding-top: 30px;
}

.single-contact-info {
  margin-top: 30px;
}

.single-contact-info i {
  font-size: 30px;
  color: #222222;
  margin-bottom: 25px;
}

.single-contact-info .title {
  font-size: 18px;
  font-family: "Reddit Sans", sans-serif;
  color: #222222;
  font-weight: 600;
}

.single-contact-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.contact-form {
  padding-top: 80px;
}

.contact-form .single-form textarea {
  height: 180px;
}

.contact-form .single-form .btn {
  border-radius: 3px;
  font-weight: 400;
  height: 40px;
  line-height: 38px;
}

.contact-form .single-form .btn:hover {
  background-color: #ff0000;
  border-color: #ff0000;
}

/*--
/*  4.20 - Blog CSS
/*----------------------------------------*/

.blog-single img {
  width: 100%;
}

.blog-single .title {
  font-size: 24px;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  margin-bottom: 15px;
  margin-top: 25px;
  text-transform: uppercase;
}

.blog-single .articles-date {
  margin-bottom: 22px;
}

.blog-single .articles-date p {
  font-size: 13px;
  line-height: 15px;
  color: #323232;
}

.blog-single .articles-date p span {
  color: #ff0000;
}

.blog-single .dec-img-wrapper {
  padding-bottom: 30px;
}

.blog-single .dec-img-wrapper .dec-img {
  margin-top: 30px;
}

.blog-dec-tags-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 10px;
}

.blog-dec-tags-social span {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.blog-dec-tags-social .blog-dec-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-top: 15px;
}

.blog-dec-tags-social .blog-dec-tags .tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 5px;
}

.blog-dec-tags-social .blog-dec-tags .tags li {
  margin-left: 5px;
  margin-top: 5px;
}

.blog-dec-tags-social .blog-dec-tags .tags li a {
  height: 30px;
  padding: 0 10px;
  line-height: 28px;
  border: 1px solid #e1e1e1;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.blog-dec-tags-social .blog-dec-tags .tags li:hover a {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.blog-dec-tags-social .blog-dec-social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-top: 15px;
}

.blog-dec-tags-social .blog-dec-social .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.blog-dec-tags-social .blog-dec-social .social li {
  margin-left: 15px;
}

.blog-dec-tags-social .blog-dec-social .social li a {
  font-size: 16px;
  color: #666666;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.blog-dec-tags-social .blog-dec-social .social li:hover a {
  color: #ff0000;
}

.blog-next-previous {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #e1e1e1;
}

.blog-next-previous .left,
.blog-next-previous .right {
  font-size: 16px;
  font-weight: 300;
  color: #666666;
}

.blog-next-previous .left i,
.blog-next-previous .right i {
  font-size: 13px;
}

.blog-comment .comment-wrapper .single-form textarea {
  height: 180px;
}

.blog-comment .comment-title {
  text-transform: uppercase;
  font-size: 15px;
  font-family: "Reddit Sans", sans-serif;
  color: #222222;
  font-weight: 600;
}

.blog-comment .comment-items {
  padding-top: 25px;
}

.blog-comment .comment-items .comment-replay {
  padding-left: 150px;
}

@media only screen and (max-width: 767px) {
  .blog-comment .comment-items .comment-replay {
    padding-left: 0;
  }
}

.single-commnet {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}

@media only screen and (max-width: 575px) {
  .single-commnet {
    display: block;
  }
}

.single-commnet .comment-avater img {
  border-radius: 50%;
  width: 120px;
}

.single-commnet .comment-content {
  padding-left: 30px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media only screen and (max-width: 575px) {
  .single-commnet .comment-content {
    padding-top: 25px;
    padding-left: 0;
  }
}

.single-commnet .comment-content .avater-name {
  font-size: 16px;
  font-weight: 600;
  font-family: "Reddit Sans", sans-serif;
  color: #222222;
  margin-bottom: 0;
}

.single-commnet .comment-content .date {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
}

.single-commnet .comment-content p {
  font-size: 14px;
  margin-top: 15px;
}

.single-commnet .comment-content .replay {
  padding-left: 48px;
  position: relative;
  color: #222222;
  font-size: 14px;
  font-weight: 500;
}

.single-commnet .comment-content .replay::before {
  background-color: #222222;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 37px;
}

/*--
/*  4.21 - Quick View CSS
/*----------------------------------------*/
/* .modal .modal-dialog {
  max-width: 1000px;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal .modal-dialog {
    max-width: 880px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal .modal-dialog {
    max-width: 720px;
  }
}

@media only screen and (max-width: 767px) {
  .modal .modal-dialog {
    max-width: 520px;
  }
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog {
    max-width: 90%;
    margin: 30px auto;
  }
}

.modal .modal-dialog .modal-content {
  border-radius: 0;
  position: relative;
}

.modal .modal-dialog .modal-content .btn-close {
  padding: 0;
  font-size: 10px;
  color: #666666;
  border: 1px solid #ccc;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 9;
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog .modal-content .btn-close {
    top: 5px;
    right: 5px;
  }
}

.modal .modal-dialog .modal-content .btn-close:focus {
  -webkit-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 50px;
  padding-top: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 30px;
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 30px;
    padding-top: 0;
  }
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body {
    padding: 30px;
    padding-top: 0;
  }
}

.modal .modal-dialog .modal-content .modal-body .quick-view-image {
  padding-top: 30px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content {
  padding-top: 30px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price {
  margin-top: 10px;
  margin-bottom: 20px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price .current-price {
  font-weight: 500;
  font-size: 16px;
  color: #ff0000;
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price .current-price {
    font-size: 20px;
  }
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price .old-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 14px;
  margin-left: 5px;
  color: #222222;
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price .old-price {
    font-size: 18px;
  }
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .thumb-price .discount {
  background: #ff0000;
  color: #fff;
  padding: 2px 8px;
  margin-top: 4px;
  margin-left: 5px;
  font-size: 14px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .product-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .product-rating .rating-star {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .product-rating .rating-star li {
  margin: 0 1px;
  font-size: 16px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .product-rating span {
  font-size: 14px;
  color: #666666;
  padding-left: 10px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content p {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 30px;
  font-size: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content p {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart {
  padding-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart {
    padding-top: 10px;
  }
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .quantity {
  border-bottom: 2px solid #ccc;
  margin-top: 10px;
  margin-right: 30px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .quantity button {
  height: 30px;
  width: 30px;
  background: none;
  border: 0;
  font-size: 14px;
  color: #222222;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .quantity input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  width: 60px;
  padding: 0 10px;
  background: none;
  text-align: center;
  color: #222222;
  border: 0;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .addcart-btn {
  margin-top: 10px;
}

.modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .addcart-btn .btn {
  height: 40px;
  line-height: 38px;
  padding: 0 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .addcart-btn .btn {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 575px) {
  .modal .modal-dialog .modal-content .modal-body .quick-view-content .quick-view-quantity-addcart .addcart-btn .btn {
    padding: 0 20px;
  }
}

/*--
/*  4.9 - Page Banner CSS
/*----------------------------------------*/
.page-banner {
  padding-top: 95px;
  padding-bottom: 95px;
  background-position: center center;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .page-banner {
    padding-top: 50px;
    padding-bottom: 55px;
  }
}

.page-banner-content .title {
  font-size: 42px;
  font-family: "Reddit Sans", sans-serif;
  font-weight: normal;
  line-height: 50px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .page-banner-content .title {
    font-size: 32px;
  }
}

.page-banner-content .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: none;
}

.page-banner-content .breadcrumb .breadcrumb-item {
  color: #fff;
  font-size: 14px;
}

.page-banner-content .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

.page-banner-content .breadcrumb .breadcrumb-item a {
  color: #fff;
}

/*----------------------------------------*/
/*  05. Widget CSS
/*----------------------------------------*/
/*--
/*  5.1 - Sidebar Widget CSS
/*----------------------------------------*/
.widget-title {
  font-size: 15px;
  font-family: "Reddit Sans", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 20px;
  border-bottom: 1px solid #e1e1e1;
}

.sidebar-categories {
  margin-top: 28px;
}

.sidebar-categories .categories-list li + li {
  margin-top: 10px;
}

.sidebar-categories .categories-list li a {
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}

.sidebar-categories .categories-list li a span {
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.sidebar-categories .categories-list li a:hover {
  color: #ff0000;
}

.sidebar-color {
  margin-top: 28px;
}

.sidebar-color .color-list {
  margin-left: -5px;
  margin-right: -5px;
}

.sidebar-color .color-list li {
  font-size: 14px;
  color: #666666;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-top: 5px;
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
  line-height: 14px;
}

.sidebar-color .color-list li.active {
  color: #ff0000;
}

.sidebar-color .color-list li span {
  width: 14px;
  height: 14px;
  display: inline-block;
  border: 1px solid #e5e5e5;
  margin-right: 3px;
}

.sidebar-size {
  margin-top: 28px;
}

.sidebar-size .size-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}

.sidebar-size .size-list li {
  padding: 0 3px;
  margin-top: 5px;
}

.sidebar-size .size-list li a {
  width: 45px;
  height: 27px;
  line-height: 25px;
  border: 1px solid #e1e1e1;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sidebar-size .size-list li:hover a, .sidebar-size .size-list li.active a {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.sidebar-banner {
  margin-top: 30px;
}

.sidebar-banner a img {
  width: 100%;
}

.sidebar-product {
  margin-top: 28px;
}

.sidebar-product .product-list li + li {
  margin-top: 20px;
}

.single-mini-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.single-mini-product .product-image {
  width: 80px;
}

.single-mini-product .product-image img {
  width: 100%;
}

.single-mini-product .product-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.single-mini-product .product-content .title a {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #222222;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Reddit Sans", sans-serif;
}

.single-mini-product .product-content .title a:hover {
  color: #ff0000;
}

.single-mini-product .product-content .rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.single-mini-product .product-content .rating li {
  margin: 0 1px;
  color: #666666;
  font-size: 12px;
}

.single-mini-product .product-content .rating li.rating-on {
  color: #FF9800;
}

.single-mini-product .product-content .price-box .current-price {
  font-weight: 500;
  font-size: 14px;
  color: var(--primary-color);
}

.single-mini-product .product-content .price-box .old-price {
  text-decoration: line-through;
  font-weight: 400;
  font-size: 14px;
  margin-right: 5px;
  color: #666666;
}

.sidebar-tags {
  margin-top: 28px;
}

.sidebar-tags .tags-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -3px;
  margin-right: -3px;
}

.sidebar-tags .tags-list li {
  padding: 0 3px;
  margin-top: 5px;
}

.sidebar-tags .tags-list li a {
  height: 35px;
  padding: 0 15px;
  line-height: 33px;
  border: 1px solid #e1e1e1;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.sidebar-tags .tags-list li:hover a, .sidebar-tags .tags-list li.active a {
  background-color: #ff0000;
  border-color: #ff0000;
  color: #ffffff;
}

.sidebar-search {
  margin-top: 28px;
}

.sidebar-search .search-form {
  position: relative;
  margin-top: 10px;
}

.sidebar-search .search-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]) {
  padding-right: 35px;
}

.sidebar-search .search-form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  color: #666666;
  border: 0;
  background: none;
}

.sidebar-post {
  margin-top: 28px;
}

.sidebar-post .post-items .single-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.sidebar-post .post-items .single-post .post-thumb img {
  width: 80px;
}

.sidebar-post .post-items .single-post .post-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 15px;
}

.sidebar-post .post-items .single-post .post-content .date {
  font-size: 13px;
  line-height: 16px;
  color: #666666;
  display: block;
  margin-bottom: 3px;
}

.sidebar-post .post-items .single-post .post-content .post-title {
  line-height: 20px;
  margin-bottom: 0;
}

.sidebar-post .post-items .single-post .post-content .post-title a {
  font-size: 14px;
  color: #222222;
  font-weight: 500;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-family: "Reddit Sans", sans-serif;
}

.sidebar-post .post-items .single-post .post-content .post-title a:hover {
  color: #ff0000;
}

/*--
/*  07. Footer CSS
/*----------------------------------------*/
.footer-area {
  background-color: #222222;
}

.footer-widget {
  /* margin-top: 30px; */
}

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

.footer-widget .footer-widget-text p {
  margin-bottom: 0;
  color: #ffffff;
}

.footer-widget .widget-social {
  margin-top: 23px;
}

.footer-widget .widget-social ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.footer-widget .widget-social ul li {
  margin-right: 10px;
}

.footer-widget .widget-social ul li:last-child {
  margin-right: 0;
}

.footer-widget .widget-social ul li a {
  width: 42px;
  height: 42px;
  line-height: 44px;
  display: block;
  text-align: center;
  font-size: 14px;
  background: #f2f2f2;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-widget .widget-social ul li a:hover {
  background-color: #ff0000;
  color: #ffffff;
}

.footer-widget .footer-widget-title {
  font-size: 15px;
  line-height: 16px;
  margin-bottom: 10px;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  color: #ffffff;
  font-family: "Reddit Sans", sans-serif;
}

.footer-widget .footer-widget-menu ul li a {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer-widget .footer-widget-menu ul li a:hover {
  color: #ff0000;
}

.copyright-section {
  background-color: #222222;
  border-top: 1px solid #abb8c0;
}

.copyright-wrapper {
  padding-bottom: 20px;
}

.copyright-wrapper .copyright-content {
  padding-top: 20px;
}

.copyright-wrapper .copyright-content p {
  text-transform: capitalize;
  line-height: 25px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
}

.copyright-wrapper .copyright-content p a {
  color: #ff0000;
}

.copyright-wrapper .copyright-payment {
  padding-top: 20px;
}

/*===== Back To Top =====*/
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 99;
  text-align: center;
  display: none;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -ms-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -o-box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  box-shadow: 0px 0px 30px 0px rgba(156, 156, 156, 0.25);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  color: #ffffff;
  background-color: #ff0000;
}

.back-to-top:hover {
  color: #ffffff;
  background-color: #abb8c0;
}

.back-to-top:hover i {
  -webkit-animation: fadeInUp 1s both infinite;
  animation: fadeInUp 1s both infinite;
}

.back-to-top:focus {
  color: #ffffff;
}

.profile__info-body-left-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.profile__info-body-left-item-title {
  width: 30%;
  text-align: right;
  color: rgba(85, 85, 85, 0.8);
  font-size: 16px;
}

.profile__info-body-left-item-text {
  width: 70%;
  padding-left: 20px;
}

.profile__info-body-right-avatar {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.profile__info-body-right-avatar-img {
  width: 130px;
  height: 130px;
  margin: 20px 0;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  border-radius: 50%;
  border: solid 1px #efefef;
}

.title-address {
  border-bottom: solid 1px #efefef;
  display: flex;
  align-items: center;
  padding-bottom: 22px;
  justify-content: space-between;
  padding-right: 0;
}

.profile__info-bdaddress-left-item {
  display: flex;
  margin-bottom: 10px;    
}

.profile__info-bdaddress-left-item:first-child {
  margin-bottom: 15px;
  align-items: center;
}

.profile__info-bdaddress-left-item-title {
  margin-right: 25px;
  text-transform: capitalize;
  width: 160px;
  text-align: right;
  color: rgba(85, 85, 85, 0.8);
}

.profile__info-bdaddress-left-item-text {
  max-width: 500px;
  color: #333;
  display: inline-block;
}

.profile__info-bdaddress-right-controls-edit {
  padding-left: 35px;
  color: #555;
}

.profile__info-bdaddress-right-controls-edit:last-child {
  padding-left: 0;
}

.hover-btn:hover {
  background-color: #E9E9E9;
}

.profile__info-body-left-item-input-validator {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-sizing: border-box;
  box-shadow: inset 0 2px 0 0 rgb(0 0 0 / 2%);
  color: #222;
  height: 40px;
  padding: 10px;
  flex: 1;
  margin-left: 20px;
}

.profile__info-body-left-item-input-validator:hover {
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 14%);
}

.profile__info-body-left-item-input-validator:focus-within {
  border-color: rgba(0, 0, 0, 0.54);
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 14%);
}

.profile__info-body-left-item-input {
  background: transparent;
  outline: none;
  box-shadow: none;
  border: 0;
  font-size: 1.4rem;
  flex: 1;
  padding: 0 !important;
  border: none !important;
  background-color: unset !important;
}

.profile__info-body-right-avatar-btn {
  color: #888;
  border: 1px solid rgba(0, 0, 0, 0.09);
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 3%);
  min-width: 90px;
  max-width: 110px;
}

.profile__info-body-right-avatar-condition {
  margin-top: 12px;
}

.profile__info-body-right-avatar-condition-item {
  color: #999;
  line-height: 20px;
  display: block;
}


.border-bottom:last-child {
  border-bottom: none !important;
}

.container__address {
  background-color: #fff;
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 5%);
  margin-bottom: 24px;
}

.container__address-css {
  height: 3px;
  width: 100%;
  background-position-x: -30px;
  background-size: 116px 3px;
  background-image: repeating-linear-gradient(
  45deg,#6fa6d6,#6fa6d6 33px,transparent 0,transparent 41px,#f18d9b 0,#f18d9b 74px,transparent 0,transparent 82px);
}

.container__address-content {
  padding: 28px 30px 24px;
}

.container__address-content-hd {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff0000;
}

.container__address-content-hd-icon {
  margin-right: 10px;
  font-size: 1.6rem;
}

.profile__info-body-right-avatar-btn .btn {
  max-width: 120px;
  padding: 0 20px;
}
ul.inline li{
  padding:0;
}
ul.inline{
  margin: 0;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: #727272;
  color: #fff;
  text-shadow: none;
  -webkit-text-shadow: none;
}
::selection {
  background-color: #727272;
  color: #fff;
  text-shadow: none;
  -webkit-text-shadow: none;
}

h1,
h2,
h3,
h4,
h5{
  margin: 0;
  font-weight: bold;
}



body,
label,

ul li,
h1,
h2,
h3,
h4,
h5,
.placeholder,
.logo .text,
.flex-caption .nav-holder a,button
{
  font-family: "Reddit Sans", sans-serif;
}

.products-holder .product-item .add-button,
.products-holder .product-item ,
.footer-links-holder ul li a:before
{

  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-field-holder form{
  margin: 0;
}
.top-menu ul li{
  text-transform: capitalize;
  font-weight: bold;
  padding: 0;
}
.top-menu ul{
  margin: 0;
}
.top-menu ul li:last-child:after{
  content:"";
}
.top-menu > ul > li:after{
  content:"/";
  color:#D8D8D8;
  margin: 0px 8px;
}
.ie8 .top-menu > ul > li:after{
 
  margin: 0px 2px;
}
.top-row .logo {
  margin-left: 33px;
}
.homepage2  .top-row .logo {
  margin-left: 0px;
}
.logo .text{
  position: absolute;
  top: 11px;

}
.total-price-basket{
  font-weight: bold;
  color: #163FA4;
  font-size: 20px;
  top: 10px;
  position: absolute;
  left: 48px;
}
.logo .text a,.logo .text {
  color: #000000;
  display: inline-block;
  font-size: 33px;
  font-weight: bold;
  line-height: 35px;
  padding-left: 4px;
  padding-top: 10px;
}
.top-menu {

  margin: 33px 0 0;
}
.cart-menu{
  margin: 17px 0 0 30px;
}
.webkit .cart-menu{
  margin: 0px 0 0 30px;
}
.top-menu li a {
  font-size: 13px;
  font-weight: 600;
}
.top-row {
  margin: 10px 0 10px 0;
}
.logo .text a span {

  font-weight: normal;
}
.top-categories{
  border-top:1px solid #E2E4D9;
  padding: 10px;
  margin-top: 4px;
  border-bottom: 4px solid #E1E4D9;
}
.top-categories ul li:first-child{
  margin-left: 0;
}
.ie8 .top-categories ul li{
   margin: 0px 10px;
}
.top-categories ul li{
  margin: 0px 15px;
  position: relative;
}
.top-categories ul li a {
  text-transform: uppercase;
  color: #163FA4;
  font-weight: bold;
}
.top-categories ul li:hover a{
  color:#000;
}
.ie8 .top-categories ul li:hover:after,.ie8 .top-categories ul li.active:after{
  display: none;
}
.top-categories ul li:hover:after,.top-categories ul li.active:after{
  background-color: #fff;
  bottom: -24px;
  box-shadow: 0 4px #E1E4D9;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 100;
  border-radius: 50px;

}

.top-categories ul {
  margin: 10px 0 0 0;
}
.home-slider{
  background-image: url(../images/slider-bg.jpg);
  background-position: center center;

  border-bottom: 4px solid #163FA4;
}
.flex-caption {
  color:#70543F;
  margin: 0 40px;
position: relative;
  z-index: 1000;
}
.flex-caption h1{
  margin-left: -5px;
  font-size: 100px;
  line-height: 85px;
  font-weight: 500;
  margin-top: 90px;
}
.flex-caption .medium{

  font-size: 42.5px;
  line-height: 50px;
  margin-bottom: 35px;

}

.flex-caption .small{
  margin-bottom: 58px;
  font-size: 24px;
  line-height: 24px;
}
.flex-caption .small.yellow{
  color:#FFBB00;
  margin-bottom:35px;
}
.flex-caption .cusmo-btn{
  padding: 15px 40px !important; 
}
.cusmo-btn{
   font-family: "Open Sans"!important;
  background-color: #163FA4;
  border-radius: 30px;
  border:none;
  color: #FFFFFF !important;
   display: inline-block !important; 
  font-size: 13px;
  font-weight: bold !important;
  padding: 10px 20px !important;
  text-decoration: none;
  text-transform: uppercase;
}
.cusmo-btn.gray{
  background-color: #D2D2D2;
}

.cusmo-btn:hover{
  color:#fff!important;
  background-color: #333!important;
  background-image: none!important;
}
.cusmo-btn:focus{
  text-decoration: none; 
  background-color: #333!important;
  background-image: none!important;
  
}
.add-to-wishlist-btn{
  color:#70543f;
}
.products-holder .row-fluid div:last-child .product-item:after{
  display: none;
}
.section-home-products .products-holder .product-item:after{
 right: -24px;  
}
.products-holder .product-item:after{
  content: "";
  height: 90%;
  position: absolute;
  right: -34px;
  top: 0;
  width: 1px;
  background-color: #E9E9E9;
}
.products-holder .product-item{
  text-align: center;
  padding: 10px 0 12px 0;
  border-radius: 10px;
  position: relative;
  border:4px solid transparent;
  width: 200px;
}
.tab-content{
  overflow: hidden;
}
.products-holder .product-item:hover{
  border:4px solid #163FA4;
  z-index: 1000;
}
.products-holder .product-item .tag-line span{
  display: block;
  font-style: italic;
}
.ie8 .products-holder .product-item .add-button{
  display: none;
}
.ie8 .products-holder .product-item:hover.add-button{
  display: inline-block;
}
.products-holder .product-item .add-button{
  opacity: 0;

}
.products-holder .product-item:hover .add-button{
  opacity: 1;
}
.products-holder.tab-pane{
  display: none;
  padding-bottom: 20px;
 
}
.products-holder.tab-pane.in{
  display: block;
}
.products-holder .product-item h1, .products-holder .product-item h3{
  color: #373737;
  font-size: 15px;
  font-weight: bold;
  line-height: 18px;
  margin: 12px 0 1px;
  text-transform: uppercase;
}
.products-holder .price{
  color: red;
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0 12px;
}
.load-more{
  background-color: #FFFFFF;
  border: 1px solid #D4D4D4;
  border-radius: 40px 40px 40px 40px;
  color: #70726A;
  font-size: 17px;
  font-weight: 600;
  line-height: 18px;
  padding: 17px 67px;
  text-transform: uppercase;
}
.section-home-products{
  position: relative;

}
.load-more-holder {
  left: 0px;
  bottom: -15px;
  position: absolute;
  text-align: center;
  width: 100%;
}
.load-more:after{
  right: 0;
}
.load-more:before{
  left: 0;
}
.load-more:after,
.load-more:before{
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #D4D4D4;
  top: 9px;

  z-index: -1;
}
.homepage2 .section-home-products .controls-holder {
  text-align: left;
}
.client-item{
  display: inline-block;

}
.section-carousel {
margin: 70px 0 -27px;
}
.section-home-products .controls-holder {
  text-align: center;
  margin: 40px 0 30px 0;
  border-bottom: 4px solid #E1E4D9;

  padding-bottom: 20px;
}
.nav-holder{
  position: relative;
}
.nav-holder a{
  position: absolute;
  top:10px;
  font-size: 30px;
  color:#919191;
}

.nav-holder .carousel_prev{
  left: 0;
  
}
.nav-holder .carousel_next{
  right: 0;
  
}
.carousel-holder{
 width: 90%!important;
margin-left: auto!important;
margin-right: auto!important; 
}
.caroufredsel_wrapper {

margin-left: auto!important;
margin-right: auto!important;
}

.section-home-products .controls-holder li{
  color: #8D8D8D;
  font-size: 22px;
  font-weight: 600;
  line-height: 23px;
  margin-right: 47px;
  position: relative;
}

.product-item .tag-line {
  font-size: 13px;
}
.section-home-products .controls-holder .active a{
  color:#163FA4;
}
.ie8 .controls-holder li:hover:after,
.ie8 .controls-holder li.active:after{
  display: none;
}
.ie8 .tab-content{
overflow: hidden;  
}
.controls-holder li:hover:after,
.controls-holder li.active:after
{
  background-color: #fff;
  bottom: -27px;
  box-shadow: 0 4px #E1E4D9;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50px;

}

.section-homepage-subscribe{
  margin: 70px 0 30px 0;
  background-image: url(../images/footer-bg.jpg);
  height: 125px;
}
.big-circle{
  background-color: #FFBB00;
  border-radius: 200px ;
  box-shadow: 2px 2px 2px #D8D8D8;
  color: #FFFFFF;
  float: left;
  font-size: 15px;
  height: 110px;
  line-height: 16px;
  margin-top: -17px;
  padding: 36px 22px 10px;
  text-align: center;
  text-transform: uppercase;
  width: 110px;
}
.big-circle .big span{
  font-size: 50px;
}
.big-circle .big{
  font-size: 59px;
  font-weight: bold;
  line-height: 37px;
  padding: 3px 0 6px;
}
.offer-text{
  color: #75513B;
  float: left;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  margin: 34px 10px 0 40px;
  width: 335px;

}

.search-field-holder input:focus{
  box-shadow: none;
  -webkit-box-shadow: none;
  border: 1px solid #FFBB00;
}

.search-field-holder input {
  border: 1px solid #D7D7D7;
  border-radius: 100px;
  box-shadow: none;
  height: 36px;
  margin: 1px 0 0 10px !important;
  padding-left: 38px;
}
.search-field-holder{
  position: relative;
}
.search-field-holder i{
  color: #D7D7D7;
  font-size: 18px;
  left: 26px;
  position: absolute;
  top: 10px;
}
.email-holder{
  position: relative;
  margin-top: 38px;
  display: inline-block;
  margin-left: 40px;
}
.email-holder input:focus{
  box-shadow: none;
  -webkit-box-shadow: none;
  border:2px solid #FFBB00;
}
.email-holder input{
  color:#717171;
  position: relative;
  z-index: 10;
  width: 292px;
  border-radius: 100px;
  -webkit-border-radius:  100px ;
  padding: 10px 10px 10px 25px;

  color:#333;
  border:2px solid #E1E3D8;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.webkit .newsletter-submit-btn,
.ie8 .newsletter-submit-btn{
  padding: 10px 22px 10px 40px;
}

.newsletter-submit-btn{
  border: 2px solid #E1E3D8;
  font-size: 20px;
  background-color: #fff;
  color: #70543F;
  top:0;
  padding: 10px 22px 6px 40px;
  position: absolute;
  right: -60px;
  z-index: 1;
  -webkit-border-radius: 0px 100px 100px 0px;
  border-radius: 0px 100px 100px 0px;

}
.newsletter-submit-btn:hover{

  background-color: #D8D8D8;

}
.footer-links-holder .social-icons{
  margin: 0;
}
.footer-links-holder ul{
  margin: 0 0 0 6px;
  list-style: none;
}
.footer-links-holder h2{
  border-bottom: 1px solid #D6D6D6;
  color: #163FA4;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  margin-bottom: 20px;
  padding-bottom: 7px;
  text-transform: uppercase;
}
.footer-links-holder p{
  color:#727272;
  font-size: 13px;
  margin-top: 25px;
}
.footer-links-holder .social-icons li{
  background-color: #E5E7E4;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  position: relative;
}
.footer-links-holder .social-icons li:hover{
  background-color: #333;
  color:#fff;
}
.footer-links-holder .social-icons li:hover a{
  color:#fff;
}
.footer-links-holder .social-icons li a{
  font-size: 20px;
  text-align: center;
  width: 20px;
  height: 21px;
  color:#000;
  position: absolute;
  left: 0;
  top:0;
  right: 0;
  bottom:0;
  margin:auto;
  display: block;

}

.footer-links-holder li a {
  text-transform: capitalize;
  font-size: 13px;
  position: relative;
}

.footer-links-holder .social-icons li:before{
  content: "";
}
.footer-links-holder ul li{
  position: relative;
  line-height: 25px;
  margin-left: 5px;
}
.footer-links-holder ul li:hover a:before{
  left: -15px;
}

.footer-links-holder ul:not(.social-icons) li a:before {
  content: "ï”";
  font-size: 10px;
  position: absolute;

  left: -10px;
  vertical-align: top;
  font-family: fontawesome;
  color: #727272;
}
.section-copyright{
  border-top: 1px solid #D4D4D4;
  margin: 40px 0 10px 0;
  color:#a3a3a3;
  padding: 19px 0 0 0;
  line-height: 16px;
  font-size: 12px;
}
.section-copyright a:hover{
  color:#333;
}
.section-footer {
  margin-top: 50px;
}
.section-copyright a,.section-copyright strong{
  font-weight: 600;
  color:#163FA4;
}
.copyright-links li:after{
  content:"|";
  margin: 0 5px;
}
.copyright-links li:last-child:after{
  content:"";
}
.copyright-links li a{
  color: #a3a3a3;

  font-weight: normal;
}
.copyright-links li{
  text-transform: uppercase;
}
.social-icons li:first-child {
  margin-left: 0;
}

.top-menu.cart-menu,.top-menu.cart-menu ul{
min-height: 52px;
}

.top-menu.cart-menu ul li{
  min-height: 21px;
}
.top-menu.cart-menu {
vertical-align: top;
display: inline-block;
}

.webkit .basket{
 top: 17px; 
}
.basket {
 display: inline-block;
vertical-align: super;
position: relative;
height: 8px;

margin: 0px 0px 0px -10px;
}
.cart-menu  li:nth-last-child(2):after{
  content: "\00a0";
}
.doviz-dropdown .dropdown-menu li:nth-last-child(2):after{
  content: "";
}
.doviz-dropdown .dropdown-menu li a:hover {
  background-image: none;
  background-color: #FFBB00;
}
.basket .dropdown-menu {
right: -52px;
left: auto;
margin-top: 21px;
width: 270px;
z-index: 9999;
border-radius: 10px;
-webkit-border-radius: 10px;
}
.basket > li{
  position: relative;
}
.top-menu .dropdown-menu:after {
  border-bottom: 10px solid #FFFFFF;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  content: "";
  display: inline-block;
  right: 66px;
  position: absolute;
  top: -10px;
}
.ie8 .top-menu .dropdown-menu:before{
   border-bottom: 11px solid #ccc;
}
.top-menu ul li a:hover {
  color: #163FA4;
}
.top-menu .dropdown-menu:before {
  border-bottom: 11px solid rgba(0, 0, 0, 0.2);
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  content: "";
  display: inline-block;
  right: 65px;
  position: absolute;
  top: -11px;
}
.doviz-dropdown .dropdown-menu:before{
  right: 10px;
}
.doviz-dropdown .dropdown-menu:after{
  right: 11px;
}

.doviz-dropdown .dropdown-menu {
 left: -16px!important;
top: 35px;
z-index: 9999;
min-width: 70px!important;
}
.basket .dropdown-menu li:after{
  content: "";
}
.basket .dropdown-menu li:last-child .basket-item{
  border-bottom: 0;
}
.basket .dropdown-menu li{
  line-height:  10px;
  
  margin: 17px 0;
}
.basket-item{
  margin: 0 20px;
  position: relative;
  padding-bottom: 17px;
  border-bottom: 1px solid #E2E4D9;

}

.basket-item .thumb{
  width: 50px;
  height: 50px;
}
.basket-item .title{
  font-size: 13px;
  margin-top: 2px;
  line-height: 25px;
  font-weight: normal;
}
.basket-item .price{
  font-weight: 600;
  color:#70543E;
  font-size: 13px;
}
.close-btn{
  position: absolute;
  top:15px;
  right: 10px;
font-size: 13px;
  font-weight: normal!important;
  line-height: 12px;
  border-radius: 40px;
  width: 20px;
  height: 20px;
  display: inline-block;

}
.basket li:nth-last-child(2) .basket-item{
  border-bottom: 0;
  margin-bottom: 10px;
}
.close-btn:after{


  font-family: fontawesome;
  content: "ï€";
  color:#D6D8CA;
  text-align: center;
  font-size: 11px;
  width: 11px;
  height: 11px;
  position: absolute;
  left: 1px;
  right: 0;
  top:0;
  bottom:0;
  margin: auto;
}

.close-btn:hover:after{

  color:#000;
}
.close-btn:hover{
  background-color: #D6D8CA;

}
.basket .checkout{
  text-align: center;
  margin: -10px 0 10px 0;
}
.basket .empty{
  text-align: center;
  min-height: 70px;
  padding-top: 30px;
}
.basket-item-count{
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  right: 2px;
  top: -1px;
  z-index: 10;
  min-width: 9px;
}
.doviz-dropdown{
  position: relative;
  display: inline-block;
}
.section-two-columns{
  margin: 32px 0 0 0;
}
.section-two-columns .sidebar{
  border-right: 1px solid #E9E9E9;
  margin-right: -5px;
  margin: 4px -15px 0 0;
padding-right: 15px;
}
.breadcrumb-holder{
  height: 40px;
  padding-top: 17px;
  border-bottom: 4px solid #163FA4;
  background-color: #f5f6f1;

}
.breadcrumb-holder  .bcrumb li a, .breadcrumb-holder .bcrumb li{
  font-size: 13px;
  color:#8f8f8f;
  text-transform: capitalize;
}
.breadcrumb-holder  .bcrumb  li.active a, .breadcrumb-holder  .bcrumb  li.active{
  font-weight: 600;

}
.breadcrumb-holder  .bcrumb  li:last-child:after{
  content: "";
}

.breadcrumb-holder  .bcrumb  li:after{
  content:"/";
  color:#e3e6db;
  margin: 0px 5px;  
}
.accordion-widget .accordion-toggle:hover{
  color:#FFBB00;
}

.accordion-widget .accordion-toggle:after{
  background-color: #FFBB00;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  content: "";
  display: inline-block;
  height: 15px;
  left: -3px;
  position: absolute;
  top: 2px;
  width: 15px;

}
.filter-accordions .accordion-toggle:after{
  background-color: #70543F;
}
.accordion-widget .accordion-toggle.collapsed:after{
  display: none;
}
.accordion-widget .accordion-toggle{
  position: relative;
  font-weight: bold;
  text-transform: capitalize;
  color:#163FA4;
  padding: 0 0 0 20px;
}
.accordion-widget .accordion-group {
  border: 0;
  margin-bottom: 12px;
}
.gecko .accordion-widget .accordion-toggle:before {

  left: 2px;
 
  top: -3px;
}
.accordion-widget .accordion-toggle:before{
  content: "ïƒ";
  font-size: 10px;
  font-family: fontawesome;
  z-index: 10;
  left: 1px;
  top:-1px;
  position: absolute;
  color:#fff;
  display: inline-block;
  vertical-align: super;
}
.accordion-widget .accordion-toggle.collapsed:before{
  color:#A7A7A7;
}
.accordion-widget .accordion-inner ul{
  list-style: none;
  margin: 0;
}
.category-accordions .accordion-inner ul li:before{
  /* content: "-"; */
  margin-right: 5px;
}
.accordion-widget .accordion-inner ul li a:hover{
  color:#163FA4;
}
.accordion-widget .accordion-inner ul li{
  font-size: 13px;
  text-transform: capitalize;
}
.accordion-widget .accordion-inner {
  border-top: none;
  padding:13px 10px 13px 20px;
  max-width: auto;
}

.price-slider {
  visibility: hidden;
}
.price-range-holder{
  padding: 10px 0px 35px 0px!important;
  position: relative;
}

.price-range.in {
  overflow: visible;
}
.slider .tooltip {

  margin-top: 55px;
}
.price-range-holder .min-value,.price-range-holder .max-value{
  position: absolute;
  font-size: 13px;
  display: inline-block;
  top: 33px;
}
.price-range-holder .min-value{
  left: 0;
}
.price-range-holder .max-value{
  right: 0;
}
.bcrumb {
  display: inline-block;
}
.grid-list-buttons {
  float: right;

}
.grid-list-buttons li:hover i{
  color:#FFBB00;
}
.grid-list-buttons li{
  margin-right: 5px
}
.grid-list-buttons ul{
  margin: 0;
}
.grid-list-buttons i{
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 1px;
}
.grid-list-buttons a{
  font-size: 13px;
  font-weight: 600;

}
.grid-list-buttons  i{
  color:#72533E;
}
.grid-list-buttons .active i{
  color:#FFBB00;
}
.products-list-head{
  height: 95px;
  position: relative;
  background-repeat: no-repeat;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden;
  padding: 55px 0px 0 45px;
  background-image: url(../images/product-bg.jpg);
  color:#70543f;
}
.products-list-head .tag-line{
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
}
.products-list-head h1{
  float: left;
  margin-right: 40px;
  text-transform: uppercase;
  font-weight: lighter;
  font-size: 45px;
  color: #163FA4;
}
.products-list-head .image-holder {
display: inline-block;
top: 0;
right: 0;
width: 230px;
height: 153px;
position: absolute;
}
.products-grid{
  margin: 20px 0 40px 0;
}
.products-grid .product-item {
  width: 220px;
}
.products-grid .product-item:after{
  right: -14px;
}
.section-two-columns{
  position: relative;
}

.products-list {
  margin-top: 33px;
}
.list-item h1,.list-item h3 {
font-size: 17px;
text-transform: uppercase;
  line-height: 22px;
}
.list-item .buttons-holder a:first-child{
  margin-right: 10px;
}
.list-item .tag-line {
  font-style: italic;
  font-size: 13px;
  color: #6e6e6e;
}

.list-item .desc {
  font-size: 11px;
  line-height: 18px;
  color: #6e6e6e;
  margin-top: 27px;
}
.list-item .thumb{
  position: relative;
  width: 205px;
height: 205px;
}
.list-item{
  border-bottom: 1px solid #e9e9e9;
padding: 17px 0;
}
.list-item:last-child {
border-bottom: 0;
}
.list-item:nth-last-child(2) {
border-bottom: 0;
}
.list-item .thumb:after{
  content: "";
  top: 0;
  height: 100%;
  position: absolute;
  width: 1px;
  background-color: #e9e9e9;
  right: -18px;
}
.list-item .price {
  margin-top: 18px;
}
.list-item .price span {
  font-size: 20px;
  vertical-align: middle;
}

.list-item span.old {
  font-size: 14px;
  color: #FFBB00;
  text-decoration: line-through;
  margin-left: 7px;
}

.list-item .buttons-holder .cusmo-btn {
  padding: 7px 20px!important;
}

.list-item .buttons-holder {
  margin: 18px 0 0px 3px;
}
.add-to-wishlist-btn {
  font-size: 11px;
  float: right;
  margin-top: 10px;
  font-weight: 600;
  color: #70543f;
}

.page-content {
margin: 0 0 0 16px;
}
.products-page-head h1 {
text-transform: uppercase;
font-size: 32px;
float: left;
}
.products-page-head .tag-line {
color: #6F6F6F;
font-size: 18px;
display: inline-block;
margin: 13px 0 20px 7px;
text-transform: capitalize;
font-style: italic;
}

.product-info-box {
margin: 12px 0 0 -22px;
}
.product-gallery {
width: 375px;
}
.flex-control-thumbs li {
  width: 70px; 
  float: left;
  margin: 0px 5px 0 0;
      
}
      
.product-info-box .star-holder strong {
float: left;
margin-right: 11px;
font-size: 13px;
}
.product-info-box .star-holder .star {
display: inline-block;
}

.review-counter{
 float: right;
}
.product-info-box .star-holder {
margin-bottom: 27px;
}
.info-holder h4 {
font-size: 13px;
margin: 28px 0 10px 0;
}
.info-holder p {
  margin-bottom: 27px;
font-size: 13px;
line-height: 24px;
}
.info-holder .drop-selector{
  display: inline-block;
}
.chosen-container{
  width: auto!important;
}
.drop-selector {
display: inline-block;
}
.capacity-selector{
  margin-right: 14px;
}
.capacity-selector .chosen-single {
padding: 4px 18px;

}
.drop-selector > span{
  text-transform: capitalize;
  font-size: 13px;
}

.product-info-box span.old{
color: #FFBB00;
text-decoration: line-through;
font-size: 14px;
margin-left: 10px;
font-weight: normal;
}
.product-info-box .price span {
vertical-align: middle;
display: inline-block;
}
.product-info-box .buttons-holder {
margin: 10px 0 0 0;
text-align: center;
width: auto!important;
float: right;
}
.product-info-box .buttons-holder .add-to-wishlist-btn{
  display: block;
  float: none;
}
.product-info-box .price-holder{
 margin: 17px 0 0;
  display: inline-block;
}
.product-info-box .price{
  color:red;
  font-size: 24px;
  font-weight: bold;
}

.product-tabs {
margin-top: 49px;
}
.product-tabs .controls-holder li {
font-weight: bold;
font-size: 19px;
position: relative;
margin-right: 23px;
}

.product-tabs  .controls-holder {
 
 
  border-bottom: 4px solid #E1E4D9;

  padding-bottom: 20px;
}

.product-tabs .controls-holder li:hover:after,
.product-tabs .controls-holder li.active:after{
  bottom: -29px;
}
.product-tabs .tab-content {
margin: 22px 0 0 0;
line-height: 20px;
font-size: 13px;
}

#write-review-text {
height: 120px;
margin-bottom: 20px;
}
.remaining-chars {
display: inline-block;
}


#reviews .star-holder strong, #reviews .star-holder .star {
display: inline-block;
}
#reviews .star-holder {
float: right;
margin-top: -12px;
}
#reviews button{
  display: inline-block;
}
#reviews .star-holder strong {
margin-right: 7px;
}
.review-item .body{
  position: relative;
}
.review-item .body:after {
content: "";
position: absolute;
left: -10px;
top: 13px;
width: 0px;
height: 0px;
border-style: solid;
border-width: 7.5px 13px 7.5px 0;
border-color: transparent #fff transparent transparent;
}
.review-item .body:before {
content: "";
position: absolute;
left: -13px;
top: 13px;
width: 0px;
height: 0px;
z-index: -1;
border-style: solid;
border-width: 7.5px 13px 7.5px 0;
border-color: transparent #E9E9E9 transparent transparent;
}
.review-item .thumb,.review-item .thumb img{
  border-radius: 3px;
}
.review-item .date{
  float: right;
  font-weight: bold;
  color:#000;
}
.star{
  min-width: 60px;
}
.star img {
padding-right: 4px;
}
.review-item p{
  margin: 0;
}
.review-item h4{
  margin-bottom: 14px;
  font-size: 15px;
  color:#70543f;
  display: inline-block;
}
.review-item .body {
color: #888888;
border: 1px solid #E9E9E9;
padding: 22px;
margin-left: -32px;
border-radius: 5px;
}
.review-info{
  margin-bottom: 31px;
}
.recent-reviews {
margin-top: 26px;
}
.review-item {
margin-bottom: 19px;
}

#write-review-text:focus {
border: 1px solid #FFBB00;
box-shadow: none;
}

.middle-header-holder{
  text-align: center;
  margin: 13px 0 43px 0;
}
.middle-header {
font-weight: bold;
border: 1px solid #E5E5E5;
border-radius: 30px;
display: inline-block;
margin: 0 auto;
padding: 18px 96px;
font-size: 16px;
text-transform: uppercase;
}
.related-products .product-item:after{
  right: -23px;
}
.products-holder.related-products {
margin-bottom: -45px;
}
.gecko .chosen-container.chosen-with-drop .chosen-drop,.ie .chosen-container.chosen-with-drop .chosen-drop {

  margin-top: -7px;
}
.shopping-cart-page thead{
  text-transform: capitalize;
}

.page-content.shopping-cart-page {
margin: 39px 0 0 0px;
}
.shopping-cart-page th {
font-size: 18px;

}
.shopping-cart-page .tag-line {
font-style: italic;
font-size: 13px;
margin-bottom: 28px;
color: #6E6E6E;
}
.shopping-cart-page .quantity
{
padding: 50px 0 0 20px;
}
.price-column {
padding-left: 5px!important;
}
.shopping-cart-page .price{
  font-size: 22px;
  color:#70543E;
  font-weight: bold;
  padding: 57px 0 0;
}
.shopping-cart-page .pid {
font-style: italic;
color: #6E6E6E;
font-size: 12px;
}
.shopping-cart-page .desc h3 {
  text-transform: uppercase;
font-size: 14px;
line-height: 20px;
}
.shopping-cart-page .desc {
margin: 22px 0 0 7px;
}
.shopping-cart-page th,.shopping-cart-page td{
 padding-left:  0;
padding-right:  0; 
}
.shopping-cart-page .thumb {
height: 120px;
width: 120px;
margin-bottom: 11px;
}
.delete{
  position: relative;
}

.delete .close-btn {
top: 55px;
}

.section-shopping-cart .buttons-holder {
text-align: right;
}

.cusmo-btn.narrow {
padding: 8px 25px!important;
}
.phase-title.current {
margin-bottom: 10px;
}
.section-checkout .form-holder {
padding: 30px 70px;
}
.form-holder {
  color:#707070;
}
.form-holder p {
font-size: 13px;
line-height: 23px;
margin: 22px 0 0;
}
.phase-title {
text-align: center;
}
.section-checkout {
margin-top: 35px;
}
.form-holder form {
margin: 23px 0;
}
.form-label {
font-weight: bold;
font-size: 13px;
margin: 0 0 6px;
text-transform: capitalize;
}
.phase-title.current h1  a,.phase-title.current h1{
  color:#000;
}
.phase-title.passed h1,.passed a {
color: #FFBA00;
font-size: 23px;
margin-bottom: 35px;
}
.phase-title h1 {
font-size: 30px;

border-bottom: 1px solid #D6D6D6;
}
.disabled-phases h1,.disabled-phases h1 a{
  font-size: 23px;
  color:#8D8D8D;
}
.form-holder h4 {
color: #333;
text-transform: capitalize;
}
.cusmo-input:focus,.cusmo-input:active,.cusmo-input.active{
  border-radius: 30px!important;
  border: 1px solid #FFBB00 !important;
box-shadow: 0px 1px #FFBB00!important;
outline: none!important;
}
.cusmo-input {
 
border: 1px solid #D5D5D5!important;
box-shadow: 0px 1px #D5D5D5!important;
border-radius: 30px!important;
}
input:focus,textarea:focus,a:focus{
  outline: none!important;
}
.email-holder form{
  border-radius: 100px;
}
[class*=icheckbox_minimal],[class*=iradio_minimal]{
display: inline-block;
vertical-align: middle;
}

.rememberme{
  font-size: 11px;
  display: inline-block;
}
.forget-password{
  float: right;
}
.forget-password a{
  color:#6F543F;
   font-size: 12px;
  text-decoration: underline;
}
.forget-password a:hover{
  color:#000;
 
}
.form-holder .button-holder{
  margin-top: 16px;
  text-align:  right;
}
.disabled-phases {
margin-top: 30px;
}
.disabled-phases .phase-title {
margin-bottom: 37px;
}
.section-checkout{
  position: relative;
      
}
.right-border:after{
  position: absolute;
  right: -20px;
content: "";
  width: 1px;
  height: 90%;
 top:5%;
 background-color: #E9E9E9;
}
.right-border{
  position: relative;
}

.confirm-section .intro {
margin: 0px 0 72px 0;
}
.info-box {
text-align: center;
}
.info-box .text {
font-size: 17px;
line-height: 23px;
text-transform: capitalize;
margin-bottom: 17px;
min-height: 70px;
}
.comment-holder {
margin: 69px 0 15px;
}
.comment-holder h4 {
text-align: center;
font-size: 18px;
margin-bottom: 22px!important;
line-height: 16px;
}
.comment-holder textarea {
width: 100%;
height: 110px;
}
.comment-holder textarea:focus{
  box-shadow: none;
  -webkit-box-shadow: none;
  border:1px solid #FFBA00;
}
.invoice thead {
font-size: 17px;
color: #000;
text-transform: capitalize;
}
.invoice .desc h3 {
text-transform: uppercase;
font-size: 15px;
color: #000;
line-height: 20px;

}
.invoice td {
padding: 28px 8px!important;
}
.buttons-holder .cusmo-btn {
margin-right: 10px;
}
.buttons-holder .cusmo-btn:last-child {
margin-right: 0px;
}
.total-text {
font-size: 23px;
font-weight: bold;
text-align: right;
}
.invoice .total-price{
   color:#73543F;
   font-size: 25px;
font-weight: bold;
line-height: 25px;
font-style: italic;
}
.invoice .pid {
font-style: italic;
font-size: 13px;
text-align: center;
margin-top: 16px;
}
.invoice .pid span,.invoice .quantity,.invoice .price{
  color:#73543F;
}
.invoice .quantity {
font-size: 25px;
text-align: center;
margin-top: 13px;
font-weight: bold;
}
.invoice .price {
font-size: 25px;
font-weight: bold;
line-height: 25px;
margin-top: -6px;
}
.additional-fees {
text-align: right;
font-style: italic;

font-size: 13px;
}
.additional-price {
font-size: 12px;
font-style: italic;
}
.invoice .row-price{
margin-top: 10px;  
}
.invoice .desc .tag-line {
font-style: italic;
font-size: 13px;
}
.text.payment{
  color:#000;
}
.text.payment span{
  color:#727272;
}
.shipping-form .form-holder h4 {
margin-bottom: 25px;
}
.checkbox-holder .icon{
  display: inline-block;
}
.payment-method .checkbox-holder{
 display: inline-block;
 margin-right: 12px!important;
}
.form-holder .bank-transfer {
margin: 66px 0 34px;
}
.shipping-form .checkbox-holder {
font-size: 13px;

margin: 0 0 6px;
}
.shipping-form .buttons-holder{
  text-align: right;
}

.success-holder {
text-align: center;
}
.cusmo-btn.huge {
font-size: 28px;
padding: 30px 60px!important;
border-radius: 100px;
text-transform: capitalize;
line-height: 28px;
}
.finished-shopping .buttons-holder {
text-align: center;
margin: 20px 0 0;
}

.map {
border-radius: 2px;
-webkit-border-radius: 2px;

width: 100%;
height: 100%;
}
.map-holder img {
max-width: none;
}
.map-holder label {
width: auto;
display: inline;
}
.map-holder,.section-map{
    height: 285px;
     width: 100%;
}
.map-holder {
 
background-color: #ffffff;

}
.section-contact {
margin-top: 43px;
}

.section-contact h4 {
text-transform: capitalize;
}
.contact-form {
margin-top: 20px;
}
.inline-block{
display: inline-block;


}
.contact-form .cusmo-input {
padding: 6px 10px!important;
}
.contact-form textarea.cusmo-input{
  border-radius: 5px!important;
}
#loading{
  display: none;
}
.email-link:hover{
  color:#333;
  text-decoration: underline;
}
.contact-info-boxes h4 {
  margin-bottom: 20px;
}
.email-link{
color:#FFBB00;
text-decoration: underline;
}
.contact-info-boxes {
margin-left: 60px;
}
label.error {
color: var(--primary-color);
margin-top: 4px;
}
.dot-badge{
  position: absolute;
  font-size: 9px;
  color:#fff;
  border-radius: 100px;
 
  right: 10px;
  top:1px;
 width: 25px;
 height: 22px;
padding-top: 3px;
 text-transform: capitalize;
 font-weight: 600;
}
.dot-badge:nth-child(2){
   right: 40px;
}
.dot-badge:nth-child(3){
   right: 80px;
}
.dot-badge.red{
  background-color: #CB423C;
}
.dot-badge.yellow{
  background-color: #FFBB03;
}
.dot-badge.black{
  background-color: #000000;
}
.dot-badge.bluek{
  background-color: #4D6EB3;
}
.product-item{
  position: relative;
}


.top-cat-menu.dropdown{
      display: none;
  }
.pagination-container .pagination li.Active a {
  color: #163FA4;
  font-weight: bold;
}
.marginLessBreadCum {
  margin-top: -20px;
}
.phiGHText {
  color: #b22222;
  font-weight: bold;
}
.none {
  display: none;
}
.accordion-inner .active {
  color: #254E7B;
}
.price_old {
  color: #646464;
  font-size: 18px;
}
.danhmucsidebar .accordion-inner ul li {
  line-height: 30px;

}
.danhmucsidebar ul li a{
  color: #000;
  font-weight: bold;
font-size: 15px !important;
}
.homeCat span {
  color: #163FA4;
}
.xemthemlink {
  color: #ae1212;
  font-style: italic;
  font-weight: bold;
}
.section-copyright {
background: #e7dede;
}
.section-copyright strong, .section-copyright p {
color:#333;
}
.section-copyright .primary_color {
color: #163FA4 !important;
}
.glyphicon.btn_time{
  font-size: 14px;
  font-family:Arial, Helvetica, sans-serif;
}
.text-limit-news{
  font-size: 14px;
  font-family:Arial, Helvetica, sans-serif;
  color:#000;
 text-align: justify;
}
.color-hover{
  color: blue;
}
.color-hover:hover{
  color: red;
}
.page-pagination-blog.page-item-blog.page-link-active-blog{
  border-radius: 3px;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 0;
  background-color: pink;
  font-size: 14px;
  color: pink;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.shortdes_pro {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

input.qty_input {
	-moz-appearance: textfield;
    appearance: textfield;
    margin: 0; 
}

input.qty_input::-webkit-inner-spin-button,
input.qty_input::-webkit-outer-spin-button {
	-webkit-appearance: none; 
    margin: 0;
}

.bottom-right {
 right:26px !important;
 bottom: 52px !important; 
}

.view-hover:hover {
  color: var(--primary-color) !important;
}

.select-input {
  position: relative;
  width: 215px;
  height: 34px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-size: 14px;
  cursor: pointer;
  border: solid 1px #e5e5e5;
}

.select-input__list {
  position: absolute;
  background-color: #fff;
  top: 33px;
  width: 100%;
  right: 0;
  list-style: none;
  padding: 8px 16px;
  display: none;
  transition: opacity 0.1s;
  z-index: 1;
  box-shadow: 1px 1px 1px 1px #d8d8d8;
}

.select-input:hover .select-input__list {
  display: block;
}

.select-input__item {
  padding: 8px 0;
}

.select-input__item:hover {
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.slider-content .sub-title-right {
  padding: 0 8px 0 0;
  border-left: none;
  border-right: 2px solid #000;
}

.alert-qty-input {
  position: absolute;
  width: 160px;
  font-size: 10px;
  background-color: #000;
  color: #fff;
  margin-left: 47px;
  margin-top: -35px;
  padding: 5px;
  border-radius: 3px;
  transform-origin: calc(0% + 20px) bottom;
  will-change: opacity, transform;
  transform: scale(0);
  transition: transform 0.25s, opacity 0.25s;
}

.alert-qty-input::before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 10px 12px;
  border-color: #000 transparent transparent transparent;
  bottom: -17px;
  left: 3px;
}

input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1000;
}

.dots .dot {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin: 0 10px 0 10px;
  border-radius: 50%;
  background: #000;
  -webkit-animation: dot-dot-dot 1.4s linear infinite;
  animation: dot-dot-dot 1.4s linear infinite;
}

.dots .dot:nth-child(2) {
  animation-delay: .2s;
}

.dots .dot:nth-child(3) {
  animation-delay: .4s;
}

@keyframes dot-dot-dot {
  0%, 60%, 100% {
    -webkit-transform: initial;
      -ms-transform: initial;
        transform: initial;
  }
  30% {
    -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
        transform: translateY(-25px);
  }
}

.btn-outline-primary {
  background-color: #fff;
  border-color: var(--primary-color);
  color: var(--primary-color);
  line-height: 30px;
  height: 30px;
  padding: 0 15px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);;
  color: #fff;
  border-color: var(--primary-color);
}

.crm-profile-img-edit {
  position: relative;
}

.avatar-100 {
  height: 100px;
  width: 100px;
  line-height: 100px;
  min-width: 100px;
}

.rounded-circle {
  border-radius: 50% !important;
}

.crm-p-image {
  content: "";
  position: absolute;
  top: auto;
  left: 69px;
  bottom: -9px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50%;
  height: 35px;
  width: 35px;
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  cursor: pointer;
  border: 5px solid #fff;
  color: #fff !important;
}

.upload-button {
  font-size: 1.5em;
  margin-top: 15%;
}

.file-upload {
  display: none;
}

#PhoneNumber-error, #CustomerName-error {
  margin-left: 33%;
  margin-top: 6px;
}

#password-error, #newpassword-error, #renewpassword-error {
  margin-left: 30%;
  margin-top: 6px;
  font-size: 14px;
}

div.dataTables_wrapper div.dataTables_filter {
  text-align: right;
  float: right;
}

div.dataTables_wrapper div.dataTables_filter input {
  width: auto !important;
}

.pagination {
  justify-content: center;
}
.pagination > li {
  display: inline;
}
.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #ff0000;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #ff0000;
  border-color: #ff0000;
  cursor: default;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}

.table-bordered {
  border: 1px solid #ddd;
}

.wishlist-table td {
  vertical-align: middle;
}

.product-title-compare {
  position: absolute;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.9);
  padding: 5px 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
}

.product-name-compare {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-align: center;
}

.product-image-compare {
  position: relative;
  box-shadow: 2px 2px 2px #ded4d4;
}

#WarningModal{
  z-index: 9999;
}


.search-product {
  display: none;
  position: absolute;
  left: -7px;
  box-shadow: 1px 1px 1px #999;
  border: solid 1px #e2e2e2;
  width: calc(100% + 20%);
  top: 40px;
  z-index: 10;
  background-color: #fff;
  border-radius: 2px;
}

.search-product-item {
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.search-product-item:hover {
  background-color: var(--primary-color);
}

.search-product-text:hover {
  color: #fff;
}

input[type=checkbox] {
  filter: hue-rotate(92deg);
}

.dataTables_paginate .pagination{
  justify-content: right;
}

.modal-body #PhoneNumber-error, #CustomerName-error {
  margin-left: 0;
}

.input-filter-price {
  width: 45% !important;
  margin-top: 0 !important;
}

.btn-filter-price {
  width: 100%;
  margin-top: 20px;
}

.one-line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.two-line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.four-line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

@media only screen and (max-width: 479px) {
  .header-meta-info .header-account .header-account-list.mini-cart .dropdown-menu {
    right: -80px;
  }
}

.qty-ordered {
  position: absolute;
  top: -16%;
  right: 33%;
  color: #fff;
  background-color: #ff0000;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
}

.paid_tag {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #ff0000;
  border-radius: 5px;
  right: 20%;
  top: 25%;
}
.paid_tag_vnpay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #ff0000;
  border-radius: 5px;
  right: 10%;
  top: 25%;
}
.paid_tag_vnpay_shipping {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #ff0000;
  border-radius: 5px;
  right: 30%;
  top: 25%;
}
.paid_tag_success {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #4CAF50;
  border-radius: 5px;
  right: 20%;
  top: 25%;
}
.paid_tag_cancelled {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #ff0000;
  border-radius: 5px;
  right: 20%;
  top: 25%;
}
.paid_tag_pending{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-30deg);
  border: 5px solid #FFC107;
  border-radius: 5px;
  right: 20%;
  top: 25%;
}
/* CSS chạy slide mã KM */
#sliding-text {
    white-space: nowrap;
    overflow: hidden;
    position: relative;

}

#sliding-text > * {
    display: inline-block;
    padding-left: 100%; /* Space for the text to move */
    animation: slide 8s linear infinite; /* Adjust duration as needed */
    font-weight: 700;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* CSS chạy slide mã KM */

/* CSS Line Text SP Home */
#line a {
  display: inline-block;
  position: relative;
  color: #222222;
}
#line a:hover {
  color: #ff0000;
}

#line a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0000;
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}

#line a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#line a.active::after {
    content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0000;
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}
#line a.active:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

#line a.active:not(:hover) {
    box-shadow: inset 0 -2px 0 #ff0000;
    transition: box-shadow 0.4s 0.3s ease-out;
}
/* CSS Line Text SP Home */

/* CSS Line Text Menu Home*/
#line-menu {
  position: relative;
  color: #222222;
  text-decoration: none; /* Remove default underline */
}

#line-menu::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 15px; /* Adjust this value to fit your design */
  left: 0;
  background-color: #ff0000;
  transform-origin: bottom right;
  transition: transform 0.5s ease-out;
}

#line-menu:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* CSS Line Text Menu Home*/
.action-links a {
  padding-top: 3px;
}

/* CSS Line Text Footer Home*/
.footer-widget-title::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #ff0000;
  transition: width 0.5s ease; 
}

.footer-widget-menu a:hover + .footer-widget-title::after {
  width: 100%;
}
.footer-widget-title.active::after {
  width: 100%;
}
/* CSS Line Text Footer Home*/

#mt-38{
  margin-top: 38px;
}

.mega-title::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #ff0000;
  transition: width 0.5s ease !important; /* Sử dụng !important */
}

/* Khi di chuột vào .mega-dropdown */
.mega-dropdown:hover .mega-title::after {
  width: 100% !important; /* Sử dụng !important */
}

/* CSS mặc định */
.mega-title.active::after {
  width: 100% !important; /* Sử dụng !important */
}

.no-results {
  padding: 10px;
  margin: 10px 0;
  background-color: #ff0000;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}


tbody, td, tfoot, th, thead, tr {
  border-color: black !important;
  border-style: solid !important;
  border-width: 2px !important;
}

tbody, td, tfoot, th, thead, tr {
  padding: 10px 12px 5px 12px;
  color: black;
}

.product-image-container {
  display: inline-block;
  border: 2px solid #f00; /* Màu sắc và độ rộng của viền */
  box-sizing: border-box; /* Đảm bảo viền không làm thay đổi kích thước phần tử */
}

.product-image {
  width: 100%; /* Đảm bảo hình ảnh chiếm hết chiều rộng của thẻ chứa */
  height: 100%; /* Đảm bảo hình ảnh chiếm hết chiều cao của thẻ chứa */
  object-fit: cover; /* Đảm bảo hình ảnh không bị biến dạng */
}
