html.font-active-mg {
    font-size: 130%;
}

html.font-active-lg {
    font-size: 150%;
}

html.img-remove-active img {
    display: none;
}

html.whiteblack-mode {
    filter: grayscale();
}

/* ===========================MODAL===================================== */

.accessibility-btn-icon {
    cursor: pointer;
    margin: 0 10px;
}

.accessibility-btn-icon>svg>path {
    fill: var(--global-white-color);
}

.accessibility__popup {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background-color: var(--global-white-color);
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 20%);
    z-index: 6;
    /* opacity: 1;
    visibility: visible; */
    opacity: 0;
    visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s;
}

.accessibility__popup.active {
    opacity: 1;
    visibility: visible;
}

.popup__wr {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.popup__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--global-dark-color);
}

.top__close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
}

.top__close-btn>svg>path {
    stroke: var(--global-dark-color);
}

.top__close-btn:hover {
    opacity: 60%;
}


.popup__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--global-dark-color);
    padding-bottom: 20px;
}

.title-wr {
    width: 110px;
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 16px;
    color: var(--global-dark-color);
}

.bullets__item {
    padding: 6px 12px;
    border-radius: 300px;
    border: 1px solid var(--global-dark-color);
    color: var(--global-dark-color);
    transition: all .3sease;
    background: var(--global-white-color);
    display: flex;
    /* gap: 8px; */
    height: 36px;
    font-size: 14px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;

}


.item-sm {
    font-size: 12px;
    width: 38px;
    height: 38px;
}


.item-md {
    font-size: 16px;
    width: 42px;
    height: 42px;
}

.item-lg {
    font-size: 20px;
    width: 48px;
    height: 48px;
}

.content__images,
.content__fonts,
.content__colors {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bullets_wrapp {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    cursor: pointer;
    font-size: 16px;
    color: var(--global-dark-color);
}

.footer__btn:hover {
    opacity: 60%;
    text-decoration: underline;
}

.active.bullets__item,
.bullets__item:hover,
.common-bullet-item.active,
.common-bullet-item:hover {
    cursor: pointer;
    color: var(--global-white-color);
    background-color: var(--global-dark-color);
    transition: all ease .2s;
}

.icon-blackwhite .letter,
.icon-whiteblack .bg {
    color: var(--global-white-color);
}

.top__close-btn:focus,
.top__close-btn:active,
.footer__btn:active,
.footer__btn:focus {
    outline: none;
}

/* ==============END=============MODAL===================================== */
