
/*.blur{*/
    /*-webkit-filter: blur(5px);*/
    /*-moz-filter: blur(5px);*/
    /*-o-filter: blur(5px);*/
    /*-ms-filter: blur(5px);*/
    /*filter: blur(5px);*/
/*}*/

/*a.btn{*/
    /*width:150px;*/
    /*display:block;*/
    /*margin:-25px 0 0 -75px;*/
    /*padding:1em 0;*/
    /*position:absolute;*/
    /*top:50%; left:50%;*/
    /*font:1.125em 'Arial', sans-serif;*/
    /*font-weight:700;*/
    /*text-align:center;*/
    /*text-decoration:none;*/
    /*color:#fff;*/
    /*border-radius:5px;*/
    /*background:rgba(217,67,86,1);*/
/*}*/

.modal-wrapper{
    width:100%;
    height:100%;
    position:fixed;
    top:0; left:0;
    /*background:rgba(255,257,153,0.75);*/
    background: rgba(22, 22, 23, 0.47);
    visibility:hidden;
    opacity:0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.modal-wrapper.open{
    opacity:1;
    visibility:visible;
}

@media only screen and (max-device-width:480px){
    /* styles for mobile browsers smaller than 480px; (iPhone) */
    .modal{
        width: 95%;
        height: auto;
        display: block;
        position: relative;
        top: 200px;
        margin-left: auto;
        margin-right: auto;
        background: #fff;
        opacity: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
}
@media only screen and (min-device-width:480px) {
    .modal {
        width: 50%;
        height: auto;
        display: block;
        margin: 50% 0 0 -300px;
        position: relative;
        top: 50%;
        left: 50%;
        background: #fff;
        opacity: 0;
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
    }
}

.modal-wrapper.open .modal{
    margin-top:-200px;
    opacity:1;
}

.head{
    width:100%;
    height:32px;
    padding:1.5em 5%;
    overflow:hidden;
    background:#01bce5;
}

.btn-close{
    width:32px;
    height:32px;
    display:block;
    float:right;
    margin-top: -10px;
}

.btn-close::before, .btn-close::after{
    content:'';
    width:32px;
    height:6px;
    display:block;
    background:#fff;
}

.btn-close::before{
    margin-top:12px;
    -webkit-transform:rotate(45deg);
    -moz-transform:rotate(45deg);
    -o-transform:rotate(45deg);
    transform:rotate(45deg);
}

.btn-close::after{
    margin-top:-6px;
    -webkit-transform:rotate(-45deg);
    -moz-transform:rotate(-45deg);
    -o-transform:rotate(-45deg);
    transform:rotate(-45deg);
}

.content{
    padding:5%;
    padding-top: 0;
}