.NoResultPage__base {
    width: 100%;
    height: calc(100vh - 50px);
    position: relative;
    background: url(/src/errorsPage/components/img/error.png) no-repeat;
    background-size: cover;
}
.NoResultPage__headerWithTextHolder {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 30px;
}
.NoResultPage__pageTitle {
    width: 100%;
    height: auto;
    color: #fff;
    text-align: center;
    font-size: 38px;
    font-family: regular;
    margin-bottom: 20px;
}
.NoResultPage__infoText {
    width: 100%;
    height: auto;
    color: #fff;
    font-family: regular;
    line-height: normal;
    font-size: 18px;
    text-align: center;
}
.NoResultPage__noResultText {
    padding: 0px 20px;
    margin-bottom: 15px;
}
.NoResultPage__buttonFooter {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
    margin: auto;
    text-align: center;
}
.NoResultPage__buttonHolder {
    width: auto;
    height: auto;
    display: inline-block;
}
@media screen and (min-width: 1025px) {
    .NoResultPage__base {
        height: calc(100vh - 100px);
        background: #b9a2ce url(/src/errorsPage/components/img/error.png) no-repeat;
        background-size: contain;
        background-position: center;
    }
    .NoResultPage__infoText {
        font-size: 16px;
    }
}

