﻿.flipper-container {
  perspective: 2000px;
  transform: perspective(2000px);
  transform-style: preserve-3d;
}

.flipper {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.5s ease-out;
}

.front, .back {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.front {
  z-index: 2;
  transform: rotateY(0deg);
}

.back {
  transform: rotateY(-180deg);
}

.flipper-container:hover .flipper {
  transform: rotateY(180deg);
}

.providers_cards .back {
  background-color: #0971e8;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.provider_header .logo img {
  cursor: pointer;
}

.mob-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 577px) {
  .mob-container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .mob-container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .mob-container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .mob-container {
    width: 1170px;
  }
}

@media (max-width: 576px) {
  .mob-container h1,
  .mob-container h2,
  .mob-container .action_list_grid_track,
  body.rds .providers_list .providers_list_grid, 
  .mob-container.advantages h2, 
  .mob-container.advantages .list,
  body.rds .mob-container.reviews .all_trf_view {
	padding-left: 15px;
	padding-right: 15px;
	width: auto;
  }
}

.advantages h2 {
  margin: 0 0 40px;
}

@media (max-width: 576px) {
  .advantages h2 {
	margin-bottom: 20px;
  }
}

.advantages .list {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow: auto;
  margin-top: 40px;
}

.advantages .item {
  border: 1px solid #ebebeb;
  border-radius: 10px;
  padding: 30px 20px;
  width: 33%;
  min-width: 273px;
}

@media (max-width: 576px) {
  .advantages .item {
	padding: 30px 15px;
  }
  .advantages .list {
	margin-top: 20px;
  }
}

.advantages .item h3 {
  margin: 15px 0
}

.advantages .item .text {
  color: #676767;
  line-height: 1.3;
}

.advantages .item .icon {
  border: 2px solid #ebebeb;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 25px 25px 24px;
}

.faq-correct input {
  display: none;
}

.faq-correct label {
  display: block;
  border-radius: 10px;
  border: 1px solid #EBEBEB;
  margin: 0;
  line-height: 1.3;
  font-weight: 400;
  padding: 30px 20px;
}

.faq-correct .question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #242424;
}

.faq-correct .question svg {
  transition: transform .4s ease-out;
}

.faq-correct .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease-out, padding-top .4s ease-out;
}

.faq-correct .answer > div {
  overflow: hidden;
  color: #676767;

}

.faq-correct input:checked + .question + .answer {
  grid-template-rows: 1fr;
  padding-top: 20px;
}

.faq-correct input:checked + .question svg {
  transform: rotate(45deg)
}

.header_banner .success h2, .header_banner .error h2 {
  font-size: 30px !important;
  color: #fff !important;
  line-height: 1.3 !important;
  margin: 0;
}

body.rds .header .header_banner .success .title, body.rds .header .header_banner .error .title {
  margin: 0 0 5px;
}

.header_banner div[status="success"], .header_banner div[status="error"] {
  max-width: none;
}

.header_banner div[status="success"] .lbl, .header_banner div[status="error"] .lbl {
  color: #fff;
  font-weight: 400;
  line-height: 1.3;
  padding-bottom: 40px;
}

.header_banner div[status="error"] .lbl a[action] {
  color: #36F3FF;
}

.header_banner div[status="error"] .lbl a[href] {
  color: #fff;
}

@media(max-width: 576px) {
  .faq-correct {
    margin: 20px 0 0;
  }
  .faq-correct label {
	padding: 20px 15px;
  }
  .faq-correct .question {
	align-items: start;
  }
  .faq-correct .question > div {
  	font-size: 16px;
	max-width: 259px;
  }
  .faq-correct input:checked + .question + .answer {
	padding-top: 15px;
  }
  .header_banner .success h2, .header_banner .error h2 {
    font-size: 22px !important;
  }
  .header_banner div[status="success"] .lbl, .header_banner div[status="error"] .lbl {
    padding-bottom: 0;
  }
}

.available h2 {
  margin: 0;
}

.available_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

@media(max-width: 576px) {
  .available h2 {
	padding: 0 15px;
  }
  .available_cards {
	flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 0 15px;
  }
}

.available_cards .item {
  background: rgba(235, 235, 235, .3);
  border-radius: 10px;
  width: 270px;
  height: 185px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.available_cards .item img.logo {
    max-width: 150px;
    height: 43px;
    object-fit: contain;
    object-position: left;
}

body.rds .available_cards .item .btnr.out {
  text-wrap: nowrap;
  flex: none;
}

body.rds .office-form h3 {
  color: #676767 !important;
  margin: 0 0 20px;
}

.office-title {
  margin: 0;
}

.office-inputs {
  max-width: 753px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 50px;
}

body.rds .req_ .office-form.req_form .req_f_inp {
  margin: 0;
  flex: 1;
}

@media(max-width: 576px) {
  .office-inputs {
    margin-bottom: 40px;
  }
}

.office-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 889px;
  margin-bottom: 40px;
}

.office-options span {
  font-size: 16px;
  color: #676767;
  line-height: 1.3;
  border-radius: 30px;
  border: 1px solid  #EBEBEB;
  padding: 15px 30px;
  cursor: pointer;
}

.office-options span.active {
  background: #EBEBEB;
  color: #242424;
}

.office-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media(max-width: 576px) {
  .office-submit {
	flex-wrap: wrap;
  }
  .office-options span {
    color: #a1a1a1;
  }
  .office-options span.active {
    background: #a1a1a1;
    color: #fff;
  }
}

body.rds .req_form.office-form .prv_lbl {
  color: #a1a1a1;
  line-height: 1.2;
  max-width: 255px;
  margin: 0;
}

.request-block div[status="success"] .hdr, .request-block div[status="error"] .hdr {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.request-block div[status="error"] {
  max-width: none;
}

.request-block div[status="error"] .lbl {
  max-width: 738px;
}

.request-block div[status="error"] .modal_win_req_btns {
  padding: 0;
  margin: 0;
}

body.rds .provider_header.general {
  border: none;
  padding: 0;
  display: flex;
  align-items: start;
  justify-content: left;
}

.provider_header.general .info {
  margin-left: 50px;
}

.provider_header.general .tarif-hdr-i {
  gap: 50px;
  margin: 20px 0 30px;
}

body.rds .provider_header.general .pr .logo {
  margin-bottom: 10px;
  width: 190px;
  text-align: left;
}

body.rds .provider_header.general .pr .logo img {
  height: 60px;
  object-fit: contain;
}

body.rds .provider_header.general .pr .rates {
  display: flex;
}

body.rds .provider_header.general .pr .rates a {
  margin-left: 5px;
}
body.rds .provider_header.general .act_btns {
  flex-direction: row;
}
.provider_header.general h2.pr-inf {
  margin: 0;
}

@media (max-width: 576px) {
  body.rds .provider_header.general {
	gap: 0;
  }
  body.rds .provider_header.general .pr .logo img {
  	height: 43px;
  }
  body.rds .provider_header.general .info {
    margin-left: 0;
  }
  .provider_header.general h2.pr-inf {
    margin: 20px 0;
  }
  .provider_header.general .tarif-hdr-i {
    gap: 20px;
  }
  body.rds .provider_header.general .act_btns {
	gap: 10px;
  }
  body.rds .provider_header.general .act_btns {
    flex-direction: column;
  }
}

.reviews-h1 {
  margin: 0;
}

body.rds .reviews .all_trf_view {
  order: 4;
  justify-content: start;
  margin-top: 40px;
}

@media (max-width: 576px) {
  body.rds .reviews .all_trf_view {
    margin-top: 20px;
  }
}

.contacts h1 {
  margin: 0 0 40px;
}

.contacts img {
  border-radius: 10px;
  width: 100%;
}

.contacts-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contacts-info h3 {
  margin: 0 0 10px;
}

.contacts-info .contacts-tel {
  margin: 0 0 5px;
}

.contacts-info p {
  margin: 0;
  max-width: 366px;
  color: #242424;
}

.contacts-info a.num {
  font-size: 18px;
  font-weight: 600;
  color: #2387FA;
}

@media (max-width: 576px) {
  .contacts h1 {
    margin-bottom: 20px;
  }
  body.rds .contacts-info h3 {
	margin: 0 0 5px;
  }
  .contacts-info {
    margin-bottom: 20px;
  }
  .contacts-image {
    height: 400px;
  }
  .contacts img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}