/*Виджет обратной связи*/
.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;
}

.form-popup {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border: 1px solid rgba(00,00,00, 0.2);
  z-index: 9;
  border-radius: 5px;
  box-shadow: 0 0 20px;
}

.form-container {
  border-radius: 5px;
  max-width: 290px;
  padding: 10px;
  background-color: #f5f5f6;  
}

.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: 5px;
    margin-bottom: 5px;
    margin-top: 10px;
	width: 270px;
}

.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: 5px;
	margin-bottom: 5px;
    margin-top: 10px;
	width: 260px;
}   

.form-container .btn {
  color: white;
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
}

.form-container .send {
  background-color: #CB2821;
  margin-bottom: 10px;
}

.form-container .cancel {
  background-color: #448AFF;
}

.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}

/*Виджед обратного звонка*/
.popup-fade {
	display: none;
}
.popup-fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.5;
	z-index: 9999;
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 4px; 
	z-index: 99999;
	opacity: 1;	
}
.popup-open1 {
	color: white;
    padding: 10px 15px;
    border: 1px solid var(--work-color);
    cursor: pointer;
    width: 100%;
	background: var(--work-color);
}
.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;
}
.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: 5px;
	background-color: #448AFF;
}
.popup-close:hover {
  opacity: 1;
}