/*
 *animations keyframes
 */
@-webkit-keyframes width_none {
  0% {
    width: 20px; }
  100% {
    width: 0; } }
@keyframes width_none {
  0% {
    width: 20px; }
  100% {
    width: 0; } }

@-webkit-keyframes cont_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); }
  50% {
    opacity: .3;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes cont_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px); }
  50% {
    opacity: .3;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@-webkit-keyframes cont_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px); }
  50% {
    opacity: .3;
    -webkit-transform: translateX(-35px);
            transform: translateX(-35px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@keyframes cont_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px); }
  50% {
    opacity: .3;
    -webkit-transform: translateX(-35px);
            transform: translateX(-35px); }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@-webkit-keyframes but_rotate {
  0% {
    -webkit-transform: scale(0) rotateZ(0deg);
            transform: scale(0) rotateZ(0deg); }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg); } }

@keyframes but_rotate {
  0% {
    -webkit-transform: scale(0) rotateZ(0deg);
            transform: scale(0) rotateZ(0deg); }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg); } }

@-webkit-keyframes but_rotate_desc {
  0% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg); }
  100% {
    -webkit-transform: scale(0) rotateZ(0deg);
            transform: scale(0) rotateZ(0deg); } }

@keyframes but_rotate_desc {
  0% {
    -webkit-transform: scale(1) rotateZ(360deg);
            transform: scale(1) rotateZ(360deg); }
  100% {
    -webkit-transform: scale(0) rotateZ(0deg);
            transform: scale(0) rotateZ(0deg); } }

.popup-map_block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: #191919;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2vw;
  overflow: hidden;
  z-index: 99999;
  -webkit-transition: -webkit-transform .9s ease 1.3s;
  transition: -webkit-transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s, -webkit-transform .9s ease 1.3s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
  .popup-map_block:after {
    position: absolute;
    content: '';
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    background: #191919;
    z-index: 100;
    -webkit-transition: width .9s ease .3s;
    transition: width .9s ease .3s; }
  .popup-map_block .popup_close {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .popup-map_block.show {
    -webkit-transition: -webkit-transform .9s ease;
    transition: -webkit-transform .9s ease;
    transition: transform .9s ease;
    transition: transform .9s ease, -webkit-transform .9s ease;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
    .popup-map_block.show .popup_close {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: -webkit-transform .6s ease 1.8s;
      transition: -webkit-transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s, -webkit-transform .6s ease 1.8s; }
    .popup-map_block.show:after {
      width: 0;
      -webkit-transition: width .9s ease 1s;
      transition: width .9s ease 1s; }
  .popup-map_block .popup-map_position h3 {
    font-family: "AGopt", sans-serif;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.2vw;
    line-height: 2vw;
    margin: 0;
    padding-bottom: 2vw; }

.map_adress {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 99;
  width: 29.3vw;
  width: -webkit-calc(31.2vw - 22px);
  width: calc(31.2vw - 22px);
  height: 3vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 4vw;
  padding-right: 1vw;
  background: #0d0d0d url("../img/googlemap/icon-pos.svg") 5% center/auto 60% no-repeat;
  color: #fff;
  font-family: "AGopt", sans-serif;
  font-size: 1vw; }

.popup-map_container {
  height: 100%;
  height: -webkit-calc(100% - 4vw);
  height: calc(100% - 4vw);
  position: relative; }

.popup-map {
  height: 100%;
  width: 100%; }
  .popup-map > div {
    background: none !important; }

/*
 * popup form
 */
.popup_form_block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #0d0d0d;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform .9s ease 1.3s;
  transition: -webkit-transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s, -webkit-transform .9s ease 1.3s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
  .popup_form_block:after {
    position: absolute;
    content: '';
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    background: #191919;
    z-index: 100;
    -webkit-transition: width .9s ease .3s;
    transition: width .9s ease .3s; }
  .popup_form_block .popup_close {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .popup_form_block.show {
    -webkit-transition: -webkit-transform .9s ease;
    transition: -webkit-transform .9s ease;
    transition: transform .9s ease;
    transition: transform .9s ease, -webkit-transform .9s ease;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
    .popup_form_block.show .popup_close {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: -webkit-transform .6s ease 1.8s;
      transition: -webkit-transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s, -webkit-transform .6s ease 1.8s; }
    .popup_form_block.show:after {
      width: 0;
      -webkit-transition: width .9s ease 1s;
      transition: width .9s ease 1s; }

.popup_form_container {
  display: inline-block;
  background: #191919;
  width: 100%;
  max-width: 32vw;
  height: 36.5vw;
  margin: auto; }

.popup_form_nav {
  overflow: hidden; }

.popup_form_check {
  height: 4.4vw;
  line-height: 4.4vw;
  color: #fff;
  font-family: "AGopt", sans-serif;
  text-transform: uppercase;
  font-size: 1.15vw;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  background: #4d4d4d; }
  .popup_form_check.active {
    background: none; }

.popup_form_check.messages {
  width: 55%;
  float: left; }

.popup_form_check.calls {
  width: 45%;
  float: right; }

.popup_form_wrap {
  padding: 3vw;
  display: none; }
  .popup_form_wrap.message_form {
    display: block; }
  .popup_form_wrap *::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
    line-height: 4vw; }
  .popup_form_wrap *:-moz-placeholder {
    color: #fff;
    opacity: 1;
    line-height: 4vw; }
  .popup_form_wrap *::-moz-placeholder {
    color: #fff;
    opacity: 1;
    line-height: 4vw; }
  .popup_form_wrap *:-ms-input-placeholder {
    opacity: 1;
    line-height: 4vw; }
  .popup_form_wrap input[type=text], .popup_form_wrap textarea {
    font-family: "AGopt", sans-serif;
    font-size: 1.15vw;
    color: #fff;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 2vw;
    background: none;
    height: 4vw;
    margin-bottom: 2vw;
    border: none;
    -webkit-border-radius: 0;
            border-radius: 0;
    border-bottom: 1px solid #808184; }
  .popup_form_wrap textarea {
    resize: none;
    margin-bottom: 4vw;
    overflow: hidden;
    line-height: 1.3; }
  .popup_form_wrap select {
    position: relative;
    width: 100%;
    height: 4vw;
    font-family: "AGopt", sans-serif;
    color: #fff;
    font-size: 1.15vw;
    line-height: 4vw;
    padding: 0 3vw 0 2vw;
    margin-bottom: 4vw;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    -webkit-border-radius: 0;
            border-radius: 0;
    background: url("../img/icon-select.svg") 95% center/auto 25% no-repeat;
    border: none;
    border-bottom: 1px solid #808184; }
    .popup_form_wrap select option {
      background: #191919;
      padding: 1vw 2vw; }
    .popup_form_wrap select option[disabled] {
      display: none; }

*::-ms-expand {
  display: none; }

.popup_form_button {
  font-family: "AGopt", sans-serif;
  font-size: 1.15vw;
  background: none;
  width: 100%;
  border: 1px solid #808184;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.15vw;
  font-weight: bold;
  line-height: 4vw;
  -webkit-transition: all .4s ease;
  transition: all .4s ease; }
  .popup_form_button:hover {
    background: #4d4d4d; }

/*
 * popup plan
 */
.popup_plan_block {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6vw;
  z-index: 99999;
  -webkit-transition: -webkit-transform .9s ease 1.3s;
  transition: -webkit-transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s, -webkit-transform .9s ease 1.3s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
  .popup_plan_block:after {
    position: absolute;
    content: '';
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    background: #191919;
    z-index: 100;
    -webkit-transition: width .9s ease .3s;
    transition: width .9s ease .3s; }
  .popup_plan_block .popup_close {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .popup_plan_block.show {
    -webkit-transition: -webkit-transform .9s ease;
    transition: -webkit-transform .9s ease;
    transition: transform .9s ease;
    transition: transform .9s ease, -webkit-transform .9s ease;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
    .popup_plan_block.show .popup_close {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: -webkit-transform .6s ease 1.8s;
      transition: -webkit-transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s, -webkit-transform .6s ease 1.8s; }
    .popup_plan_block.show:after {
      width: 0;
      -webkit-transition: width .9s ease 1s;
      transition: width .9s ease 1s; }
  .popup_plan_block .plan_text_part {
    width: 50%;
    float: left;
    height: 100%;
    position: relative; }
  .popup_plan_block .plan_name {
    font-family: "AGopt", sans-serif;
    font-size: 2.2vw;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 2vw; }
  .popup_plan_block .plan_table {
    width: 18vw; }
    .popup_plan_block .plan_table td {
      width: 50%;
      font-family: "AGopt", sans-serif;
      font-size: 1vw;
      color: #000;
      line-height: 1.6; }
  .popup_plan_block .plan_nav {
    position: absolute;
    bottom: 0;
    left: 0; }
    .popup_plan_block .plan_nav h4 {
      font-family: "AGopt", sans-serif;
      font-size: 1.1vw;
      color: #000;
      text-transform: uppercase;
      margin-bottom: 1.5vw; }
  .popup_plan_block .plun_button_wrap {
    overflow: hidden; }
  .popup_plan_block .plun_button {
    display: inline-block;
    overflow: hidden;
    float: left;
    width: 5vw;
    height: 5vw;
    position: relative;
    background: #f2f2f2;
    text-decoration: none;
    color: #808184;
    text-align: center;
    line-height: 5vw;
    font-family: "AGopt", sans-serif;
    font-size: 2vw;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-transition: font-size .3s ease;
    transition: font-size .3s ease; }
    .popup_plan_block .plun_button:hover {
      font-size: 3vw; }
    .popup_plan_block .plun_button span {
      position: relative;
      z-index: 2;
      display: block;
      width: 100%;
      height: 100%; }
    .popup_plan_block .plun_button:before {
      display: block;
      content: '';
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: #191919;
      -webkit-animation-name: but_rotate_desc;
              animation-name: but_rotate_desc;
      -webkit-animation-duration: 600ms;
              animation-duration: 600ms;
      -webkit-animation-timing-function: linear;
              animation-timing-function: linear;
      -webkit-animation-fill-mode: forwards;
              animation-fill-mode: forwards; }
    .popup_plan_block .plun_button.active {
      font-size: 2vw; }
      .popup_plan_block .plun_button.active span {
        color: #fff; }
      .popup_plan_block .plun_button.active:before {
        -webkit-animation-name: but_rotate;
                animation-name: but_rotate;
        -webkit-animation-duration: 600ms;
                animation-duration: 600ms;
        -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
        -webkit-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }

.plan_img_part {
  width: 50%;
  height: 100%;
  float: right;
  overflow: hidden; }

.plan_img_wrap {
  height: 100%;
  width: 100%;
  display: none; }
  .plan_img_wrap.show {
    display: block; }

.plan_img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .plan_img img {
    margin: auto;
    max-width: 100%;
    max-height: 100%; }

.popup_close {
  min-width: 30px;
  min-height: 30px;
  width: 2.56vw;
  height: 2.56vw;
  border: none;
  background: none;
  position: absolute;
  right: 2vw;
  top: 1.8vw;
  padding: 0;
  cursor: pointer;
  z-index: 10; }
  .popup_close:before, .popup_close:after {
    display: block;
    content: '';
    background: #808184;
    width: 100%;
    height: 1px;
    position: absolute; }
  .popup_close:before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
  .popup_close:after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .popup_close:hover:before, .popup_close:hover:after {
    height: 2px; }
    
.show_popup_police {
  cursor: pointer;
}
.popup_police {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  right: 0;
  background: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 99999;
  -webkit-transition: -webkit-transform .9s ease 1.3s;
  transition: -webkit-transform .9s ease 1.3s;
  -o-transition: transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s;
  transition: transform .9s ease 1.3s, -webkit-transform .9s ease 1.3s;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  font-family: "AGopt", sans-serif; }
  .popup_police * {
    font-family: inherit; }
  .popup_police:after {
    position: absolute;
    content: '';
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    background: #191919;
    z-index: 100;
    -webkit-transition: width .9s ease .3s;
    -o-transition: width .9s ease .3s;
    transition: width .9s ease .3s; }
  .popup_police .popup_close {
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .popup_police.show {
    -webkit-transition: -webkit-transform .9s ease;
    transition: -webkit-transform .9s ease;
    -o-transition: transform .9s ease;
    transition: transform .9s ease;
    transition: transform .9s ease, -webkit-transform .9s ease;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0); }
    .popup_police.show .popup_close {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: -webkit-transform .6s ease 1.8s;
      transition: -webkit-transform .6s ease 1.8s;
      -o-transition: transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s;
      transition: transform .6s ease 1.8s, -webkit-transform .6s ease 1.8s; }
    .popup_police.show:after {
      width: 0;
      -webkit-transition: width .9s ease 1s;
      -o-transition: width .9s ease 1s;
      transition: width .9s ease 1s; }
  .popup_police .popup_pol_container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative; }
    .popup_police .popup_pol_container:before {
      display: block;
      content: '';
      top: 0;
      left: 0;
      right: 25px;
      height: 4.6vw;
      position: absolute;
      background: #000;
      pointer-events: none; }
    .popup_police .popup_pol_container:after {
      display: block;
      content: '';
      bottom: 0;
      left: 0;
      right: 25px;
      height: 4.6vw;
      position: absolute;
      background: #000;
      pointer-events: none; }
  .popup_police .popup_pol_scroll {
    padding: 0 4.6vw;
    overflow-y: auto;
    height: 100%;
    width: 100%; }
  .popup_police .popup_pol_content {
    margin: 4.6vw 0;
    color: #fff;
    line-height: 1.4; }
    .popup_police .popup_pol_content h3, .popup_police .popup_pol_content p, .popup_police .popup_pol_content li {
      font-size: 0.875vw;
      line-height: 1.8; }
    .popup_police .popup_pol_content h3 {
      font-size: 1vw;
      margin-bottom: 4vh;
      font-weight: bold;
      text-transform: uppercase;
      text-align: center; }
    .popup_police .popup_pol_content h4 {
      font-size: 1vw;
      margin-bottom: 2vh; }
    .popup_police .popup_pol_content p {
      margin-bottom: 5vh; }
    .popup_police .popup_pol_content ul {
      margin-bottom: 5vh; }
      .popup_police .popup_pol_content ul li {
        list-style-type: none;
        margin-bottom: 4vh; }
      .popup_police .popup_pol_content ul ul {
        padding-left: 1.4vw; }
        .popup_police .popup_pol_content ul ul li {
          margin-bottom: 2vh; }
          .popup_police .popup_pol_content ul ul li:last-child {
            margin-bottom: 0; }

@media (orientation: portrait) {
  .popup_plan_block {
    padding: 6vh; }
    .popup_plan_block .plan_text_part {
      width: 100%;
      float: none;
      height: 30%; }
    .popup_plan_block .plan_name {
      font-size: 2.2vh;
      margin-bottom: 2vh; }
    .popup_plan_block .plan_table {
      width: 18vh; }
      .popup_plan_block .plan_table td {
        font-size: 1vh; }
    .popup_plan_block .plan_nav {
      position: absolute;
      bottom: 2vh; }
      .popup_plan_block .plan_nav h4 {
        font-size: 1.1vh;
        margin-bottom: 1.5vh; }
    .popup_plan_block .plun_button {
      width: 5vh;
      height: 5vh;
      line-height: 5vh;
      font-size: 2vh; }
      .popup_plan_block .plun_button:hover {
        font-size: 3vh; }
      .popup_plan_block .plun_button.active {
        font-size: 2vh; }
  .plan_img_part {
    width: 100%;
    height: 70%;
    float: none; }
  .popup_close {
    right: 2vh;
    top: 1.8vh;
    width: 2.56vh;
    height: 2.56vh; }
  .popup-map_block {
    padding: 2vh; }
    .popup-map_block .popup-map_position h3 {
      font-size: 1.2vh;
      line-height: 2vh;
      padding-bottom: 2vh; }
  .map_adress {
    width: 29.3vh;
    width: -webkit-calc(31.2vh - 22px);
    width: calc(31.2vh - 22px);
    height: 3vh;
    padding-left: 4vh;
    padding-right: 1vh;
    font-size: 1vh; }
  .popup-map_container {
    height: -webkit-calc(100% - 4vh);
    height: calc(100% - 4vh); }
  .popup_police .popup_pol_container:before {
    height: 4.6vh; }
  .popup_police .popup_pol_container:after {
    height: 4.6vh; }
  .popup_police .popup_pol_scroll {
    padding: 0 4.6vh; }
  .popup_police .popup_pol_content {
    margin: 4.6vh 0; }
    .popup_police .popup_pol_content h3, .popup_police .popup_pol_content p, .popup_police .popup_pol_content li {
      font-size: 0.875vh; }
    .popup_police .popup_pol_content h3 {
      font-size: 1vh;
      margin-bottom: 4vw; }
    .popup_police .popup_pol_content h4 {
      font-size: 1vh;
      margin-bottom: 2vw; }
    .popup_police .popup_pol_content p {
      margin-bottom: 5vw; }
    .popup_police .popup_pol_content ul {
      margin-bottom: 5vw; }
      .popup_police .popup_pol_content ul li {
        margin-bottom: 4vw; }
      .popup_police .popup_pol_content ul ul {
        padding-left: 1.4vh; }
        .popup_police .popup_pol_content ul ul li {
          margin-bottom: 2vw; }
          .popup_police .popup_pol_content ul ul li:last-child {
            margin-bottom: 0; } }

@media (max-width: 1023px) {
  .popup_form_container {
    max-width: 320px;
    height: 360px; }
  .popup_form_check {
    height: 40px;
    line-height: 40px;
    font-size: 12px; }
  .popup_form_wrap {
    padding: 30px; }
    .popup_form_wrap *::-webkit-input-placeholder {
      opacity: 1;
      line-height: 40px; }
    .popup_form_wrap *:-moz-placeholder {
      opacity: 1;
      line-height: 40px; }
    .popup_form_wrap *::-moz-placeholder {
      opacity: 1;
      line-height: 40px; }
    .popup_form_wrap *:-ms-input-placeholder {
      opacity: 1;
      line-height: 40px; }
    .popup_form_wrap input[type=text], .popup_form_wrap textarea {
      font-size: 13px;
      padding: 0 15px;
      height: 40px;
      margin-bottom: 20px; }
    .popup_form_wrap textarea {
      margin-bottom: 40px; }
    .popup_form_wrap select {
      height: 40px;
      font-size: 13px;
      line-height: 40px;
      padding: 0 30px 0 20px;
      margin-bottom: 40px;
      background-position: 92% center; }
      .popup_form_wrap select option {
        line-height: 20px; }
  .popup_form_button {
    font-size: 13px;
    line-height: 40px; }
  .popup_plan_block {
    padding: 30px; }
    .popup_plan_block .plan_name {
      font-size: 24px;
      margin-bottom: 15px; }
    .popup_plan_block .plan_table {
      width: 100%;
      max-width: 300px; }
      .popup_plan_block .plan_table td {
        font-size: 12px;
        line-height: 1.3; }
    .popup_plan_block .plan_nav h4 {
      font-size: 14px;
      margin-bottom: 10px; }
    .popup_plan_block .plun_button {
      width: 46px;
      height: 46px;
      line-height: 46px;
      font-size: 20px; }
      .popup_plan_block .plun_button:hover {
        font-size: 25px; }
      .popup_plan_block .plun_button.active {
        font-size: 20px; }
  .popup-map_block {
    padding-top: 12px; }
    .popup-map_block .popup-map_position h3 {
      font-size: 14px;
      line-height: 30px;
      padding-bottom: 15px;
      padding-right: 50px; }
  .map_adress {
    min-width: 260px;
    min-height: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 40px;
    padding-right: 10px;
    background: #0d0d0d url("../img/googlemap/icon-pos.svg") 5% center/auto 60% no-repeat;
    font-size: 13px; }
  .popup-map_container {
    height: -webkit-calc(100% - 55px);
    height: calc(100% - 55px); }
  .popup_close {
    right: 10px;
    top: 10px; }
  .popup_police .popup_pol_container:before {
    height: 50px;
    right: 18px; }
  .popup_police .popup_pol_container:after {
    height: 25px;
    right: 18px; }
  .popup_police .popup_pol_scroll {
    padding: 0 25px; }
  .popup_police .popup_pol_content {
    margin: 50px 0 25px; }
    .popup_police .popup_pol_content p, .popup_police .popup_pol_content li {
      font-size: 11px; }
    .popup_police .popup_pol_content h3 {
      font-size: 12px;
      margin-bottom: 40px; }
    .popup_police .popup_pol_content h4 {
      font-size: 12px;
      margin-bottom: 15px; }
    .popup_police .popup_pol_content p {
      margin-bottom: 30px; }
    .popup_police .popup_pol_content ul {
      margin-bottom: 30px; }
      .popup_police .popup_pol_content ul li {
        margin-bottom: 30px; }
      .popup_police .popup_pol_content ul ul {
        padding-left: 15px; }
        .popup_police .popup_pol_content ul ul li {
          margin-bottom: 15px; }
          .popup_police .popup_pol_content ul ul li:last-child {
            margin-bottom: 0; } }

@media (max-height: 780px) and (orientation: portrait) {
  .popup_plan_block {
    overflow: auto; }
    .popup_plan_block .plan_text_part {
      height: auto;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      min-height: 200px;
      padding-bottom: 100px; }
  .plan_img_part {
    height: -webkit-calc(100% - 200px);
    height: calc(100% - 200px); } }

@media (max-width: 400px) {
  .popup_form_container {
    max-width: 300px; } }
