@charset "UTF-8";

/**
 * Переключаемая боковая панель навигации
 * выдвигающаяся по клику слева
 */
/*Фиксированая кнопка*/
.navn{   
    width: 370px;
    min-width: 320px;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    margin: 0;    
    left: -320px;
    padding: 15px 20px;   
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
    background: #1c2129;   
    z-index: 2000;
	box-sizing: border-box;
}

.navn-toggle{ 
    position: absolute;   
    left: 320px;   
    top: 1em;   
    padding: 0.5em;    
    background: #1c2129;
    color: #fff;  
    cursor: pointer;    
    font-size: 1.2em;    line-height: 1;   
    z-index: 2001;   
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
}


/*Фиксированая кнопка*/
/* НЕ Фиксированая кнопка*/
.navn{
    width: 350px;
    min-width: 350px;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 0;
    left: -350px;
    padding: 15px 20px;
    -webkit-transition: left 0.3s;
    -moz-transition: left 0.3s;
    transition: left 0.3s;
    background: #1c2129;
    z-index: 2000;
    box-sizing: border-box;
}

.navn-toggle{
    position: absolute;
   left: 385px;
    top: 1em;
    padding: 0.5em;
    background: #1c212900;
    color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    z-index: 2001;
    -webkit-transition: color .25s ease-in-out;
    -moz-transition: color .25s ease-in-out;
    transition: color .25s ease-in-out;
}


/* НЕ Фиксированая кнопка*/




.navn-toggle:after{
    content: '\2630';
    text-decoration: none;
	font-size: 1.8em;
}


/* цвет текста при наведении */

.navn-toggle:hover{
    color: #f4f4f4;
}


/**
 * Скрытый чекбокс (флажок)
 * невидим и недоступен :)
 * имя селектора атрибут флажка
 */

[id='navn-toggle']{
    position: absolute;
    display: none;
}


/**
 * изменение положения переключателя 
 * при просмотре на мобильных устройствах
 * когда навигация раскрыта, распологаем внутри панели
*/

[id='navn-toggle']:checked ~ .navn > .navn-toggle{
    left: auto;
    right: 2px;
    top: 1em;
}


/**
 * Когда флажок установлен, открывается панель
 * используем псевдокласс:checked
 */

[id='navn-toggle']:checked ~ .navn{
    left: 0;
    box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    -moz-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    -webkit-box-shadow:4px 0px 20px 0px rgba(0,0,0, 0.5);
    overflow-y: auto;
	    position: fixed;
}


/* 
 * смещение контента страницы
 * на размер ширины панели,
 * фишка необязательная, на любителя
*/

[id='navn-toggle']:checked ~ main > article{
    -webkit-transform: translateX(320px);
    -moz-transform: translateX(320px);
    transform: translateX(320px);
}


/*
 * изменение символа переключателя,
 * привычный крестик (MULTIPLICATION X), 
 * вы можете испльзовать любой другой значок
*/

[id='navn-toggle']:checked ~ .navn > .navn-toggle:after{
    content: '\2715';
	    font-size: 1em;
}


/**
 * профиксим баг в Android <= 4.1.2
 * см: http://timpietrusky.com/advanced-checkbox-hack
 */

body{
    -webkit-animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix{
    to{
      padding: 0;
    }
}


/**
 * позаботьтимся о средних и маленьких экранах
 * мобильных устройств
 */

@media screen and (min-width: 320px){
    html,
    body{
      margin: 0;
      overflow-x: hidden;
    }
}

@media screen and (max-width: 320px){
    html,
    body{
      margin: 0;
      overflow-x: hidden;
    }
    .navn{
      width: 100%;
      box-shadow: none
    }
}


/**
 * Формируем стиль заголовка (логотип) панели 
*/

.navn dd{
    width: 100%;
    padding: 0;
   /* margin: 10px 0;*/
    text-align: center;
    text-shadow: rgba(255, 255, 255, .1) -1px -1px 1px, rgba(0, 0, 0, .5) 1px 1px 1px;
    font-size: 1.3em;
    line-height: 1.3em;
    opacity: 0;
    transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -webkit-transform: scale(0.1, 0.1);
    transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transition: opacity 0.8s, transform 0.8s;
    -ms-transition: opacity 0.8s, -ms-transform 0.8s;
    -moz-transition: opacity 0.8s, -moz-transform 0.8s;
    -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 10px;
    padding-top: 25px;
}

.navn dd a{
    color: #dadada;
    text-decoration: none;
    text-transform: uppercase;
}


/*плавное появление заголовка (логотипа) при раскрытии панели */

[id='navn-toggle']:checked ~ .navn dd{
    opacity: 1;
    transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}


/**
 * формируем непосредственно само меню
 * используем неупорядоченный список для пунктов меню
 * прикрутим трансфомации и плавные переходы
 */

.navn > ul{
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navn > ul > li{
    line-height: 2.5;
    opacity: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: opacity .5s .1s, -webkit-transform .5s .1s;
    -moz-transition: opacity .5s .1s, -moz-transform .5s .1s;
    -ms-transition: opacity .5s .1s, -ms-transform .5s .1s;
    transition: opacity .5s .1s, transform .5s .1s;
}

[id='navn-toggle']:checked ~ .navn > ul > li{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}


/* определяем интервалы появления пунктов меню */

.navn > ul > li:nth-child(2){
    -webkit-transition: opacity .5s .2s, -webkit-transform .5s .2s;
    transition: opacity .5s .2s, transform .5s .2s;
}

.navn > ul > li:nth-child(3){
    -webkit-transition: opacity .5s .3s, -webkit-transform .5s .3s;
    transition: opacity .5s .3s, transform .5s .3s;
}

.navn > ul > li:nth-child(4){
    -webkit-transition: opacity .5s .4s, -webkit-transform .5s .4s;
    transition: opacity .5s .4s, transform .5s .4s;
}

.navn > ul > li:nth-child(5){
    -webkit-transition: opacity .5s .5s, -webkit-transform .5s .5s;
    transition: opacity .5s .5s, transform .5s .5s;
}

.navn > ul > li:nth-child(6){
    -webkit-transition: opacity .5s .6s, -webkit-transform .5s .6s;
    transition: opacity .5s .6s, transform .5s .6s;
}

.navn > ul > li:nth-child(7){
    -webkit-transition: opacity .5s .7s, -webkit-transform .5s .7s;
    transition: opacity .5s .7s, transform .5s .7s;
}


/**
 * оформление ссылок пунктов меню
 */

.navn > ul > li > a{
    display: inline-block;
    position: relative;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    color: #fff;
    width: 100%;
    text-decoration: none;
    /* плавный переход */
    -webkit-transition: color .5s ease, padding .5s ease;
    -moz-transition: color .5s ease, padding .5s ease;
    transition: color .5s ease, padding .5s ease;
}


/**
 * состояние ссылок меню при наведении
 */

.navn > ul > li > a:hover,
.navn > ul > li > a:focus{
    color: white;
    padding-left: 15px;
}


/**
 * линия подчеркивания ссылок меню
 */

.navn > ul > li > a:before{
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    -webkit-transition: width 0s ease;
    transition: width 0s ease;
}

.navn > ul > li > a:after{
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #fff;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;
}


/**
 * анимируем линию подчеркивания 
 * ссылок при наведении
 */

.navn > ul > li > a:hover:before{
    width: 0%;
    background: #fff;
    -webkit-transition: width .5s ease;
    transition: width .5s ease;
}

.navn > ul > li > a:hover:after{
    width: 0%;
    background: transparent;
    -webkit-transition: width 0s ease;
    transition: width 0s ease;
}


/* фон затемнения на основной контент 
 * при этом элементы блокируютя
 * спорная такая фича, если оно вам надо
 * просто раскомментируйте
*/

.navn .logo img{
    width: 180px;
}
.navn .lang-switcher ul{
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

.navn .lang-switcher ul li{
        padding: 20px 8px;
}

.d-header-mobile__dropdown.d-catalog{
    background: #c53c00;
    margin-left: -20px;
    padding-left: 20px;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 110%;
    text-transform: uppercase;
    color: white;
    margin-right: -20px;
}
.d-header-mobile__dropdown{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 30px;
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 110%;
}

.d-header-mobile__bottom{
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E7E7E7;
margin-left: -20px;
    padding-left: 18px;
    margin-right: -20px;
}
.d-header-mobile__bottom-txt{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 133%;
    color: #ffffff;
}
.d-header-mobile__menu-img{
    margin-right: 13px;
    width: 25px;
}
.d-header-mobile__bottom-item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 110%;
	    transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -webkit-transform: scale(0.1, 0.1);
    transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transition: opacity 0.8s, transform 0.8s;
    -ms-transition: opacity 0.8s, -ms-transform 0.8s;
    -moz-transition: opacity 0.8s, -moz-transform 0.8s;
    -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
}
.d-header-mobile__dropdown.cell{
    border-bottom: 1px solid #E7E7E7;
        margin-left: -20px;
    padding-left: 18px;
    margin-right: -20px;
}
.d-header-mobile__dropdown-txt a{
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #fff;
}
d-header-mobile__dropdown-txt .d-header-mobile a{
    color: #ffffff;
}
.d-header-mobile__bottom-txt span{
    color: #fff;
}
.d-header-mobile__menu-item a{
    text-decoration: none;
    color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
	
}
.d-header-mobile__menu-item{
    transform: scale(0.1, 0.1);
    -ms-transform: scale(0.1, 0.1);
    -moz-transform: scale(0.1, 0.1);
    -webkit-transform: scale(0.1, 0.1);
    transform-origin: 0% 0%;
    -ms-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    -webkit-transform-origin: 0% 0%;
    transition: opacity 0.8s, transform 0.8s;
    -ms-transition: opacity 0.8s, -ms-transform 0.8s;
    -moz-transition: opacity 0.8s, -moz-transform 0.8s;
    -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
}
.d-header-mobile__menu-item:first-child{
    margin-top: 20px;
}
.d-header-mobile__dropdown-list{
    display: none;
}
.d-header-mobile__dropdown-item-txt-cell{
    display: flex;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 110%;
    align-items: center;
}
[id='navn-toggle']:checked ~ .navn .d-header-mobile__bottom-item{
    opacity: 1;
    transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
}

[id='navn-toggle']:checked ~ .navn .d-header-mobile__menu-item{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.dropdown #menu{
  display: none;
}

.dropdown .-hover{
    color: #fdac7a00;
}

.dropdown .-hover > span{
  text-decoration: underline dashed;
  font-style: italic;
}

.dropdown .-arrow::after{
    content: '\25BC';
    cursor: pointer;
    background: transparent url(https://dim-interior.com.ua/image/catalog/icon_menu/bokmenu/arrow-down.svg) 0% 0% no-repeat;
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.dropdown .-list{
    display: none;
    width: calc(100% + 40px);
    /* background: #fff; */
    border-bottom: 1px solid #fff;
    padding: 15px 0px;
    /* box-sizing: border-box; */
    /* position: absolute; */
    top: 100%;
    left: -5px;
    z-index: 10;
    margin-left: -20px;
}
.-listm{
   display: block;
    width: calc(100% + 40px);
    /* background: #fff; */
    border-bottom: 1px solid #fff;
    padding: 15px 0px;
    /* box-sizing: border-box; */
    /* position: absolute; */
    top: 100%;
    left: -5px;
    z-index: 10;
    margin-left: -20px;
}
.dropdown .-list a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: flex;
	
}
.-listm a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: flex;
	margin-left: 50px;
	text-transform: uppercase;
}
.d-header-mobile__menu-imgt{
    margin-right: 45px;
    width: 25px;
	margin-left: 20px;
}
.dropdown .-list a:hover{
      color: #c03b00;
}
.-listm a:hover{
      color: #c03b00;
}
.dropdown #menu:checked ~ .-list{
  display: block;
}

.dropdown #menu:checked ~ .-arrow::after{
  content: '\25B2';
}


.dropdownc #menuc{
  display: none;
}

.dropdownc .-hover{
    color: #fdac7a00;
}

.dropdownc .-hover > span{
  text-decoration: underline dashed;
  font-style: italic;
}

.dropdownc .-arrow::after{
    content: '\25BC';
    cursor: pointer;
    background: transparent url(https://aquarodos.ua/local/templates/main_new/img/arrow-white.svg) 0% 0% no-repeat;
    background-repeat: no-repeat;
    background-position: 100% 50%;
    color: #0000;
}

.dropdownc .-list{
    display: none;
    width: calc(100% + 40px);
    /* background: #fff; */
    border-bottom: 1px solid #fff;
    padding: 15px 0px;
    /* box-sizing: border-box; */
    /* position: absolute; */
    top: 100%;
    left: -5px;
    z-index: 10;
    margin-left: -20px;
}

.dropdownc .-list a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: flex;
	    text-transform: uppercase;
		margin-left: 50px;
}
.d-header-mobile__menu-imgt{
   /* margin-right: 45px;*/
       margin-right: 60px;
    width: 25px;
	margin-left: 20px;
}
.dropdownc .-list a:hover{
      color: #c03b00;
}

.dropdownc #menuc:checked ~ .-list{
  display: block;
}

.dropdownc #menuc:checked ~ .-arrow::after{
  content: '\25B2';
}


.dropdownc .nav:hover{
    background: #fff0;
    border-left: solid 0px #c4bdb400;
    border-top: solid 0px #c4bdb400;
}
.dropdownc .pc-nav .arrow-menu{
    display: none;
}
.dropdownc .pc-nav{
    padding: 0px 5px;
}
.dropdownc .fotmenu img{
    width: 55px;
}
.dropdownc .fotmenu{
    display: block;
    position: absolute;
}

/*.dropdownc ul.nav li{
    padding: 10px 0;
    border-bottom: 1px solid #E7E7E7;
    margin-left: -20px;
    padding-left: 18px;
    margin-right: -20px;
}*/

.dropdownc  .pc-nav li{
    border-bottom: 1px solid #E7E7E7;
    margin-left: -20px;
    padding-left: 18px;
  /*  margin-right: -20px;*/
    padding-top: 20px;
    padding-bottom: 20px;
}
.dropdownc .pc-nav li:first-child{
    border-bottom: 1px solid #E7E7E7;
    margin-left: -20px;
    padding-left: 18px;
  /*  margin-right: -20px;*/
    padding-top: 5px;
    padding-bottom: 20px;
}
.dropdownc .pc-nav li:last-child{
    border-bottom: 0px solid #E7E7E7;
    margin-left: -20px;
    padding-left: 18px;
   /* margin-right: -20px;*/
    padding-top: 20px;
    padding-bottom: 0px;
}
.dropdownc .pc-nav .submenu li{
    border-bottom: 0px solid #e7e7e700;
    margin-left: -20px;
    padding-left: 18px;
   /* margin-right: -20px;*/
    padding-top: 5px;
    padding-bottom: 20px;
}

@media screen and (max-width: 1199px){
	.dropdownc .menu-covmgm{
		margin-top: 0px;
		position: relative;
	}
	.dropdownc .pc-nav{
		padding: 0px 5px;
	}
}

@media screen and (max-width: 992px){
	header div.header-content .hd-wrap{
		height: 83px;
		padding: 0 60px;
	}
	header .begctrokmob{
		font-size: 14px;
		padding: 5px 0px;
	}
	.dropdownc .submenu ul .submenu li{
		font-family: GillSans;
		font-size: 20px;
		font-weight: 500;
		font-stretch: normal;
		font-style: normal;
		/* line-height: 3.2; */
		letter-spacing: normal;
		text-align: left;
		color: #ffffff;
		text-transform: uppercase;
		border-top: solid 0px #c4bdb4;
		border-bottom: solid 0px #c4bdb4;
		margin-bottom: 0px;
		padding: 0 0px 0 0;
		display: block;
		position: relative;
		margin-left: 30px;
	}
	.d-header-mobile__menu-imgt{
		margin-right: 45px;    
		width: 25px;
		margin-left: 20px;
	}
	.dropdownc  .hidden{
		display: block;
	}
	.dropdownc  .mob-nav{
		display: none;
	}
	.dropdownc ul.nav li a{
		text-decoration: none;
		display: block;
		padding: 3px 0px 10px 0px;
	}
	.dropdownc .submenu{
		display: none;
	}
	.navn .navn-toggle{
		position: absolute;
		left: 330px;
		top: 26px;
		padding: 0em;
		background: #1c212900;
		color: #fff;
		cursor: pointer;
		font-size: 1em;
		line-height: 1;
		z-index: 2001;
		-webkit-transition: color .25s ease-in-out;
		-moz-transition: color .25s ease-in-out;
		transition: color .25s ease-in-out;
	}
	.navn-toggle:after{
		content: '\2630';
		text-decoration: none;
	}
	.sear i{
		color: #ffffff;
	}
	.navn{
		width: 320px;
		min-width: 320px;
		height: 100%;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: 0;
		left: -320px;
		padding: 15px 20px;
		-webkit-transition: left 0.3s;
		-moz-transition: left 0.3s;
		transition: left 0.3s;
		background: #1c2129;
		z-index: 2000;
		box-sizing: border-box;
	}
	[id='navn-toggle']:checked ~ .navn > .navn-toggle:after{
		content: '\2715';
			font-size: 1em;
			padding: 0.5em;
	}
}
@media screen and (max-width: 420px){
	.navn-toggle:after{
		content: '\2630';
		text-decoration: none;
		font-size: 1.5em;
	}
	.navn-toggle{
		position: absolute;
		left: 338px;
		top: 36px;
		padding: 0em;
		background: #1c212900;
		color: #fff;
		cursor: pointer;
		font-size: 1em;
		line-height: 1;
		z-index: 2001;
		-webkit-transition: color .25s ease-in-out;
		-moz-transition: color .25s ease-in-out;
		transition: color .25s ease-in-out;
	}
}
@media screen and (max-width: 376px){
	.navn-toggle:after{   
		font-size: 1.5em;
	}
}

@media screen and (max-width: 320px){
	.navn-toggle:after{   
		font-size: 1.2em;
	}
}

.mask-content{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    visibility: hidden;
    opacity: 0;
}

[id='navn-toggle']:checked ~ .mask-content{
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity .5s, visibility .5s;
    transition: opacity .5s, visibility .5s;
}
