.load__icon {
    animation: linear load 2s infinite;
    width: 32px;
    height: 32px;
}

.load__icon-wrap {
    margin: auto;
}

.load__wrap {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.load {
    height: calc(100vh - 16px);
    width: 100%;
    display: flex;
    align-items: center;
}

.loading_for_print .load__wrap{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.loading_for_print .load__wrap .load__icon svg{
    width: 12px;
    height: 12px;
}

@keyframes load {
    from {
        transform: rotate(0deg) scale(2);
    }
    to {
        transform: rotate(360deg) scale(2);
    }
}
