﻿ul {
  list-style: none;
}

.contacts__show {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 56px;
}

.contacts__show-left {
  width: 296px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contacts__show_right {
  width: calc(100% - 296px);
  height: -webkit-fill-available;
}

.contacts__show-item {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
  border-radius: 4px 0px 0px 4px;
}

.contacts__show-item:not(:last-child) {
  border-bottom: 1px solid #D0D0D0;
}

.contacts__show-item span {
  color: #3c3c3b;
}

.contacts__show-item span sup {
  font-size: .5em;
}

.contacts__show-item span.red {
  color: #F03D3E;
}

.contacts__show-item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 96%;
  letter-spacing: 0.04em;
  color: #3c3c3b;
  padding: 12px 16px 0;
  position: relative
}

.contacts__show-item_ext .contacts__show-item-title {
  padding: 12px 16px;
}

.contacts__show-item-title span {
  position: relative;
}

.contacts__show-item-title span:after {
  content: '';
  height: 2px;
  background: #F26422;
  position: absolute;
  bottom: -8%;
  left: 0;
  width: 100%;
  transition: all .2s ease;
  opacity: 0;
  visibility: hidden;
}

.contacts__show-item-title-arr {
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  width: 26px;
  transition: all .2s ease;
}

.contacts__show-item-data {
  padding: 0 16px 12px;
}

.contacts__show-item-time {
  color: #636362;
  display: flex;
  font-size: 12px;
  line-height: 132%;
  letter-spacing: 0.04em;
  margin-top: 8px;

}

.contacts__top-break {
  font-size: 11px;
  line-height: 140%;
  color: #F03D3E;
}

.contacts__top-cashbox {
  font-size: 11px;
  line-height: 140%;
}

.contacts__top-time_week {
  margin-right: 24px;
}

.contacts__show-item-place {
  font-size: 13px;
  font-weight: 400;
  line-height: 116%;
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.contacts__show-item.contacts__show-item_text {
  padding: 12px 16px;
  pointer-events: none;
  border-bottom: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 124%;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .contacts__show-item.active {
    background: rgba(255, 255, 255, 0.64);
  }

  .contacts__show-item:hover {
    background: rgba(255, 255, 255, 0.64);
    cursor: pointer;
  }

  .contacts__show-item:hover .contacts__show-item-title:hover span, .contacts__show-item.active .contacts__show-item-title span {
    color: #F26422;
  }

  .contacts__show-item:hover .contacts__show-item-title:hover span:after,
  .contacts__show-item:hover .contacts__show-item-title:hover .contacts__show-item-title-arr,
  .contacts__show-item.active .contacts__show-item-title span:after,
  .contacts__show-item.active .contacts__show-item-title .contacts__show-item-title-arr {
    opacity: 1;
    visibility: visible;
  }

  .contacts__show-item.active .contacts__show-item-title:hover span:after {
    opacity: 0;
    visibility: hidden;
  }

  .contacts__show-item.active .contacts__show-item-title:hover .contacts__show-item-title-arr {
    transform: translateX(16px);
  }

 .contacts__show-item.active:hover{
   cursor: unset;
  }
}

.contacts__show_tabs_nav {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  border-bottom: none;
}

.contacts__show_tabs_nav .tab {
  position: relative;
  margin: 0 32px 0 0;
  padding: 0 16px;
  justify-content: flex-start;
  height: 32px;
  line-height: 28px;
  border-radius: 24px;
  border: 2px solid #F26422;
  cursor: pointer;
  background: #EEF1F7;
  color: #3c3c3b;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
}

.contacts__show_tabs_nav .tab.current {
  background: #FFF;
  border: 2px solid #fff;
  cursor: default;
  pointer-events: none
}

.contacts__show_tabs_nav .tab.current,
.contacts__show_tabs_nav .tab.current span {}

@media (min-width:640px) {
  .contacts__show_tabs_nav .tab:hover {
    background: #FFF;
  }
}

@media (max-width: 639px) {

  iframe {
height: 600px!important;
}
  .contacts__show-left {
    width: 100%;
  }

  .contacts__show-item-title {
    color: #F26422;
    padding: 16px 0 0;
  }

  .contacts__show-item_ext .contacts__show-item-title {
    padding: 16px 0;
  }

  .contacts__show-item-title span {
    color: #F26422;
  }

  .contacts__show-item-title span:after {
    opacity: 1;
    visibility: visible;
  }

  .contacts__show-item-title-arr {
    opacity: 1;
    visibility: visible;
  }

  .contacts__show-item-data {
    padding: 0 0 16px;
  }

  .contacts__show-item-place {
    font-size: 12px;
  }

  .contacts__show-item.contacts__show-item_text {
    padding: 16px 0;
    pointer-events: none;
    border-bottom: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 124%;
    letter-spacing: 0.04em;
  }

  .contacts__show_tabs_nav {
    position: absolute;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    overflow-x: scroll;
    top: 0;
    left: -2rem;
    margin: 0;
    border-bottom: none;
  }

  .contacts__show_tabs_nav .tab {
    position: relative;
    margin: 0 16px 0 0;
    padding: 0 16px;
  }
  
  .contacts__show_tabs_nav .tab:first-child {
    min-width: 100px;
    margin-left: 2rem;
  }

  .contacts__show_tabs_nav .tab:nth-child(2) {
    min-width: 210px;
  }

  .contacts__show_tabs_nav .tab:last-child {
    min-width: 112px;
  }

}

/**/
.fo-alert__container {
  margin-top: 1.71rem;
  margin-bottom: 1.71rem;
}

.fo-alert {
  width: 100%;
  border-radius: 4px;
  margin: 0 auto;
  padding: 1.14rem 1.71rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 1.43rem;
}

.fo-alert.fo-alert_note {
  background: #FDE6DB;
}

.fo-alert.fo-alert_error {
  background: #FACDCD;
}

.fo-alert.fo-alert_success {
  background: #D8F5E3;
}

.fo-alert__icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.fo-alert__close {
  cursor: pointer;
}

.fo-alert__close {
  width: 24px;
  min-width: 24px;
  height: auto;
}

.fo-alert__text {
  flex-grow: 1;
  padding-left: 16px;
  padding-right: 24px;
}


@media(max-width: 639px) {
  .fo-alert {
    align-items: center;
    font-size: 2rem;
    padding: 2rem;
    margin-top: 3rem;
  }

  .fo-alert__text {
    padding-right: 2rem;
  }
}

@media (min-width: 1920px) {
  .fo-alert {
    border-radius: 0.29rem;
  }

  .fo-alert__icon {
    width: 1.71rem;
    min-width: 1.71rem;
    height: 1.71rem;
  }

  .fo-alert__text {
    padding-left: 1.14rem;
    padding-right: 1.71rem;
  }
}

/**/
/**/

.good-service-block {
  background: url(/assets/static/pages/oplata.v3/img/bgGoodServicePromo.jpg), #3c3c3b;
  color: #F0FAFF;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.good-service-block .fo-alert__container {
  color: #3c3c3b;
  margin-bottom: 0;
}

.good-service-block__items-wrap {
  display: flex;
  flex-wrap: wrap;
  /*  margin-top: 12px;*/
}

.good-service-block__item {
  width: 50%;
  margin: 1.5rem 0;
}

.good-service-block__item:nth-child(2n+1) {
  padding-right: 12px;
}

.good-service-block__item:nth-child(2n) {
  padding-left: 12px;
}

.good-service-block__item-head {
  display: flex;
  align-items: center;
  margin-bottom: 1.14rem;
}

.good-service-block__item-img {
  width: 4rem;
  margin-right: 1.14rem;
}

.good-service-block__item-img img {
  min-width: 4rem;
  display: block;
}

.good-service-block__item-title {
  font-weight: 500;
  font-size: 1.5rem;
}

.good-service-block__item-text {
  font-size: 1.5rem;
  line-height: 148%;
}

@media (max-width: 639px) {
  .good-service-block {
    background: url(/assets/static/pages/oplata.v3/img/bgGoodServicePromoMob.jpg), #3c3c3b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .good-service-block__item {
    width: 100%;
    /*    margin-bottom: 3rem;*/
  }

  .good-service-block__item:nth-child(2n+1) {
    padding-right: 0;
  }

  .good-service-block__item:nth-child(2n) {
    padding-left: 0;
  }

  .good-service-block__item-head {
    margin-bottom: 2rem;
  }

  .good-service-block__item-img {
    width: 6rem;
    margin-right: 2rem;
  }

  .good-service-block__item-img img {
    min-width: 6rem;
  }

  .good-service-block__item-title {
    font-size: 2.25rem;
  }

  .good-service-block__item-text {
    font-size: 2.25rem;
  }

}

.map-stand {
display:none;
height: 100%;
}
.map-stand iframe{
height: 100%;
min-height: 647px;
width: 100%;
}
.map-stand.active {
display:block;
}