.main-footer {
  padding: 10px;
  background: #fff;
  text-align: center; 
  padding-bottom: 20px;
}

.main-footer__address, .main-footer__private {
  margin: 10px 0; 
}

.main-footer__link {
  color: #000;
  text-decoration: underline; 
}

.main-footer__link:hover {
  color: #a4c2dd;
}

.feedback {
  width: 75px;
  height: 70px;
  position: fixed;
  right: -15px;
  top: 15%;
  display: flex;
  align-items: center;
  background-color: #FFD27A;
  padding-left: 10px;
  border-top-left-radius: 35px;
  border-bottom-left-radius: 35px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0px 0px 1px rgba(0,0,0,0.3);
  transition: all .5s;
}

.feedback:hover {
    right: 0;
}

.popup-window {
  font-family: inherit;
  display: none;
  width: 300px;
  position: fixed;
  right: 0;
  top: 15%;
  padding: 35px 10px;
  background: #222222;
  border-radius: 5px;
  z-index: 2000;
}

.popup-window form {
  width: 100%;
  min-height: auto;
  padding: 0;
  background: inherit;
  box-shadow: none;
}

.popup-window label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding-left: 0;
}

.popup-window input {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  padding: 10px;
  border: none;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 15px;
}

.popup-window button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background: #FFD27A;
  color: #000;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 15px;
  border-radius: 20px;
}

.close-popup {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 27px;
  height: 27px;
  background-color: #222222;
  cursor: pointer;
}

.close-popup:before {
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 4px;
  transform: rotate(-45deg);
}

.close-popup:after {
  content: "";
  background: #fff;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 4px;
  transform: rotate(45deg);
}