@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}
.page-wrapper {
/*   width: 100%;
  height: 100%; */
  background-size: cover;
}
a.btn {
  width: 80px;
  padding: 18px 0;
  position: fixed;
  bottom: 5%; 
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border: solid 1px black; 
  border-radius: 5%;
  background: lightblue;
  opacity: 0.5;
   z-index: 10000;
  transition: all 1.5s ease; 
}

a.btn:hover{
  cursor: grab;
  transition: all 1.5s ease; 
  opacity: 1;
  filter:brightness(95%); 
  background: white;
}
/* НЕ ИСПОЛЬЗУЮ*/
#tooltip {
  z-index: 10000;
  position: absolute;
  display: none;
  width: 200px;
  background-color: rgb(238, 238, 220);
  padding: 5px 10px 5px 10px;
  color: #000;
  border: 1px solid #888;
  border-radius: 5%; 
}
a.btn img{
width: 39px;
height: 39px;
}

.modal-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0; 
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: rgba(0, 0, 0, 0.5);
}
.modal-wrapper.open {
  opacity: 1;
  visibility: visible;
 z-index: 1000;
}
#btn_close{
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: white;
  border: solid 1px white;
  opacity: 0.8;
  border-radius: 5%;
  display: inline-block;
 }
 #btn_close:hover{
  cursor: pointer;
 }
 
.content{
width: 100%;
background: dimgray;
}

  /* Фиксация при открытии модального окна */
  body.no-scroll {
    height: 100%;
    overflow: hidden;
 }

.modal {
/*    display: block!important;
  z-index: 100000!important;  */
  width: 60%;
  margin: 30% 0 0 0;
  position: relative;
  top: 50%; 
  left: 50%;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.modal-wrapper.open .modal {
  margin-top: 0%;
  margin-left: 0%;
  opacity: 1;
  display: block;
}

.head{
  width: 100%;
  height: 100%;
  margin: 0 0 14px;
  padding: 5px 30px;
  overflow: hidden;
  position: absolute;
}
.btn-close {
  font-size: 28px;
  display: block;
  float: right;
  color: #fff;
}
.modal .content {
  padding: 0 0 20px 0;
}
.good-job {
  text-align: center;
  font-family: 'Montserrat', Arial,       Helvetica, sans-serif;
  color: white;
}
.good-job .fa-thumbs-o-up {
  font-size: 60px;
}
.good-job h1 {
  font-size: 45px;
}
.form_modal_window{
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.modal .content .text{
  background: url("../Bright-Purple-Wallpaper-59-images.jpg");
  color: #fff;
  padding: 10px;
  margin: 20px 0;
}
.modal .content .text h2{
  margin:0;
  font-size: 35px;
}
.modal .content .text p{
  margin:0;
  font-size: 14px;
}
.modal-wrapper{
  margin: 0 0 20px 0;
}
.modal .content form input  {
  color: #000;
  padding: 15px;
  border: none;
  margin-bottom: 15px;
  box-shadow: 0px 1px 3px 1px #e9e9e9;
  font-size: 15px;
}
.modal .content form input[type=submit] {
  padding: 10px 40px;
  max-width: 200px;
  margin: auto;
  border-radius: 3%;
  color: #fff;
  background: gray;
  font-size: 20px;
  /* text-shadow: 0px 0px 6px black; */
  display: inline-block;
  border: none;
  outline: none;
}
.modal form textarea{
  box-shadow: 0px 1px 3px 1px #e9e9e9;
  font-size: 15px;
  margin-bottom: 15px;
  padding: 15px;

}