/*
	Agency Popup
*/
#agency-popup {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000000000;
    background-color: rgba(43, 43, 43, 0.93);
    transition: all 0.8s;
    opacity: 0;
    visibility: hidden;
    display: block;
}

#agency-popup.open {
    opacity: 1;
    visibility: visible;
    top: 0;
}

#agency-popup div.content {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    background-image: url(/wp-content/themes/angelsense/images/b2b/agency-popup.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    width: 898px;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    padding: 4em 0em;
}

#agency-popup div.content div.wrap {
    width: 72%;
}

#agency-popup div.content div.wrap h2 {
    text-transform: uppercase;
    font-size: 27px;
    color: #292929;
    font-weight: 700;
    line-height: 32px;
}

#agency-popup div.content div.wrap h3 {
    text-transform: uppercase;
    font-size: 22px;
    color: #292929;
    font-weight: 300;
}

#agency-popup div.content div.wrap p {
    font-size: 18px;
    color: gray;
    line-height: 22px;
    margin: 0.8em 0em 1.2em 0em;
}

#agency-popup div.content div.wrap div.form {
    display: block;
    margin-top: 1em;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
}

#agency-sign {
    position: relative;
}

#agency-sign .response {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(18, 45, 56);
    color: white;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
}

#agency-sign.error .response {
    visibility: visible;
    opacity: 1;
}

#agency-sign > .response span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 22px;
    width: 100%;
    color: white;
    font-weight: 600;
}

#agency-popup div.content div.wrap div.form label {
    display: block;
    margin-bottom: 0.5em;
}

#agency-popup div.content div.wrap div.form label textarea,
#agency-popup div.content div.wrap div.form label input {
    width: 100%;
    padding: 0.4em 0.5em;
    border-radius: 4px;
    border: none;
    border: 1px solid #e6e6e6;
}

#agency-popup input#popup-promo {
    display: inline-block;
    width: 20px;
    position: relative;
    top: -2px;
}

#agency-popup div.content div.wrap div.form label textarea {
    height: 70px;
    resize: none;
}

#agency-popup div.content div.wrap div.form input[type="submit"] {
    background-color: #f34022;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 1.4rem;
    padding: 0.5em 1em;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 400;
    border: none;
    -webkit-appearance: none;
    width: 100%;
    margin-bottom: 0.5em;
}

#agency-popup a.remove {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    width: 1em;
    height: 1em;
    z-index: 100000;
    background-color: transparent;
    background-image: url(/wp-content/themes/angelsense/images/b2b/X_close.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 0.7em;
}

@media only screen and (max-height: 700px) {
    #agency-popup div.content {
        -webkit-transform: translate(-50%, -50%) scale(0.9);
        transform: translate(-50%, -50%) scale(0.9);
    }
}