/* Utilities css */

.lb{ background-color: lightblue; }
.none{ display: none; }
.block{ display: block; }
.active{ display: block; }

/* Hamburger Button 1 */
#menu-1, #menu-2{
    width: 30px;
    cursor: pointer;
}
#menu-1:before,
#menu-1:after,
#menu-1 div,
#menu-2:before,
#menu-2:after,
#menu-2 div  {
  background: black;
  content: "";
  display: block;
  height: 4px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.2s;
}
#menu-1.active:before,
#menu-2.active:before {
    transform: translateY(7px) rotate(135deg);
}
#menu-1.active:after,
#menu-2.active:after {
    transform: translateY(-7px) rotate(-135deg);
}
#menu-1.active div,
#menu-2.active div {
    transform: scale(0);
}

#menu-1-links{
    /* background-color: lightblue; */
    width: 100px;
    padding: 5px;
    /* display: none; */
    position: relative;
    top: -27px;
    left: 50px;
}
    #menu-1-links ul,
    #menu-2-links ul{ list-style: none; }
    #menu-1-links ul li{ margin: 5px 0; }
/* #menu-1-links.active{
    display: block;
    opacity: 0;
} */

/* Hamburger Button 2 */
#menu-2{
    /*
    width: 30px;
    cursor: pointer;
    */
    position: relative;
    z-index: 2;
}
/* 
#menu-2:before,
#menu-2:after,
#menu-2 div {
  background: black;
  content: "";
  display: block;
  height: 4px;
  border-radius: 3px;
  margin: 3px 0;
  transition: 0.2s;
}
#menu-2.active:before {
    transform: translateY(7px) rotate(135deg);
}
#menu-2.active:after {
    transform: translateY(-7px) rotate(-135deg);
}
#menu-2.active div {
    transform: scale(0);
}
  */

#menu-2-links{
    min-width: 35px;
    max-width: 120px;
    padding: 2px;
    padding-top: 30px;
    min-height: 114px;
    display: none;
    position: absolute;
    top: 5px;
    z-index: 1;
}
    /* 
    #menu-2-links ul{ list-style: none; }
    */
    #menu-2-links ul li{ margin: 1px 0; }
#menu-2-links.active{
    display: block;
}

    .menu{
        background-color: rgb(217, 233, 247);
        border-radius: 3px;
        width: 110px;
        padding: 5px;
        cursor: pointer;
    }
    .menu:hover{ background-color: rgb(179, 216, 248); }

#animated-links div{
    margin: 5px;
    cursor: pointer;
    width: 120px;
    height: 20px;
    /* background-color: lightcyan; */
    text-decoration: underline;
}
#animated-links div:last-child {
    margin-right: 0;
}

#menu-3 ul,
#menu-4 ul{
    list-style: none;
    background-color: azure;
}
    #menu-3 ul li,
    #menu-4 ul li{
        padding: 0 2px;
        border: 1px solid rgb(179, 216, 248);
    }

#dropbox{
    width: 260px;
    height: 95%;
    top: 0;
    left: 35%;
    border: 1px dashed black;
    border-radius: 5px;
    margin: 5px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* padding: 5px; */
}
    .empty-box{
        background-color: lightgray;
        opacity: 0.4;
        text-align: center;
        padding-top: 5%;
        line-height: 200%;
    }

    .has-element-box{
        background-color: rgba(211, 211, 211, 0.2);
        padding: 5px;
    }

    .inside-box{
        position: static;
        /* display: block; */
        margin: 0 auto;
    }

.draggable{
    margin: 3px;
    padding: 10px;
    background-color: lightblue;
    cursor: move;
}

#no-snap{
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 95%;
    margin: 5px;
    background-color: rgba(173, 216, 230, 0.2);
    text-align: right;
    padding-right: 50px;
    padding-top: 10%;
    color: rgba(139, 107, 0, 0.5);
    line-height: 250%;
}

#modal-lightbox{
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* filter: blur(5px); */
}
    .lightbox{
        position: relative;
        width: 300px;
        height: 200px;
        background-color: white;
        border: 1px solid black;
        border-radius: 5px;
        margin: 10% auto;
        padding: 10px;
        /* filter: none; */
    }
    .btn-1{
        display: block;
        width: 120px;
        height: auto;
        background-color: lightblue;
        border: 1px solid black;
        border-radius: 5px;
        cursor: pointer;
        /* margin: 16px auto; */
        padding: 10px;
        text-align: center;
        line-height: 25px;
    }
    .btn-1:hover{ background-color: rgb(230, 243, 255); }
    .close-btn{
        position: absolute;
        top: 10px;
        right: 10px;
        width: 20px;
        height: 20px;
        background-color: lightblue;
        border: 1px solid black;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        line-height: 20px;
    }
    .close-btn:hover{ background-color: rgb(230, 243, 255); }