#popup_wrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    overflow: auto;
    position: fixed;
    background: rgba(49, 49, 49, .7);
    -webkit-animation: 2s fadein;
    -moz-animation: 2s fadein;
    -ms-animation: fadein 2s;
    -o-animation: 2s fadein;
    animation: 2s fadein;
    z-index: 1111
}

#popup_wrapper img#close {
    top: -12px;
    right: -12px;
    cursor: pointer;
    position: absolute
    
}

#popup_wrapper div#popupContact {
    width: 25%;
    position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%)
}

#popup_wrapper form {
    background: #fff;
    padding: 20px 30px;
    border-radius: 25px 0;
    border: 2px solid #cccccc24
}

#popup_wrapper p {
    font-size: 14px;
    margin-top: 20px
}

#popup_wrapper h2 {
    text-align: center;
    border-radius: 10px 10px 0 0
}

#popup_wrapper hr {
    border: 0;
    border-top: 1px solid #ccc
}

#popup_wrapper input[type=email],
#popup_wrapper input[type=text] {
    width: 100%;
    padding: 15px 10px 15px 30px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 5px;
    border: 1px solid #ccc
}

#popup_wrapper textarea {
    width: 100%;
    resize: none;
    height: 50px;
    padding: 10px 10px 10px 40px;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: inherit;
    border: 1px solid #ccc;
    background-repeat: no-repeat;
    background-position: 8px 7px;
/*    background-image: url('../images/msg.webp')*/
}

#popup_wrapper #submit {
    color: #fff;
    border: none;
    display: block;
    font-size: 16px;
    cursor: pointer;
    background: linear-gradient(90deg, #bd9548 17%, #b4852e 75%) !important;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 auto
}

/* #popup_wrapper span {
    color: #f30;
    font-weight: 900
} */

#popup_wrapper h2 {
    font-size: 30px;
    /* color: #bd9548 */
}

#popup_wrapper i#close {
    position: absolute;
    right: -20px;
    background: #bd9548;
    padding: 10px;
    top: -20px;
    color: #fff;
    border-radius: 7px 0
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-moz-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-ms-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-o-keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media screen and (max-width:767px) {

    #popup_wrapper div#popupContact {
        width: 90%
    }
}

@media screen and (max-width:360px) {

    #popup_wrapper input[type=email],
    #popup_wrapper input[type=text],
    #popup_wrapper textarea {
        width: 77%
    }
}

@media (min-width:768px) and (max-width:1023px) {

    #popup_wrapper input[type=email],
    #popup_wrapper input[type=text],
    #popup_wrapper textarea {
        width: 77%
    }

    #popup_wrapper div#popupContact {
        width: 50%
    }
}

@media (min-width:1024px) and (max-width:1279px) {

    #popup_wrapper div#popupContact{
        width: 35%
    }
}

@media (min-width:1280px) and (max-width:1439px) {

    #popup_wrapper div#popupContact {
        width: 28%
    }
}

@media (min-width:1920px) and (max-width:2000px) {

    #popup_wrapper div#popupContact {
        width: 20%
    }
}





/*  */
#popup_wrapper input[type=email], #popup_wrapper input[type=text] {
    color: #000 !important;
}