.settings-container{
    position: absolute;
    z-index: 150000;
    left: 25%;

    height: 50%;
    width: 50%;
    border-radius: 5px;
    padding: 15px;

    overflow: hidden;
    display: none;
    opacity: 0;
    top: 0;
    background-image:linear-gradient(to bottom right,aqua, purple, black);
}
.settings-select-container{
    position: absolute;
    width: 25%;
    height: 100%;
    left: 0;
    top: 0;
    border-right: solid 3px black;
}

.settings-select{
    width: 100%;
    font-size: 3vh;
    font-family: 'Passero One', cursive;
    color: white;
    text-align: center;
    background-color: black;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 2%;
}
.settings-select:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    background-color: rgb(223, 223, 223);
    color: black;
}
.settings-chart-container{
    position: absolute;
    width: 73%;
    height: 98%;
    left: 26%;
    top: 1%;
    background-color: black;
}
.settings-chart{
    position: absolute;
    width: 70%;
    height: 90%;
    left: 1%;
    top: 5%;
    border: ridge 3px rgba(255, 255, 255, 0.559);
    border-radius: 10px;
    filter: saturate(3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.settings-chart-color{
    position: absolute;
    right: 2%;
    width: 24%;
    height: 90%;
    top: 5%;
    overflow: auto;
    overflow-x:hidden;
    background-color: white;
    border-radius: 15px;
    padding-left: 1%;
}
.settings-bg-color{
    position: absolute;
    height: 30%;
    left: 27%;
    width: 50%;
    bottom: 2%;
    border: solid 1px aqua;
    display: flex;
}
.settings-bull{
    font-size: 3vh;
    font-family: 'Passero One', cursive;
}

.settings-bear{
    font-size: 3vh;
    font-family: 'Passero One', cursive;
}
.settings-bg{
    font-size: 2.5vh;
    font-family: 'Passero One', cursive;
    width: 100%;
}
.settings-lines{
    font-size: 3vh;
    font-family: 'Passero One', cursive;
    width: 100%;
}
.settings-picker{
    position: relative;
    left: 20%;
}
.settings-exit{
    position: absolute;
    bottom: 2%;
    width: 20%;
    text-align: center;
    font-size: 4vh;
    font-family: 'Passero One', cursive;
    color: white;
    left: 2%;
}
.settings-exit:hover{
    animation: uiPop 0.1s linear forwards;
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    background-color: aqua;
    color: black;
}

.settings-chat-container{
    position: absolute;
    width: 70%;
    right: 2%;
    top: 2.5%;
    height: 95%;
    background-color: black;
    border-radius: 5px;
    display: none;
}
.chat-option{
    margin-left: 10%;
    width: 80%;
    border: solid 1px white;
    color: white;
    font-family: 'Passero One', cursive;
    font-size: 3vh;
    display: flex;
    border-radius: 5px;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    margin-top: 10%;
    border-left: none;
}
.settings-switch{
    height: 100%;
    margin-left: 10%;
    color: black;
    font-family: 'Saira Stencil One', cursive;
    background-color: aqua;
    padding: 5px;
    user-select: none;
}
.settings-switch:hover{
    cursor: url(imgs/cursorButton.png) 20 20, auto;
    animation: uiPop 0.1s linear forwards;
}