
#btnOrderNow:hover{
    cursor: pointer;
}

.overlay-main {
    /*--OVERLEY--*/
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;

    /*--CONTAINER--*/
    .overlay-container {
        width: 1100px;
        /* height: 576px; */
        border-radius: 16px;
        background-color: #FFFFFF;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
    
        .overlay-close {
            position: absolute;
            top: 2%;
            right: 2%;

            width: 72px;
            height: 72px;
            padding: 0px;
            background-color: #FFF;

            @media screen and (max-width: 675px){
                width: 32px;
                height: 32px;

                > svg {
                    width: 32px;
                    height: 32px;
                }
            }
            
        }

        .overlay-content {
            width: 827px;
            /* height: 456px; */
            margin: 60px 137px;
    
            display: flex;
            flex-direction: column;
    
            & h2 {
                text-align: center;
                font-size: 35px;
                font-weight: 600;
                font-family: Inter;
                line-height: 90px;
                color: #003AAA;
            }
    
            & p {
                text-align: center;
                font-size: 20px;
                font-weight: 400;
                font-family: Inter;
                line-height: 25px;
            }
    

            .overlay-form {
                display: flex;
    
                > div > form {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-around;
                    gap: 10px;
    
                    .overlay-input {
                        width: 400px;
                        height: 60px;
                        padding: 10px;
                        border-radius: 10px;
                        box-shadow: 6px 17px 25px 0px #ACACAC80;
                    }
    
                    .btn-send-overlay {
                        width: 235px;
                        height: 66px;
                        background-color: #003AAA;
                        color: #FFF;
                        margin-left: 74px;
                        padding: 10px;
                        border-radius: 10px;
    
                        font-size: 25px;
                        font-weight: 600;
                        font-family: Inter;

                        &:hover {
                            cursor: pointer;
                        }
                    }
                }
                
            }
    
        }
    
        /*--RESPONSIVE*/
        @media screen and (max-width: 675px) {
            width: 350px;
            height: 725px;

            .overlay-content {
                width: 340px;
                margin: 56px 8px 0 8px;

                & h2 {
                    text-align: center;
                    font-size: 20px;
                    font-weight: 600;
                    font-family: Inter;
                    line-height: 30px;
                    color: #003AAA;
                }
        
                & p {
                    text-align: center;
                    font-size: 12px;
                    font-weight: 400;
                    font-family: Inter;
                    line-height: 25px;
                }

                .overlay-form {
                    display: flex;
        
                    > div > form {
                        display: flex;
                        gap: 0px;
                        margin-top: 38px;

                        .overlay-input {
                            width: 292px;
                            height: 45px;
                        }
        
                        .btn-send-overlay {
                           width: 170px;
                           height: 55px;
                           margin-top: 50px;
                        }
                    }
                    
                }
            }
        }
    }
}


.display {
    display: block;
}

.wpcf7-not-valid-tip{
    font-size: 14px;
}