/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/
/* Examples (uncomment to use):*/
/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */
/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }
/* Hide compare button */
/* a.compare_item { display: none !important;  }*/


    .icon__blocks{
        display: flex;
        justify-content: left;
        flex-wrap: wrap;
        margin-bottom: 50px;
margin-top: 50px;
    }

    .icon__block{
        width: 324px;
        margin-bottom: 40px;
        text-align: center;
margin-right: 30px;
    }

.icon__block .icon{
margin-bottom: 15px;
}

.icon__block .icon__text{
font-size: 16px;
font-weight: bold;
text-transform: uppercase;

}

ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
}
.content ul li:before {
    content: "\25CF";
    position: relative;
    left: -20px;
    right: 10px;
    top: -2px;
    color: var(--theme-more-color);
    width: 0px;
    height: 0px;
    display: inline-block;
    vertical-align: top;
    margin-right: 0px;
}


.btn-transparent a:hover, a:focus, a:active {
    color: #fff;
}

.alert-warning {
	color: #915c02;
}
.alert-warning a {
	text-decoration: underline;
}
.logo a img {
	max-height: 130%;
	max-width: 130%;
}
.styled-block img {
	width: 150px;
	padding-left: 50px;
	float: right;
}
@media (max-width: 570px) {
	.styled-block {
		padding: 17px 20px;
	}
	.styled-block img {
		width: 70px;
		padding-left: 10px;
		float: right;
	}
	h3 {
		font-size: 1.1em;
	}
}


/* Offer Popup */

.offer_popup_wrapper {
	display: none;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 900;
	background-color: #000a;
}

.offer_popup_wrapper.is-visible {
	display: block;
}

.offer_popup_wrapper .offer_popup {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: relative;
	height: 100vh;
	width: 742px;
	max-width: 100vw;
	margin: 0 auto;
	padding: 60px 0;
	color: #292929;
	background-color: #E7E0DC;
	opacity: 0;
	transition: opacity 1s;
}

.offer_popup_wrapper.is-visible .offer_popup {
	opacity: 1;
}

.offer_popup p.title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2em;
	text-align: center;
	margin: .5em 2em;
}

.offer_popup div.offers_list {
	display: flex;
	flex-direction: column-reverse;
	order: 3;
	font-size: 14px;
	font-weight: 700;
	margin: 0 3em;
}

.offer_popup div.offers_list > div {
	flex: 1 0 50%;
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}

.offer_popup div.offers_list > div p {
	flex: 0 0 70%;
	margin: .7em 0;
	line-height: 1.5em;
}

.offer_popup div.offers_list div.image {
	flex-grow: 1;
}

.offer_popup div.offers_list img {
	display: block;
	height: 48px;
	margin: auto;
}

.offer_popup div.btn {
	order: 10;
	font-size: 16px;
	font-weight: 500;
	width: 380px;
	max-width: 90%;
	margin: 0 auto 1em;
	padding: .5em;
}

.offer_popup div.offer_cross_wrapper {
	position: absolute;
	top: 75px;
	right: 15px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.offer_popup div.offer_cross {
	transform: rotate(45deg)
			   translateY(10px)
			   translateX(10px);
}

.offer_popup div.offer_cross div {
	width: 30px;
	height: 1px;
	background-color: #483A41;
}

.offer_popup div.offer_cross div:first-child {
	transform: rotate(90deg);
}

@media (min-width: 768px) { /* md */
	.offer_popup_wrapper .offer_popup {
		height: unset;
		margin-top: calc(50vh - 400px);
		padding: 0;
	}

	.offer_popup p.title {
		font-size: 36px;
		order: 2;
	}

	.offer_popup div.offers_list {
		flex-direction: row;
		font-size: 18px;
		margin-top: 1em;
		margin-bottom: 1em;
	}

	.offer_popup div.offers_list > div {
		flex-direction: column;
	}

	.offer_popup div.offers_list > div p {
		flex-basis: auto;
		text-align: center;
		order: 10;
	}

	.offer_popup div.btn {
		font-size: 24px;
		margin-bottom: 2em;
	}

	.offer_popup div.offer_cross_wrapper {
		top: -30px;
		right: -30px;
	}

	.offer_popup div.offer_cross div {
		background-color: white;
	}
}