.phone-block {
	cursor: pointer;
}

/*FIXED BUTTON*/
.fixed-discount {
	position: fixed;
	right: 20px;
	bottom: 50px;
	cursor: pointer;
	z-index: 999;
	background: #fff;
	border-radius: 50%;
}


/*CLOSE ICON*/
.popup-window .popup-window-close-icon {
	width: 40px;
	height: 40px;
	top: -40px;
	right: -40px;
	border-radius: 40px;
	z-index: 1;
	opacity: 1;
	-webkit-transition: none;
	transition: none;
}
.popup-window .popup-window-close-icon:before {
    content: '+';
    color: #30305c;
    position: absolute;
    z-index: 2;
    transform: rotate(45deg);
    font-size: 50px;
    line-height: 1;
    top: -5px;
    left: 5px;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);
}
.popup-window .popup-window-close-icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: #30305c;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.77, 0, 0.2, 0.85);
    transform: scale(0.01);
}
.popup-window .popup-window-close-icon:hover:after {
    transform: scale(1);
}
.popup-window .popup-window-close-icon:hover:before {
    transform: scale(0.7) rotate(45deg);
    color: #fff;
}

/*POPUP WINDOW*/
.modal-popup {
	width: 300px;
	text-align: center;
}
.modal-popup__wrapper {
	font-family: "PFDinTextCondPro-Regular", sans-serif;
	background: #ebebeb;
	color: #30305c;
	font-size: 1.2em;
	line-height: 1.4em;
	width: 100%;
	min-height: 300px;
	padding: 10px 20px;
}
.modal-popup__table {
	display: table;
}
.modal-popup__cell {
	display: table-cell;
	vertical-align: middle;
}

/*POPUP WINDOW CONTENT*/
.discount__anounce {
	line-height: 1.3em;
}
.discount__anounce .h3 {
    margin: 0 0 1em;
    padding: 1em 0 0.5em;
	border-bottom: 3px solid #30305c;
	font-size: 1.7em;
	font-weight: 400;
	display: inline-block;
	text-transform: uppercase;
}
.discount__anounce p {
	margin: 0 0 1.5em;
	font-size: 1.2em;
}
.discount__error {
	font-size: 1.2em;
	text-transform: none;
}
.discount__accept,
.discount__decline {
	margin: 1em 0 0.5em;
	text-align: center;
}
.discount__accept .discount__accept-span {
	display: inline-block;
	font-size: 1.1em;
	padding: 10px 20px;
	min-width: 140px;
	cursor: pointer;
	background: #30305c;
	text-transform: uppercase;
	color: #fff;
}
.discount__decline .discount__decline-span {
	display: inline-block;
	font-size: 1.1em;
	padding: 10px 20px;
	min-width: 140px;
	cursor: pointer;
	text-transform: uppercase;
}



/*INPUT FIELDS*/
.discount__input {
	font-family: "PFDinTextCondPro-Regular", sans-serif;
	width: 240px;
	padding: 10px;
	height: 2.5em;
	border: none;
	border-bottom: 1px solid #30305c;
	color: #30305c;
	font-size: 1.2em;
	font-weight: 400;
	/*text-transform: uppercase;*/
	background: #cfcfcf;
	text-align: center;
}
.discount__input::-webkit-input-placeholder{
	color: #30305c;
	opacity: 0.7;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition:opacity .3s ease;
}
.discount__input:-moz-placeholder,
.discount__input::-moz-placeholder{
	color: #30305c;
	opacity: 0.7;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition:opacity .3s ease;
}
.discount__input:-ms-input-placeholder{
	color: #30305c;
	opacity: 0.7;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition:opacity .3s ease;
}
.discount__input:focus::-webkit-input-placeholder{
	opacity: 0;
}
.discount__input:focus:-moz-placeholder,
.discount__input:focus::-moz-placeholder{
	opacity: 0;
}
.discount__input:focus:-ms-input-placeholder{
	opacity: 0;
}






@media (max-width: 768px){
	
	.modal-popup__hidden {
		display: none;
	}
	.modal-popup {
		width: 280px;
	}
	.discount__anounce h3 {
		
	}
}








