@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800&display=swap');

.offer-popup img{
	align-self: center;
	max-width: 100%;
	height: auto;
}
.offer-popup.flex,
.offer-popup .flex{
    display: flex;		
}
.offer-popup .inline-flex{
    display: inline-flex;		
}
.offer-popup .flex.wrap,
.offer-popup .inline-flex.wrap{
	flex-wrap: wrap;
}
.offer-popup .column{
	flex-direction: column;
}
.offer-popup .flex > .half{
	flex-basis: 50%;
	flex: 1;
}
.offer-popup .flex > .full{
	flex-basis: 100%;
}
.offer-popup.j-center,
.offer-popup .j-center {
	justify-content: center;
}
.offer-popup.a-center,
.offer-popup .a-center{
	align-items: center;    
}
.offer-popup .clickable{
	display: inline-block;
	cursor: pointer;
}
.offer-popup .uppercase{
	text-transform: uppercase;
}
.offer-popup .gotham-book{
	font-family: 'Gotham-Book';	
}
.offer-popup .gotham-medium{
	font-family: 'Gotham-Medium';	
}
.offer-popup .gotham-bold{
	font-family: 'Gotham-Bold';	
}
.offer-popup .gotham-black{
	font-family: 'Gotham-Black';	
}
.offer-popup .gotham-ultra{
	font-family: 'Gotham-Ultra';	
}
.offer-popup .lato{
	font-family: 'Lato', sans-serif !important;
}
.offer-popup .montserrat{
	font-family: 'Montserrat' !important;
}
.offer-popup .button{
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	font-size: 27px;
	background-color: #ee622c;
	text-decoration: none;
	max-width: 100%;
	text-align: center;
	width: 290px;
	height: 69px;
	transition: all .3s;
	opacity: 1;
    font-weight: 800;
    appearance:none;
    border: none;
    border-radius: 0;
    margin-top: 23px;
}
.offer-popup .button.disabled{
	opacity: 0;
}
.offer-popup{
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 3;
}
.offer-popup .popup-overlay{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0,0,0,0.4);
}
.offer-popup .popup-content{
    width: 926px;
    max-width: calc(100% - 30px);  
    position: relative;
}
.offer-popup .popup-close{
    font-weight: 800;
    font-size: 19px;
    padding: 24px 30px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 1;
    color: #000;
    line-height: 1;
}
.offer-popup p{
    font-size: 17px;
    color: #000;
    line-height: normal;
    margin-bottom: 0;
}
.offer-popup p.montserrat{
    font-size: 48px;
    color: #ee622c;
    font-weight: 800;
    margin-top: 15px;
}
.offer-popup .op-form{
    width: 100%;
    height: 645px;
    box-shadow: 2px 3px 22px 0px rgba(0, 0, 0, 0.99);
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-image: url(../images/offer-popup/back.jpg);
	background-image: -webkit-image-set(url("../images/offer-popup/back.jpg") 1x, url("../images/offer-popup/form-back@2x.png") 2x);
    position: relative;
    justify-content: center;
}
.offer-popup form{
	width: 620px;
	max-width: calc(100% - 30px);
	margin: 38px auto 0;
}
.offer-popup .form-row.flex{
	justify-content: space-between;
	margin-bottom: 18px;
}
.offer-popup .half + .half{
	margin-left: 18px;
}
.offer-popup ::placeholder,
.offer-popup select{
	font-size: 16px;
	line-height: 1;
	color: #000000;
	font-family: 'Lato', sans-serif;
}
.offer-popup input,
.offer-popup select{
	background-color: #fff;
	border: none;
	border: 1px solid #d3d3d3;
	width: 100%;
	outline: none;
	height: 51px;
	text-indent: 15px;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
}
.offer-popup select{
	opacity: 1;
	appearance:none;
	border-radius: 0;
	background-repeat: no-repeat;
	background-size: 15px 10px;
	background-position: calc(100% - 15px) center;
	background-image: url(../images/offer-popup/down-arrow.png);
	background-image: -webkit-image-set(url("../images/offer-popup/down-arrow.png") 1x, url("../images/offer-popup/down-arrow@2x.png") 2x);
}
.offer-popup ::placeholder,
.offer-popup select:not(.selected){
	color:#aaaaaa;	
}

@media screen and (max-width: 567px){
    .offer-popup .popup-close{
        padding: 14px 20px;
    }
    .offer-popup .op-form{
        max-height: calc(100vh - 60px);
    }
    .offer-popup img{
        width: 60px;
    }
    .offer-popup p{
        font-size: 15px;
    }
    .offer-popup p.montserrat{
        font-size: 20px;
    }
    .offer-popup form{
        margin-top: 20px;
    }
    .offer-popup .form-row.flex{
        flex-wrap: wrap;
        margin: 0;
    }
    .offer-popup .flex > .half,
    .offer-popup .half + .half{
        flex-basis: 100%;
        margin: 0 0 15px;
    }
    .offer-popup input, 
    .offer-popup select{
        height: 40px;
    }
    .offer-popup .button{
        height: 50px;
        margin-top: 10px;
    }
}

