/**
 * @file
 * Visual styles for tabs.
 */

div.tabs {
  margin: 1em 0;
}
ul.tabs {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}
.tabs > li {
  display: inline-block;
  margin-right: 0.3em; /* LTR */
}
[dir="rtl"] .tabs > li {
  margin-right: 0;
  margin-left: 0.3em;
}
.tabs a {
  display: block;
  padding: 0.2em 1em;
  text-decoration: none;
}
.tabs a.is-active {
  background-color: #eee;
}
.tabs a:focus,
.tabs a:hover {
  background-color: #f5f5f5;
}


/*tabs front */

.tabs-main>input[type="radio"] {
  display: none;
}
.tabs-main>div {
  /* скрыть контент по умолчанию */
  display: none;
}
#content-1, #content-2{
  min-height: 500px;
}


#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3 {
  display: block;
}

.tabs>label {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  user-select: none;

  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  cursor: pointer;
  position: relative;
  top: 1px;
}

.tabs>label:not(:first-of-type) {
  border-left: none;
}

.tabs>input[type="radio"]:checked+label {
  background-color: transparent;
  border-bottom: 5px solid #DEDC00;
}

.tabs-main > div#content-1, .tabs-main > div#content-2{
  margin-bottom: 20px;
  margin-top: -5px;
  padding-top: 40px;
  border-top: 1px solid #DEDC00;
  width: 100%;
}

.tabs-main label{
  font-family: 'Vinnytsia Sans';
  padding-right: 50px;
  padding-left: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #000000;
  background: transparent !important;
  padding-bottom: 16px;
}



