#burger-trigger {
    position: absolute;
    color: black;
    background-color: #fff200;
    text-decoration: none;
    font-size: 1.5rem;
    transition: background-color 0.15s ease-out;
    width: 50px;
    height: 50px;
    z-index: 3;
    cursor: pointer;
    top: 30px;
    left: 40px;
}

.burger-menu {
    z-index: 2;
    position: absolute;
    visibility: visible;
    top: 80px;
    left: 40px;
    width: auto;
    height: auto;
    opacity: 0.9;
    transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
    display: flex;
    flex-direction: row;
    font-weight: bold;
    font-size: 1.5rem;
}

.burger-left {
    display: flex;
    flex-direction: column;
    width: 215px;
    height: 100%;

    visibility: visible;
    opacity: 1;

    transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
}

.close .burger-left {
    visibility: hidden;
    opacity: 0;
}

.burger-menu div a {
    user-select: none;
    color: white;
    text-decoration: none;
    margin: 0;
    font-size: 1.5rem;
}

.burger-left-item {
    user-select: none;
    /* padding: 15px 0 15px 15px; */
    height: 60px;
    width: 100%;
    border: 1px solid rgb(255, 255, 255);
    background-color: black;
    color: white;
    cursor: pointer;

    p {
        margin: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 15px;
    }

    a {
        color: white;
        margin: 0;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 15px;
    }
}

.close .burger-left-item {
    visibility: hidden;
    opacity: 0;
}

.burger-left-item:hover {
    background-color: #fff200;
    color: black;

    a {
        color: black;
    }
}

/* .burger-menu div a:hover {
    color: #fff200;
} */

.close .burger-menu {
    visibility: hidden !important;
    opacity: 0 !important;
}

.burger-popout {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.burger-right-item {
    user-select: none;
    /* padding: 15px 0 15px 15px; */
    border: 1px solid rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 15px;
    width: 100%;
    height: 60px;
    right: 0;
    color: white;
}

.burger-right-item:hover {
    background-color: #fff200;
    color: black;

    a {
        color: black;
    }
}

.hover1 #trigger1,
.hover2 #trigger2,
.hover3 #trigger3,
.hover4 #trigger4 {
    background-color: #fff200;
    opacity: 1;
    visibility: visible;

    p {
        color: black;
    }

    a {
        color: black;
    }
}

/* .hover2 #trigger2 {
    background-color: #fff200;

    p {
        color: black;
    }
}

.hover3 #trigger3 {
    p {
        color: black;
    }

    background-color: #fff200;
}

.hover4 #trigger4 {
    p {
        color: black;
    }

    background-color: #fff200;
} */


.hover1 #popout1,
.hover2 #popout2,
.hover3 #popout3,
.hover4 #popout4 {
    visibility: visible;
    opacity: 1;
}

/* 
.hover2 #popout2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    right: 0;
    color: white;
}

.hover3 #popout3 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    right: 0;
    color: white;
}

.hover4 #popout4 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    right: 0;
    color: white;
} */

.burger-right {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 230px;
    gap: 1rem;
}

.disabled {
    background-color: rgba(50, 50, 50, 0.828);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 5px 5px;
}

.disabled:hover {
    background-color: rgb(255, 242, 0);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.2) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
    background-size: 5px 5px;
}

@media screen and (max-width: 750px) {
    #burger-trigger {
        top: 20px;
        left: 20px;
    }

    .burger-left {
        width: 50%;
    }

    .burger-left-item {
        width: 93%;
        margin: 0;
    }

    .burger-right {
        width: 50%;
    }

    .burger-menu {
        top: 70px;
        left: 0;
        width: 100%;
    }

    #hover1 .burger-right-item {
        width: 100%;
    }

}