body {
    height:100%;
    font-size: var(--prv_font_size);
    font-family: var(--prv_font_family);
}
.section_grey {
    background: #EEF1F4;
    padding: 0px 0px 90px 0;
}

/* BLOKS H2 (HEADINGS) */
.heading {
    padding: 90px 0px 30px; 
    text-align: center;
}
.page_header {
    padding-top:55px;
}
.heading h2{
    font-family: var(--prv_font_family);
    font-weight: bold;
    font-size: 2em;
    margin:0;
    line-height:40px;
}
.page_header_title h1 {
    font-size: 2em;
    line-height:40px;
    font-weight: bold;
}
@media (min-width: 576px) {
    .heading h2{
        font-size: 2.571428em;
        line-height:48px;
    }
    .page_header_title h1 {
        font-size: 2.571428em;
        line-height:48px;
    }
}
.heading_description_text {
    font-size: 1.1425em;
    line-height:28px;
    margin-top:23px;
    font-weight:normal;
}
/* BLOKS H2 END */

/* BUTTONS */
.btn,
.btn:focus {
    background-color: var(--prv_button_bg);
    border: 2px solid var(--prv_btn_color);
    border-radius: var(--prv_button_radius);
    padding: 16px 30px;
    color: var(--prv_font_color);
    font-size: 0.857142em;
    font-family: var(--prv_font_family);
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    outline: none;
    transition: .3s;
    line-height: normal;
    box-shadow: none;
}

.btn:hover,
.btn:active:hover,
.btn:active:focus,
.btn:active {
    opacity: 1;
    outline: none !important;
    box-shadow: none;
    color: var(--prv_font_color);
    background-color: var(--prv_color_bright);
    border-color: var(--prv_color_bright);
    color: #fff;
}
/* BUTTONS END */

/* inner page sidebar */
.side-info-navigation{
	border: 1px solid #eef1f4;
	position: fixed;
	right: 0;
	top: 168px;
	left: auto;
	z-index: 121;
	background: #fff;
	-webkit-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
	-moz-box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
	box-shadow: 0 10px 20px 0 rgba(0,0,0,.1);
	width: 68px;
	transition: left .15s linear,right .15s linear;
	-moz-transition: left .15s linear,right .15s linear;
	-ms-transition: left .15s linear,right .15s linear;
	-o-transition: left .15s linear,right .15s linear;
	-webkit-transition: left .15s linear,right .15s linear;
	display: block;
}
.open.side-info-navigation{
	right: 580px;
}
.side-info-navigation-element{
	text-align: center;
	cursor: pointer;
	border-bottom: 1px solid #eef1f4;
    padding-bottom:25px;
    padding-top:25px;
}
.side-info-navigation-element:last-child{
	border: none;
}
.side-info-navigation-element svg{
    width:18px;
    height:18px;
}
.side-info-navigation-element svg .svg_icon{
	fill: #777;
}
.side-info-navigation-element:hover svg .svg_icon{
	fill: var(--prv_color);
}
.side-info-behind{
	display: block;
	height: 100%;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	transition: all 0.5s linear; 
	z-index: -1;
}
.side-info-behind.visible{
	background: rgba(0,0,0,.5);
	height: 100%;
	width: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 120;
	opacity: 0.5;
}
.side-info-block{
	z-index: 999;
	position: fixed;
	right: -580px;
	height: 100%;
	background-color: #fff;
	opacity: 1;
	width: 580px;
	max-width: 100%;
	top: 0;
	bottom: 0;
	transition: left .15s linear,right .15s linear;
	-moz-transition: left .15s linear,right .15s linear;
	-ms-transition: left .15s linear,right .15s linear;
	-o-transition: left .15s linear,right .15s linear;
	-webkit-transition: left .15s linear,right .15s linear;
	display: block;
}
.open.side-info-block{
	right: 0;
}
.side-info-container{
	padding: 0 40px;
	overflow-y: scroll;
    max-height:100%;
}
@media (min-width: 576px) {
    .side-info-container{ 
        padding: 0 70px;
    }
}
.side-info-container::-webkit-scrollbar{
    width: 8px;
}
.side-info-container::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background: #999;
    border: 2px solid #fff;
}
.side-info-container::-webkit-scrollbar-track{
    border-radius: 8px;
}
.side-info-close{
	width: 48px;
	height: 48px;
	line-height: 20px;
	text-align: center;
	position: absolute;
	right: 23px;
	top: 20px;
	background: #fff;
	border-radius: 100%;
	cursor: pointer;
	transition: opacity .3s ease;
	z-index: 1;
}
.side-info-close svg path {
	fill: #bdbdbd;
}
.side-info-close:hover svg path {
	fill: var(--prv_color);
}
.side-info-close svg{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	margin: -7px 0 0 -7px;
}
@media(max-width: 991px){
	.side-info-navigation{
		display: none;
	}
}

/*CART SUCCESS*/
.basket_success_container {
    border: 1px solid #EEF1F4;
    padding: 35px 45px 40px 45px;
    margin:50px 0px 50px 0px;
    align-items:center;
}
#success {
    max-width:65px;
    max-height:65px;
    width:100%;
    height:100%;
    margin:0 auto 35px;
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
}
@media(min-width: 991px){
	.basket_success_container{
        display:flex;
	}
    #success {
        margin-right:45px;
        margin-bottom:0px;
    }
}
.success-1 {
    fill: var(--prv_color);
}
.basket_min_header {
    font-weight:bold;
    font-size:1.428571em;
    margin-bottom:7px;
}
.success_text {
    margin-bottom:35px;
}
/*CART SUCCESS*/
.agreement_page_cont {
    padding-top: 50px;
    padding-bottom: 50px;
}
@media(min-width: 768px){
    .total_content{
        min-height: calc(100% - 225px);
    }
}
@media(min-width: 992px){
    .total_content{
        min-height: calc(100% - 152px);
    }
}

