/* cookie start */

.cookie-title{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 16px;;
}

.subcontent p{
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0;
}

.subcontent a{
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: rgba(0, 0, 0, 1);
    text-decoration: underline;
}

.subcontent_and_flex-row--block{
    display: grid;
    grid-template-columns: 1fr 0.33fr;
    align-items: center;
    gap:16px;
}

.right-alert{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap:32px;
}



.flex-row{
    display: flex;
    justify-content: flex-end;
    gap:16px;
}

.flex-row button{
    width: 100%;
    max-width: 168px;
    padding: 16px 36px;
    background: rgba(13, 71, 153, 1);
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border-radius: 8px;
    border: 1px solid rgba(13, 71, 153, 1);
}
.flex-row button.reject{
    width: 100%;
    max-width: 168px;
    padding: 16px 36px;
    background: white;
    color: rgba(13, 71, 153, 1);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    border: 1px solid rgba(13, 71, 153, 1);
    border-radius: 8px;
}

.flex-row button:hover{
    background: rgba(13, 71, 153, 1);
    opacity: 0.8;
    color:white;
}





#popup_iframe_wrapper{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

.jqmOverlay {
    background: #3a3f44;
    opacity: .3 !important;
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 998;
}

.popup-cookie_frame.jqmWindow {
    max-width: 1040px;
    border-radius: 16px;
}

.jqmWindow {
    display: none;
    position: fixed;
    min-width: 250px;
    max-width: 580px;
    background: #fff;
    background: var(--black_bg_black);
    animation: toggle_opacity .2s;
    max-height: 100%;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.jqmClose.top-close {
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    cursor: pointer;
}

.popup-cookie_frame.jqmWindow > .scrollbar {
    max-height: 90vh;
}

.jqmWindow>.scrollbar {
    max-height: 100vh;
    max-height: 100dvh;
}

.scrollbar:not(.scroller) {
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.close {
    font-size: 21px;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity = 20);
}

.form {
    position: relative;
}

.popup-cookie_frame .form_head {
    padding: 32px 32px 0 32px;
}

.site_s1 .form_head h2 {
    text-align: center;
    margin-bottom: 0;
}

.cookie-title > img, .site_s1 .form_head h2 img {
    margin-right: 16px;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 300ms;
}

.popup-cookie_frame .form-body {
    padding: 32px;
}

.popup-cookie_frame .label_block {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    font-size: 16px;
}

.popup-cookie_frame input[type="checkbox"] {
    display: none;
}

.popup-cookie_frame input[type="checkbox"]:checked + label {
    background: rgba(13, 71, 153, 1);
}

.popup-cookie_frame input[type="checkbox"]:checked + label:after {
    left: 23px;
}

.popup-cookie_frame label {
    transition: all 200ms ease-in-out;
    display: inline-block;
    position: relative;
    height: 27px;
    width: 49px;
    min-width: 49px;
    border-radius: 40px;
    cursor: pointer;
    background-color: #dfdfdf;
    color: transparent;
    margin-bottom: 0;
}

.popup-cookie_frame label:after {
    transition: all 200ms ease-in-out;
    content: " ";
    position: absolute;
    height: 23px;
    width: 23px;
    border-radius: 50%;
    background-color: white;
    top: 2px;
    left: 2px;
    right: auto;
}

.font_16 {
    font-size: 1.143em;
    line-height: calc(1em + 4px);
}

.mb-16 {
    margin-bottom: 16px;
}

.popup-cookie_frame .form_footer{
    text-align: center;
    margin-top: 32px;
}

.form_footer a{
  
    width: 100%;
    max-width: 168px;
    padding: 10px 24px;
    color: white;
    
    line-height: 100%;
    border-radius: 8px;
   box-sizing: border-box;
    
}

.form-footer a:hover{
    background: rgba(13, 71, 153, 1);
    opacity: 0.8;
    color:white;
}


.right-alert .close.button.btn.btn-default{
    padding: 15px 20px !important;
}

@media (max-width: 1156px) {
    .subcontent_and_flex-row--block {
        grid-template-columns: 1fr 0.2fr;
    }

    .right-alert{
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}


@media (max-width: 1199px) {
    .popup-cookie_frame.jqmWindow {
        max-width: 90%;
        border-radius: 16px;
    }
}


@media (max-width: 784px){
    .flex-row{
        flex-direction: column;
    }
}

@media (max-width: 548px){
    .subcontent_and_flex-row--block{
        grid-template-columns: 1fr;
        gap:9px;
    }

    .flex-row button{
        max-width: 100%;
    }
    .flex-row button.reject{
        max-width: 100%;
    }

    .right-alert {        
		width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .alert.cookie .close.button{
        font-size: 14px;
        padding: 8px 18px;
        max-width: 100%;
    }

    .subcontent p{
        margin-bottom: 12px;
    }

   
}


.main-slider-wrapper {position: relative; }
.slide_box2 img {border-radius: 32px; min-height: 276px;}
.slider-nav .slick-track:before, .slider-nav .slick-track:after {display: none}
.slider-nav .slide_box2.slick-slide {width: 100% !important; position: relative; cursor: pointer;}
.slider-single .slick-track {gap: 0;}
.slider-single {
  -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    opacity: 1;
}

.logo-slider {position: absolute; top: calc(50% - 1px); left: 50%; transform: translate(calc(-50% - 6px), calc(-50% + 50px));}
.slider-single .slick-track:before, .slider-single .slick-track:after {display: none;}

header:has(.collapse.in), 
header:has(.collapsing),
header.bg-header {background: linear-gradient(161deg, rgba(0, 0, 0,1) 0%, rgba(15, 70, 149, 1) 100%) !important;}
.slider-single  .slick-slide img {border-radius: 0;}

header.style2.custom .navbar-collapse.navbar-responsive-collapse {
	overflow-x: hidden; 
	/*max-height: calc(100vh - 130px); 
	height: calc(100vh - 130px); 
	margin-top: 20px;*/
}
header.style2.custom .navbar-collapse.navbar-responsive-collapse.in {
	/*overflow-y: auto; 
	overflow-x: hidden;*/	
    height: auto !important;
}


header.style2.custom .navbar-collapse.navbar-responsive-collapse .container {
	overflow-x: hidden; 
	max-height: calc(100vh - 110px); 
	height: calc(100vh - 110px); 
	
}

ul.navbar-nav ul.dropdown-menu.list-unstyled li > a {line-height: 1.3; white-space: pre-wrap;}
header.color .navbar-default .navbar-nav li > a.dropdown-toggle {margin-bottom: 24px;}
header .navbar-default .navbar-nav li.dropdown-submenu.open .dropdown-menu {margin-top: 16px; padding-right: 20px;}
header .mega-menu .dropdown-menu > li {margin-bottom: 4px;}
.link-mobile {display: none}
.slider-single:not(.slick-initialized) {background: url(/upload/s1.jpg) no-repeat; min-height: 877px;}
.inner-topline .bg-header.style2.custom .box.top-nav .col-head-logo a {background: url(../images/logo--izmeritel.svg) no-repeat center;}
.inner-wrapper {
	position: relative;
    padding-top: 110px;
}

.style2.custom.color.inner {
	position: absolute;
    left: 0;
    right: 0;
    top: 0;
}


.bg-header.style2.custom.color.inner #select-lang {
	background: url(/local/templates/cor/styles/../images/select-arrow-new.svg) no-repeat 46px center;
    border: none;
}

header.custom.bg-header.style2.inner .navbar .nav.navbar-nav > li > .search.lupa:before {
    background: url(/local/templates/cor/styles/../images/search-lupa.svg) no-repeat center;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
}

@media (max-width: 767px) {
	.logo-slider, .slider-nav {display: none}
	
	.search-open .btn-primary {
		border-radius: 0 6px 6px 0;
		padding: 7px 14px 7px;
		border-color: #780021;
		height: 35px;
	}
	header .mega-menu ul.main-menu-nav {
		display: flex; 
		flex-direction: column;
        gap:  14px; 
		margin-top: 0;
		padding: 0px 0px 25px 0px !important;
	}
	.slider-single .slick-dots li.slick-active button:before {
		background: #fff; 
		border-radius: 50%;
		width: 4px;
		height: 4px;
		content: '•';
		top: 50%;
		left: 50%;
		opacity: 1;
		transform: translate(-50%, -50%);
	}
	.slider-single .slick-dots li {width: 8px; height: 8px;}
		
	.slider-single .slick-dots li button {
		width: 8px;
		height: 8px;
		border: 1px solid #fff; 
		border-radius: 50%;
		padding: 0;
	}
	.slider-single .slick-dots {bottom: 40%}
	.wrapper-news, .our-partners-wrapper, .our-internet-services-wrapper {overflow: hidden;}

	header.style2.custom.color.bg-header { top:0;}
	header.style2 .navbar-header .container {height: unset;}	
	header.style2.custom .navbar-collapse.navbar-responsive-collapse .container {max-height: calc(100dvh - 80px); height: calc(100dvh - 80px);}	
	header.color .navbar-default .navbar-nav li > a.dropdown-toggle {margin-bottom: 0;}
	
}

.swiper-container {overflow: hidden;}


body .select2-container {max-width: 100%;}
body .select2-results__option {padding: 6px 14px;}
body .select2-container .select2-selection--single {  height: 42px; padding: 11px 14px; border: 1px solid #ebebeb;}
body .select2-container--default .select2-selection--single .select2-selection__arrow { top: 50%; transform: translateY(-50%);}
body .select2-container--default .select2-selection--single .select2-selection__rendered {    color: #242424; line-height: 1; padding-left:0;}
body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable { background-color: rgba(0, 70, 150, 1);}


	

/* cookie end */