/*
 * Created on : 09/03/2023, 15:57:15
 * Author: Jorge Valdez
 * Company: Virthuan Tecnologia
 *
 * Copyright (c) 2023 Virthuan
*/

.wc_contact_modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 101;
}

.wc_contact_modal_content{
    background: #fff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 20px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 50%;
    aspect-ratio: 16 / 9;
}

.wc_contact_modal_content .video_container {
    /*max-width: 900px;*/
    width: 100%;
    /*height: 100%;*/
    aspect-ratio: 16/9;
}

.wc_contact_close{
    position: absolute;
    right: 20px;
    top: 24px;
    padding: 0px 12px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-weight: bold;
    color: #333;
    background: #ececec;
    cursor: pointer;
    border: 0px solid #999;
    font-size: 1.5em;
    z-index: 999;
    text-align: center;
    transition: all ease 500ms;
}

.wc_contact_close:hover{
    background: #F45563;
    color: #fff;
    transition: background ease 500ms;
}

.wc_contact_modal_content header{
    margin-bottom: 20px;
    color: #555;
}

.wc_contact_modal_content h1{
    font-size: 1.5em;
    font-weight: 300;
    border-bottom: 1px solid #ccc;
    padding-bottom: 6px;
}

.wc_contact_modal_content h1 span{
    border-bottom: 5px solid #ccc;
    padding-bottom: 6px;
}

.wc_contact_modal_form{
    padding-bottom: 5px;
}

.wc_contact_modal_form label{
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.wc_contact_modal_legend{
    font-size: 0.875em;
    color: #888;
    font-variant: small-caps;
    display: block;
    margin-bottom: 5px;
}

.wc_contact_modal_form input,
.wc_contact_modal_form textarea{
    font-size: 0.875em;
    padding: 10px;
    border: 1px solid #ccc;
    resize: none;
}

.wc_contact_modal_button{
    text-align: center;
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
}

.wc_contact_modal_button .btn,
.wc_contact_modal_button img{
    display: inline-block;
    vertical-align: middle;
}

.wc_contact_modal_button .btn{
    padding: 10px 20px;
    font-size: 1em;
}

.wc_contact_modal_button img{
    margin-left: 10px;
    display: none;
}

.wc_contact_error{
    padding: 12px;
    background: #cf7171;
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.875em;
    font-weight: 400;
    display: none;
    text-align: center;
    text-shadow: 1px 1px 0 #713B3B;
}

.wc_contant_sended{
    text-align: center;
}

.wc_contant_sended .h2{
    font-size: 1.2em;
    font-weight: bold;
    color: #008B6F;
}

.wc_contant_sended .h2 span{
    display: inline-block;
    background: #008B6F;
    margin-bottom: 10px;
    font-size: 2em;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50%;
}

.wc_contant_sended p{
    margin-top: 15px;
}

/* Make it responsive */
@media (max-width: 991px) {
    .wc_contact_modal_content{
        width: 90%;
        padding: 10px;
    }
}