﻿/*.popup-container {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
}
*/
.popup-list {
    background-color: white;
    max-height: 300px;
    overflow: auto;
}

.popup-list-item {
    display: flex;
    align-items: center;
}

.popup-list-item.front-page-style {
    padding: 10px 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.popup-list-item.default-style {
        padding: 10px 10px;
        font-weight: 500;
    }

.popup-list-item:first-child {
        border-radius: 4px 4px 0 0;
    }

.popup-list-item:last-child {
    border-radius: 0 0 4px 4px;
}

.popup-list-item:hover {
        color: white;
        background-color: var(--primary-color);
    }
