﻿
.no-found__wrapper {
    position: relative;
    display: flex;
    justify-items: center;
    align-items: center;
    flex-direction: column;
    max-width: 364px;
    width: 100%;
    max-height: 340px;
    /*justify-content: space-between;*/
}

.no-found__animation-block {
    height: 240px;
    background-size: contain;
    display: flex;
    justify-content: center;
    z-index: 1;
    width: 100%;

    @supports (width: -webkit-fill-available) {
        & {
            width: -webkit-fill-available;
        }
    }

    @supports (width: -moz-available) {
        & {
            width: -moz-available;
        }
    }
}

.dots__bg {
        --fade: 55%;
        position: absolute;
        z-index: 0;
        width: 100%;
        height: 80%;
        background: url(/images/NoFoundBgS-icon.svg);
        mask-image: 
            linear-gradient(
                to bottom, 
                transparent 0, 
                #000 var(--fade), 
                #000 calc(100% - var(--fade)), 
                transparent 100%
            ), 
            linear-gradient(
                to right, 
                transparent 0, 
                #000 var(--fade), 
                #000 calc(100% - var(--fade)), 
                transparent 100%
            );
        -webkit-mask-image: 
            linear-gradient(
                to bottom, 
                transparent 0, 
                #000 var(--fade), 
                #000 calc(100% - var(--fade)), 
                transparent 100%
            ), 
            linear-gradient(
                to right, 
                transparent 0, 
                #000 var(--fade), 
                #000 calc(100% - var(--fade)), 
                transparent 100%
            );
        opacity: .5;
    }

.no-found__information {
    display: flex;
    flex-direction: column;
    align-items: center;

    & h1 {
        margin-bottom: var(--spacing-md);
        z-index: 1;
    }

    & p {
        text-align: center;
        margin-bottom: var(--spacing-4xl);
        z-index: 1;
    }
}

.no-found__btns {
    display: flex;
    gap: 16px;
}
