
.ing-spinner {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0;
  border-radius: 100%;
  border: 6px solid;
  border-top-color: #ff5722;
  border-bottom-color: #ff5722;
  border-left-color: rgba(156, 0, 0, 0.15);
  border-right-color: rgba(156, 0, 0, .15);
  animation: spinner .8s ease-in-out infinite alternate
}

@keyframes spinner {
  0% {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(1turn)
  }
}
.counter-component .input-group .btn {
  padding: 0.25rem 0.5rem !important; /* Adjust the padding */
  font-size: 0.8rem !important; /* Adjust font size */
}

.counter-component .form-control {
  height: 30px !important; /* Reduce height */
  font-size: 0.8rem !important; /* Match font size */
}

/*------------ testimonial ---------------- */
.testimonial-item {
  display: flex;
  border: 1px solid var(--line);
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.testimonial-item .img-style {
  max-width: 234px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}
.testimonial-item .img-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item .img-style .box-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
  font-size: 18px;
  border-radius: 50%;
  z-index: 5;
}
.testimonial-item .img-style .box-icon:hover {
  background-color: var(--main);
  color: var(--white);
}
.testimonial-item .img-style::before {
  position: absolute;
  z-index: 2;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  transition: 0.4s ease 0.1s;
  opacity: 0;
  visibility: hidden;
}
.testimonial-item .content {
  padding: 26px;
}
.testimonial-item .content-top {
  display: grid;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.testimonial-item .box-author {
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-item .box-avt {
  display: flex;
  gap: 16px;
  align-items: center;
}
.testimonial-item .box-avt img {
  transform: none;
}
.testimonial-item .box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--main);
  color: var(--white);
}
.testimonial-item .box-icon .icon {
  font-size: 16px;
}
.testimonial-item .box-rate-author {
  margin-top: 8px;
  display: grid;
  gap: 4px;
}
.testimonial-item.style-2 {
  padding: 24px;
  display: block;
}
.testimonial-item.style-2 .content-top {
  padding-bottom: 16px;
}
.testimonial-item.style-3 {
  border: none;
  border-radius: 12px;
}
.testimonial-item.style-4 {
  border-radius: 12px;
  padding: 32px;
  display: block;
  border: 2px solid var(--line);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.testimonial-item.style-4 .content-top {
  padding-bottom: 0px;
  border: 0;
}
.testimonial-item.style-4:hover {
  border-color: var(--main);
}
.testimonial-item.style-row {
  flex-direction: column;
}
.testimonial-item.style-row .img-style {
  max-width: 100%;
  height: 273px;
}
.testimonial-item.no-border {
  border: 0;
}
.testimonial-item:hover .img-style::before {
  opacity: 1;
  visibility: visible;
}

.testimonial-item-v2 {
  display: grid;
  gap: 16px;
}
.testimonial-item-v2 .quote-box {
  display: grid;
  gap: 16px;
}
.testimonial-item-v2 .quote-box .icon {
  font-size: 40px;
}
.testimonial-item-v2 .tes-box {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: start;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.testimonial-item-v2 .rate-box {
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 8px;
}
.testimonial-item-v2 .rate-box .list-star-default {
  justify-content: center;
  gap: 4px;
}
.testimonial-item-v2 .rate-box .list-star-default .icon {
  font-size: 22px;
  color: var(--primary);
}

.tf-sw-testimonial .box-navigation {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-item-2 {
  display: grid;
  gap: 20px;
}
.testimonial-item-2 .content-top {
  display: grid;
  gap: 12px;
}
.testimonial-item-2 .box-author {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-item-2 .box-author .info {
  display: grid;
  gap: 4px;
}
.testimonial-item-2 .box-author .avt {
  max-width: 68px;
  border-radius: 50%;
  overflow: hidden;
}
/*------------ hover ---------------- */
.hover-img .img-style {
  overflow: hidden;
}
.hover-img .img-style > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}
.hover-img:hover .img-style > img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}


/*------------ Vieo-section ---------------- */

.collection-video .banner-video {
  width: 100%;
  height: 450px;

}
.collection-video .banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px !important;
}
.collection-video .cls-content {
  margin-top: 8px;
  border: 1px solid var(--line);
  padding: 12px 15px;
  background-color: var(--white);
  display: flex;
  align-items: center;
}
.collection-video .cls-content .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-right: 12px;
}
.collection-video .cls-content .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collection-video .info {
  flex-grow: 1;
  display: block;
  align-items: center;
  justify-content: space-between;
}
.collection-video .info .title {
  font-size: 16px;
  line-height: 25.6px;
}
.collection-video .info .price {
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}

