/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.win-pop-up {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 600ms;
    -o-transition: all 600ms;
    transition: all 600ms;
}

/* .win-pop-up:target {
    background: rgba(0,0,0,0.6);
    visibility: visible;
    opacity: 1;
} */

.win-pop-up.show {
    background: rgba(0,0,0,0.6);
    visibility: visible;
    opacity: 1;
}

.form {
    width: 90%;
    height: 400px;
    max-width: 700px;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background: #999;
    color: #fff;
    border-radius: 20px;
    padding: 15px;
}

.form h2 {
    font-size: 16px;
    font-weight: 400;
    padding: 20px 0 30px 0;
}

.form p {
    font-size: 10px;
    padding-bottom: 4px;
}

.form input {
    width: 100%;
    border: none;
    border-radius: 3px;
    font-size: 20px;
    margin-bottom: 9px;
}

.flex-popup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    padding: 10px 0;
}

.box-popup-1 {
    width: 10%;
}

.box-popup-2 {
    width: 90%;
}

.box-popup-2 a {
    color: #fff;
}

.box-popup-2 a:hover {
    color: #142AD5;
}

#boton {
    background: #142AD5;
    color: #fff;
    padding: 10px 0;
    font-family: ubuntu, sans-serif;
    font-size: 16px;
    visibility: hidden;
}

.close-popup {
    width: 40px;
    height: 40px;
    position: absolute;
    right: -10px;
    top: -20px;
    padding: 15px;
    background: #142AD5;
    color: #fff;
    border-radius: 50%;
    line-height: 10px;
    border: 0;
}

@media (min-width:768px) {
    
    .form {
        padding: 40px ;
    }
    
    .form h2 {
        font-size: 22px;
        padding: 0px 0 30px 0;
    }
    
    .flex-send {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding-top: 30px;
    }
    
    .box-send {
        width: 40%;
    }
}