.cps-tabs {
  /*margin: 85px 0 85px;*/
}

.cps-tabs input[type='radio'] {
  display: none;
}

.cps-tabs label {
  border-radius: 5px 0 0 0;
  display: block;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 23px 44px 12px 11px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s ease-in-out;
  cursor: pointer;
}

.cps-tabs label > span {
  border-top: 2px solid var(--red);
  display: inline-block;
  padding: 5px 5px 0;
}

.cps-tabs label:hover span,
.cps-tabs input[type='radio']:checked + label span {
  border-color: #fff;
}

.cps-tabs label:hover,
.cps-tabs input[type='radio']:checked + label {
  background: url('../../img/tab.svg') right top no-repeat;
  background-size: cover;
  padding: 23px 37px 12px 15px;
}

.cps-tab-content { 
  box-shadow: 0 20px 30px rgba(23, 48, 80, 0.1);
  border-radius: 0 5px 5px 5px;
  background-color: #fff;
  display: none;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  padding: 105px 0 50px !important;
  order: 100;
  width: 100%;
  z-index: 100;
}

.cps-tabs input[type='radio']:checked + label + section {
  display: block;
}

.cps-tab-content h2,
.cps-tab-content p {
  color: var(--blue) !important;
}

#primary .cps-tab-content h2 {
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 0 !important;
}

#primary .cps-tab-content h3 {
  border-bottom: 3px solid #cbd5dc;
  color: var(--red) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 23px !important;
}

.cps-tab-content p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
}

#primary .cps-tab-content > p {
  margin: 0 auto 73px !important;
  width: calc(100% / 12 * 10 );
}

.cps-tab-content > div {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: calc(100% / 12 * 10 );
}

.cps-tab-content > div:not(:last-child) {
  margin-bottom: 58px;
}

.cps-tab-content > div > div:first-child {
  width: calc(20% - 10px);
}

.cps-tab-content > div > div:last-child {
  width: calc(80% - 10px);
}

.cps-tab-content img {
  border: 2px solid #cbd5dc;
  display: block;
}

.cps-tabs  {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  /*position: relative;*/
}


@media only screen and (max-width: 480px) {

  .cps-tabs label > span span {
    display: none;
  }

 /* .cps-tabs label,
  .cps-tabs label:hover,
  .cps-tabs input[type='radio']:checked + label {
    border-radius: 0 !important;
    box-shadow: 0 20px 30px rgba(23, 48, 80, 0.1);
    background-color: #fff;
    border: none !important;
    display: flex;
    align-items: center;
    height: 62px;
    padding: 20px 23px !important;
    width: 100%;
  }

  .cps-tabs label {
    margin-bottom: 25px;
    position: relative;
  }


  .cps-tabs input[type='radio']:checked + label {
    margin-bottom: 5px;
    order: 50;
  }

  .cps-tabs label span {
    border: none !important;
  }

  .cps-tabs label:after {
    background: #cbd5dc url('../../img/icon-plus.svg') center center no-repeat;
    content: '';
    border-radius: 27px;
    display: block;
    height: 54px;
    position: absolute;
      top: 4px;
      right: 5px;
    width: 54px;
  }

  .cps-tabs input[type='radio']:checked + label:after {
    display: none;
  }

  .cps-tab-content > div > div {
    width: 100% !important;
  }

  .cps-tab-content > div > div:first-child {
    margin-bottom: 20px;
  }*/
}