.formcotizar {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
}

.cerrarbg {
    position: absolute;
    background: rgba(202, 169, 198, .9);
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    cursor: pointer;
}

.contform {
    max-width: 750px;
    background-color: #fff;
    margin: auto;
    left: 0;
    right: 0;
    z-index: 2;
    position: relative;
    padding: 35px;
    border-radius: 25px;
    box-sizing: border-box;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cerrar1 {
    position: absolute;
    z-index: 9;
    right: 20px;
    top: 20px;
    background-color: #44522d;
    border: solid 2px #44522d;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100px;
    cursor: pointer;
    transition: all ease-out 0.5s;
    -webkit-transition: all ease-out 0.5s;
    -moz-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    -ms-transition: all ease-out 0.5s;
}

.icon_sucess {
    text-align: center;
    color: #28bb72;
    font-size: 72px;
    margin-top: 35px;
}

.tituloform {
    font-family: 'Assistant', Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 20px;
    color: #44522d;
}

.content_response {
    text-align: center;
    margin-bottom: 25px;
}

.footer_response {
    display: block;
    text-align: center;
    margin-bottom: 35px;
}

@media (max-width: 767px) {
    .contform {
        width: 500px;
    }
}

@media (max-width: 600px) {
    .contform {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .contform {
        padding: 20px;
    }
    .cerrar1 {
        width: 30px;
        height: 30px;
        line-height: 30px;
        right: 10px;
        top: 10px;
        font-size: 12px;
    }
}