/*Всплывашка для админа - начало*/
/*Не закончено*/
.popup_admin_block {
    display:none;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 991;
}
.popup_admin_block__overlay {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: rgba(0,0,0,0.3);
    /* display:none; */
}
.popup_admin_block__wrapper {
    overflow: auto;
    z-index: 10;
    opacity: 1;
    position: relative;
    max-width: 400px;
    max-height: 130px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    bottom: unset;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background: #fff;
    border-radius: 2px;
    position: relative;
}
.block_close {
    max-width: 30px;
    width: 100%;
    height: 130px;
}
.modal_close.close_btn {
    position: absolute;
    top: 3px;
    right: 7px;
    cursor: pointer;
    height: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.modal_close.close_btn:before {
    font-size: 20px;
    color: #000;
    content: "\e905";
}
.modal_close.close_btn.opened:before {
    font-size: 20px;
    color: #000;
    content: "\e905";
    transform: rotate(180deg);
}
.popup_admin_block__title {
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
.popup_admin_block__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.popup_admin_block__link {
    border: 1px solid #80808078;
    padding: 7px 15px;
    border-radius: 1px;
    /* width: 175px; */
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    line-height: 1rem;
    cursor: pointer;
}
.popup_admin_block__link._goto_cart a {
    text-decoration: none;
}
.popup_admin_block__link:hover {
    box-shadow: 3px 3px 3px grey;
    font-weight: 500;
    border-color: gray;
}
.popup_admin_block__link a:hover {
    font-weight: 500;
}
/*Всплывашка для админа - окончание*/

.archive {
    display: none;
}