@charset "UTF-8";
body,
h1, h2, h3, h4, h5, h6,
blockquote, dl, dd, figure, ol, ul, p, pre {
  margin: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

html, body {
  height: 100%;
}

.modal-window {
  width: 800px;
  height: 38%;
  overflow: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: -100%;
  bottom: 0;
  z-index: -1;
  margin: 0 auto;
  padding: 40px 30px;
  transition: 0.4s;
  background: white;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  opacity: 0;
}

.modal .modal-caption{
font-size: 18px;
font-weight: bold;
text-align: center;
 }

.modal .modal-list{
overflow: hidden;
 }

.modal .modal-list li{
margin-right: 2%;
margin-bottom: 10px;
width: 48%;
float: left;
 }


.modal .modal-list li:nth-child(even){
margin-right: 0;
 }

.modal .modal-list li a{
margin: 18px auto 0;
display: block;
font-size: 16px;
font-weight: bold;
padding: 15px 0 !important;
width: 100% !important;
background-image: none !important;
background-color: #00aae6 !important;
 }

.modal .modal-list li a span{
background: url("../images/icons/icon_arrow_02.svg") no-repeat 0 50%/7px 12px;
padding-left: 15px;
margin-left: 6px;
position: relative;
color: #fff;
}

@media screen and (max-width: 830px) {
  .modal-window {
    width: 94%;
    height: 47%;
    padding: 20px;
  }
}
.modal-window.block {
  top: 20%;
  z-index: 99;
  margin: auto;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1;
}
.modal-window .close {
  width: 200px;
  text-align: center;
  cursor: pointer;
  margin: 20px auto 10px auto;
  padding: 10px 0;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #666;
  color: #fff;
}
.modal-window .close:hover {
  color: white;
  background: #666;
}

#modal-overlay {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: -1;
  transition: 0.4s;
  background: rgba(0, 0, 0, 0.5);
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  opacity: 0;
}
#modal-overlay.block {
  z-index: 9;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  opacity: 1;
}
