.errorBlock__fon-img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
}

.error-box-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.error-box-wrapper .error-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    border-radius: 24px;
    background-color: rgba(244, 244, 251, 0.9);
    padding: 40px;
}

.error-box-wrapper .error-box .error-text {
    z-index: 1;
}

.error-box-wrapper .error-box .error-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*#ff6900*/

.error-box-wrapper .error-box .error-bottom .button–orange {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    padding: 0 22px 1px 22px;
    border: none;
    border-radius: 1000px;
    transition: background-color 0.2s ease;
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    cursor: pointer;
    user-select: none;
    background-color: #ff6900;
    color: #fff;
}

.error-box-wrapper .error-box .error-bottom .button–orange:hover {
    background-color: #fba96f;
}


@media screen and (max-width: 430px){
    .error-box-wrapper .error-box .error-bottom {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px
    }

    .error-box-wrapper .error-box .error-bottom a {
        width: 100%;
    }

    .homeBlock__content {
        display: block;
    }

    .error-box-wrapper .error-box {
        padding-top: 30px !important;
    }

    .error-box-wrapper {
        min-height: auto;
    }
}

