.success {
    padding-top: 12px;
    width: 100%;
    text-align: center;
}

.modal .mfp-close {
    top: 0;
}



.modal {
    background-color: #ffffff;
    padding: 24px;
}

.modal input {
    max-height: 40px;
    min-height: 40px;
}

.modal select {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-height: 40px;
    min-height: 40px;
    border: 1px solid var(--input-border-default);
    border-radius: 8px;
    width: 100%;
    background-color: #fff;
}

.cookie-policy {
    position: fixed;
    /*top: 0;*/
    bottom: 20px;
    width: 100%;
    z-index: 20;
}

.error-page {
    padding: 100px 0;
}

.error-page .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-page h1 {
    font-size: 150px;
    font-weight: 700;
    line-height: 150px;
    color: #568799;
    margin-bottom: 20px;
}

.error-page .error-description {
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 40px;
}


.app-links {
    padding: 24px;
    box-sizing: border-box;
    background-color: #ffffff;
}

@media (max-width: 560px) {
    .app-links {
        padding: 0;
    }
}

.app-links .wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    font-family: Ubuntu, Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .app-links .wrapper {
        font-size: 14px;
        line-height: 20px;
        padding: 10px;
        box-sizing: border-box;
    }
}

@media (max-width: 560px) {
    .app-links .wrapper {
        font-size: 12px;
        line-height: 16px;
        position: relative;
        flex-wrap: wrap;
        justify-content: center;
    }

    .app-links-txt {
        text-align: center;
        width: 80%;
    }
}

.app-links__link {
    margin-left: 24px;
    width: 144px;
}

@media (max-width: 560px) {
    .app-links__link {
        margin: 10px 10px 0;
        width: 110px;
    }
}

.app-links__link img {
    display: block;
    width: 100%;
}

.app-links-close {
    display: block;
    width: 32px;
    height: 32px;
    position: relative;
    border: none;
    outline: none;
    background-color: transparent;
    margin: 20px;

}

@media (max-width: 768px) {
    .app-links-close {
        margin-right: 10px;
    }
}

@media (max-width: 560px) {
    .app-links-close {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
    }
}

@media (max-width: 425px) {}

.app-links-close:before {
    content: '';
    display: block;
    width: 10px;
    height: 2px;
    position: absolute;
    background-color: #000000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);

}

.app-links-close:after {
    content: '';
    display: block;
    position: absolute;
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #000000;
}