/*Виджет обратной связи*/
.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: 20px;
  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;
}

.form-container {
  /*border-radius: 0px;*/
  max-width: 290px;
  padding: 10px;
  background-color: #f9f9f9;  
  font-family: fonts;
}

.text_widget {
    font-family: arial;
    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: 270px;
	font-family: fonts;
}

.textarea_widget {
    font-family: arial;
    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: 260px;
	font-family: fonts;
}   

.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;
}

.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;
}

/*Куки*/
#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);
}