@import "mobile/popup-contactus.css";

.popup-contactus {
    width: 980px;
    z-index: 99999;
    background: #0f1935;
    position: fixed;
    top: 4%;
    left: 25%;
}

.popup-contactus.inactive {
    display: none;
}


.popup-contactus.active {
    display: block;
}

.popup-contactus.active .image {
    height: 240px;
    background-image: var(--background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 25%;
    width: 100% !important;
}

.popup-contactus.active .image .close {
    padding: 5px 10px;
    margin-right: 30px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 100%;
    float: right;
    background: white;
}

.popup-contactus.active .image .close img {
    width: 24px;
    height: 24px;
}

.popup-contactus.active .form {
    padding: 30px 100px 50px 100px;
    z-index: 9999;
    width: 100%;
}

.popup-contactus.active .form .title {
    font-size: 48px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.42;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}

.popup-contactus.active .form .description {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: left;
    color: #fff;
}


.popup-contactus.active .form form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 60px;
    flex-direction: column;
}

.popup-contactus.active .form form .err {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.popup-contactus.active .form form .input {
    margin: unset;
}

.popup-contactus.active .form form .inputs-wrapper {
    display: flex;
}

.popup-contactus.active .form form .inputs-wrapper .input-wrapper {
    width: 100%;
}

.popup-contactus.active .form form .popup-name {
    width: 95%;
    border: unset;
    background: transparent;
    color: white;
    border-bottom: 2px solid white;
}

.popup-contactus.active .form form .popup-email {
    width: 95%;
    border: unset;
    padding-left: 15px;

    background: transparent;
    color: white;

    border-bottom: 2px solid white;

}

.popup-contactus.active .form form .popup-textarea {
    width: 100%;
    border: unset;
    margin-top: 20px;
    padding-top: 35px;
    padding-left: 15px;
    background: transparent;
    color: white;
    border-bottom: 2px solid white;
}

.popup-contactus.active .form form .popup-submit {
    margin-top: 20px;
    width: 100%;
}

.popup-contactus.active .form form .popup-submit button,
.popup-contactus.active .form form .popup-submit input {
    float: right;
    border-radius: 40px;
    width: fit-content;
    color: #0f1935;
    transition: all .3s ease-in-out;
}

.popup-contactus.active .form form .popup-submit button.active,
.popup-contactus.active .form form .popup-submit input.active {
    float: right;
    border-radius: 40px;
    border: unset !important;
    width: fit-content;
    color: white;
    background: rgb(95, 183, 240);
    transition: all .3s ease-in-out;
}

.popup-contactus.active .form form .popup-submit button.active:hover,
.popup-contactus.active .form form .popup-submit input.active:hover {
    color: black;
    background: white;
    border-color: black;
    transition: all .3s ease-in-out;
}

/*Focus*/

.popup-contactus.active .form form .popup-name:focus {
    border-bottom: 2px solid #21c9d9;
    outline: none;

}

.popup-contactus.active .form form .popup-email:focus {
    border-bottom: 2px solid #21c9d9;
    outline: none;

}

.popup-contactus.active .form form .popup-textarea:focus {
    border-bottom: 2px solid #21c9d9;
    outline: none;
}

/*End Focus*/

/*Placeholders*/
.popup-contactus.active .form form .popup-textarea::placeholder {
    color: white;

}

.popup-contactus.active .form form .popup-name::placeholder {
    padding-left: 15px;
    color: white;

}

.popup-contactus.active .form form .popup-email::placeholder {
    padding-left: 15px;
    color: white;

}



button:disabled,
input[type=submit]:disabled {
    color: #0f1935;
    border: unset !important;

}