@charset "utf-8";
/* CSS Document */
.menuResponsive {
    position: relative;
    width: 100%;
    background: #23a3a8;
    color: white;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
.menuResponsive .burger {
    font-size: 30px;
    cursor: pointer;
    margin: 0 20px;
}
.menuResponsive-items {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    opacity: 0;
    color: black;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.menuResponsive-items.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    z-index: 1000;
    padding: 30px 0;
    border-radius: 5px;
 	box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 15px;
}
.menuResponsive-item, .simple-link {
    padding: 8px;
    border-bottom: 1px solid #999;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #23a3a8;
    border-radius: 5px;
    margin: 5px 10px;
    color: white;
}
a.submenua {
    text-decoration: none;
    color: black;
}
.simple-link {
    text-decoration: none;
    border-bottom: 1px solid #999;
    background: #23a3a8;
    border-radius: 5px;
    margin: 5px 10px;
    color: white;
}

.submenu {
    display: none;
    flex-direction: column;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: black;
    margin: 10px 0 0 30px;
}
.submenu.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.submenu-item {
    padding: 10px;
    border-bottom: 1px solid #666;
}
.submenu-item:last-child {
    border-bottom: none;
}
.menuResponsive-item .arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.menuResponsive-item .arrow.down {
    transform: rotate(90deg);
}