@charset "utf-8";
/* CSS Document */

@font-face {
font-family: 'Futura Light';
src: url('FuturaLightC.eot');
src: url('FuturaLightC.eot?#iefix') format('embedded-opentype'),
url('FuturaLightC.woff') format('woff'),
url('FuturaLightC.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Futura Book';
src: url('FuturaBookC.eot');
src: url('FuturaBookC.eot?#iefix') format('embedded-opentype'),
url('FuturaBookC.woff') format('woff'),
url('FuturaBookC.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Futura Medium';
src: url('FuturaMediumC.eot');
src: url('FuturaMediumC.eot?#iefix') format('embedded-opentype'),
url('FuturaMediumC.woff') format('woff'),
url('FuturaMediumC.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Futura Demi';
src: url('FuturaDemiC.eot');
src: url('FuturaDemiC.eot?#iefix') format('embedded-opentype'),
url('FuturaDemiC.woff') format('woff'),
url('FuturaDemiC.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}


@font-face {
font-family: 'Mont-HeavyDEMO';
src: url('Mont-HeavyDEMO.eot');
src: url('Mont-HeavyDEMO.eot?#iefix') format('embedded-opentype'),
url('Mont-HeavyDEMO.woff') format('woff'),
url('Mont-HeavyDEMO.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}





/* кнопка закрытия окна */
.modal .btn-close {
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    position: absolute;
    right: 20px;
    top: 20px;
}
.modal .btn-close:hover {
    color: #fff;
}
/* слой затемнения */
.modal-wrap:before {
    content: "";
    display: none;
    background: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
}
.modal-overlay {
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 102;
}
/* активация слоя затемнения и модального блока */
.modal-open:checked ~ .modal-wrap:before,
.modal-open:checked ~ .modal-wrap .modal-overlay {
    display: block;
}
.modal-open:checked ~ .modal-wrap .modal-dialog {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: 20%;
}
/* элементы модального окна */
.modal-dialog {
    background: #34343f;
    border: none;
    border-radius: 5px;
    position: fixed;
    width: 80%;
    max-width: 500px;
    left: 50%;
    top: -100%;
   
    z-index: 103;
}
.modal-body {
  padding: 20px;
}
.modal-body p {
    margin: 0;
}
.modal-header,
.modal-footer {
    padding: 50px 50px;
}
.modal-header {
    border-bottom: #eaeaea solid 0px;
}
.modal-header h2 {
    font-size: 20px;
    margin: 0;
}
.modal-footer {
    border-top: #fff solid 1px;
    text-align: right;
}
/* адаптивные картинки в модальном блоке */
.modal-body img { 
    max-width: 100%;
    height: auto;
}

