/* Pop up */
.custom-popup {
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: opacity .25s ease-out;
    -moz-transition: opacity .25s ease-out;
    -ms-transition: opacity .25s ease-out;
    -o-transition: opacity .25s ease-out;
    transition: opacity .25s ease-out;
    position: fixed;
    opacity: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
	background: rgba(15, 21, 33, 0.89);
	overflow-y: scroll;
}
#custom-popup-cont.active .custom-popup {
    opacity: 1;
}
.popup-overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 1;
    z-index: 998;
}
.popup-content {
    display: block;
    position: absolute;
    z-index: 999;
    width: 100%;
    max-height: 100%;
    padding: 0;
    text-align: center;
    overflow: visible;
    box-sizing: border-box;
    transform: translate(0,-50%);
    top: 50%;
}
.popup-content-inner {
	display: inline-block;
    background: #fff;
    text-align: center;
    z-index: 999;
    transform-style: preserve-3d;
    transform: rotateY(90deg);
    transition: transform 1s ease-in-out;
	margin: 4% auto;
    max-width: 500px;
}
#custom-popup-cont.active .popup-content-inner {
    transform: rotateY(0)!important;
}
.popup-close-btn {
    color: #6249ca;
    display: block;
    text-decoration: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Proxima_Nova_Bold';
    margin: 15px 0 0;
    font-style: italic;
}
.popup-close {
    position: absolute;
    right: 3%;
    top: 3%;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    background: rgb(32, 38, 49);
    color: rgb(137, 148, 176);
    text-align: center;
    line-height: 26px;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    font-family: Verdana, Arial, San-serif;
    cursor: pointer;
    z-index: 9999;
}
.popup-content-overlay {
    background-color: rgb(26, 188, 156);
    opacity: 0.905926;
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.popup-content-main {
    padding: 40px 70px;
}
.popup-content-main h3 {
    color: rgb(40, 50, 78);
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    margin: 0 0 10px;
    font-weight: 400;
	line-height: 1.2;
}
.popup-content-main p {
    color: rgb(108, 122, 137);
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    margin: 0 0 0.5em;
	line-height: 1.2;
}
.popup-content-main form {
    padding: 13px 0;
}
.popup-content-main .hbspt-form select, 
.popup-content-main input[type="text"], 
.popup-content-main input[type="email"] {
    font-style: normal;
    padding: 11px 0px 9px 10px;
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    outline-color: transparent;
    outline-style: none;
    -moz-osx-font-smoothing: grayscale;
    color: #2F2F2F;
    border-radius: 3px;
    background: #FFF;
    font-weight: 400;
    border: 1px solid #DBDBDB;
    margin: 0px;
    margin-bottom: 10px;
    font-family: Open Sans, Helvetica, Arial, sans-serif;
    line-height: 1.5em;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    height: initial;
}
.hbspt-form input[type="submit"], 
input[type="submit"] {
    outline-color: transparent;
    outline-style: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 0px;
    border: 0px !important;
    margin-bottom: 15px;
    max-width: initial;
    padding: 10px 16px;
    font-style: normal;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    background: rgb(98, 73, 202) !important;
    color: rgb(255, 255, 255);
    display: block;
    width: 100%;
    text-transform: uppercase;
    height: 42px;
    font-size: 14px;
    box-shadow: none !important;
}
ul.hs-error-msgs.inputs-list label {
    color: red;
}
.hbspt-form label {
    color: rgb(40, 50, 78) !important;
    font-size: 15px !important;
    font-family: "Open Sans", sans-serif !important;
    padding: 0 0 6px;
    font-weight: 400 !important;
    line-height: 1.2 !important;
}
.hbspt-form form {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
	width: 350px;
}
