/*L2Banners.ru - Верстка сайтов на заказ
Email: l2banners@mail.ru
*/

@import url(reset.css);
body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #000;
    font-size: 14px;
    background-color: #fff;
}

.main {
    max-width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: rgb(160, 70, 0);
    transition-duration: .3s;
    transition-property: opacity, color, background-color;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.input_wrapper {
    position: relative;
    min-height: 20px;
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
}

.input_wrapper span {
    margin-bottom: 10px;
    display: inline-block;
}

.wrapper {
    max-width: 1190px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


/* Дополнительно */

.hidden {
    opacity: 0;
    transition: .3s all;
}

.visible {
    opacity: 1;
    transition: .3s all;
}

.l2b_animation {
    opacity: 0;
}

.l2b_animation.animated {
    opacity: 1;
}

.static_title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    color: rgb(246, 255, 0);
}

.static_title:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(255, 252, 8, 0.3) 15%, rgba(255, 252, 8, 0.3) 85%, rgba(0, 0, 0, 0) 100%);
}

.old_ie {
    background-color: #000;
    font-size: 30px;
    padding: 120px 0 20px 0;
    text-align: center;
    z-index: 999999;
    width: 100%;
    color: #fff;
}

.old_ie a {
    color: #D53939;
}

.red {
    color: #ff3629;
}


.main__contacts {
    background-color: #333;
}

.contacts-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    box-sizing: border-box;
    min-height: 40px;
    padding: 5px 10px;
    color: #fff;
}


/* phone */

.phone {}

.phone_m {
    margin: 6px 0;
}

.phone__number {
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}

.phone__number:hover {
    color: rgb(229, 179, 97);
}

.email__contacts-container {
    margin-left: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.email__fa {
    font-size: 22px;
    margin-right: 8px;
}

.email__name {
    text-decoration: none;
    color: #fff;
}

.email__name:hover {
    color: rgb(229, 179, 97);
}


/* scl */

.scl {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scl__item {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 0 5px;
    border: 2px solid #fff;
    width: 24px;
    height: 24px;
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s all;
}

.scl__item_last {
    margin-right: 0;
}

.scl__item:hover {
    border: 2px solid rgb(229, 179, 97);
    /* color: rgb(229, 179, 97) */
}


/* nav */

.main__nav {
    background-color: #f3f3f3;
}

.nav-container {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 10px;
}


/* logo */

.logo {
    display: block;
    text-decoration: none;
    background: url(../images/logo.png) no-repeat;
    width: 307px;
    height: 50px;
    margin-right: auto;
}

/* menu */

.menu-wrp {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.menu-wrp.menu-wrp_active {
    display: flex;
}

.menu {
    display: flex;
    justify-content: center;
    flex-direction: row;
    box-sizing: border-box;
    align-items: center;
}

.menu-wrp_active .menu {
    animation: menu 1s ease 1;
    animation-fill-mode: forwards;
}

@keyframes menu {
    0% {
        opacity: 0;
        transform: scale(0) translateY(-400px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.menu__link {
    display: inline-block;
    margin: 5px 18px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.menu__link_last {
    margin-right: 0;
}

.menu__link.active:after,
.menu__link:after {
    content: '';
    display: block;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 100%;
    transition: .3s all
}

.menu__link.active:after,
.menu__link:hover:after {
    right: 0;
}

.menu__txt {
    margin: 0;
    box-sizing: border-box;
}


/* Кнопка меню */

.burger-btn {
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 88;
    background-color: rgba(0, 0, 0, 0.5);
    height: 36px;
    width: 40px;
    border-radius: 3px;
    cursor: pointer;
    box-sizing: border-box;
}

.burger-btn__line {
    height: 4px;
    position: absolute;
    left: 5px;
    right: 5px;
    background-color: #fff;
    border-radius: 2px;
    transition: .3s all;
}

.burger-btn__line_top {
    top: 5px;
}

.burger-btn__line_middle {
    top: 50%;
    transform: translateY(-50%);
}

.burger-btn__line_bottom {
    bottom: 5px;
}

.burger-btn_active .burger-btn__line_top {
    transform: rotate(45deg) translateY(-50%);
    transform-origin: center top;
    top: 50%;
}

.burger-btn_active .burger-btn__line_middle {
    transform: rotate(180deg);
    opacity: 0;
}

.burger-btn_active .burger-btn__line_bottom {
    transform: rotate(-45deg) translateY(50%);
    transform-origin: center bottom;
    bottom: 50%;
}

/* about */

.main__about {
    background-color: #fff;
}

.about-container {
    box-sizing: border-box;
    padding: 80px 10px 0 10px;
    display: flex;
    flex-wrap: wrap;
}

.about-info {
    max-width: 500px;
    flex-grow: 1;
}

.about-info_mra {
    margin-right: auto;
}

.about-info__title {
    font-family: "Open Sans", sans-serif;
    font-size: 41px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 20px 0 35px 0;
}

.about-info__content {
    color: #474747;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 20px;
}

.about-info__wrp {
    padding: 35px 0;
}


/* btn */

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    background-color: red;
    border: 2px solid red;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    font-family: "OpenSans", sans-serif;
    font-size: 14px;
    font-weight: bold;
    border-radius: 6px;
    transition: .3s all;
    height: auto;
}

.btn:hover {
    background-color: rgba(255, 0, 0, 0.5);
}


/* about-board */

.about-board {
    max-width: 500px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.billboard {
    background: url(../images/billboard.png) no-repeat center bottom;
    background-size: contain;
    width: 388px;
    height: 393px;
    flex-grow: 1;
    position: relative;
}

.billboard:after {
    content: '';
    display: block;
    width: 386px;
    height: 304px;
    position: absolute;
    left: 100%;
    bottom: 0;
    transition: .3s all;
    background: url(../images/road.png) no-repeat;
}


/* clientele */

.main__clientele {
    background-color: rgb(190, 190, 192);
    margin-top: auto;
}

.main__clientele_mta {
    margin-top: auto;
}

.customers {
    box-sizing: border-box;
    padding: 25px 5px 15px;
}

.customers__title {
    text-align: center;
    font-family: "Verdana";
    font-size: 20px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
}

.customers__title_mb {
    margin-bottom: 10px;
}

.customers-slider__item {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.customers-slider__link {
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.customers-slider__link:hover:after {
	content: "";
    background-color: rgb(255, 255, 255);
    display: block;
    position: absolute;
    left: 20%;
    right: 20%;
    top: 20%;
    bottom: 20%;
    z-index: -1;
    filter: blur(15px);
}


/* footer */

.footer {
    background-color: #333;
    margin-top: auto;
}

.footer-container {
    box-sizing: border-box;
    padding: 10px;
    color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


/* main__title */

.main__title {
    text-align: center;
    box-sizing: border-box;
    padding: 50px 10px;
    background-color: #333;
    color: #fff;
    font-family: "Verdana";
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}


/* content-container */

.content-container {
    box-sizing: border-box;
    padding: 50px 10px;
	

}

.content-container_flex {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-container_0 {
	padding-right: 0;
	padding-left: 0;
}

.about__img {
    width: 100%;
    display: block;
    margin: 0 !important;
    max-width: 100% !important;
}


/* new */

.news {
    display: flex;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.news__img {
    flex-grow: 1;
    margin-right: 40px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 300px;
}

.news__content {
    max-width: 450px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news__title {
    color: #4e4e4e;
    font-family: "OpenSans", sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.news__txt {
    color: #5f5f5f;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 20px;
}

.news__wrp {
    margin-top: auto;
    padding-top: 20px;
}

.btn-more {
    color: #f00;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    border: 2px solid #000;
    text-decoration: none;
    border-radius: 20px;
    transition: .3s all;
}

.btn-more:hover {
    border: 2px solid #f00;
    color: #000;
}


/* news-more */

.news-more {
    margin: 0 auto;
    display: block;
    width: 300px;
    color: #5f5f5f;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    box-sizing: border-box;
    padding: 20px 0;
    cursor: pointer;
    margin-top: 90px;
}

.news-more:hover .news-more__fa {
    animation: more__fa .6s linear infinite;
}

@keyframes more__fa {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(4px);
    }
    100% {
        transform: translateY(0px);
    }
}


/* btn-gradient */

.btn-gradient {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c60505;
    border-radius: 12px;
    background-color: #f00;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .75), inset 0 1px 0 rgba(255, 255, 255, .3);
    background-image: linear-gradient(rgb(249, 0, 0, 1), rgb(182, 28, 28));
    color: #fff;
    font-size: 14px;
    text-shadow: 0 -1px 0 rgba(1, 69, 119, .4);
    padding: 5px 12px;
    text-decoration: none;
    cursor: pointer;
    transition: .3s all;
}

.btn-gradient:hover {
    background-image: linear-gradient(rgb(235, 75, 75), rgb(143, 18, 18));
}


/* navigation-panel */

.navigation-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.navigation-panel_mb {
    margin-bottom: 50px;
}

.select-wrp {
    flex-grow: 1;
    box-sizing: border-box;
    padding: 0 10px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
}


/* select-clear */

.select-clear {
    border: 0;
    background-color: transparent;
    color: #000;
    width: auto;
    height: auto;
    cursor: pointer;
    margin: 10px;
    padding: 5px 10px;
    transition: .3s all;
    width: 200px;
}


/* tbl */

.tbl {
    font-size: 11px;
    line-height: 14px;
    font-family: "Verdana";
    color: #000;
	width: 1170px;
	width: 806px;
	/* width: 768px; */
	position: relative;
	max-width: 100%;
	overflow-x: auto;
}

.tbl__col {
	width: 44px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.1);
	opacity: 0;
}

.tbl__row {
    display: flex;
    width: 100%;
    position: relative;
}

.tbl__row_sticky {
    z-index: 10;
}


.tbl__row_hov:hover:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
	z-index: 100;
}

.edit-btn {
	position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.tbl__item {
    min-height: 36px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    flex-shrink: 0;
    text-align: center;
    flex-wrap: wrap;
}

.tbl__item_none {
    opacity: 0;
    pointer-events: none;
}

.tbl__item_map {
    width: 65px;
    border-left: 1px solid #000;
}

.tbl__item_plane {
    width: 75px;
}

.tbl__item_name {
    flex-grow: 1;
    justify-content: flex-start;
    text-align: left;
    width: 320px;
}

.news-name-link {
    /* color: rgb(117, 67, 29);
    font-weight: 600; */
    color: #000;
}

.news-name-link:hover {
    color: rgb(214, 93, 0);
}

.tbl__item_size {
    width: 100px;
}

.tbl__item_photo {
    width: 38px;
}

.photo-link {
    text-decoration: none;
    background: url(../images/photo.png) no-repeat;
    width: 27px;
    height: 23px;
    display: block;
}

.tbl__group {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
}

.tbl__item_month {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #07CD20;
    width: 44px;
}

.tbl__item_all-month {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background-color: #fff;
    width: 44px;
}

.tbl__item_head {
    background-color: #f80900;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #000;
	height: 62px;
}

.tbl__item_bg-none {
	background-color: transparent;
}

.allmap {
    margin-bottom: 6px;
}

.lookmap__allmap {
	color: #fff;
	line-height: 12px;
	display: inline-block;
	margin: 1px 0;
}

.lookmap__allmap:hover {
	color: rgb(255, 234, 55);
}

.tbl__sticky-wrp {
	width: 140px;
	flex-shrink: 0;
}

.tbl__sticky-wrp_showfull {
	width: 75px;
}

.tbl__sticky-wrp_head {
	height: 62px;
}


.tbl__sticky-group {
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    position: absolute; 
    left: 0;
    top: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 8;
}

.tbl__sticky-group_head {
	background-color: rgb(248, 9, 0);
	font-size: 13px;
    line-height: 15px;
	z-index: 150;
	font-size: 11px;
    line-height: 14px;
}

.tbl__sticky-group_head.is_stuck{
	 z-index: 150;
    left: 10px;
}

.tbl__sticky-group_head.stuck{
	position: fixed !important;
    left: 10px;
    top: 0;
}

.tbl__sticky-group_color {
	background-color: rgb(124, 124, 124);
    color: rgb(255, 255, 255);
}

.tbl-wrp {
	position: relative;
	max-width: 100%;
	overflow: hidden;
}


.tbl_column {
	width: 140px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 8;
	font-size: 11px;
    line-height: 14px;
}


/* fld */

.fld {
    position: relative;
}

.fld_hov:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.fld_chek,
.fld_all-chek {
    background-color: #F2DA4F;
}

.fld_reserved {
    background-color: rgb(255, 54, 41);
}

.checkbx {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .54), inset 0 1px 2px rgba(0, 0, 0, .39);
    cursor: pointer;
    position: relative;
    z-index: 5;
}

.fld_reserved .checkbx:after,
.fld_chek .checkbx:after,
.map-check:after,
.all-map-check:after,
.fld_all-chek:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .91);
    background-color: #fff;
}


/* map */

#map {
    height: 80vh;
    width: 80%;
    display: none;
}

.fancybox-close-small_map {
    display: none;
}


/* main-map */

#main-map {
    height: 500px;
    width: 100%;
    position: relative;
}


/* cart */

.table-cart {
    border: 1px solid #ccc;
    border-spacing: 3px;
    border-collapse: collapse;
    width: 100%;
}

.table-tr:hover {
    background-color: rgba(233, 233, 233, 0.5);
}

.table-th {
    font-weight: bold;
}

.table-th,
.table-td {
    border: solid 1px #ccc;
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
}

.table-th_code,
.table-td_code {
    width: 70px;
}

.table-th_name,
.table-td_name {
    width: 350px;
    text-align: left;
}

.table-th_period,
.table-td_period {
    text-align: left;
    padding: 5px 10px;
    width: 550px;
}

.table-th_del,
.table-td_del {
    width: 70px;
}

.table-td_title {
    text-align: center;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
}

.table-tr__del {
    cursor: pointer;
    font-size: 11px;
    color: #ccc;
}

.table-tr__del:hover {
    color: rgb(225, 0, 0);
}

.table-tr_billboard-header:hover,
.table-tr_sitylite-header:hover {
    background-color: transparent;
}


/* full board */

.board-info {
    box-sizing: border-box;
    padding: 20px 0;
    text-align: left;
}

.board-location {
    display: flex;
    justify-content: center;
    align-items: center;
}

.board-location__item {
    width: 50%;
    height: 400px;
}

.board-img {
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
}


/* Контакты */

#map-contact {
    height: 600px;
    width: 100%;
}

.contacts-window {
    width: 365px;
    padding: 20px 10px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 50%;
    top: 100px;
    margin-left: -600px;
    z-index: 50;
}

.story {
    padding-top: 0;
}

.story_icons {
    margin: 0;
    left: -40px;
}

/*f-wrp*/

.f-wrp {
	display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
