
@import 'https://www.shanchuncarbon.com/wp-content/themes/shanchun/css/layout/footer.css';
@import 'https://www.shanchuncarbon.com/wp-content/themes/shanchun/css/pages/home.css';

html,
body,
.site-wrapper {
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.74;
  position: relative;
  visibility: visible;
  overflow-x: hidden;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  letter-spacing: 0;
  color: #696969;
}

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

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

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

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

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

*:focus {
  outline: none !important;
}

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

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

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

img {
  max-width: 100%;
}


a {
    color:#643a3a!important;
    text-decoration:none!important;
}

.header-section {
    width: 100%;
    position: fixed !important;
    z-index: 9999;
    min-height: 80px;
}


.header-section {
  z-index: 9999;
  min-height: 80px;
}
.header-section .header-inner {
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 80px;
  background-color: #FFFFFF;
}
.header-section.is-sticky.header-sticky-bg-dark .header-inner {
  background-color: #000 !important;
}
.header-section.is-sticky .header-inner {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF !important;
  width: 100%;
  -webkit-animation: headerSlideDown 0.95s ease forwards;
          animation: headerSlideDown 0.95s ease forwards;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
}
.header-section.header-fluid .container {
  max-width: 100%;
}
@media only screen and (min-width: 1600px) {
  .header-section.header-fluid .container {
    padding-right: 150px;
    padding-left: 150px;
  }
}
.header-section.header-fluid-two .container {
  max-width: 100%;
}
@media only screen and (min-width: 1600px) {
  .header-section.header-fluid-two .container {
    padding-right: 240px;
    padding-left: 240px;
  }
}
.header-section.header-shadow .header-inner {
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.05);
}
.header-section.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-section.header-transparent .header-inner {
  background-color: transparent;
}
.header-section.header-light .header-login a {
  color: #FFFFFF;
}
.header-section.header-light .header-login a:hover {
  color: #FFFFFF;
}

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

@keyframes headerSlideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* 05.06 Header Logo CSS */
.header-logo a {
  position: relative;
  max-width: 158px;
}
.header-logo a img {
  width: 100%;
  padding:  0;
}
.header-logo a img.light-logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media only screen and (max-width: 479px) {
  .header-logo a {
    max-width: 120px;
  }
}

.header-light .header-logo a img.light-logo {
  opacity: 1;
}
.header-light .header-logo a img.dark-logo {
  opacity: 0;
}

/* Header Right */
.header-right > .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 -10px;
}
@media only screen and (max-width: 479px) {
  .header-right > .inner {
    margin: 0 -8px;
  }
}

/* 05.05 Shopping Cart CSS */
.header-cart {
  position: relative;
  padding: 0 10px;
}
.header-cart:hover .header-mini-cart {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}
@media only screen and (max-width: 479px) {
  .header-cart {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* Header Cart Button */
.header-cart-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  color: #111111;
}
.header-cart-btn .cart-count {
  font-size: 10px;
  line-height: 16px;
  position: absolute;
  top: -4px;
  right: 0;
  width: 15px;
  height: 15px;
  text-align: center;
  color: #FFFFFF;
  border-radius: 50%;
  background-color: #ad2020;
}
.header-cart-btn i {
  font-size: 18px;
  line-height: 1;
}
.header-cart-btn:hover {
  color: #ad2020;
}

/* Header Mini Cart */
.header-mini-cart {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  visibility: hidden;
  overflow: auto;
  width: 360px;
  max-height: 80vh;
  margin-top: 20px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.header-mini-cart > .inner {
  padding: 30px 20px;
}
@media only screen and (max-width: 767px) {
  .header-mini-cart {
    display: none;
  }
}

/* Mini Cart Product */
.mini-cart-product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mini-cart-product:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F3F3F3;
}
.mini-cart-product .thumb {
  width: 80px;
}
.mini-cart-product .content {
  max-width: calc(100% - 80px);
  padding-right: 25px;
  padding-left: 20px;
}
.mini-cart-product .content .title {
  font-weight: 500;
}
.mini-cart-product .content .quantity {
  font-weight: 500;
  display: block;
}
.mini-cart-product .content .quantity .price {
  color: #8C89A2;
}
.mini-cart-product .remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  text-align: center;
}
.mini-cart-product .remove i {
  line-height: 20px;
  display: block;
}

/* Mini Cart Product */
.mini-cart-footer {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 2px solid #F3F3F3;
}

/* Mini Cart Total */
.mini-cart-total {
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Mini Cart Buttons */
.mini-cart-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 6px;
  margin-right: -10px;
}
.mini-cart-buttons .btn {
  line-height: 46px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  height: 48px;
  margin-top: 10px;
  margin-right: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

.header-light .header-cart-btn {
  color: #FFFFFF;
}
.header-light .header-cart-btn .cart-count {
  color: #643a3a;
  background-color: #FFFFFF;
}
.header-light .header-cart-btn:hover {
  color: #FFFFFF;
}

.header-login a {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 10px;
  color: #111111;
}
.header-login a i {
  font-size: 18px;
}
.header-login a:hover {
  color: #ad2020;
}
@media only screen and (max-width: 479px) {
  .header-login a {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* 05.01 Header Top CSS */
.header-top-section {
  padding: 10px 0;
}

.header-top-content {
  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;
}
@media only screen and (max-width: 767px) {
  .header-top-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.header-top-content p {
  margin-right: 30px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-content p {
    margin-right: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .header-top-content p {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 479px) {
  .header-top-content p {
    text-align: center;
  }
}
.header-top-content .header-top-countdown .countdown-item:first-child::before {
  display: none;
}

.header-top-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-countdown {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 479px) {
  .header-top-countdown {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.header-top-countdown .ht-icon {
  margin-right: 5px;
}
.header-top-countdown .ht-icon i {
  font-size: 18px;
  color: #643a3a;
}
.header-top-countdown .countdown-item {
  position: relative;
  padding: 0 5px;
  margin: 0 5px;
}
.header-top-countdown .countdown-item.before-none::before {
  display: none;
}
.header-top-countdown .countdown-item::before {
  position: absolute;
  top: 50%;
  left: -8px;
  content: ":";
  font-size: 18px;
  font-weight: 700;
  color: #643a3a;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-top-countdown .countdown-item span {
  font-size: 18px;
  color: #643a3a;
  font-weight: 700;
  line-height: 1;
}

.header-language {
  position: relative;
  display: block;
  padding: 10px;
}
.header-language > a {
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}
.header-language > a img {
  width: 30px;
}
.header-language > a .text {
  line-height: 1;
  display: block;
  padding-top: 3px;
  padding-right: 7px;
  padding-left: 10px;
}
.header-language > a i {
  font-size: 14px;
}
.header-language:hover > a {
  color: #ad2020;
}
.header-language:hover .language-list {
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.header-language .language-list {
  position: absolute;
  z-index: 102;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  min-width: 200px;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  opacity: 0;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
}
.header-language .language-list li a {
  font-size: 14px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  text-transform: uppercase;
  color: #333333;
}
.header-language .language-list li a img {
  width: 25px;
}
.header-language .language-list li a .text {
  line-height: 1;
  display: block;
  padding-top: 3px;
  padding-right: 7px;
  padding-left: 10px;
}
.header-language .language-list li a:hover {
  color: #333333;
  background-color: #F8F9FA;
}

.header-light .header-language > a {
  color: #FFFFFF;
}
.header-light .header-language:hover > a {
  color: #FFFFFF;
}

/* 05.08 Header Social CSS */
.header-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-social a {
  padding: 0 7px;
}
.header-social a i {
  font-size: 22px;
  line-height: 30px;
}
@media only screen and (max-width: 767px) {
  .header-social a {
    padding: 0 6px;
  }
  .header-social a i {
    font-size: 16px;
  }
}

.header-light .header-social a {
  color: #FFFFFF;
}

.header-orange .header-social a:hover {
  color: #ef6f31;
}

/* 05.07 Search Box CSS */
.header-search {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 250px;
  padding: 0 10px;
}
.header-search.open .header-search-toggle i::before {
  content: "\f00d";
}
@media only screen and (max-width: 767px) {
  .header-search {
    padding: 0;
  }
}

.header-search-toggle {
  line-height: 1;
  display: none;
  padding: 6px 10px;
  color: #111111;
  border: none;
  background-color: transparent;
}
.header-search-toggle i {
  font-size: 18px;
  width: 18px;
}
.header-search-toggle:hover {
  color: #ad2020;
}
@media only screen and (max-width: 767px) {
  .header-search-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 479px) {
  .header-search-toggle {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.header-search-form form {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.header-search-form form input {
  min-height: 48px;
  padding-right: 50px;
}
.header-search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  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;
  width: 48px;
  height: 48px;
  color: #ad2020;
  border: none;
  background-color: transparent;
}
.header-search-form form button:hover {
  color: #FFFFFF;
  background-color: #ad2020;
}
.header-search-form.light form input {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .header-search-form {
    position: fixed;
    top: 80px;
    left: 0;
    display: none;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #F3F3F3;
    background-color: #FFFFFF;
    z-index: 99;
  }
}

.header-search-form-2 {
  margin-right: -10px;
  border-left: 1px solid #EEEEEE;
}
.header-search-form-2 form {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.header-search-form-2 form input {
  min-height: 80px;
  padding-right: 50px;
  border: none !important;
  border-radius: 0;
  background-color: #FFFFFF;
}
.header-search-form-2 form button {
  position: absolute;
  top: 50%;
  right: 0;
  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;
  width: 48px;
  height: 48px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #111111;
  border: none;
  background-color: transparent;
}
.header-search-form-2 form button:hover {
  color: #111111;
  background-color: transparent;
}
@media only screen and (min-width: 678px) {
  .header-search-form-2 {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .header-search-form-2 {
    position: fixed;
    top: 80px;
    left: 0;
    display: none;
    width: 100%;
    padding: 15px;
    border-top: 1px solid #F3F3F3;
    border-left: none;
    background-color: #FFFFFF;
  }
  .header-search-form-2 form input {
    min-height: 48px;
  }
}

.header-fs-search-toggle {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 10px;
  color: #111111;
  border: none;
  background-color: transparent;
}
.header-fs-search-toggle i {
  font-size: 18px;
}
.header-fs-search-toggle:hover {
  color: #ad2020;
}
@media only screen and (max-width: 479px) {
  .header-fs-search-toggle {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.fullscreen-search {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  background-color: #FFFFFF;
}
.fullscreen-search.open {
  visibility: visible;
  opacity: 1;
}
.fullscreen-search.open .fullscreen-search-form {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.fullscreen-search-close {
  position: absolute;
  top: 40px;
  right: 55px;
}

.fullscreen-search-form {
  width: 1170px;
  max-width: 90%;
  -webkit-transition: all 0.5s ease 0.2s;
  transition: all 0.5s ease 0.2s;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}
.fullscreen-search-form form input {
  font-size: 50px;
  font-weight: 300;
  height: 100px;
  padding: 15px 0;
  color: #333333;
  border: 0 solid transparent;
  border-bottom: 3px solid #ad2020;
  border-radius: 0;
  background-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .fullscreen-search-form form input {
    font-size: 40px;
  }
}

.header-light .header-search-toggle {
  color: #FFFFFF;
}
.header-light .header-search-toggle:hover {
  color: #FFFFFF;
}
.header-light .header-fs-search-toggle {
  color: #FFFFFF;
}
.header-light .header-fs-search-toggle:hover {
  color: #FFFFFF;
}

.site-main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-main-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.site-main-menu > ul > li {
  position: relative;
}




.site-main-menu > ul > li > a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  display: block;
  padding: 29px 12px;
  color: #643a3a;
}




.site-main-menu > ul > li > a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-main-menu > ul > li .menu-toggle {
  display: none;
}



/*
.site-main-menu > ul > li.has-children > a .menu-text::after {
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  font-weight: 900;
  margin-left: 6px;
  content: "\f078";
}
*/




.site-main-menu > ul > li:hover > a {
  color: #ad2020;
}
.site-main-menu > ul > li:hover > .sub-menu, .site-main-menu > ul > li:hover .mega-menu {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}
.site-main-menu .sub-menu, .site-main-menu .mega-menu {
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  visibility: hidden; 
  margin-top: 20px;
  margin-bottom: 0;
  padding: 18px 0;
  list-style: none;
  -webkit-transition: all 0.4s ease 0.2s;
  transition: all 0.4s ease 0.2s;
  opacity: 0;
  border-bottom: 4px solid #ad2020;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
}
.site-main-menu .sub-menu li, .site-main-menu .mega-menu li {
  position: relative;
}
.site-main-menu .sub-menu li a, .site-main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  display: block;
  padding: 8px 30px;
  white-space: nowrap;
  color: #696969;
}
.site-main-menu .sub-menu li a .menu-text, .site-main-menu .mega-menu li a .menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-main-menu .sub-menu li .menu-toggle, .site-main-menu .mega-menu li .menu-toggle {
  display: none;
}
.site-main-menu .sub-menu li.has-children > a .menu-text::after, .site-main-menu .mega-menu li.has-children > a .menu-text::after {
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  font-weight: 900;
  margin-left: auto;
  content: "\f054";
}
.site-main-menu .sub-menu li:hover > a, .site-main-menu .sub-menu li.active > a, .site-main-menu .mega-menu li:hover > a, .site-main-menu .mega-menu li.active > a {
  color: #111111;
}
.site-main-menu .sub-menu li:hover > .sub-menu, .site-main-menu .mega-menu li:hover > .sub-menu {
  visibility: visible;
  margin-top: 0;
  opacity: 1;
}
.site-main-menu .sub-menu .sub-menu, .site-main-menu .mega-menu .sub-menu {
  top: -18px;
  left: 100%;
}
.site-main-menu .mega-menu {
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 30px 15px 34px;
  list-style: none;
}
.site-main-menu .mega-menu > li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  padding: 0 15px;
}
.site-main-menu .mega-menu > li.menu-item-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  width: 50%;
  padding: 0 15px;
}
.site-main-menu .mega-menu > li > ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.site-main-menu .mega-menu > li > ul > li > a {
  font-size: 15px;
  line-height: 1.78;
  font-weight: 500;
  padding: 8px 0px;
}
.site-main-menu .mega-menu > li > ul > li > a .badge {
  background-color: transparent;
  background-image: linear-gradient(45deg, #fe378c 0%, #fe5b34 100%);
  display: inline-block;
  border-radius: 2px;
  padding: 4px 8px 3px;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0 7px;
}
.site-main-menu .mega-menu > li > ul > li > a .badge.primary {
  background-image: none;
  background-color: #ad2020 !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .site-main-menu.laptop-space > ul > li > a {
    padding-right: 9px;
    padding-left: 9px;
  }
}
.site-main-menu.menu-hover-1 > ul > li > a .menu-text {
  position: relative;
}
.site-main-menu.menu-hover-1 > ul > li > a .menu-text::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #ad2020;
}
.site-main-menu.menu-hover-1 > ul > li:hover > a .menu-text::before {
  left: 0;
  width: 100%;
}

.header-light .site-main-menu > ul > li > a {
  color: #FFFFFF;
}
.header-light .site-main-menu > ul > li:hover > a {
  color: #FFFFFF;
}
.header-light .site-main-menu.menu-hover-1 > ul > li > a .menu-text::before {
  background-color: #FFFFFF;
}

.header-orange .site-main-menu > ul > li > a {
  color: #643a3a;
}
.header-orange .site-main-menu > ul > li:hover > a {
  color: #ef6f31;
}
.header-orange .site-main-menu .sub-menu {
  border-bottom: 4px solid #ef6f31;
}
.header-orange .site-main-menu .sub-menu li:hover > a, .header-orange .site-main-menu .sub-menu li.active > a {
  color: #ef6f31;
}
.header-orange .site-main-menu .mega-menu {
  border-bottom: 4px solid #ef6f31;
}
.header-orange .site-main-menu .mega-menu li:hover > a, .header-orange .site-main-menu .mega-menu li.active > a {
  color: #ef6f31;
}
.header-orange .site-main-menu.menu-hover-1 > ul > li > a .menu-text::before {
  background-color: #ef6f31;
}

.header-fluid .site-main-menu .mega-menu, .header-fluid-two .site-main-menu .mega-menu {
  width: 1170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

.header-left .site-main-menu .mega-menu {
  left: 150px;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .header-left .site-main-menu .mega-menu {
    left: 20px;
  }
}

/* 05.03 Mobile Menu Toggle CSS */
.header-mobile-menu-toggle, .mobile-menu-close, .fullscreen-search-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
}
.header-mobile-menu-toggle .toggle, .mobile-menu-close .toggle, .fullscreen-search-close .toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  border: none;
  background-color: transparent;
}
.header-mobile-menu-toggle .toggle i, .mobile-menu-close .toggle i, .fullscreen-search-close .toggle i {
  position: relative;
  display: block;
  overflow: hidden;
  width: 24px;
  height: 2px;
}
.header-mobile-menu-toggle .toggle i + i, .mobile-menu-close .toggle i + i, .fullscreen-search-close .toggle i + i {
  margin-top: 6px;
}
.header-mobile-menu-toggle .toggle i::before, .mobile-menu-close .toggle i::before, .fullscreen-search-close .toggle i::before, .header-mobile-menu-toggle .toggle i::after, .mobile-menu-close .toggle i::after, .fullscreen-search-close .toggle i::after {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #333333;
}
.header-mobile-menu-toggle .toggle i.icon-top::before, .mobile-menu-close .toggle i.icon-top::before, .fullscreen-search-close .toggle i.icon-top::before, .header-mobile-menu-toggle .toggle i.icon-bottom::before, .mobile-menu-close .toggle i.icon-bottom::before, .fullscreen-search-close .toggle i.icon-bottom::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.header-mobile-menu-toggle .toggle i.icon-top::after, .mobile-menu-close .toggle i.icon-top::after, .fullscreen-search-close .toggle i.icon-top::after, .header-mobile-menu-toggle .toggle i.icon-bottom::after, .mobile-menu-close .toggle i.icon-bottom::after, .fullscreen-search-close .toggle i.icon-bottom::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
          transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header-mobile-menu-toggle .toggle i.icon-middle::before, .mobile-menu-close .toggle i.icon-middle::before, .fullscreen-search-close .toggle i.icon-middle::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.header-mobile-menu-toggle .toggle i.icon-middle::after, .mobile-menu-close .toggle i.icon-middle::after, .fullscreen-search-close .toggle i.icon-middle::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
          transform: scaleX(0) translateZ(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.header-mobile-menu-toggle .toggle:hover i::before, .mobile-menu-close .toggle:hover i::before, .fullscreen-search-close .toggle:hover i::before, .header-mobile-menu-toggle .toggle:hover i::after, .mobile-menu-close .toggle:hover i::after, .fullscreen-search-close .toggle:hover i::after {
  background-color: #ad2020;
}
.header-mobile-menu-toggle .toggle:hover i.icon-top::before, .mobile-menu-close .toggle:hover i.icon-top::before, .fullscreen-search-close .toggle:hover i.icon-top::before, .header-mobile-menu-toggle .toggle:hover i.icon-bottom::before, .mobile-menu-close .toggle:hover i.icon-bottom::before, .fullscreen-search-close .toggle:hover i.icon-bottom::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
          transform: scaleX(0) translateZ(0);
}
.header-mobile-menu-toggle .toggle:hover i.icon-top::after, .mobile-menu-close .toggle:hover i.icon-top::after, .fullscreen-search-close .toggle:hover i.icon-top::after, .header-mobile-menu-toggle .toggle:hover i.icon-bottom::after, .mobile-menu-close .toggle:hover i.icon-bottom::after, .fullscreen-search-close .toggle:hover i.icon-bottom::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}
.header-mobile-menu-toggle .toggle:hover i.icon-middle::before, .mobile-menu-close .toggle:hover i.icon-middle::before, .fullscreen-search-close .toggle:hover i.icon-middle::before {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scaleX(0) translateZ(0);
          transform: scaleX(0) translateZ(0);
}
.header-mobile-menu-toggle .toggle:hover i.icon-middle::after, .mobile-menu-close .toggle:hover i.icon-middle::after, .fullscreen-search-close .toggle:hover i.icon-middle::after {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}
@media only screen and (max-width: 479px) {
  .header-mobile-menu-toggle, .mobile-menu-close, .fullscreen-search-close {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.header-light .header-mobile-menu-toggle .toggle i::before, .header-light .mobile-menu-close .toggle i::before, .header-light .fullscreen-search-close .toggle i::before, .header-light .header-mobile-menu-toggle .toggle i::after, .header-light .mobile-menu-close .toggle i::after, .header-light .fullscreen-search-close .toggle i::after {
  background-color: #FFFFFF;
}
.header-light .header-mobile-menu-toggle .toggle:hover i::before, .header-light .mobile-menu-close .toggle:hover i::before, .header-light .fullscreen-search-close .toggle:hover i::before, .header-light .header-mobile-menu-toggle .toggle:hover i::after, .header-light .mobile-menu-close .toggle:hover i::after, .header-light .fullscreen-search-close .toggle:hover i::after {
  background-color: #FFFFFF;
}

/* 05.04 Mobile Menu CSS */
.site-main-mobile-menu {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
}

.site-main-mobile-menu-inner {
  position: relative;
  z-index: 9;
  float: right;
  width: 360px;
  height: 100%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #643a3a; 
}
@media only screen and (max-width: 479px) {
  .site-main-mobile-menu-inner {
    width: 300px;
  }
}
.site-main-mobile-menu-inner::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: rgb(219 0 21 / 84%);
}

#page {
  position: relative;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu-open #page {
  -webkit-transform: translateX(-360px);
          transform: translateX(-360px);
}
.mobile-menu-open .site-main-mobile-menu {
  visibility: visible;
  opacity: 1;
}
.mobile-menu-open .site-main-mobile-menu-inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mobile-menu-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  padding: 0 15px 0 30px;
  background-color: #FFFFFF;
}

.mobile-menu-logo a {
  width: 158px;
}
.mobile-menu-close, .fullscreen-search-close {
  padding: 0;
}
.mobile-menu-close .toggle, .fullscreen-search-close .toggle {
  position: relative;
  width: 40px;
  height: 40px;
}
.mobile-menu-close .toggle i, .fullscreen-search-close .toggle i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 29px;
  height: 2px;
  margin: 0 !important;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.mobile-menu-close .toggle i.icon-top, .fullscreen-search-close .toggle i.icon-top {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-close .toggle i.icon-bottom, .fullscreen-search-close .toggle i.icon-bottom {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu-close .toggle:hover i::before, .fullscreen-search-close .toggle:hover i::before, .mobile-menu-close .toggle:hover i::after, .fullscreen-search-close .toggle:hover i::after {
  background-color: #111111;
}

.mobile-menu-content {
  overflow-y: auto;
  height: calc(100% - 80px);
  padding: 20px 30px 100px;
}

.site-mobile-menu > ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.site-mobile-menu > ul > li {
  position: relative !important;
}
.site-mobile-menu > ul > li + li > a {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.site-mobile-menu > ul > li > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  padding-top: 19px;
  padding-right: 0;
  padding-bottom: 19px;
  padding-left: 0;
  color: #FFFFFF;
  border-bottom: 1px solid transparent;
}
.site-mobile-menu > ul > li .menu-toggle {
  position: absolute;
  top: 11px;
  right: 0;
  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;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #FFFFFF;
  border-radius: 50%;
  background-color: transparent;
}
.site-mobile-menu > ul > li .menu-toggle i {
  font-size: 18px;
  line-height: 1;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.site-mobile-menu > ul > li .menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-mobile-menu > ul > li.open > a {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.site-mobile-menu > ul > li.open > .menu-toggle {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-mobile-menu > ul > li.open > .menu-toggle i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.site-mobile-menu .sub-menu, .site-mobile-menu .mega-menu {
  display: none;
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}
.site-mobile-menu .sub-menu li, .site-mobile-menu .mega-menu li {
  position: relative;
}
.site-mobile-menu .sub-menu li > a, .site-mobile-menu .mega-menu li > a {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 10px;
  padding-right: 0;
  padding-bottom: 10px;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.7);
}
.site-mobile-menu .sub-menu li > a:hover, .site-mobile-menu .mega-menu li > a:hover {
  color: #FFFFFF;
}
.site-mobile-menu .sub-menu li .menu-toggle, .site-mobile-menu .mega-menu li .menu-toggle {
  top: 1px;
}
.site-mobile-menu .sub-menu li.open > a, .site-mobile-menu .mega-menu li.open > a {
  color: #FFFFFF;
}
.site-mobile-menu .sub-menu li.open > .menu-toggle, .site-mobile-menu .mega-menu li.open > .menu-toggle {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-mobile-menu .sub-menu li.open > .menu-toggle i, .site-mobile-menu .mega-menu li.open > .menu-toggle i {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.site-mobile-menu .sub-menu ul, .site-mobile-menu .mega-menu ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.site-mobile-menu .sub-menu ul li a .badge, .site-mobile-menu .mega-menu ul li a .badge {
  background-color: transparent;
  background-image: linear-gradient(45deg, #fe378c 0%, #fe5b34 100%);
  display: inline-block;
  border-radius: 2px;
  padding: 4px 8px 3px;
  color: #FFFFFF;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 0 7px;
}
.site-mobile-menu .sub-menu ul li a .badge.primary, .site-mobile-menu .mega-menu ul li a .badge.primary {
  background-image: none;
  background-color: #ad2020 !important;
}
.site-mobile-menu .sub-menu .sub-menu, .site-mobile-menu .mega-menu .sub-menu {
  padding-left: 15px;
}


/*----------------------------------------*/
/*  17. Widget CSS
/*----------------------------------------*/
.sidebar-widget-wrapper {
  float: left;
  width: 100%;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
  .sidebar-widget-wrapper {
    padding-right: 0;
  }
}

.sidebar-widget {
  float: left;
  width: 100%;
  padding: 30px;
  background-color: #f8f8f8;
}
.sidebar-widget + .sidebar-widget {
  margin-top: 45px;
}

.sidebar-widget-title {
  font-size: 24px;
  margin-bottom: 30px;
}

.sidebar-widget-search form {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.sidebar-widget-search form input {
  padding-right: 50px;
}
.sidebar-widget-search form button {
  position: absolute;
  top: 0;
  right: 0;
  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;
  width: 56px;
  height: 56px;
  color: #ad2020;
  border: none;
  border-radius: 4px;
  background-color: transparent;
}
.sidebar-widget-search form button:hover {
  color: #FFFFFF;
  background-color: #ad2020;
}

.sidebar-widget-price-filter {
  padding-bottom: 24px;
  border-bottom: 2px solid #F3F3F3;
}
.sidebar-widget-price-filter .irs--maxCoach {
  margin-bottom: 65px;
}
.sidebar-widget-price-filter .irs--maxCoach .irs .irs-single {
  top: calc(100% + 38px);
}
.sidebar-widget-price-filter .btn-price-filter {
  font-size: 14px;
  line-height: 40px;
  float: right;
  height: 40px;
  margin-top: -40px;
  padding: 0 30px;
}

.widget-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.widget-product + .widget-product {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #F3F3F3;
}
.widget-product .thumbnail {
  display: block;
  min-width: 100px;
}
.widget-product .thumbnail img {
  width: 100%;
}
.widget-product .info {
  padding-left: 20px;
}
.widget-product .info .title {
  font-size: 15px;
  line-height: 1.34;
}
.widget-product .info .rating {
  font-size: 11px;
  line-height: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 68px;
  margin: 10px 0;
  color: #DDDDDD;
}
.widget-product .info .rating::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f005\f005\f005\f005\f005";
}
.widget-product .info .rating span {
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F6B500;
}
.widget-product .info .rating span::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f005\f005\f005\f005\f005";
}
.widget-product .info .price {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-top: 7px;
  color: #ad2020;
}
.widget-product .info .price .old {
  font-size: 12px;
  margin-left: 6px;
  text-decoration: line-through;
  color: #8C89A2;
}

.sidebar-widget-list-post {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-widget-list-post li + li {
  border-top: 1px solid #EEEEEE;
}
.sidebar-widget-list-post li a {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.78;
  position: relative;
  display: block;
  padding: 16px 0 15px 30px;
}
.sidebar-widget-list-post li a::before, .sidebar-widget-list-post li a::after {
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  position: absolute;
  top: 24px;
  left: 0;
  content: "\f30b";
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.sidebar-widget-list-post li a::after {
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
  color: #ad2020;
}
.sidebar-widget-list-post li a:hover::before {
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.sidebar-widget-list-post li a:hover::after {
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.sidebar-widget-menu {
  list-style: none;
  padding-left: 0;
}
.sidebar-widget-menu li + li {
  margin-top: -1px;
}
.sidebar-widget-menu li a {
  position: relative;
  display: block;
  padding: 16px 40px;
  border: 1px solid #eee;
}
.sidebar-widget-menu li a::before {
  content: "\f111";
  font-size: 6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: 16px;
  color: #ababab;
  font-family: "Font Awesome 5 Free";
}
.sidebar-widget-menu li a:hover, .sidebar-widget-menu li a.active {
  background-color: #ad2020;
  border-color: #ad2020;
  color: #FFFFFF;
}
.sidebar-widget-menu li a:hover::before, .sidebar-widget-menu li a.active::before {
  color: #FFFFFF;
}

.sidebar-widget-course {
  padding-left: 0;
  list-style: none;
}
.sidebar-widget-course .widget-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.sidebar-widget-course .widget-course + .widget-course {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 20px;
}
.sidebar-widget-course .widget-course .thumbnail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin: 0 20px 0 0;
  border-radius: 50%;
}
.sidebar-widget-course .widget-course .info {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0;
}
.sidebar-widget-course .widget-course .info .price {
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 10px;
  color: #ad2020;
}
.sidebar-widget-course .widget-course .info .title {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.sidebar-entry-course-info {
  padding: 30px 30px 33px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  border-radius: 5px;
  width: 100%;
  max-width: 340px;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-entry-course-info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar-entry-course-info {
    max-width: 100%;
  }
}
@media only screen and (max-width: 479px) {
  .sidebar-entry-course-info {
    max-width: 100%;
    padding: 20px 20px 23px;
  }
}
@media only screen and (max-width: 1366px) {
  .course-2 .info .title{font-size: 16px;}
  .course-2 .info .date{font-size: 13px;}
}
.sidebar-entry-course-info .course-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 7px;
}
.sidebar-entry-course-info .course-price .meta-label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 15px;
  color: #333333;
  font-weight: 700;
  line-height: 1.3;
}
.sidebar-entry-course-info .course-price .meta-label i {
  color: #696969;
  min-width: 28px;
  text-align: center;
}
.sidebar-entry-course-info .course-price .meta-value {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.sidebar-entry-course-info .course-price .meta-value .price {
  font-size: 24px;
  font-weight: 800;
  color: #ad2020;
}
.sidebar-entry-course-info .course-price .meta-value .price .decimals-separator {
  font-size: 18px;
}
.sidebar-entry-course-info .course-meta {
  margin-bottom: 17px;
}
.sidebar-entry-course-info .course-meta > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 15px 0;
}
.sidebar-entry-course-info .course-meta > div + div {
  border-top: 1px solid #eee;
}
.sidebar-entry-course-info .course-meta > div .meta-label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 15px;
  color: #333333;
  font-weight: 700;
  line-height: 1.3;
}
.sidebar-entry-course-info .course-meta > div .meta-label i {
  color: #696969;
  min-width: 28px;
  text-align: center;
}
.sidebar-entry-course-info .course-meta > div .meta-value {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.entry-course-share {
  margin-top: 20px;
  text-align: center;
}
.entry-course-share .share-media {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.entry-course-share .share-media:hover {
  color: #ad2020;
}
.entry-course-share .share-media .share-label {
  font-size: 14px;
  font-weight: 700;
  margin-right: 15px;
}
.entry-course-share .share-media .share-icon {
  font-size: 15px;
}
.entry-course-share .share-media .share-list {
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  width: auto;
  white-space: nowrap;
  padding: 0 4px;
  text-align: center;
  background: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  -webkit-filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.06));
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.entry-course-share .share-media .share-list::before {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  border-top: 8px solid #fff;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.entry-course-share .share-media .share-list a {
  display: inline-block;
  font-size: 15px;
  padding: 10px 12px;
  color: #ababab;
}
.entry-course-share .share-media .share-list a:hover {
  color: #ad2020;
}
.entry-course-share .share-media:hover .share-list {
  -webkit-transform: translate(-50%, -20px);
          transform: translate(-50%, -20px);
  visibility: visible;
  opacity: 1;
}

.sidebar-entry-event-info {
  border-radius: 5px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  padding: 27px 30px 30px;
}
@media only screen and (max-width: 479px) {
  .sidebar-entry-event-info {
    padding: 20px 20px 23px;
  }
}
.sidebar-entry-event-info .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #333333;
}
.sidebar-entry-event-info .event-meta > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 0 !important;
  padding: 10px 0;
  min-height: 62px;
}
.sidebar-entry-event-info .event-meta > div .name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #333333;
  width: 40%;
}
.sidebar-entry-event-info .event-meta > div .value {
  width: 60%;
  text-align: right;
}
.sidebar-entry-event-info .event-meta .notice {
  margin-top: 20px;
  margin-bottom: 0;
}
.sidebar-entry-event-info .lp-event-buttons {
  margin-top: 30px;
}
.sidebar-entry-event-info .lp-event-buttons button {
  margin-bottom: 10px;
}
.sidebar-entry-event-info .lp-event-buttons button:last-child {
  margin-bottom: 0;
}

.sidebar-entry-event {
  padding: 14px 30px 33px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
          box-shadow: 0 0 20px rgba(51, 51, 51, 0.1);
  border-radius: 5px;
  width: 100%;
  max-width: 340px;
  min-height: 390px;
  float: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-entry-event {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sidebar-entry-event {
    max-width: 100%;
  }
}
.sidebar-entry-event .entry-event-info {
  list-style-type: none;
  margin: 0 0 20px;
  padding: 0;
}
.sidebar-entry-event .entry-event-info li {
  margin: 0;
  padding: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.sidebar-entry-event .entry-event-info li + li {
  border-top: 1px solid #eee;
}
.sidebar-entry-event .entry-event-info li.meta-price {
  padding: 8px 0;
}
.sidebar-entry-event .entry-event-info li .meta-label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #333333;
}
.sidebar-entry-event .entry-event-info li .meta-label .meta-icon {
  color: #696969;
  min-width: 28px;
  text-align: center;
}
.sidebar-entry-event .entry-event-info li .meta-value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: right;
}
.sidebar-entry-event .entry-event-info li .meta-value .event-price {
  font-size: 24px;
  font-weight: 800;
  color: #ad2020;
}
.sidebar-entry-event .entry-event-info li .meta-value .event-price .decimals-separator {
  font-size: 18px;
}
.sidebar-entry-event .event-register-message {
  margin-top: 10px;
  text-align: center;
}
.sidebar-entry-event .event-register-message a {
  font-weight: 500;
  display: inline-block;
  color: #ad2020;
  margin-top: 0;
  margin-bottom: 0;
}
.sidebar-entry-event .event-social {
  text-align: center;
}

.tagcloud {
  margin: -5px;
}
.tagcloud a {
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  float: left;
  overflow: hidden;
  margin: 5px;
  padding: 7px 15px 6px;
  color: #ABABAB;
  border: 0;
  border-radius: 3px;
  background: #F5F5F5;
}
.tagcloud a:hover {
  color: #FFFFFF;
  background-color: #ad2020;
}


































