.tabs {
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-wrap: wrap;
}

.tabs .left{
  width: 50%;
/*   border-right: 1px solid rgba(255, 255, 255, 0.17); */
/*   padding-right: 48px */
}
.tabs .right{
  width: 50%;
  position: relative;
  display: flex;
/*   padding-left: 48px; */
}

.tabs .left ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.tabs .left ul > li{
  margin: 0;
  list-style: none;
  padding: 34px 0px 34px 34px;
  text-align: left;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabs .left ul > li:first-child{
/*   padding-top: 0 */
}
.tabs .left ul > li:last-child{
  border-bottom: 0;
/*   padding-bottom: 0; */
}

.tabs .left ul > li a {
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  color: #A3CF42;
  max-width: 324px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}
.tabs .left ul > li span.index{
  width: 24px;
  color: #FFF;
/*   vertical-align: top;
  display: inline-block; */
  display: flex;
  align-self: normal;
  margin-right: 10px;
}
.tabs .left ul > li span.arrow{
/*   opacity: 0; */
  display: inline-block;
  width: 17px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin-right: 22px;
}
.tabs .left ul > li:hover a,
.tabs .left ul > li.selected a {
  color: #FFFFFF;
}
.tabs .left ul > li.selected span.arrow{
  opacity: 1;
}
.tabs .content {
  display: none;
  color: #FFF;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.1s linear 0s;
}

.tabs .content,
.tabs .content *{
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #FFFFFF;
}


.tabs .content.visible {
  display: block !important;
  width: 100%;
  opacity: 1;
  background: #2E2E2E;
  padding: 36px;
}

.tabs .content p { margin-bottom: 10px; }

.tabs .content p:last-of-type { margin-bottom: 0px; }

.tabs .left ul > li.selected {
  background: #2E2E2E;
  border: 0;
}
.tabs .left ul > li.selected span.arrow {
  opacity: 0;
  border-bottom: 0;
}
.tabs .left ul > li .list {
  display: flex;
}

.tabs .left ul > li.no-border-bottom {
  border-bottom: 0;
}

/*****process step for mobile design *****/
.tab-mobile {
  display: none;
}
.tab-mobile .heading {
  font-family: Epilogue,sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #7F7F7F;
}
.tab-mobile .step-wrap {
  font-weight: bold;
  margin: 7px 0px 0px 0px;
}
.select-content {
  background: #2E2E2E;
  padding: 34px 16px;
/*   margin-top: 20px; */
}
.select-content .content {
  display: none;
}
.select-content .content:first-child {
  display:block;
}
.select-dropdown {
  display: block;
  position: relative;
  z-index: 10;
}
.select-dropdown select {
  width: 100%;
  box-sizing: border-box; 
  padding: 15px 40px 15px 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  border: 0;
  min-height: 32px;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  cursor: pointer;
  background: none;
  color: #A3CF42;
  border: 0;
  font-weight: 700;
  outline: none;
} 

.select-dropdown #drop-arrow {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    width: 22px;
    height: 22px;
    cursor: pointer;
    background-position: center;
    background-size: contain;
    transform: translateY(-50%); 
/*     z-index: -99999; */
}


@media (max-width: 767px){
  .tabs{
    display: none;
  }
  .tab-mobile {
    display: block;
  }
  .tabs .left,
  .tabs .right{
    width: 100%;
    border: 0;
    padding: 0;
  }
  .tabs .right{
    margin-top: 40px;
  }
  .tabs .left ul > li,
  .tabs .left ul > li a{
    font-size: 22px;
    line-height: 30px;
  }
  .tabs .left ul > li a{
    max-width: 100%;
  }
  .tabs .content.visible{
    background: #272728;
    padding: 20px 25px;
  }
  .tabs .left ul > li.selected span.arrow{
    opacity: 1;
    transform: rotateZ(90deg);
  }
}