.back-form {
    position: fixed;
    top: 0;
    right: -500px;
   /* background: #212121;*/
    z-index: 1001;
    height: 100%;
    width: 500px;
    transition: all 200ms ease-in-out;
    display: table;
    color: #fff;
    /*background-image: linear-gradient(to top right, rgba(74, 85, 117, 0.95), rgba(73, 82, 112, 0.95), rgba(71, 79, 106, 0.96), rgba(70, 77, 101, 0.96), rgba(69, 74, 95, 0.97), rgba(67, 71, 90, 0.97), rgba(66, 68, 84, 0.98), rgba(64, 65, 79, 0.98), rgba(63, 62, 73, 0.99), rgba(62, 60, 68, 0.99), rgba(60, 57, 62, 1), rgb(59, 54, 57));*/
}

.back-form__content.loading {
    opacity: 0.2;
    transition: 0.5s;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.back-form__content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.back-form__title{
    font-size: 25px;
    margin-bottom: 30px;
}

.back-form__group {
    position: relative;
    margin-bottom: 30px;
    display: block;
}

.back-form__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    margin: 20px;
    cursor: pointer;
    transition: 0.3s;
    opacity: 1;
}

.back-form__close:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.back-form__close svg {
    width: 100%;
    height: 100%;
}

.back-form__close svg path {
    color: #fff;
    fill: #fff;
}

.back-form-show .content {
    opacity: 0.2;
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -o-transition: translateX(-100px);
}

.back-form-show .back-form {
    transform: translateX(-500px);
    -webkit-transform: translateX(-500px);
    -o-transition: translateX(-500px);
}

.back-form-overflow {
    display: none;
    opacity: 0;
    transition: 0.5s;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    position: fixed;
    background-color: #000;
}

.back-form-show .back-form-overflow {
    display: block;
    opacity: 0.5;
}

.back-form__form {
    width: 80%;
    margin: auto;
}

.back-form__group {
    position: relative;
    margin-bottom: 30px;
    display: block;
}

.back-form__polit{
    font-size: 14px;
    text-align: left;
}

.back-form__group input[type=text],
.back-form__group input[type=email],
.back-form__group textarea,
.back-form__group select {
    font-size: 13px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid #7f8c8d;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

select option:hover {
    background-color: #ea4e36;
}

.back-form__group select {
    width: 100%;
}

.back-form__group textarea {
    height: 58px;
    margin-left: 0;
}

.back-form__group input:focus,
.back-form__group .error input,
.back-form__group textarea:focus {
    outline: none;
    border-bottom-color: transparent;
}

.back-form__group label {
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 10px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
}

.back-form__group input:focus ~ label,
.back-form__group.error input ~ label,
.back-form__group.not-empty input ~ label,
.back-form__group textarea:focus ~ label,
.back-form__group.not-empty textarea ~ label {
    top: -10px;
    font-size: 12px;
    color: #ea4e36;
}

.back-form__group .back-form__bar {
    position: relative;
    display: block;
    width: 100%;
}

.back-form__group .back-form__bar:before,
.back-form__group .back-form__bar:after {
    content: "";
    height: 1px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: #ea4e36;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.back-form__group .back-form__bar:before {
    left: 50%;
}

.back-form__group .back-form__bar:after {
    right: 50%;
}

.back-form__group input:focus ~ .back-form__bar:before,
.back-form__group input:focus ~ .back-form__bar:after,
.back-form__group .error input ~ .back-form__bar:before,
.back-form__group .error input ~ .back-form__bar:after,
.back-form__group textarea:focus ~ .back-form__bar:after,
.back-form__group textarea:focus ~ .back-form__bar:before {
    width: 50%;
}

.back-form__group .back-form__highlight {
    position: absolute;
    height: 60%;
    width: 100%;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

.back-form__group input:focus ~ .back-form__highlight,
.back-form__group textarea:focus ~ .back-form__highlight,
.back-form__group .error input ~ .back-form__highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

.back-form__error-text {
    position: absolute;
    right: 0;
    color: #ea4e36;
    display: none;
    font-size: 14px;
}

.back-form__error .back-form__error-text {
    display: block;
}

.back-form__btn {
    border: 2px solid #fff;
    padding: 10px 20px;
    transition: 0.3s;
    color: #fff;
    background: none;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
    display: inline-block;
}

.back-form__btn:hover {
    border-color: #ea4e36;
}

.grecaptcha-badge{
    display: none;
}

@media (max-width: 500px) {
    .back-form {
        width: 100%;
    }
}

.back-form-fixed-btn {
    position: fixed;
    transition: opacity 0.5s;
    cursor: pointer;
    width: 70px;
    height: 70px;
    background: #ab2929;
    border-radius: 100%;
    bottom: 52px;
    right: 69px;
    z-index: 10;
}

.back-form-fixed-btn.__hidden {
    z-index: -100;
}

.back-form-fixed-btn svg {
    box-sizing: initial;
    fill: #fff;
    width: 32px;
    height: 32px;
    opacity: 1;
    padding: 21px 0 0 19px;
}

.back-form-fixed-btn:before {
    content: "";
    background-color: #ea4e36;
    width: 10px;
    height: 10px;
    position: absolute;
    border-radius: 100%;
    top: 2px;
    right: 9px;
    opacity: 1;
    transition: opacity 0.3s;
}

.back-form-fixed-btn:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.back-form-fixed-btn:hover:after {
    -webkit-animation: sonarEffect 1.3s ease-out 75ms;
    animation: sonarEffect 1.3s ease-out 75ms;
}

@-webkit-keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #232d36, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #232d36, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes sonarEffect {
    0% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.5;
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #232d36, 0 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #232d36, 0 0 0 10px rgba(255, 255, 255, 0.5);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}

.sk-fading-circle {
    width: 25px;
    height: 25px;
    position: absolute;
    margin: auto;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
}
.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-fading-circle-delay 1.2s infinite ease-in-out both;
    animation: sk-fading-circle-delay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle-2 {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
}
.sk-fading-circle .sk-circle-3 {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
.sk-fading-circle .sk-circle-4 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.sk-fading-circle .sk-circle-5 {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
}
.sk-fading-circle .sk-circle-6 {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
}
.sk-fading-circle .sk-circle-7 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sk-fading-circle .sk-circle-8 {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
}
.sk-fading-circle .sk-circle-9 {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
}
.sk-fading-circle .sk-circle-10 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}
.sk-fading-circle .sk-circle-11 {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
}
.sk-fading-circle .sk-circle-12 {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
}
.sk-fading-circle .sk-circle-2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.sk-fading-circle .sk-circle-3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}
.sk-fading-circle .sk-circle-4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.sk-fading-circle .sk-circle-5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}
.sk-fading-circle .sk-circle-6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}
.sk-fading-circle .sk-circle-7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}
.sk-fading-circle .sk-circle-8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}
.sk-fading-circle .sk-circle-9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle-10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle-11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle-12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}
@-webkit-keyframes sk-fading-circle-delay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes sk-fading-circle-delay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}