.settingsBtn{
    height: 70px; width: 70px;
    border: 2px solid green;
    border-radius: 100px;
    position: fixed;
    top: 0; right: 0;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    transition-duration: 0.2;
    display: flex;
    justify-content: center;
}
.settingsWheel{
    width:50px;
    fill: green;
    transition: transform 1s ease;
}
.settingsBtn:hover{
    .settingsWheel{
    transform: rotate(180deg);
    }
}
.outerModal{
    display:none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: rgba(105, 105, 105, 0.5);
    z-index: 100;
}
.activeModal{
    display:flex;
}
.modal{
    height:600px;
    width:800px;
    background-color: white;
    border-radius: 16px;
    position: relative;
    display:flex;
    flex-direction: row;
}
.menuModal{
    height: 100%;
    width: 20%;
    position: relative;
    display:flex;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 25px;
    font-weight: 400;
    align-items: left;
    justify-content: center;
    background-color: green;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    background-image: linear-gradient(to top right, rgba(21, 36, 65, 0.7), transparent);
}
.menuModal div{
    color: gray;
    height: 80px;
    width: 100%;
    display:flex;
    align-items: center;
    transition-duration: 0.2s;
    padding-left: 20%;
}
.menuModal div:hover{
    font-size: 27px;
    transition-duration: 0.2s;
    cursor: default;
}
.activeMenu{
    color: white !important;
    transition-duration: 0.2s;
}
.contentModal{
    flex-direction: column;
    display: flex;
    position: relative;
    width: 85%;
    height: 100%;
}
.headingModal{
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.modal h1{
    margin: 10px;
    font-size: 34px;
    font-family: sans-serif;
    font-weight: 600;
    text-align: center;
}
.closeModalBtn{
   position: absolute;
   right: 0;
   transition-duration: 0.2s;
   margin-right: 10px;
   height: 50px;
   width: 50px;
   display:flex;
   justify-content: center;
   align-items: center;
   border-radius: 100px;
}
.closeModalBtn svg{
    width: 30px;
    height: 30px;
}
.closeModalBtn:hover{
    background-color: lightgray;
    transition-duration: 0.2s;
}
.pagesModal{
    height: 85%;
}
.activePageModal{
    display:flex !important;
}
.generalModal, .soundModal, .controlsModal{
    display: none;
    height: 100%;
}

/* General Page */
.generalModal{
    flex-direction: column;
}
.btnGeneral{
    display: flex;
    gap: 50px;
    height: 160px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.homeBtn, .infoBtn{
    border-radius: 100px;
    border: 4px solid black;
    height: 120px;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.2s;
}
.homeBtn:hover, .infoBtn:hover{
    transition-duration: 0.2s;
    border-color: green;
    .homeSvg{
        fill: green;
    }
    .infoSvg{
        fill: green;
    }
}
.homeSvg, .infoSvg{
    fill: black;
    height: 80px;
    width: 80px;
    transition-duration: 0.2s;
}
.inputGeneral{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.virtualBtn{
    bottom: 100px;
    width: 80%;
    height: 100px;
    background-color: lightgray;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
}
.virtualBtn span{
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 700;
    margin: 20px;
    user-select: none;
}
.checkMark{
    position: absolute;
    height: 50px;
    width: 50px;
    border: 1px solid black;
    background-color: white;
    border-radius: 100px;
    right: 0;
    margin: 20px;
}
.checkMark:hover{
    cursor: pointer;
}
.check{
    padding: 5px;
    height: inherit;
    width: inherit;
    display: none;
}
.checked{
    display: block;
}