
.tabset-container {
  max-width: 1245px;
  margin: auto;
}

.tabset {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding: 25px;
}

.tabset>input[type="radio"] {
  position: absolute;
  left: -200vw;
}

.tabset>label {
  position: relative;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background: #ffffff;
  box-shadow: 4px 4px 5px #d5dae285;
  border-radius: 5px;
  margin: 1% 2%;
  min-width: 150px;
  height: 45px;
  line-height: 45px;
  flex: 1 1 auto;
  transition: all .3s;
}

.tabset>label:hover {
  box-shadow: none;
}

.tabset>.l-margin {
  margin-left: 0;
}

.tabset>.r-margin {
  margin-right: 0;
}

.tabset>label:hover::after,
.tabset>input:focus+label,
.tabset>input:checked+label {
  background: #567ca4;
  color: #fff;
  box-shadow: 4px 4px 12px rgb(213, 219, 228);
}

.tabset>input:checked+label .tabset-social__icon {
  background: #fff;
  border-radius: 100px;
}

.tab-panels {
  width: 100%;
  margin-top: 50px;
}

.tabset .tab-panel {
  display: none;
}

.tabset>input:first-child:checked~.tab-panels>.tab-panel:first-child,
.tabset>input:nth-child(3):checked~.tab-panels>.tab-panel:nth-child(2),
.tabset>input:nth-child(5):checked~.tab-panels>.tab-panel:nth-child(3),
.tabset>input:nth-child(7):checked~.tab-panels>.tab-panel:nth-child(4),
.tabset>input:nth-child(9):checked~.tab-panels>.tab-panel:nth-child(5),
.tabset>input:nth-child(11):checked~.tab-panels>.tab-panel:nth-child(6) {
  display: block;
}

.search-form {
  display: flex;
  padding: 5px 25px 5px 15px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 4px 4px 5px rgba(213, 218, 226, 0.5215686274509804);
}

.search-form-icon {
  display: flex;
  align-items: center;
}

.search-form-icon img {
  width: 17px;
  height: 17px;
}

.search-form-input {
  border: 0;
  width: 100%;
  height: 40px;
  font-size: 15px;
  padding: 15px;
}

.block-group {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.block-item {
  margin-bottom: 25px;
  width: 150px;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  transition: all .3s;
}

.block-item--disabled {
  opacity: 0.5;
}

.block-item:hover {
  box-shadow: none;
}

.block-item--icon {
  margin-bottom: 15px;
}

.block-item--name {
  text-transform: uppercase;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 15px;
}

.block-item--name span {
  display: block;
  text-transform: none;
  font-weight: 400;
}

.block-item--numb {
  color: #a2a8b1;
  margin-bottom: 15px;
}

.block-item--input {
  padding: 6px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #e5e8ec;
  width: 90%;
}

.block-item--input[disabled] {
  background: #f0f2f5;
  opacity: 0.5;
}

.tab-button {
  margin: 50px;
  text-align: center;
  width: 100%;
}

.tab-button>.btn {
  background: #567ca4;
  color: #fff;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
   box-shadow: 4px 4px 5px rgba(213, 218, 226, 0.5215686274509804);
}

.tab-button>.btn:hover {
  background: #6a95c5;
}

.tabset-social__icon {
  width: 15px;
  height: 15px;
  position: relative;
  top: 8px;
  padding: 5px;
  margin-right: 5px;
}

.block-item--icon {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e8ec;
  background: #ffffff;
  border-radius: 100px;
  padding: 15px;
  margin: auto;
  margin-bottom: 15px;
}

.block-item--img {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 900px) {
  .tabset>label {
    margin: 2% !important;
  }
}
.tabset input[type=radio]:checked + label:after {opacity: 0;}
.tabset input[type=radio]:not(checked) + label {padding: 0;}
.tabset input[type=radio]:not(checked) + label:before {
    display: none;
}