/* spinner */
.loader {
    position: relative;
    width: 58px;
    height: 58px;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-animation: opacity_loader 500ms forwards;
    animation: opacity_loader 500ms forwards; }

.loader_item {
    position: absolute;
    background-color: #97d632;
    width: 14px;
    height: 14px;
    border-radius: 9px;
    -webkit-animation-name: bounce_circularG;
    animation-name: bounce_circularG;
    -webkit-animation-duration: 1.1s;
    animation-duration: 1.1s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: normal;
    animation-direction: normal; }
.loader_item:nth-child(1) {
    left: 0;
    top: 23px;
    -webkit-animation-delay: 0.41s;
    animation-delay: 0.41s; }
.loader_item:nth-child(2) {
    left: 6px;
    top: 6px;
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s; }
.loader_item:nth-child(3) {
    top: 0;
    left: 23px;
    -webkit-animation-delay: 0.69s;
    animation-delay: 0.69s; }
.loader_item:nth-child(4) {
    right: 6px;
    top: 6px;
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s; }
.loader_item:nth-child(5) {
    right: 0;
    top: 23px;
    -webkit-animation-delay: 0.97s;
    animation-delay: 0.97s; }
.loader_item:nth-child(6) {
    right: 6px;
    bottom: 6px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s; }
.loader_item:nth-child(7) {
    left: 23px;
    bottom: 0;
    -webkit-animation-delay: 1.24s;
    animation-delay: 1.24s; }
.loader_item:nth-child(8) {
    left: 6px;
    bottom: 6px;
    -webkit-animation-delay: 1.38s;
    animation-delay: 1.38s; }

@-webkit-keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    100% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3); } }

@keyframes bounce_circularG {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1); }
    100% {
        -webkit-transform: scale(0.3);
        transform: scale(0.3); } }

@-webkit-keyframes opacity_loader {
    0% {
        opacity: 0;
        visibility: hidden; }
    100% {
        opacity: 1;
        visibility: visible; } }

@keyframes opacity_loader {
    0% {
        opacity: 0;
        visibility: hidden; }
    100% {
        opacity: 1;
        visibility: visible; } }

/* /spinner */

.overlay {
    font-family: "Fira Sans", sans-serif;
    display: block;
    text-align: center;
    position: fixed;
    overflow: auto;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 0;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.79); }
.overlay_popup {
    background-color: white; }
.overlay_popup:before {
    content: '';
    position: fixed;
    width: 100%;
    max-width: 1280px;
    right: 50%;
    top: 0;
    bottom: 0;
    height: 100%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%); }

.overlay__wrapper {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 100%;
    min-width: 300px;
    max-width: 1280px;
    height: auto;
    z-index: 1001;
    opacity: 1; }
.overlay__align {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
    margin-left: -1px; }
@media screen and (max-width: 305px) {
    .overlay__align {
        display: none; } }

.popup {
    display: block;
    background-color: #fff;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative; }
@media only screen and (max-width: 768px) {
    .popup {
        min-width: 304px; } }

.popup__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease; }
.popup__content p {
    margin-bottom: 25px;
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .popup__content {
        width: 680px; } }
@media only screen and (max-width: 768px) {
    .popup__content {
        width: 500px; } }
@media only screen and (max-width: 540px) {
    .popup__content {
        width: 304px; } }
.popup__header {
    display: block;
    text-align: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 40px; }
@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .popup__header {
        padding-top: 15px; } }
@media only screen and (max-width: 768px) {
    .popup__header {
        padding-top: 15px; } }
.popup__header__logo {
    background-image: url(../gfx/logo_popup.png);
    background-repeat: no-repeat;
    height: 65px;
    width: 221px;
    display: inline-block;
    background-size: contain;
    margin-bottom: 28px;
    cursor: pointer; }
@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .popup__header__logo {
        height: 58px;
        width: 160px;
        margin-bottom: 15px; } }
@media only screen and (max-width: 768px) {
    .popup__header__logo {
        height: 38px;
        width: 120px;
        margin-bottom: 15px; } }
.popup__header__title {
    color: #000000;
    font-size: 23px;
    margin-bottom: 80px; }

@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .popup__header__title {
        margin-bottom: 40px; } }
@media only screen and (max-width: 768px) {
    .popup__header__title {
        font-size: 18px;
        margin-bottom: 20px; } }
.popup__header__title a {
    font-weight: 500;
    text-decoration: none; }
.popup__header__title_done {
    margin-top: 25px;
    padding: 0 0; }
.popup__header__title_done a {
    font-weight: 500; }
@media only screen and (min-width: 769px) and (max-width: 1000px) {
    .popup__header__title_done {
        margin-top: 15px; } }
@media only screen and (max-width: 768px) {
    .popup__header__title_done {
        margin-top: 10px; } }
@media only screen and (max-width: 540px) {
    .popup__header__title_done {
        margin-top: 10px; } }

.overlay_top .overlay__align {
    display: none; }
.error__note {
    color: #d2352c; }
.hidden {
    display: none;
}