/* Стили для затемненного фона */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Стили для окна попапа */
.popup-content {
    display: none;
    position: fixed;
    top: 0; /* Позиционирование попапа на 30vh от верха */
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    /*background-color: #fefefe;*/
    background-color: #252424 !important;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 600px;
    z-index: 20000;
}

/* Стиль для кнопки закрытия */
.close-button {
    color: #aaa;
    /*float: right;*/
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 30px;
    top: 0px;
}

.close-button2 {
    color: #aaa;
    /*float: right;*/
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 30px;
    top: 0px;
}
.closePopup i {
    margin-right: 5px;
}
.closePopup {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    font-size: 24px;
    cursor: pointer;
    background-color: #b6b5b5 !important;
    color: black !important;
}
.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.angled-less-than {
    display: inline-block;
    transform: scale(2, 1); /* Сжимаем по горизонтали */
    transform-origin: center;
}