/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

:root {
	--color1: rgba(102, 196, 48, 1);
	--color1-1: rgba(102, 196, 48, 0.1);
	--color1-2: rgba(102, 196, 48, 0.2);
	--color1-3: rgba(102, 196, 48, 0.3);
	--color1-5: rgba(102, 196, 48, 0.5);
	--color1-7: rgba(102, 196, 48, 0.7);

	--color2: rgba(56, 166, 69, 1);
	--color2-3: rgba(56, 166, 69, 0.3);
	--color2-5: rgba(56, 166, 69, 0.5);
	--color2-7: rgba(56, 166, 69, 0.7);

	--color3: rgba(27, 65, 6, 1); /* black */
	--color3-3: rgba(27, 65, 6, 0.3);
	
	--color4: rgba(168, 210, 143, 1); /* light */
	--color4-1: rgba(168, 210, 143, 0.1);
	
	--color-gray1: rgba(240, 240, 240, 1);
	--color-gray1-0: rgba(175, 175, 175, 0);
	--color-gray1-1: rgba(175, 175, 175, 0.1);
	--color-gray1-2: rgba(175, 175, 175, 0.2);
	--color-gray1-3: rgba(175, 175, 175, 0.3);
	--color-gray1-5: rgba(175, 175, 175, 0.5);
	--color-gray1-7: rgba(175, 175, 175, 0.7);
	
	--color-gray2: rgba(136, 136, 136, 1.0);
	--color-gray2-5: rgba(136, 136, 136,0.5);
	
	--color-red: rgba(196, 48, 48, 1);
	--color-red-2: rgba(196, 48, 48, 0.2);
	--color-blue: rgba(48, 48, 196, 1);
	--color-blue-2: rgba(48, 48, 196, 0.2);
	--color-yellow: rgba(196, 196, 48, 1);
	--color-yellow-2: rgba(196, 196, 48, 0.2);
	
	--grade1: rgba(102, 196, 48, 1);
	--grade2: rgba(0, 162, 86, 1);
	--grade3: rgba(0, 124, 72, 1);
	--grade4: rgba(24, 79, 79, 1);
	--grade5: rgba(59, 91, 142, 1);
	--grade6: rgba(28, 59, 105, 1);
}


::selection {
	/*color: #000;*/
	background-color: var(--color1-5);
}

::-moz-selection {
	/*color: #000;*/
	background-color: var(--color1-5);
}

@font-face {
  font-family: "font_awesome";
  font-style: normal;
  font-weight: normal;
  src: url("/files/font/fontawesome-webfont.ttf") format("truetype");
}



/* анимации */

@keyframes fade_out {
	0% {
		opacity: 1;
		left: 0px;
	}
	99% {
		opacity: 0;
		left: 0px;
	}
	100% {
		opacity: 0;
		left: -999px;
	}
}




/* теги */

html {
	font-size: 14px;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	background-color: #f8f8f8;
	color: #000;
	margin: 0px;
	padding: 0px;
	line-height: 1.5;
	background-image: url(/files/site/crm_bg.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

header {
}

main {
	min-height: 80vh;
}

main > *:first-child {
	/*padding-top: calc(4rem + 100px) !important;*/
}

footer {
}

a {
	font-size: inherit;
	color: var(--color1);
	font-family: inherit;
	font-style: normal;
	text-decoration: none;
	transition: 200ms;
}
a:hover {
	text-decoration: none;
	color: var(--color1);
}

a.dashed {
	text-decoration: underline;
	text-decoration-color: var(--color1);
	text-decoration-style: dotted;
}

a.admin {
	background-color: rgba(128,128,128,.2);
	border-radius: 2px;
	color: rgba(0,0,0,.4);
	font-size: 80%;
	padding: 2px;
	position: absolute;
	right: 5px;
	z-index: 1000;
}

a.color_black {
	color: #000;
}
a.color_white {
	color: #fff;
}

img {
	max-width: 100%;
	max-height: 100%;
}

img.inline {
	height: 1em;
	vertical-align: middle;
}

img.inline2 {
	height: 2em;
	vertical-align: middle;
}

h1 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500 !important;
}

h1 .display-1, h1 .display-2, h1 .display-3, h1 .display-4 {
	font-weight: 600;
}

.video_bg h1 {
	border-left: 3px solid #fff;
	padding-left: 1rem;
}
h2 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}
h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

ul.color {
	list-style: none;
	padding: 0.5em 0 0 0;
}
ul.color li::before {
	content: url(/files/site/li_marker.png);
}
ul.color li {
	margin-bottom: 1em;
}



/* form */

input, select, textarea, a.button {
	font-size: inherit;
	border: 1px solid var(--color-gray1);
	background-color: #fff;
	padding: 0.5em 1em;
	color: #000;
	border-radius: 4px;
	box-sizing: border-box;
}

textarea {
	border-top: 1px solid #888;
	border-left: 1px solid #888;
	border-right: 1px solid #888;
}

input[type="number"] {
	width: 100px;
}

input[type="image"] {
	border: 0;
	background: transparent;
}

input[type="submit"], a.button {
	font-size: inherit;
	font-weight: 600;
	cursor: pointer;	
	color: #fff !important;
	text-align: center;
	border: 0px solid var(--color1);
	border-radius: 4px;
	/*-webkit-appearance: button;*/
	background-color: var(--color1);
	/*padding: 1em 2em;*/
	transition: 200ms;
	display: inline-block;
	margin-bottom: 1em;
}
input[type="submit"]:hover, a.button:hover {
	color: #fff !important;
	background-color: var(--color1);
	box-shadow: 0 0 2em 0 var(--color1-5);
}

input[type="submit"]:disabled {
	background-color: #ccc;
	background: linear-gradient(to bottom, #ccc, #bbb);
	/*box-shadow: 0px 0px 0px rgba(255,80,80,.5);*/
}
input:hover, select:hover, textarea:hover {
	/*background-color: var(--color4-1);*/
}
input:not([type="submit"]):focus, select:focus, textarea:focus {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px var(--color1-5);
}

input[readonly] {
	filter: grayscale(50%);
	opacity: 0.5;
}

label {
	cursor: pointer;
	padding: 0.5em 1em;
	line-height: 3em;
}


input[type="radio"] {
	/*display: none;*/
	opacity: 0;
	position: absolute;
}

input[type="radio"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="radio"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1-5);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="radio"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="radio"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}



input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + label {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	position: relative;
    line-height: 1.1em;
	padding: 0em 0em 0em 2em;
}

input[type="checkbox"] + label::before {
	content: "";
	display: block;
	
	position: absolute;
	left: 0;
	top: 0;

	width: 1.2em;
	height: 1.2em;
	font-size: 1em;
	font-weight: bold;
	color: #fff;
	text-align: center;
    line-height: 1em;

	margin-right: 10px;
	background-color: var(--color-gray1);
	box-shadow: inset 0 0 8px 0 rgba(0, 0, 0, .2);
	vertical-align: middle;
}

input[type="checkbox"]:checked + label::before {
	content: "\2713";
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .2);
	background-color: var(--color1);
}

input[type="checkbox"]:hover + label::before {
	box-shadow: inset 0 0 16px 0 rgba(0, 0, 0, .3);
}




/* table */

table {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-spacing: 0px;
}

table.list, table.list2 {
	padding: 2px 4px;
	margin: auto;
}

table.border td {
	border: 1px solid #888;
}

table.rows td {
	border-bottom: 1px solid #bbb;
}

tr {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
}

td {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
	border: 0px;
	padding: 0px;
}

.list0 td {
	padding: 0px 0px;
}

.list td, .list th {
	padding: 4px 4px;
}


form td {
	padding: 4px 4px;
}

th {
	font-size: smaller;
	font-family: inherit;
	color: inherit;
	border: 0px;
	border-right: 1px solid var(--color-gray1);
	background-color: var(--color-gray1);
	padding: 4px 2px;
	/*border: 4px solid transparent;*/
	
}

table.highlight tr:hover,
tr.highlight:hover {
	background-color: var(--color-gray1);
}

.list2 tr:nth-child(even) {
	background-color: #fff;
}
.list2 tr:nth-child(odd) {
	background-color: var(--color-gray1);
}
.list_head1 tr:nth-child(1) {
	background-color: transparent;
	border-bottom: 0 solid transparent;
	font-size: normal;
}
.list_head2 tr:nth-child(2) {
	background-color: transparent;
	border-bottom: 0 solid transparent;
	font-size: smaller;
}

.list2 td {
	padding: 8px 4px;
	vertical-align: top;
}

.list2 th {
	color: #fff;
	padding-left: 0;
	padding-right: 2px;
	vertical-align: top;
	background-color: transparent;
	border: 0px;
	position: relative;
}

.list2 th div {
	padding: 8px;
	border-radius: 1em 0;
	height: 100%;
}









/*  */

.admin_stat {
	opacity: 0;
	left: -999px;
	position: fixed;
	font-size: 70%;
	top: 200px;
	text-align: left;
	color: #000;
	z-index: 2000;
	padding: 10px;
	background-color: rgba(128,128,128,.2);


	animation-name: fade_out;
	animation-duration: 4s;
	animation-timing-function: ease-in;
	animation-delay: 0s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}

.login {
	position: absolute;
	top: 1em;
	right: 1em;
	z-index: 9999;
	
	text-align: right;
	color: #000;
	font-size: 80%;
	padding: 0.5em 0em;
}



.white_text {
	color: #fff;
}
.white_text a,
.white_text h1,
.white_text h2,
.white_text h3 {
	color: #fff;
}
.white_text a:hover {
	color: #fff;
}

.gray {
	opacity: 0.5;
}

.color1 {
	color: var(--color1);
}

.color2 {
	color: var(--color2);
}

.color_gray1 {
	color: var(--color-gray1);
}

.color_gray2 {
	color: var(--color-gray2);
}

.color_red {
	color: var(--color-red);
}

.color_yellow {
	color: var(--color-yellow);
}

.color_blue {
	color: var(--color-blue);
}

.light {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
}

.medium {
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
}

.huge {
	font-size: 150%;
}

.sm {
	font-size: 80%;
}

.img_bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.bg_color1 {
	background-color: var(--color1);
}

.bg_color2 {
	background-color: var(--color2);
}

.bg_color3 {
	background-color: var(--color3);
}

.bg_color4 {
	background-color: var(--color4);
}

.bg_tint {
	background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

.bg_light {
	background-color: var(--color1-2);
}

.bg_gray1 {
	background-color: var(--color-gray1);
}

.bg_gray2 {
	background-color: var(--color-gray2);
}

.bg_white {
	background-color: #fff;
}

.black {
	background-color: var(--color3);
	color: #fff;
}

.black a {
	color: var(--color4);
}

.mh100 { max-height: 100vh; }
.mh80 { max-height: 80vh; }

.hidden {
	display: none;
}


.button_more {
	display: block;
	width: auto;
	padding: 5px 0;
	background-color: rgba(0, 0, 0, 0.1);
	color: rgba(0, 0, 0, 1);
	text-decoration: none;
	text-align: center;
	margin: 1em;
	
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.05);
			box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

.button_more:hover {
	color: #000;text-decoration: none;
	background-color: rgba(0, 0, 0, 0.2);
}

.round {
	border-radius: 50%;
}

.icon {
	font-family: 'font_awesome';
}



/* modal */

.modal {
	display: none;
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 9999;
	padding-top: 100px;
}

.modal_bg {
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
	background-color: rgba(0,0,0,0.7);
	overflow: auto;
}

.modal_card {
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
}

.modal_container {
    position: relative;
}

.close_modal {
	position: absolute;
	top: 0.2em;
	right: 0.2em;
	cursor: pointer;
	opacity: 0.5;
}
.close_modal:hover {
	opacity: 1;
}
.close_modal img {
	width: 2em;
	height: 2em;
	display: block;
}


/* slider */


.slick-dots {
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 1;
	position: relative;
	padding: 0;
}

.slick-dots li::before {
	content: '';
}


.slick-dots li {
	display: block;
	width: 1em;
	height: 0.3em;
	margin: 0.3em;
	background-color: var(--color1-3);
	border-radius: 2px;
	border: 0px solid var(--color1);
	cursor: pointer;
}

.slick-dots li.slick-active {
	background-color: var(--color1);
}

.slick-dots li:hover {
	background-color: var(--color1-5);
}

.slick-dots button {
	display: none;
}

.slick-slide {
	outline: none;
}

.slick-prev {
	position: absolute;
	left: 25px;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-next {
	position: absolute;
	right: 25px;
	top: calc((100% - 50px) / 2);
	padding: 0em;
	cursor: pointer;
	z-index: 100;
}

.slick-prev img,
.slick-next img {
	height: 100px;
}





/* сайт */

.menu_top {
	display: block;
	color: #000;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	margin: 2rem;
	font-weight: 500;
	position: relative;
	font-size: 120%;
}
.menu_top a.menu {
	color: #000;
	padding: 0.5rem 1rem;
}
.menu_top a.menu:hover {
	color: var(--color1);
}
.menu_selected {
	color: var(--color1) !important;
}






.menu_mobile {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
	padding: 0;
	margin: 0;
	z-index: 100000;
	font-weight: 500;
}

.menu_mobile li {
	display: block;
}

.menu_mobile a {
	display: block;
	padding: 1em 1em 1em 1em;
	color: #000;
}

.menu_mobile_links {
	position: absolute;
	top: 2em;
	right: 1em;
	width: auto;
}



.tab {
	padding: 0.1em 0.3em;
	border-radius: 0px;
	border-bottom: 2px solid var(--color1);
}
.tab:hover {
	background-color: var(--color1-5);
	color: #fff !important;
	border-radius: 4px;
}
.tab_selected {
	padding: 0.1em 0.3em;
	border-radius: 4px;
	background-color: var(--color1);
	color: #ffffff;
}
.tab_selected:hover {
	background-color: var(--color1);
	color: #fff !important;
}


a .card {
	color: #000;
}
a .card h3 {
	color: var(--color1);
}

.white_text a .card {
	color: #fff;
}

.required {
	color: #f00;
}


.news_img_block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.news_img_block img {
	max-height: 200px;
	margin-bottom: 1em;
	margin-right: 1em;
}



.anketa .card {
	padding: 1em 1em 1em 1em;
	margin-bottom: 1em;
}

.anketa {
	background-color: var(--color1-3);
}
input.anketa_question {
	font-weight: bold;
}
.anketa input,
.anketa textarea,
.anketa select {
	border-color: var(--color1-3);
}

video {
	/*max-width: 100%;*/
}

.video iframe {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

a.auth {
	display: inline-block;
	padding: 0.5em 1em;
	border-bottom: 1px solid var(--color-gray2);
	color: var(--color-gray2);
	font-weight: bold;
}
a.auth_active, a.auth:hover {
	color: var(--color1);
	border-bottom: 4px solid var(--color1);
}

.login_1 {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.login_2 {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.video_play {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: url(/files/site/video_play.png);
	background-position: center center;
	background-repeat: no-repeat;
	transition: 250ms;
}

.video_play:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.corners_10 {
	border-radius: 10px;
}

.button_round1 {
	background-image: url(/files/site/button_round1.svg);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 215px;
	height: 215px;
	color: #fff;
	text-align: center;
	font-size: 20px;
	padding: 20px;
	border-radius: 50%;
	transition: 200ms;
	margin: 0;
	border: 2px solid #fff;
}

.button_round1 div {
	transition: 200ms;
}

.button_round1:hover {
	color: #fff;
	/*background-size: 103% 103%;*/
	transform: rotate(-40deg);
}

.button_round1:hover div {
	transform: rotate(40deg);
}

.button_round_w {
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 250px;
	color: #000;
	text-align: center;
	font-size: 24px;
	padding: 20px;
	border-radius: 50%;
	transition: 200ms;
	border: 1px solid #000;
}

.button_round_w div {
	transition: 200ms;
}

.button_round_w:hover {
	color: #fff;
	background-color: var(--color1);
	border: 1px solid var(--color2);
}

.button_round_w:hover div {
}



.object_img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
}

.stage_title {
	padding: 15px 4px;
	text-align: center;
	font-weight: bold;
	font-size: 150%;
	border-radius: 1em 0 0 0;
}

.stage_title a {
	color: inherit;
}

.stage_title_sm {
	padding: 0.2em 1em;
	text-align: center;
	font-weight: bold;
	border-radius: 1em 0 0 0;
}

.order_list_container {
	overflow-x: scroll;
}

.order_list_table td {
	min-width: 5%;
}

.order_item {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	border: 1px solid var(--color-gray1-5);
	border-radius: 1em 0;
	padding: 10px;
	transition: 200ms;
	background-color: #ffffff;
	overflow: hidden;
}

.order_item:hover {
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
}

.order_item h4 {
	margin: -10px -10px 10px -10px;
	background-color: var(--color-gray1-3);
	padding: 10px 10px;
}

.order_item h4 a {
	color: inherit;
}

.order_item p {
	margin-bottom: 4px;
}

.order_text {
	border: 1px solid var(--color-gray1-5);
	border-left: 4px solid var(--color-gray1-5);
	background-color: #ffffff;
	padding: 1em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	overflow-x: scroll;
	font-style: italic;
}

.comment_block {
	border: 1px solid var(--color-gray1);
	padding: 1em 1em 0em 1em;
	margin-bottom: 0.5em;
	max-height: 70vh;
	overflow-y: auto;
	box-shadow: 0 0 1em 0 var(--color-gray1-2);
	background-color: #fff;
}

.comment_block:empty {
	display: none;
}

.comment {
	margin-bottom: 2em;
}

.comment_text {
	margin-top: 0.5em;
	padding: 0.5em 1em;
	border-radius: 0px 0.5em 0.5em 0.5em;
	background-color: var(--color1-1);
	border: 1px solid var(--color1-3);
	display: inline-block;
}

.comment_text_service {
	/*color: var(--color1);*/
}


.delete {
	color: #d00;
}

.calendar_table {
	padding: 2px 4px;
	margin: auto;
	width: 100%;
	background-color: rgba(255,255,255,1.00);
}

.calendar_table td {
	border: 1px solid #888;
	vertical-align: top;
}

.calendar_table td.calendar_today {
	border: 4px solid var(--color1);
}

.calendar_not_month {
	background-color: var(--color-gray1-5);
}

.task_add {
	opacity: 0;
}

td:hover .task_add {
	opacity: 1;
}





.task_item {
	margin: 0.5em 1em;
	border: 1px solid var(--color-gray1-5);
	border-radius: 1em 0;
	padding: 10px;
	transition: 200ms;
	background-color: rgba(240,240,240,1);
	overflow: hidden;
}

.task_item:hover {
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
}

.task_item h5 {
	margin: -10px -10px 10px -10px;
	background-color: var(--color-gray1-2);
	padding: 10px 10px;
}

.task_item h5 a {
	color: inherit;
}

.task_item p {
	margin-bottom: 4px;
}

.task_text {
	border: 1px solid var(--color-gray1-5);
	border-left: 4px solid var(--color-gray1-5);
	background-color: #ffffff;
	padding: 1em;
}

.task_item_expired {
	background-color: rgba(243,212,212,1);
}


.block_title {
	background-color: var(--color-gray1);
	padding: 15px 4px;
	text-align: center;
	font-weight: bold;
	border-radius: 1em 0 0 0;
	color: #000;
}

.client_row .client_row_edit {
	opacity: 0;
}
.client_row:hover .client_row_edit {
	opacity: 1;
}

.client_type_0 {
	padding: 2px 4px;
	border-radius: 0.5em;
	color: #fff;
	font-size: 80%;
	font-weight: bold;
	background-color: #ff6600;
}

.client_type_1 {
	padding: 2px 4px;
	border-radius: 0.5em;
	color: #fff;
	font-size: 80%;
	font-weight: bold;
	background-color: #ffcc00;
}

.client_type_2 {
	padding: 0.1em 0.3em;
	border-radius: 0.3em;
	color: #fff;
	font-size: 80%;
	font-weight: bold;
	background-color: var(--color1);
}

.border_left {
	border-left: 1px solid var(--color-gray1);
}

.block {
	background-color: #fff;;
	padding: 1.5em 1em;
	border-radius: 1em 0;
	margin-bottom: 0.5em;
}

.bg_grade1 {
	background-color: var(--grade1);
	color: #fff;
}

.bg_grade2 {
	background-color: var(--grade2);
	color: #fff;
}

.bg_grade3 {
	background-color: var(--grade3);
	color: #fff;
}

.bg_grade4 {
	background-color: var(--grade4);
	color: #fff;
}

.bg_grade5 {
	background-color: var(--grade5);
	color: #fff;
}

.bg_grade6 {
	background-color: var(--grade6);
	color: #fff;
}

div#notifications {
	position: fixed;
	left: -200vw;
	bottom: 0px;
	z-index: 2000;
	max-height: 70vh;
	max-width: 80vw;
	overflow-y: auto;
	padding: 1em;
	background-color: rgba(0,0,0,0.5);
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
	font-size: 80%;
}

div.new_notification {
	position: relative;
	padding: 1em;
	border-radius: 0em 1em 1em 1em;
	background-color: rgba(255,255,255,1);
	margin: 1em 0em;
	box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.4);
}











/* xxl */
@media screen {
	.video iframe {
		width:  900px;
		height:  506px;
	}
}

@media screen and (max-width: 1800px) {
	
}

/* xl */
@media screen and (max-width: 1400px) {
	.tech_n .video_play2 {
		right: -1em;
		height: 74px;
		width: 74px;
	}
	

}

/* lg */
@media screen and (max-width: 1200px) {
	.main_slider1 {
		width: 95%;
	}
	
	.button_round1,
	.button_round_w {
		margin: auto;
	}

	#button1 {
		display: none;
	}
	
	#button_tech_price {
		left: 0;
		right: 0;
	}
	
	#button_tech_video {
		left: 0;
		right: 0;
	}
}

/* md */
@media screen and (max-width: 992px) {
	.video iframe {
		width:  750px;
		height:  422px;
	}

	#comfort_video {
		top: 0px;
		padding-bottom: 5em;
	}

}

/* sm */
@media screen and (max-width: 768px) {
	.video iframe {
		width:  550px;
		height:  309px;
	}
}

/* xs */
@media screen and (max-width: 576px) {
	.video iframe {
		width: 100vw;
		height: 56.25vw;
	}
	
	.use_menu a {
		width: 100%;
	}

}






