.gs-accordion {
    border-radius: 5px;
    background-color: #edeef2;
    color: #444;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.gs-accordion-divider{
    padding-top: 5px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.gs-accordion-active, .gs-accordion:hover {
    background-color: #f0f1f4;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Style the accordion panel. Note: hidden by default */
.gs-panel {
    padding: 0 18px;
    background-color: #f0f1f4;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.gs-notification {
    position: fixed;
    bottom: 10px;
    right: 10px;
    min-height: 40px;
    min-width: 300px; /* Ширина блока для настольных устройств */
    max-width: 540px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    padding: 10px;
    display: none;
    transition: opacity 0.5s ease-in-out;
    overflow: hidden;
}

@media only screen and (max-width: 768px) {
    /* Медиа-запрос для мобильных устройств */
    .gs-notification {
        width: calc(100% - 20px);
        border-radius: 5px;
    }
}