/*

Стили для макси-попап

*/

.popups__wrapper {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: auto;
    background-color: #ffffff;
    padding-top: 50px;
    z-index: 2;
}

.popups__close_button {
    display: flex;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #525252;
    border: 1px solid #525252;
}

.popups {
    margin-top: 40px;
    border-top: 1px dashed #ccc;
    width: 100%;
}

.popups__wrapper .popup__name {
    text-align: center;
    font-size: 35px;
    margin: 20px;
}

.popups__wrapper .popup__description {
    text-align: center;
    font-size: 12px;
    margin: 20px 0;
}


/*

Стили для мини-попап

*/


.popup_open__mini {
    cursor: pointer;
}

.popups__wrapper__mini {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 40%);
    z-index: 100;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popups__mini {
    background-color: #fff;
    display: flex;
    width: min(calc(100vw - 40px), 500px);
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    position: relative;
}

.popups__mini__close_button {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.popups__mini__close_button>span {
    font-size: 20px;
    color: #8d8d8d;
}

.popups__wrapper__mini .popup__name {
    text-align: center;
    font-size: 20px;
    margin: 20px;
}

.popups__wrapper__mini .popup__description {
    text-align: center;
    color: #434343;
    font-size: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;
}


/*

Стили попапа любого уведомления - это оформление не самого попапа, а его содержимого

*/


.any_notify_mini__type {
    text-align: center;
    font-size: 12px;
    margin-bottom: 15px;
}

.any_notify_mini__cause {
    text-align: center;
    margin-bottom: 20px;
}

.any_notify_mini__content {
    text-align: center;
    margin-bottom: 20px;
}


/*

Стили для микро-попапа

*/


.popups__wrapper__micro {
    position: fixed;
    right: -60px;
    top: 8%;
    width: 60px;
    height: 60px;
    overflow: hidden;
    background-color: var(--colors_bg__firm_red);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease-in-out;
}

.popups__wrapper__micro.open {
    right: -2px;
}

.popups__micro {
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__wrapper__micro {
    width: 90%;
    height: 90%;
}

.popups__wrapper__micro .popup__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.any_notify_micro__icon .dashicons {
    font-size: 30px;
    line-height: 30px;
    width: 100%;
    height: 100%;
    color: #ffffff;
}