.imp-tooltip {
	display: block !important;
	left: 100px !important;
	top: 0 !important;
	bottom: 0 !important;
	overflow: hidden;
	box-sizing: content-box;
}

.imp-wrap:before {
	content: '';
	position: absolute;
	display: block;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba( 0,0,0, 0.5 );
	z-index: 3;
	pointer-events: none;
	transition: opacity .25s;
}

.tooltip-opened .imp-wrap:before {
	opacity: 1;
}

.tooltip-close {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 30px;
	height: 30px;
	background: url( '/images/close.svg' );
	display: block;
}

.imp-tooltip-close-button i {
	display: none;
}

.imp-tooltip-close-button {
	background: url( '/images/close.svg' );
	width: 30px !important;
	height: 30px !important;
	display: block !important;
	padding: 0 !important;
	left: 15px !important;
	top: 15px !important;
}

@media screen and (max-width: 1219px) and (min-width: 680px) {
	.imp-tooltip {
		left: 0 !important;
		right: 0 !important;
		top: 0 !important;
		bottom: 0 !important;
		overflow: hidden;
		box-sizing: content-box;
		width: auto !important;
	}

	.imp-tooltip .squares-container {
		display: flex;
		justify-content: space-between;
	}

	.imp-tooltip .sq-col-lg-12 {
		flex: 0 1 calc( 50% - 10px );
	}

	.imp-tooltip .squares-clear {
		display: none;
	}
}

/*@media screen and (max-width: 800px) and (min-width: 680px) {*/
	/*.imp-tooltip .sq-col-lg-12 {*/
		/*flex: 0 1 calc( 60% - 10px );*/
	/*}*/

	/*.imp-tooltip .sq-col-lg-12:first-child {*/
		/*flex: 0 1 calc( 40% - 10px );*/
	/*}*/
/*}*/

@media screen and (max-width: 679px) {
	body.wpk-no-scroll {
		overflow: hidden !important;
	}

	.imp-tooltip.imp-tooltip-visible {
		position: fixed;
		top: 0 !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		z-index: 100000 !important;
		width: 100vw !important;
		box-sizing: border-box;
		overflow-y: auto;
	}
}