

.featshow {
  position: relative;
  padding: 96px 24px;
}

.featshow::before {
  content: '';
  display: block;
  z-index: 0;
  width: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  background: #0076FF;
}

.featshow--nav-bg-transparent::before {
  background: none;
}

.featshow__wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  max-width: 1138px;
  margin: 0 auto;
}

/* Content column */

.featshow__content {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
/*  theme original  padding: 0 24px; */
  padding: 0 45px;
  background: #fff;
  box-shadow: 0px 32px 64px rgba(39, 47, 61, 0.05), 0px 16px 32px rgba(39, 47, 61, 0.05);
  border-radius: 24px;
  z-index: 1;
  overflow: hidden;
}

.featshow--dark .featshow__content {
  background: #272F3D;
}

.featshow__content__wrapper {
    width: 600px;
/*   width: 500px; */
  max-width: 100%;
/*   padding: 144.0px 0; */
    padding: 55px 10px 80px;
  position: relative;
}

.featshow__items {
  display: flex;
/*Theme original>>>>>   align-items: center; */
  align-items: flext-start; /* Added by Sync */
}

.featshow__item {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;

}

.featshow__item:not(.featshow__item--active) {
  opacity: 0;
  visibility: hidden;
  order: 2;
  pointer-events: none;
}

.featshow__item--active {
  order: 1;
}

.featshow--active .featshow__item--active {
  animation: .2s ease-in-out forwards uiPop;
}

.featshow__properties {
/* Theme original  margin: .5rem 0 1.2rem; */
  margin: -2rem 0 1.2rem; 
  width: 160px; /* Added by Sync */
}

/* Controls */

.featshow__controls {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Dots */

.featshow__dots {
  display: flex;
  padding-inline-end: 24px;
}

.featshow__dots ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  line-height: 0;
}

.featshow__dots li {
  margin: .28rem 0;
}

.featshow__dots li:not(:last-child) {
  margin-inline-end: .56rem;
}

.featshow__dot {
  width: .56rem;
  height: .56rem;
  padding: 0;
  background: #84909A;
  border: none;
  border-radius: 100%;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.featshow--dark .featshow__dot {
  background: rgba(255, 255, 255, .2);
}

.featshow__dot:focus:not(:focus-visible) {
  outline: 0;
}

.featshow__dot:hover {
  background: #272F3D;
}

.featshow--dark .featshow__dot:hover {
  background: #fff;
}

.featshow__dot--active,
.featshow__dot--active:hover,
.featshow--dark .featshow__dot--active,
.featshow--dark .featshow__dot--active:hover {
  background: #0076FF;
}

.featshow__dot--active {
  cursor: default;
}

/* Arrows */

.featshow__arrows {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.featshow__arrow {
  color: #84909A;
  width: 13px;
  line-height: 0;
  cursor: default;
  transition: .2s ease-in-out;
}

.featshow--dark .featshow__arrow {
  color: rgba(255, 255, 255, .2);
}

.featshow__arrow--active {
  color: #272F3D;
  cursor: pointer;
}

.featshow--dark .featshow__arrow--active {
  color: #fff;
}

.featshow__arrow--active:hover {
  transform: scale(1.15);
}

.featshow__arrow-dot {
  width: 5px;
  height: 5px;
/*   margin: 0 8px; */
  margin: 0 1px;
  background: #ffffff;
/*   background: #84909A; */
  border-radius: 100%;
}

.featshow--dark .featshow__arrow-dot {
  background: rgba(255, 255, 255, .2);
}

/* Nav column */

.featshow__nav {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
}

.featshow__nav__wrapper {
  max-width: 370px;
}

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

.featshow__nav li + li {
  margin-top: 24px;
}



/* .featshow__btn--active { */
/*   transform: scale(1); */
/*   cursor: default;
  text-decoration: underline;
  text-decoration-color: #0076FF;
  text-underline-offset: 0.5em; */
}
/* .featshow__btn--active {
  /* Remove the following lines */
  /* text-decoration: underline;
  text-decoration-color: #0076FF;
  text-underline-offset: 0.5em; */

  /* Add the following line */
  text-decoration: none;
  /* Add the following lines */
  border-bottom: 3px solid #0076FF;
  display: inline-block ;
  padding-bottom: 0.5em;
  /* You can adjust the padding-bottom value to control the spacing between the text and underline */

  /* Rest of your code... */
} 

/* Nav left */

.featshow--nav-left:before {
  left: 0;
}

.featshow--nav-left .featshow__content {
  order: 2;
}

.featshow--nav-left .featshow__nav {
  order: 1;
}

/* Nav right */

.featshow--nav-right:before {
  right: 0;
}

.featshow--nav-right .featshow__content {
  order: 1;
}

.featshow--nav-right .featshow__nav {
  order: 2;
}

/* Responsive */

@media (max-width: 1139px) {
.featshow__nav {
 
  align-items: start;
 
  padding: 24px;
}
}

@media (max-width: 767px) {
  .featshow::before {
    width: 100%;
    height: 50%;
    bottom: auto;
  }

  .featshow__wrapper {
    flex-direction: column;
  }

  .featshow__content,
  .featshow__nav {
    width: 100%;
  }
  
  .featshow__nav {
    padding-top: 0;
  }
  
  .featshow__nav__wrapper {
    width: 500px;
    max-width: 100%;
    padding-bottom: 48px;
  }
  
  .featshow__content__wrapper {
    padding-top: 48px;
  }
  
  .featshow__items {
    align-items: flex-start;
  }
  
  .featshow--nav-right .featshow__nav {
    order: 1;
  }
  
  .featshow--nav-right .featshow__content {
    order: 2;
  }
  

}
@media (max-width: 479px) {
  .featshow__properties {
/* Theme original  margin: .5rem 0 1.2rem; */
  margin: -2rem auto 1.2rem; 
  width: 70%; /* Added by Sync */
}
 
  .featshow__arrow-dot {
    width: 45px;
  
}
}  

