body {
    background: rgba(46, 183, 171, 0.1) ;
	z-index: 0;
}
    
a:link {
  color: #2eb7ab;
  font-weight:600;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #2eb7ab;
  font-weight:600;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

.form-wrapper {
	font: 16px 'Google Sans';
    box-sizing: border-box;
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 251, 251, 0.2);
    padding: 30px;
	border-radius:5px;
}

.contact-form {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    padding: 0 30px 30px;
    box-shadow: 0 3px 5px rgba(35, 152, 171, 0.4);
    border-radius: 10px;
}

.contact-form__title, .contact-form__title__form {
    box-sizing: border-box;
    margin: 0 -30px 30px;
	padding: 1px;
    width: calc(100% + 60px);
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    background-color:
        #2eb7ab;
    color: #fff;
}

.contact-form__title {
		border-radius: 10px 10px 0 0;
		padding: 15px 30px;
}

.contact-form__description {
    text-align: center;
    font-size: 17px;
}

.contact-form__input-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.contact-form__input {
	font: 500 12px/1.2 'Google Sans';
    width: 100%;
    height: 50px;
    padding: 0 15px;
    box-sizing: border-box;
    border: 1px solid #e2e2e2;
    background: #fbfbfb;
    border-radius: 5px;
    -webkit-appearance: none;
}

.contact-form__text {
    height: 80px;
    padding: 15px;
    resize: vertical;

}

.contact-form__checkbox {
    -webkit-appearance: checkbox;
    width: 15px;
    height: 15px;
    margin: 0 15px 0 0;
}

.contact-form__checkbox-label {
    width: calc(100% - 30px);
    font-size: 13px;
}

.contact-form__checkbox-label a {
    text-decoration: none;

}

.contact-form__file {
    padding: 12px 15px;
}

.contact-form__error {
	font: 13px 'Google Sans';
	color:red;
    width: 100%;
	padding-top:2px;
}

.contact-form__button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #2eb7ab;
    max-width: 160px;
    margin: 30px auto 0;
    border-radius: 5px;
    height: 44px;
    color: #fff;
    font: 600 16px/1.2 'Google Sans';
	cursor: pointer;
    transition: .3s;
    padding: 2px 0 0 0;
	box-shadow: 0 2px 0 #2d9188;
	border: 1px solid #2d9188;
}
.contact-form__button:active {
  box-shadow: 0 1px 0 #2d9188;
  transform: translateY(1px);
}
.contact-form__button:hover {
   background: #29ab9f;
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 15px;
    }

    .contact-form {
        padding: 0 15px 15px;
    }

    .contact-form__title {
        margin: 0 -15px 30px;
        padding: 15px 30px;
        width: calc(100% + 30px);
        font-size: 18px;
    }

    .contact-form__checkbox {
        margin-top: 1px;
    }

    .contact-form__checkbox-label {
        font-size: 14px;
    }


	.contact-form__input-wrapper {
        align-items: flex-start;
    }

}

/* Стили страницы благодарности */

.thank-you-page {
	font: 16px/1.2 'Google Sans';
	display:none;
    margin: 50px auto 0 auto;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
	max-width: 400px;
    background: #fff;
    padding: 0 30px 30px;
    box-shadow: 0 3px 35px rgba(0, 0, 0, .2);
    border-radius: 2px;
}

.thank-you-page__title {
     box-sizing: border-box;
	border-radius: 4px 4px 0 0;
    margin: 0 -30px 30px;
    padding: 15px 30px;
    width: calc(100% + 60px);
    line-height: 1.5;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #000;
    background-color:
        #2eb7ab;
    color: #fff;
}

.thank-you-page__descriptor {
	min-height: 150px;
    margin: 0 15px 30px 15px;
    font-size: 20px;
    text-align: center;
}

a.thank-you-page__button{
	width: 40%;
	display: flex;
	text-align:center;
	align-items: center;
	justify-content: center;
	background-color: #2398ab;
    max-width: 160px;
    margin: 0px auto 0;
    border-radius: 5px;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    transition: .3s;
    padding: 2px 0 0 0;
	box-shadow: 0 2px 0 #1f8899;
	border: 1px solid #1f8899;
	text-decoration:none;
}
a.thank-you-page__button:active {
  box-shadow: 0 1px 0 #1f8899;
  transform: translateY(1px);
}
a.thank-you-page__button:hover {
   background: #1c7988;
}

.splash {
  position: absolute;
  z-index: 9999;
  color: #EE2F24;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0
}

.spinner {
  margin: -10% 0 0 -50%;
  width: 100%;
  height: 70px;
  text-align: center;
  font-size: 10px;
  position: relative;
  top: 55%;
  left: 50%;
}

.spinner > div {
  background-color: #70abab;
  height: 100%;
  width: 8px;
  margin-left: 3px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
       transform: scaleY(1.0);
       -webkit-transform: scaleY(1.0);
     }
}
.popup-fade {
	display: none;
}
.popup-fade:before {
	content: '';
	background: #000;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	opacity: 0.7;
	z-index: 9999;
}
.popup {
	overflow: auto; 
	position: fixed;
	top: 10%;
	left: 10%;
	right:auto;
	padding: 20px;
	width:80%; height:75%;
	background: #fff;
	border: 1px solid #2eb7ab;
	border-radius: 4px; 
	z-index: 99999;
	opacity: 1;	
}
.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
}
.popup-close:hover {
	position: absolute;
	top: 11px;
	right: 10px;
	text-decoration: none;
	text-shadow: 0 1px 1px red;
	
}

.form_line {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	border-top: 2px solid #2eb7ab; /* #2398ab; */
	margin-top:30px;
}

/* LOARED #1 */
/*
.loader-container {
  font-size: 10px;
  position: relative;
  width: 100px;
  height: 100px;
  display: inline-block;
  text-align: center;
  border: 1px solid #ccc;
  border-collapse: collapse;
  vertical-align: top;
}

.loader-1 {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  margin: -25px auto 0;
  border-radius: 50%;
  background: #32CD32;
  background: -moz-linear-gradient(left, #32CD32 10%, rgba(50, 205, 50, 0) 50%);
  background: -webkit-linear-gradient(left, #32CD32 10%, rgba(50, 205, 50, 0) 50%);
  background: -o-linear-gradient(left, #32CD32 10%, rgba(50, 205, 50, 0) 50%);
  background: -ms-linear-gradient(left, #32CD32 10%, rgba(50, 205, 50, 0) 50%);
  background: linear-gradient(to right, #32CD32 10%, rgba(50, 205, 50, 0) 50%);
  position: relative;
  -webkit-animation: loader-1 1.5s infinite linear;
  animation: loader-1 1.5s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.loader-1:before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100% 0 0 0;
}

.loader-1:after {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
*/