* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.vc_goUp,
.vc_goDown {
  display: block;
}

.vc_goUp.isDisabled,
.vc_goDown.isDisabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  opacity: 0.3;
  cursor: not-allowed;
}

.vc_container {
  overflow: hidden;
  -moz-transition: height 0.2s ease-in;
  -o-transition: height 0.2s ease-in;
  -webkit-transition: height 0.2s ease-in;
  transition: height 0.2s ease-in;
  border: 1px solid #D9D9D9;
}

.vc_list {
  margin: 0;
  padding: 0;
  list-style: none;
  -moz-transition: -moz-transform 0.2s ease-in;
  -o-transition: -o-transform 0.2s ease-in;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
}

/*  */


.verticalCarousel {
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 1rem;

  @media(min-width:992px) {
    padding-right: 3rem;
    padding-left: 2rem;

  }
}

.verticalCarouselHeader {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
}



.verticalCarouselGroup.vc_list>li {
  padding: 15px;
  background-color: #fffbf7;
  border-bottom: 1px solid #D9D9D9;
}

.verticalCarouselGroup.vc_list>li h4 {
  margin: 0px 0px 15px;
}

.verticalCarouselGroup.vc_list>li p {
  margin: 0px 0px 0px;
}

.vc-nav {
  display: flex;
  column-gap: .5rem;

  @media(min-width:576px) {
    column-gap: 1rem;
  }

  a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: ease-in-out all 0.4s;

    @media(min-width:576px) {
      width: 46px;
      height: 46px;
    }

    &:hover {
      background-color: var(--primary);

      svg {
        path {
          stroke: var(--white);
        }
      }
    }
  }
}