/*Виджет обратной связи*/
.open-button {
	background-color: #2196F3;
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 0px 0px;
	cursor: pointer;
	opacity: 0.9;
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 280px;
	height: 50px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	font-family: fonts;
}

.form-popup {
	display: none;
	position: fixed;
	bottom: 0px;
	right: 20px;
	border: 1px solid rgba(00,00,00, 0.2);
	z-index: 9;
	/*border-radius: 0px;*/
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	font-family: fonts;
	border-radius: 10px 50px 0px 0px;
	text-align: left;
}

.form-container {
  /*border-radius: 0px;*/
	width: 350px;
	padding: 10px;
	background-color: white;  
	font-family: fonts;
	border-radius: 10px 50px 0px 0px;
}

.text_widget {
    font-family: fonts;
    outline: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 35px; /* Высота */
    padding-left: 10px; /* Поля */
    font-size: 15px; /* Размер текста */
    vertical-align: middle; /* Выравнивание по середине */
    text-align: left;
    background: #ffffff;
    /*border-radius: 2px;*/
    margin-bottom: 5px;
    margin-top: 10px;
	width: 320px;
	font-family: fonts;
}

.calendar_widget {
    font-family: fonts;
    outline: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 35px; /* Высота */
    padding-left: 10px; /* Поля */
	padding-right: 10px; /* Поля */
    font-size: 15px; /* Размер текста */
    vertical-align: middle; /* Выравнивание по середине */
    background: #ffffff;
    /*border-radius: 2px;*/
    margin-bottom: 5px;
    margin-top: 10px;
	width: 312px;
	font-family: fonts;
}

.textarea_widget {
    font-family: fonts;
    border: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 100px; /* Высота */
    padding: 5px 10px 5px 10px; /* Поля */
    font-size: 15px; /* Размер текста */
    line-height: 100%;
    -webkit-appearance: none;
    /*border-radius: 2px;*/
	margin-bottom: 5px;
    margin-top: 10px;
	width: 312px;
	font-family: fonts;
}   

.textarea_chat {
    font-family: fonts;
    border: none;
    height: 53px; /* Высота */
    padding: 5px 10px 5px 10px; /* Поля */
    font-size: 15px; /* Размер текста */
    line-height: 100%;
    -webkit-appearance: none;
    /*border-radius: 2px;*/
	width: 290px;
	font-family: fonts;
	display: inline-block;
	margin-top: 5px;
}  

.div_chat {
	height: 400px;
	width: 350px;
	background: white;
	border: none;
	overflow-y: auto;
}

.div_chat_main {
	font-family: fonts-Medium;
	font-size: 25px;
	padding: 5px;
	/*background: var(--work-color);
	color: white;
	border-radius: 10px 50px 0px 0px;*/
}

.chat_left {
	width: 75%;
	float: left;
	border: none;
	padding: 5px 10px 5px 10px;
	text-align: left;
	border-radius: 10px;
	background: #edeef0;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
	font-size: 15px;
	margin: 5px;
}

.chat_right {
	width: 75%;
	float: right;
	border: none;
	padding: 5px 10px 5px 10px;
	text-align: left;
	border-radius: 10px;
	background: #B1FFA3;
	box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.4);
	font-size: 15px;
	margin: 5px;
}

.chat_bottom {
	width: 100%;
	height: 3px;
	float: right;
	border: none;
	background: transparent;
}

.form-container .btn {
	color: white;
	padding: 10px 10px;
	border: none;
	cursor: pointer;
	width: 100%;
	opacity: 0.9;
	font-size: 18px;
	font-weight: bold;
	font-family: fonts;
	/*border-radius: 2px;*/
}

.form-container .send {
	background-color: #CB2821;
	margin-bottom: 10px;
	font-family: fonts;
}

.form-container .cancel {
	background-color: #448AFF;
	font-family: fonts;
}

.chat_btn_send {
	background-color: #18c139;
	font-family: fonts;
	border-radius: 50px;
	width: 30px;
	height: 30px;
	border: none;
	font-size: 14px;
	color: white;
	cursor: pointer;
	opacity: 0.9;
	display: inline-block;
	position: absolute;
	margin: 5px 10px 0px 10px;
}

.chat_btn_send:hover {
	opacity: 1;
}

.chat_btn_cancel {
	background-color: #CB2821;
	font-family: fonts;
	border-radius: 50px;
	width: 30px;
	height: 30px;
	border: none;
	font-size: 14px;
	color: white;
	cursor: pointer;
	opacity: 0.9;
	display: inline-block;
	position: absolute;
	margin: 40px 10px 0px 10px;
}

.chat_btn_cancel:hover {
	opacity: 1;
}

.form-container .btn:hover, .open-button:hover {
	opacity: 1;
	font-family: fonts;
}

/*Виджед обратного звонка*/
.popup-fade {
	display: none;
	font-family: fonts;
}
.popup-fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.5;
	z-index: 9999;
	font-family: fonts;
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	/*border-radius: 0px;*/ 
	z-index: 99999;
	opacity: 1;	
	font-family: fonts;
}
.popup-open1 {
	color: white;
    padding: 10px 15px;
    border: 1px solid var(--work-color);
    cursor: pointer;
    width: 100%;
	background: var(--work-color);
	font-family: fonts;
}
.popup-open1:hover {
	background: white;
	color: black;
}
.popup-open2 {
	color: var(--work-color);
    padding: 10px 15px;
    border: 1px solid var(--work-color);
    cursor: pointer;
    width: 100%;
	background: transparent;
	font-family: fonts;
}
.popup-open2:hover {
	background: var(--work-color);
	color: white;
}
.popup-close {
	color: white;
    padding: 10px 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    opacity: 0.9;
    font-size: 18px;
    font-weight: bold;
    /*border-radius: 2px;*/
	background-color: #448AFF;
	font-family: fonts;
}
.popup-close:hover {
  opacity: 1;
}

/*Форма бронирования*/
.booking-fade {
	display: none;
	font-family: fonts;
}
.booking-fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.5;
	z-index: 9999;
	font-family: fonts;
}
.booking {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	/*border-radius: 0px;*/ 
	z-index: 99999;
	opacity: 1;	
	font-family: fonts;
	width: 800px;
	height: 600px;
	padding: 20px;
	overflow-y: scroll;
}

.booking-open {
	font-family: fonts;
	color: #ffffff;
	padding: 7px 12px;
	text-decoration: none;
	cursor: pointer;
	vertical-align: bottom;
	-webkit-appearance: none;
	background: var(--work-color);
	border: none;
	border-radius: 2px;
	display: inline-block;
}

.booking-open:hover {
	opacity: 0.80;
}

.booking-open:active {
	transform: scale(0.98);
}

.booking-open-good {
	font-family: fonts;
	color: #ffffff;
	padding: 6px 12px;
	text-decoration: none;
	cursor: pointer;
	vertical-align: bottom;
	-webkit-appearance: none;
	background: var(--work-color);
	border: 1px solid var(--work-color);
	font-size: 16px;
	border-radius: 2px;
	height: 35px;
}

.booking-open-good:hover {
	opacity: 0.80;
}

.booking-open-good:active {
	transform: scale(0.98);
}

.booking-close {
	font-family: fonts;
	color: #ffffff;
	padding: 6px 12px;
	text-decoration: none;
	cursor: pointer;
	vertical-align: bottom;
	-webkit-appearance: none;
	background: var(--work-color);
	border: 1px solid var(--work-color);
	font-size: 16px;
	border-radius: 2px;
	height: 35px;
}

.booking-close:hover {
	opacity: 0.80;
}

.booking-close:active {
	transform: scale(0.98);
}

/*Куки*/
#cookie_note{
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
	font-size: 12px;
	line-height: 1.5;
	font-family: fonts;
}

#cookie_note p{
    margin: 0;    
    text-align: left;
    color: black;
}

#cookie_note a{
	color: var(--work-color);
}

#cookie_note a:hover{
	opacity: 0.80;
}

.cookie_accept {
	font-family: fonts;
	color: #ffffff;
	padding: 10px 20px;
	text-decoration: none;
	cursor: pointer;
	vertical-align: bottom;
	-webkit-appearance: none;
	background: var(--work-color);
	border-radius: 10px;
	border: 1px solid var(--work-color);
	font-size: 14px;
	font-family: fonts;
}

.cookie_accept:hover {
	opacity: 0.80;
}

.cookie_accept:active {
	transform: scale(0.98);
}

@media (min-width: 1000px){
    #cookie_note.show{
        display: flex;
		max-width: 35%;
    }
}

@media (max-width: 1000px){
    #cookie_note.show{
        display: flex;
        text-align: left;
		max-width: 85%;
    }
}

/*Кнопка наверх*/
#scroll-top-btn {
	display: none;
	position: fixed;
	bottom: 30px;
	left: 30px;
	z-index: 99;
	border: none;
	outline: none;
	background-color: var(--work-color);
	color: white;
	cursor: pointer;
	padding: 15px;
	border-radius: 50%;
	font-size: 18px;
	width: 70px;
	height: 70px;
	transition: all 0.3s ease;
	opacity: 0.85;
}

#scroll-top-btn:hover {
	opacity: 1;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#scroll-top-btn:active {
	transform: scale(0.85);
}