
.feedback-background {
    display: none;
    position: fixed !important;
    top: 0;
    z-index: 500;
    background: #000;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: opacity .5s ease-out;
    cursor: pointer;
    right: 0;
    bottom: 0;
    left: 0;
}

.feedback-background.open {
    display: block;
    opacity: 0.5;
}

.feedback {
    display: none;
    opacity: 0;
    position: fixed !important;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 600;
    background: #fff;
    color: #1b2a30 !important;
    border-radius: 0 0 2px 2px;
    box-shadow: 0 8px 32px rgba(51, 51, 51, 0.7);
    transition: top .2s ease-out .1s, opacity .5s ease .1s;
    font-family: 'Open Sans', OpenSans, 'Segoi UI', "Helvetica Neue", Arial, sans-serif;
    text-align: left !important;
    width: 800px;
    height: 550px;
}

.feedback.open {
    opacity: 1;
    display: flex;
}

.feedback__close {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 600;
}

.feedback__cross {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: inset 0 0 2px -2px hsla(0, 0%, 40%, .8), 0 0 6px -2px rgb(241 242 243);
    -moz-box-shadow: inset 0 0 2px -2px hsla(0, 0%, 40%, .8), 0 0 6px -2px rgb(241 242 243);
    box-shadow: inset 0 0 2px -2px hsla(0, 0%, 40%, .8), 0 0 6px -2px rgb(241 242 243);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAABkUlEQVQ4je2SMWvbQBiGn4sQyNVyHjMbSglETRzlZzTbQUct9pYYOpRC90LJYDvZjAeDhw7a46HpLyg2mkTbP9D1piTYwtfBElUcWZbn5N3uvuPhu+974CVpRP7QarXeA6+11pdhGN5XASilavV6/eNyufwzHA6/Zfd7+UfGmAPgTErZV0rVqkCllH1jzDshxJt87RE4SZIvwE+gKaW8brfbrzZBgyBwpJRdoAlEQoiv+bqVP0RRlHie98OyrEPgBDj2ff92Op0u1qG2bfcAP4VeDAaDu43gKvAqUFhbXkFXXeA0A8zn82UVaCkY/i+H1Rxn6XUTmGmtO2XmPBlFPnEcJ57nfU/H4gP7aaed8XhcquNeWTGX0p8VpbRjpVTNdd0rVkucAX+BY+Bto9G4jeM42RkcBIHjum4vhUZCiM5isbjJxuI4TrNIxVLwJqWqel4I3uZpVbi1C3QX+CMrbNv+nEJnWuvzTfIDjEajB631B1ZLPQI+5evruv0CJtvkzxKG4b3WugNMjDG/t71/pvkHkaHKyfDtLb4AAAAASUVORK5CYII=);
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: 50%;
}

.feedback__image {
    background: url(../images/feedback-image.jpg);
    height: 550px;
    width: 400px;
    background-position-y: center;
    background-position-x: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.feedback__wrapper {
    width: 400px;
    background: rgb(246 246 246);
    padding: 80px 40px;
}

.feedback__header {
    color: rgb(39, 25, 24);
    font-size: 24px;
    font-weight: bold;
}

.feedback__description {
    line-height: 22px;
    color: rgb(39, 25, 24);
    font-size: 15px;
    margin: 20px auto;
}

.feedback__checkbox {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 3px;
    margin-top: 3px;
    border: 1px solid grey;
    cursor: pointer;
    font-size: 10px;
    line-height: 12px;
    flex-basis: 38px;
}

.feedback__checkbox.checkbox-active {
    color: rgb(255, 255, 255);
    background: #84b9e9;
    font-size: 9px;
    text-align: center;
    padding: 1px;
    border: none;
    border-radius: 3px;
}

.feedback__checkbox span {
    display: none;
}

.checkbox-active span {
    display: block;
}

.feedback__checkbox-description {
    font-size: 10px;
    line-height: 12px;
    color: #bbb;
    padding: 2px 0 0 6px;
    cursor: pointer;
}

.feedback__checkbox-wrapper {
    display: flex;
    justify-content: start;
    align-items: flex-start;
}

.feedback__button {
    border-radius: 4px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    align-items: center;
    width: 320px;
    margin: 20px 0;
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    margin-top: 20px;
    color: rgb(255, 255, 255);
    background: #84b9e9;
    box-shadow: inset 0 -1px 0 0 rgba(27, 42, 48, .35);
    border-width: 0;
    padding: 0 10px;
    white-space: nowrap;
    cursor: pointer;
}

.feedback__button:hover {
    color: rgb(255, 255, 255);
    background: #84b9e9;
    box-shadow: inset 0 -1px 0 0 rgba(27, 42, 48, .35);
}

.feedback input {
    box-sizing: border-box;
    height: 40px;
    margin: 5px 0px;
    color: rgba(39, 25, 24, 0.5);
    border-width: 1px;
    border-color: rgb(39, 25, 24);
    width: 320px;
    box-shadow: none !important;
    border-radius: 0 !important;
    border-top-color: transparent !important;
    border-right-color: transparent !important;
    border-left-color: transparent !important;
    padding: 0 10px 0 30px;
    font-size: 15px;
}

.feedback input:focus-visible {
    outline: none;
}

.feedback__name {
    background: url(../images/face.png) no-repeat 0 center;
    background-size: 18px;
}

.buttom-loader, .buttom-loader:hover {
    -webkit-animation: btn-loader 2s linear infinite;
    animation: btn-loader 2s linear infinite;
    background-color: #84b9e9;
    border-color: #84b9e9;
    background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 48px 48px;
    background-repeat: repeat-x;
}

@-webkit-keyframes btn-loader {
    to {
        background-position: 48px 0;
    }
}
@keyframes btn-loader {
    to {
        background-position: 48px 0;
    }
}

.feedback__phone {
    background: url(../images/phone-input.png) no-repeat 0 center;
    background-size: 20px;
}

.feedback__error {
    display: none;
    color: red;
    font-size: 14px;
    margin-bottom: -15px;
}

.feedback .success {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 810px) {
    .feedback {
        width: 420px;
    }

    .feedback__image {
        display: none;
    }
}

@media (max-width: 440px) {
    .feedback {
        width: 370px;
    }

    .feedback__image {
        display: none;
    }

    .feedback__wrapper {
        width: 370px;
        padding: 80px 12px;
    }
}

#popup__toggle {
    bottom: 25px;
    right: 10px;
    position: fixed;
    z-index: 999;
}

.img-circle {
    background-color: #1f609a;
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
}

.circlephone {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    border: 2px solid #1f609a;
    width: 150px;
    height: 150px;
    bottom: -25px;
    right: 10px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    opacity: .5;
    -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
    -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
    -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
    -o-animation: circle-anim 2.4s infinite ease-in-out !important;
    animation: circle-anim 2.4s infinite ease-in-out !important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}

.circle-fill {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    background-color: #1f609a;
    width: 100px;
    height: 100px;
    bottom: 0px;
    right: 35px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
    -o-animation: circle-fill-anim 2.3s infinite ease-in-out;
    animation: circle-fill-anim 2.3s infinite ease-in-out;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all 0.5s;
}

.img-circle {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 72px;
    height: 72px;
    bottom: 14px;
    right: 49px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    opacity: .7;
}

.img-circleblock {
    box-sizing: content-box;
    -webkit-box-sizing: content-box;
    width: 72px;
    height: 72px;
    background-image: url(../images/mini.png);
    background-position: center center;
    background-repeat: no-repeat;
    animation-name: tossing;
    -webkit-animation-name: tossing;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

.img-circle:hover {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.9);
        opacity: 1;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 1;
    }
}

@keyframes tossing {
    0% {
        transform: rotate(-8deg);
    }
    50% {
        transform: rotate(8deg);
    }
    100% {
        transform: rotate(-8deg);
    }
}

@-webkit-keyframes tossing {
    0% {
        -webkit-transform: rotate(-8deg);
    }
    50% {
        -webkit-transform: rotate(8deg);
    }
    100% {
        -webkit-transform: rotate(-8deg);
    }
}

@-moz-keyframes circle-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1;
        -moz-opacity: .1;
        -webkit-opacity: .1;
        -o-opacity: .1;
    }
    30% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
        -moz-opacity: .5;
        -webkit-opacity: .5;
        -o-opacity: .5;
    }
    100% {
        -moz-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .6;
        -moz-opacity: .6;
        -webkit-opacity: .6;
        -o-opacity: .1;
    }
}

@-webkit-keyframes circle-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
        -webkit-opacity: .1;
    }
    30% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        -webkit-opacity: .5;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        -webkit-opacity: .1;
    }
}

@-o-keyframes circle-anim {
    0% {
        -o-transform: rotate(0deg) kscale(0.5) skew(1deg);
        -o-opacity: .1;
    }
    30% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        -o-opacity: .5;
    }
    100% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        -o-opacity: .1;
    }
}

@keyframes circle-anim {
    0% {
        transform: rotate(0deg) scale(0.5) skew(1deg);
        opacity: .1;
    }
    30% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .5;
    }
    100% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .1;
    }
}

@-moz-keyframes circle-fill-anim {
    0% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -moz-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@-webkit-keyframes circle-fill-anim {
    0% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -webkit-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@-o-keyframes circle-fill-anim {
    0% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        -o-transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        -o-transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}

@keyframes circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
    50% {
        transform: rotate(0deg) scale(1) skew(1deg);
        opacity: .2;
    }
    100% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: .2;
    }
}