.v_tabs-desk_wrapper {
  padding: 0;
  display: flex;
  justify-content: center;
}

.v_tabs-mob_wrapper {
  display: none;
}

.v_tabs-tabs {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.v_tabs-tab .tab_button_el {
  padding: 25px 20px;
  background: transparent;
  border: none;
  border-radius: 0px;
  color: var(--v-tabs-text-color);
  font-size: 25px;
  text-align: left;
  font-weight: 600;
  max-width: min(calc(var(--v-tabs-content-maxw)*.31), 430px);
  flex-grow: 1;
  position: relative;
}

.v_tabs-tab:first-child {
  padding-top: 20px;
}

.v_tabs-tab:last-child {
  padding-bottom: 20px;
}

.v_tabs-tab .tab_button_el:hover {
  color: var(--v-tabs-text-color);
}

.v_tabs-tab {
  background-color: var(--v-tabs-bg-color);
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
} 

.v_tabs-tabs_contents {
  width: 100%;
  background-color: var(--v-tabs-content-bg);
  width: 69%;
}

.v_tabs-tab_content {
  display: none;
  color: var(--v-tabs-text-color);
  height: 100%;
  max-width: calc(var(--v-tabs-content-maxw) * .69);
}

.v_tabs-tab_content .tab_richtext {
  max-width: 420px;
}

.v_tabs-tab.active .tab_button_el span {
  position: relative;
  pointer-events: none;
}

.v_tabs-tab.active .tab_button_el span:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -10px;
  background-color: var(--v-tabs-active-tab-color);
}

.v_tabs-tab_content.active {
  display: block;
  background-color: var(--v-tabs-content-bg);
  padding: 40px 40px 40px 80px;
}

@media (max-width: 900px) {
  .v_tabs-tab .tab_button_el {
    font-size: 22px;
    padding; 20px;
  }
  
  .v_tabs-mob_wrapper {
    display: block;
  }
  
  .v_tabs-desk_wrapper {
    display: none;
  }
  
  .v_tabs-accordion_item {
    background-color: var(--v-tabs-content-bg);
    position: relative;
    padding: 0px 0px 20px;
  }
  
  .v_tabs-accordion_item:first-child {
    padding-top: 20px;
  }
  
  .v_tabs-accordion_item:last-child {
    padding-bottom: 20px;
  }
  
  .v_tabs-accordion_item:not(:last-child):after {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    left: 20px;
    bottom: 20px;
    height: 1px;
    background-color: var(--v-tabs-mob-divider-color);
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab {
    background: transparent;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab:first-child {
    padding-top: 0px;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab:last-child {
    padding-bottom: 0px;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab.active .tab_button_el span:before {
    content: none;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab.mob_tab {
    position: relative;
    display: block;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab.mob_tab .tab_button_el {
    padding: 0 60px 0 20px;
    background: transparent;
    border: none;
    border-radius: 0px;
    color: var(--v-tabs-text-color);
    font-size: 25px;
    text-align: left;
    font-weight: 600;
    position: relative;
    width: 100%;
    max-width: none;
  }
  
  .v_tabs-mob_wrapper .v_tabs-accordion_item .v_tabs-tab.mob_tab:after {
    content: '';
    width: 14px;
    height: 9px;
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOSIgdmlld0JveD0iMCAwIDE0IDkiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wLjAzOTAxMzcgMy4wNDAwNEw1LjE4NDA5IDguMjU0OTdDNi4xNjQxNiA5LjI0ODM0IDcuNzU3ODEgOS4yNDgzNCA4LjczNzg4IDguMjU0OTdMMTQgMi45MzgxOUwxMy45NDggLTIuMjczNzllLTA5TDcuNjM5NTkgNi4zNzEyN0M3LjI2NDgyIDYuNzUxMTIgNi42NTcxNSA2Ljc1MTEyIDYuMjgyMzggNi4zNzEyN0wtMi4wOTUxNGUtMTAgMC4wMDQ3OTI1MkwwLjA0MDE5NTMgMy4wNDAwNEwwLjAzOTAxMzcgMy4wNDAwNFoiIGZpbGw9IiM0M0IwMkEiLz4KPC9zdmc+Cg==");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .2s ease;
  }
  
  .v_tabs-mob_wrapper .v_tabs-accordion_item.active .v_tabs-tab.mob_tab:after {
    transform: translateY(-50%) scaleY(-1);
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab_content {
    padding: 0 20px 20px;
    display: block;
  }
  
  .v_tabs-mob_wrapper .v_tabs-tab_content .tab_richtext {
    display: none;
  }
  
  .v_tabs-mob_wrapper .v_tabs-accordion_item.active .v_tabs-tab_content .tab_richtext {
    display: block;
  }
  
  .v_tabs-mob_wrapper .v_tabs-accordion_item.active .v_tabs-tab_content {
    padding: 20px 20px 0px;
  }
  
  .v_tabs-tab_content.mob_tab_content.active {
    display: block;
  }
  
}