.product-search .product-search-form .product-search-form {
  position: relative;
}

.product-search .product-search-form .product-search-form input,
.product-search .search-wrapper input {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  font-size: 20px;
  font-family: var(--primary-font);
  padding-right: 60px;
  color: var(--secondary-color);
  padding: 0px 40px 0 20px;
  height: 45px;
}

.product-search .product-search-form .product-search-form button[type="submit"] {
  position: absolute;
  right: 20px;
  left: auto;
  top: auto;
  bottom: 12px;
  background: none;
  padding: 0;
  font-size: 0;
}

.product-search .product-search-form .product-search-form button[type="submit"]::after {
  content: "\f002";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 13px;
}

.search-results.active {
  display: block;
  margin: 30px 0 0;
  float: left;
  width: 100%;
}

.search-results.active ul {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.search-results.active ul::-webkit-scrollbar-track {
  background-color: #d7d7d7;
}

.search-results.active ul::-webkit-scrollbar-thumb {
  background-color: #a0a0a0;
}

.search-results.active ul::-webkit-scrollbar {
  height: 2px;
}

.search-results.active ul li {
  display: block;
  padding: 0 20px;
  position: relative;
  float: left;
  width: 50%;
}

.search-results.active ul li:last-child {
  border-bottom: none;
}

.search-results.active ul li a {
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 0 30px;
  margin: 0 0 30px;
}

.search-results.active ul li a:hover {
  color: #111;
}

.search-results.active ul li a>* {
  display: table-cell;
  vertical-align: top;
}

.search-results.active .product-image {
  width: 15%;
  max-width: 15%;
}

.search-results.active .product-data .product-sku,
.search-results.active .product-data .product-categories {
  color: #666;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  text-align: left;
}

.search-results.active a:hover .product-data .product-sku,
.search-results.active a:hover .product-data .product-categories {
  color: #111;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
}

.product-data {
  padding-left: 24px;
}

.search-results.active h3 {
  display: block;
  text-align: left;
}

.search-results.active .product-data h3,
.search-results.active .product-data .product-price {
  margin: 0 0 10px;
}

.product-data div:not(.product-categories) {
  display: inline-block;
  vertical-align: middle;
}

.product-data {
  text-align: left;
}

.product-data .product-price .regular-price {
  color: #666;
}

.product-data .product-price .sale-price {
  color: #111;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 12px;
  margin: 0 0 0 6px;
}

.product-data .product-price .sale-price::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 6px;
  height: 2px;
  content: "";
  background: #666;
  margin: auto;
}

.product-data .product-stock {
  padding: 4px 8px;
  background: #eeeeee;
  border-radius: 4px;
  position: absolute;
  bottom: 30px;
  right: 0;
}

.product-categories>span {
  display: inline-block;
  margin-right: 4px;
}

.product-categories>span:after {
  content: ",";
}

.product-categories>span:last-child:after {
  content: "";
}

.product-categories>span:last-child {
  margin-right: 0;
}

.product-search select {
  width: 100% !important;
  min-height: 40px !important;
  margin-bottom: 16px;
}

.product-search select,
.product-search input {
  background: #ffffff;
  border: 1px solid #e0e0e0;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input {
  padding-right: 35px !important;
}

.search-wrapper svg {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  fill: #bdbdbd;
  animation: loading 500ms 0ms infinite normal linear;
  transform-origin: center;
  opacity: 0;
}

.search-wrapper.loading svg {
  opacity: 1;
}

@keyframes loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1200px) {
  .search-results.active ul {
    overflow: auto;
    height: 570px;
    scrollbar-width: thin;
  }
}

@media (max-width: 1199px) {
  .product-data .product-price {
    top: 10px;
  }

  .product-data h3 {
    font-size: 20px;
    margin: 0 0 15px;
  }
}

@media (max-width: 991px) {
  .search-results.active ul li {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .search-results.active .product-image {
    width: 20%;
    max-width: 20%;
  }

  .product-search .product-search-form .product-search-form input,
  .product-search .search-wrapper input {
    font-size: 18px;
  }

  .product-data h3 {
    margin: 0 0 12px;
  }
}

@media (max-width: 575px) {
  .product-data h3 {
    font-size: 16px;
    margin: 0 0 8px;
  }

  .search-results .product-data .product-sku,
  .search-results .product-data .product-categories {
    font-size: 13px;
    float: left;
    width: 100%;
  }

  .search-results.active ul li {
    padding: 0;
  }

  .search-results.active .product-data {
    padding-left: 15px;
  }

  .product-data .product-price,
  .product-data .product-stock {
    position: static;
  }

  .product-data .product-stock {
    font-size: 12px;
    margin: 10px 0 0;
  }

  .product-data .product-price {
    margin: 0 0 5px;
    float: left;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-results.active .product-image {
    width: 70%;
    max-width: 70%;
  }
}

.tiny {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-container:after {
  content: "";
  display: block;
  width: 250%;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
  background-size: 10% 2px;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
  top: 40%;
  /* animation: line-slide 60s forwards infinite linear; */
  z-index: 1;
}

.swiper-container.swiper--bottom:after {
  animation-direction: reverse;
}

.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-slide {
  text-align: center;
  /* font-size: 33px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
}

@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.swiper-container {
  overflow: visible;
}

.swiper-pagination {
  position: absolute;
  bottom: -25px;
}

.progress-sc {
  background: #cccccc;
}

.progress-sc {
  display: inline-block;
  margin-top: 5px;
  width: 100%;
  height: 5px;
  margin-bottom: 15px;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress-sc span {
  background: #ffbb00;
}

.progress-sc span {
  background: #ffbb00;
  display: block;
  height: 100%;
  width: 0;
}


.duration {
  font-size: 1.4rem;
}

.select {
  position: relative;
  z-index: 1;
  display: block;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.select {
  position: static;
  display: inline-block;
  height: auto;
  padding: 1.3em 2em;
  color: #1bbc9d;
  border-radius: 8px;
  border: 2px solid #1bbc9d;
  font-size: 1.4rem;
  text-indent: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.6s;
  width: 70%;
}

.no-touch .select:hover {
  background-color: #1bbc9d;
  color: #ffffff;
}

.exclusive .select {
  background-color: #1bbc9d;
  color: #ffffff;
}

.no-touch .exclusive .select:hover {
  background-color: #24e0ba;
}

.secondary-theme .exclusive .select {
  background-color: #1bbc9d;
}

.no-touch .secondary-theme .exclusive .select:hover {
  background-color: #112e3c;
}

.has-margins .select {
  display: block;
  padding: 1.7em 0;
  border-radius: 0 0 4px 4px;
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }
}

@-moz-keyframes rotate {
  0% {
    -moz-transform: perspective(2000px) rotateY(0);
  }

  70% {
    -moz-transform: perspective(2000px) rotateY(200deg);
  }

  100% {
    -moz-transform: perspective(2000px) rotateY(180deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(200deg);
    -moz-transform: perspective(2000px) rotateY(200deg);
    -ms-transform: perspective(2000px) rotateY(200deg);
    -o-transform: perspective(2000px) rotateY(200deg);
    transform: perspective(2000px) rotateY(200deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    -moz-transform: perspective(2000px) rotateY(180deg);
    -ms-transform: perspective(2000px) rotateY(180deg);
    -o-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }
}

@-webkit-keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}

@-moz-keyframes rotate-inverse {
  0% {
    -moz-transform: perspective(2000px) rotateY(-180deg);
  }

  70% {
    -moz-transform: perspective(2000px) rotateY(20deg);
  }

  100% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse {
  0% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    -moz-transform: perspective(2000px) rotateY(-180deg);
    -ms-transform: perspective(2000px) rotateY(-180deg);
    -o-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(20deg);
    -moz-transform: perspective(2000px) rotateY(20deg);
    -ms-transform: perspective(2000px) rotateY(20deg);
    -o-transform: perspective(2000px) rotateY(20deg);
    transform: perspective(2000px) rotateY(20deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

@-webkit-keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
  }
}

@-moz-keyframes rotate-back {
  0% {
    -moz-transform: perspective(2000px) rotateY(0);
  }

  70% {
    -moz-transform: perspective(2000px) rotateY(-200deg);
  }

  100% {
    -moz-transform: perspective(2000px) rotateY(-180deg);
  }
}

@keyframes rotate-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(-200deg);
    -moz-transform: perspective(2000px) rotateY(-200deg);
    -ms-transform: perspective(2000px) rotateY(-200deg);
    -o-transform: perspective(2000px) rotateY(-200deg);
    transform: perspective(2000px) rotateY(-200deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(-180deg);
    -moz-transform: perspective(2000px) rotateY(-180deg);
    -ms-transform: perspective(2000px) rotateY(-180deg);
    -o-transform: perspective(2000px) rotateY(-180deg);
    transform: perspective(2000px) rotateY(-180deg);
  }
}

@-webkit-keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
  }
}

@-moz-keyframes rotate-inverse-back {
  0% {
    -moz-transform: perspective(2000px) rotateY(180deg);
  }

  70% {
    -moz-transform: perspective(2000px) rotateY(-20deg);
  }

  100% {
    -moz-transform: perspective(2000px) rotateY(0);
  }
}

@keyframes rotate-inverse-back {
  0% {
    -webkit-transform: perspective(2000px) rotateY(180deg);
    -moz-transform: perspective(2000px) rotateY(180deg);
    -ms-transform: perspective(2000px) rotateY(180deg);
    -o-transform: perspective(2000px) rotateY(180deg);
    transform: perspective(2000px) rotateY(180deg);
  }

  70% {
    -webkit-transform: perspective(2000px) rotateY(-20deg);
    -moz-transform: perspective(2000px) rotateY(-20deg);
    -ms-transform: perspective(2000px) rotateY(-20deg);
    -o-transform: perspective(2000px) rotateY(-20deg);
    transform: perspective(2000px) rotateY(-20deg);
  }

  100% {
    -webkit-transform: perspective(2000px) rotateY(0);
    -moz-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    -o-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}

/* category slider */

.swiper {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.dayexpress-categoeies>.gallery-thumbs {
  height: 100px;
}

.dayexpress-categoeies {
  display: flex;
  flex-flow: column nowrap;
  height: 100vh;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  /* Slide content */
}

.swiper-slide .description,
.swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}

.swiper-slide-active .description,
.swiper-slide-active .title {
  opacity: 1;
}

.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}

.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}

/* TESTIMONIAL */

.tt-testimonial.swiper.tt-swiper-slider {
  overflow: visible;
}

.tt-testimonial .swiper-button {
  color: var(--dark-background);
}

.testimonial-wrap.swiper-slide {
  background: transparent;
  padding: 0;
}

.testimonial-wrap.swiper-slide .testimonial-info {
  text-align: start;
  display: flex;
  align-items: center;
}


.testimonial-wrap.swiper-slide .testimonial-info-wrapper {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.testimonial-wrap.swiper-slide .testimonial-info-wrapper .testimonial-first {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color-01);
}

.testimonial-wrap.swiper-slide .testimonial-info-wrapper .testimonial-first .testimonial-info-inner {
  width: 75%;
  padding-right: 10px;
}

.testimonial-wrap.swiper-slide .testimonial-info-wrapper .testimonial-first .testimonial-img {
  width: 25%;
}

.testimonial-wrap.swiper-slide .testimonial-info-wrapper .testimonial-first .testimonial-img img {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.testimonial-section .testimonial-wrap {
  padding: 0 30px;
}

.tt-testimonial-wrap .testimonial-icon {
  margin: 0 0 20px;
  text-align: start;
}

.tt-testimonial-wrap .testimonial-icon svg {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 46px;
}

.testimonial-wrap .testimonial-details p {
  color: var(--body-text-color);
  text-align: center;
  font-size: 15px;
  line-height: 24px;
  font-style: italic;
  font-family: var(--secondary-font);
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  margin-bottom: 0;
}

.testimonial-rating svg {
  color: var(--primary-color);
  font-size: 14px;
  padding-right: 3px;
}


.testimonial-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-wrap .testimonial-img {
  margin-bottom: 15px;
}

.testimonial-wrap .testimonial-img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-title {
  font-size: 24px;
  font-family: var(--primary-font);
  margin-bottom: 15px;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info {
  position: relative;
  margin-bottom: 15px;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info p {
  display: inline-block;
  background-color: var(--dark-bg-text);
  padding: 0 10px;
  margin: 0;
  text-transform: capitalize;
}

.testimonial-wrap .testimonial-info-wrapper .testimonial-info::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 1px;
  width: 60%;
  height: 1px;
  margin: auto;
  z-index: -1;
  background-color: var(--body-text-color);
}



/* --------- START VIDEO SECTION --------- */

a.youtube-popup {
  position: absolute;
  left: auto;
  right: 30px;
  bottom: auto;
  top: 30px;
  width: 65px;
  height: 65px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

a.youtube-popup p {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: italic;
  font-size: 30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  padding: 50px;
  font-family: var(--primary-font);
  border: 2px solid var(--background-color);
  color: var(--background-color);
  margin: 0;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
}

.mfp-iframe-holder .mfp-close::after {
  display: none;
}

a.youtube-popup p::before {
  content: "\f04b";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-style: normal;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.elementor-widget-Video {
  overflow: hidden;
}

.tt-video img {
  transition: all 5s ease;
  -webkit-transition: all 5s ease;
  -moz-transition: all 5s ease;
  -o-transition: all 5s ease;
  -ms-transition: all 5s ease;
}

.elementor-widget-Video:hover .tt-video img {
  transform: scale(1.2);
}

/* --------- END VIDEO SECTION --------- */



/* INNER PAGES */

.text-margin .elementor-widget-text-editor p {
  margin: 0;
}

/* ACCORDIAN-TAB */

.accordian-tab .Dayexpress-accordion-item {
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color-01);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.accordian-tab .Dayexpress-accordion-item .Dayexpress-accordion-header {
  cursor: pointer;
  background-color: transparent;
}

.accordian-tab .Dayexpress-accordion-header .accordion-tilte {
  color: var(--secondary-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--primary-font);
  padding: 20px;
  line-height: normal;
  transition: all 400ms ease-in-out 0s;
  -webkit-transition: all 400ms ease-in-out 0s;
  -moz-transition: all 400ms ease-in-out 0s;
  -o-transition: all 400ms ease-in-out 0s;
  -ms-transition: all 400ms ease-in-out 0s;
  margin: 0;
  display: flex;
  align-items: center;
}

.accordian-tab .Dayexpress-accordion-header .accordion-tilte span {
  width: 100%;
  display: content;
}

.accordian-tab .Dayexpress-accordion-header .accordion-tilte span.accordion-number {
  width: auto;
}

.accordian-tab .Dayexpress-accordion-header .accordion-tilte svg {
  float: right;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.accordian-tab .Dayexpress-accordion-item.active .accordion-tilte svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.accordian-tab .Dayexpress-accordion-item.active .accordion-tilte,
.accordian-tab .Dayexpress-accordion-header .accordion-tilte:hover {
  color: var(--primary-color);
}

.accordian-tab .Dayexpress-accordion-item.active .accordion-tilte:hover {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.accordian-tab .Dayexpress-accordion-content {
  padding: 20px;
  border-top: 1px solid var(--border-color-01);
  background-color: transparent;
  font-size: 16px;
  box-shadow: none;
}

.accordian-tab .Dayexpress-accordion-item .accordion-tilte svg:last-child,
.accordian-tab .Dayexpress-accordion-item.active .accordion-tilte svg:nth-child(3) {
  display: none;
}

.accordian-tab .Dayexpress-accordion-item .accordion-tilte svg:first-child,
.accordian-tab .Dayexpress-accordion-item.active .accordion-tilte svg:last-child {
  display: block;
}

/* BLOG */

.blog-style .tt-post-wrapper.swiper-slide {
  padding: 0;
  background: transparent;
}


.no-content .elementor-heading-title {
  padding: 0;
}

.no-content .elementor-heading-title::before,
.no-content .elementor-heading-title::after {
  content: none;
}

/* BLOG */

/* --------------- Start blog block --------------- */
.woocommerce-active.single-post .tt-post-wrapper {
  border: 1px solid #e5e5e5;
  padding: 30px;
}

.blog-style .tt-post-wrapper .tt-post-thumbnail a {
  float: none;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.blog-style .grid-item .tt-post-wrapper .tt-post-details {
  padding: 30px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  background: var(--background-color);
}

.blog-style .tt-post-wrapper .tt-post-details .date-comment {
  display: flex;
  align-items: center;
}

.blog-style .tt-post-wrapper .tt-post-details .date-comment .comments {
  position: relative;
  padding-left: 25px;
}

.blog-style .tt-post-wrapper .tt-post-details .date-comment .comments::after {
  content: "";
  position: absolute;
  left: 10px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 2px;
  width: 5px;
  background-color: var(--primary-color);
}

.blog-style .tt-post-wrapper .tt-post-details .date-comment a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--primary-color);
}

.blog-style .tt-post-details .tt-post-title a {
  color: var(--secondary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  float: left;
  width: 100%;
}

.blog-style .tt-post-details .tt-post-title a:hover {
  color: var(--primary-color);
}

.blog-style .tt-post-details .tt-post-content {
  font-size: 16px;
  line-height: 24px;
  color: var(--body-text-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-style .tt-post-details .tt-post-title h6 {
  font-size: 22px;
  margin: 10px 0 15px;
  font-weight: 800;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-style .tt-post-wrapper .tt-post-thumbnail {
  overflow: hidden;
  margin-bottom: 20px;
}

.blog-style-3.blog-style .grid-item .tt-post-thumbnail .post-meta-wrap {
  display: none;
}

.blog-style .tt-post-thumbnail .post-meta-wrap {
  top: auto;
  bottom: -41px;
  right: 0;
  left: 0;
  width: auto;
  margin: auto;
  display: flex;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
}

.blog-style .tt-post-wrapper:hover .tt-post-thumbnail .post-meta-wrap {
  bottom: 0;
  transition: all 500ms ease-in-out 0s;
  -webkit-transition: all 500ms ease-in-out 0s;
  -moz-transition: all 500ms ease-in-out 0s;
  -o-transition: all 500ms ease-in-out 0s;
  -ms-transition: all 500ms ease-in-out 0s;
}

.blog-style .tt-post-details .tt-post-meta,
.blog-style .tt-post-thumbnail .tt-post-meta {
  padding: 8px 16px;
  font-size: 18px;
  color: var(--body-text-color);
  font-family: var(--primary-font);
  width: auto;
  font-style: italic;
  margin: auto;
  display: flex;
  align-items: center;
  line-height: normal;
}

.blog-style .tt-post-details .tt-post-meta svg {
  margin: 0 5px 0 0;
  width: 20px;
}

.blog-style.blog-style-1 .tt-post-thumbnail .tt-post-meta {
  background: var(--secondary-color);
}

.blog-style .tt-post-details .tt-post-meta {
  padding: 0;
  margin: 0 0 10px;
}

#page .blog-style .tt-post-title a {
  color: var(--secondary-color);
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 800;
}

#page .blog-style .tt-post-title a:hover {
  color: var(--primary-color);
}

.blog-style .tt-post-more a {
  font-size: 16px;
  background: none;
  font-weight: 500;
  color: var(--primary-color);
  text-transform: capitalize;
  padding: 0;
}

.blog-style .tt-post-more a.btn {
  border-bottom: 2px solid var(--primary-color);
  margin: 10px;
}

.blog-style .tt-post-more a svg {
  margin-left: 10px;
  color: var(--secondary-color);
}

.blog-style .tt-post-more a:hover svg {
  color: var(--primary-color);
}

.blog-style .tt-post-more a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.blog-style .tt-post-more a::after {
  display: none;
}

.blog-style .tt-post-thumbnail a {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
}

.blog-style .tt-post-wrapper>div {
  float: left;
  width: 100%;
  text-align: start;
}

.blog-style .tt-post-wrapper .tt-post-first {
  padding: 15px;
  background-color: var(--background-color);
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.blog-style .tt-post-wrapper .tt-post-border {
  border-radius: 12px;
  border: 1px solid var(--border-color-01);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  margin-bottom: 1px;
}

.blog-style .tt-post-wrapper .tt-post-second {
  position: relative;
}

.blog-style .tt-post-wrapper .tt-post-second::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 0;
  height: 1px;
  background-color: var(--border-color-01);
}

.blog-style .tt-post-wrapper .tt-post-more a.comments svg {
  margin: 0;
}

.blog-style .tt-post-wrapper .tt-post-more a.comments {
  float: right;
  padding: 10px;
  position: relative;
}

.blog-style .tt-post-wrapper .tt-post-more a.comments span {
  position: absolute;
  left: auto;
  right: 5px;
  top: 5px;
  width: 16px;
  height: 16px;
  color: var(--background-color);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.blog-style .tt-post-wrapper .tt-post-more a.comments::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  bottom: 0px;
  width: 1px;
  background-color: var(--border-color-01);
}

.blog-style .tt-post-wrapper .tt-post-meta {
  width: auto;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--secondary-font);
  text-transform: capitalize;
  font-style: normal;
  margin-bottom: 0;
  color: var(--primary-color);
}

.blog-style .tt-post-wrapper:hover .tt-post-thumbnail .zoom-icon,
.blog-style .tt-post-wrapper:hover .tt-post-thumbnail a::before {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  cursor: pointer;
}

.blog-style .tt-post-wrapper:hover .tt-post-thumbnail .zoom-icon {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
}

.blog-style .tt-post-thumbnail .zoom-icon:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.blog-style .tt-post-wrapper:hover .tt-post-thumbnail a img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.blog-style .tt-post-wrapper:hover .tt-post-thumbnail a img,
.blog-style .tt-post-wrapper .tt-post-thumbnail a img {
  transition: all 1.5s ease-in-out 0s;
  -webkit-transition: all 1.5s ease-in-out 0s;
  -moz-transition: all 1.5s ease-in-out 0s;
  -o-transition: all 1.5s ease-in-out 0s;
  -ms-transition: all 1.5s ease-in-out 0s;
}

.blog-style.blog-style-1 .tt-post-wrapper .tt-post-details {
  text-align: center;
  padding: 25px 55px;
}


/* SECTION-HEADING */
.tt-section-title .section-heading {
  font-size: 46px;
  line-height: 54px;
  margin-bottom: 22px;
  text-transform: capitalize;
  font-weight: 600;
}

.tt-section-title span.tt-section-sab {
  font-size: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: normal;
  display: inline-block;
}

.tt-section-title p {
  font-size: 14px;
  margin: 0;
  line-height: 24px;
}