:root {
    --hunter: #f71171;
    --jackal: #e5df26;
    --sidekick: #858117;
    --lawyer: #c8ad7a;
    --pro: #5a492c;
    --jester: #1f802f;
    --neutral: #c4c4c4;
    --mayor: #06d4ca;
    /* --crewmate: #98F7F8; */
    --sheriff: #972adf;
    --minion: #df822a;
    --inspector: #071fa5;
    --crewmate: #a3cbff;
    --imposter: #ff9a9a;
    --serial: #573935;
}

@keyframes bgcolor {
    0% {
        background-color: #444
    }

    25% {
        background-color: #334
    }

    50% {
        background-color: #433
    }

    75% {
        background-color: #443
    }

    100% {
        background-color: #444
    }
}

body {
    -webkit-animation: bgcolor 40s infinite;
    animation: bgcolor 20s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    background-image: url("/static/images/space_background.webp");
    background-repeat: repeat-xy;
}

html,
body {
    margin: 0;
    height: 100%;
    overflow: hidden
}

body {
    position: relative;
}

#progress {
    z-index: -4;
    width: 100%;
    position: absolute;
    height: 0%;
    left: 0%;
    bottom: 0%;
    background-color: yellow;
    transition: all 0.3s linear;
}

#center {
    z-index: 10;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 300Px;
    font-family: math;
    color: black;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: white;
    /* Makes text not highlightable by user */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

#nowifi {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    z-index: 9999;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Makes text not highlightable by user */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

#errorDiv {
    z-index: 100;
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0%;
    bottom: 0%;
    background-color: rgb(255, 196, 0);
    opacity: 0;
    display: none;
    animation: blinker 0.5s linear infinite;
}

@keyframes blinker {
    0% {
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#grid_container {
    display: none;
    grid-template-columns: auto auto auto auto auto;
    background-color: #838383;
    /* padding: 10px; */
    column-count: 3;
    width: 100%;
    height: 100%;
}

.grid-item {
    background-color: rgba(255, 255, 255, 0.8);
    border: 3px solid rgb(0, 0, 0);

    /* padding: 20px; */
    /* font-size: 30px; */
    text-align: center;
    /* margin: 5px; */
    margin-bottom: 5px;
    border-radius: 10px;
    /* width: 10vmin; */
    height: calc(100% - 1px);
    box-sizing: border-box;
}

#grid_container2 {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-auto-rows: min-content;
    background-color: #484D52; /* color here is set again js */
    padding: 10px;
    /* column-count: 4; */
    overflow-x: hidden;
    overflow-y: auto;
    /* position: relative; */
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    width: -webkit-fill-available;
    bottom:0%;
    top:50%;
    z-index: 2;

}

.grid-item2 {
    background-color: #F2F7FC;
    border: qpx solid rgb(0, 0, 0);

    position: relative;
    
    font-weight: bold;
    /* line-height: 10vh;
    font-size: 4.5vh;
    height: 10vh; */

    /* line-height: 6vh; 
    text-align: center;
    padding-left: 1vw;*/
    line-height: 5vh;
    text-align: left;
    padding-left: 9vh;

    font-size: 3.2vh;
    height: 7vh;
    margin-left: 0.5vmax;
    margin-right: 0.5vmax;
    margin-top: 0.2vmax;
    margin-bottom: 0.2vmax;
    border-radius: 1vmin;
    font-family: Arial, Helvetica, sans-serif;
    /* -webkit-text-stroke-width: 0.18vh;
    -webkit-text-stroke-color: black; */
    
    text-shadow: 2px 2px 10px #ccc;
    -webkit-text-stroke-width: 0.1vh;
    -webkit-text-stroke-color: #000;

    color: white;
    overflow: hidden;
}

.voteTracker {
    animation-name: jumpAppear;
    animation-duration: 0.2s;
    animation-iteration-count: 1;
}

@keyframes jumpAppear {
    /* 0%   {opacity: 0;}
    75%  {opacity: 0.9;}
    100% {opacity: 1;} */
    0%   {transform: scale(0.2);}
    75%  {transform: scale(1.15);}
    100% {transform: scale(1);}
  }

.ejectedBean {
    height: 15vh;
    left: 100%;
    position: absolute;
    animation-name: ejectAnimation;
    animation-duration: 5s;
    top: calc(50% - 7.5vh);
    /* transform: translateY(-50%); */
    /* animation-iteration-count: 1; */
    animation-timing-function: cubic-bezier(0, 0.3, 1, 1);
}


@keyframes ejectAnimation {
    /* 0%   {opacity: 0;}
    75%  {opacity: 0.9;}
    100% {opacity: 1;} */
    0%   {left: -20%; transform: rotate(0deg);}
    /* 10%   {left: 10%; }
    50%   {left: 50%; }  */
    100% {left: 100%; transform: rotate(720deg);}
}

#ejectText {
    position: fixed; /* or absolute */
    font-weight: 550;
    top: 50%;
    left: 50%;
    
    

    text-align: center;
    white-space: pre-wrap;

    transform: translate(-50%, -50%);
    font-size: 4vh;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    -webkit-text-stroke-width: 0.2vh;
    -webkit-text-stroke-color: #000;
  }

.ejectText2 {
    margin: 0;
    padding: 0;
    animation-name: jumpAppear;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
}

.fadeOut {
    opacity: 0;
    animation-name: fadeOutAnimation;
    animation-duration: 0.5s;
}


@keyframes fadeOutAnimation {
    0%   {opacity: 1;}
    100% {opacity: 0;}
  }


#blackScreen {
    position: absolute;
    left:0;
    top:0;
    height: 100%;
    width: 100%;
    background: black;
    display: none;
    z-index: 20;
}

#playerBackground {
    position: absolute;
    left:-30%;
    top:30%;
    height: 40%;
    width: 160%;
    background: radial-gradient(rgba(130,213,213,1) 0%, rgba(0,0,0,1) 60%);
     
    color: #98F7F8;

    animation-name: roleColorReveal;
    animation-duration: 1s;
}

#roleText {
    font-family: Courier New;
    font-size: 15vw;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 20%;
    margin: 0;
    transform: translateY(-50%); 
    color: #98F7F8;
    animation-name: roleTextReveal;
    animation-duration: 3s;
}

.imposterRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(#DF342A 0%, rgba(0,0,0,1) 60%) !important;
}
.minionRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(#df822a 0%, rgba(0,0,0,1) 60%) !important;
}
.sheriffRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(#972adf 0%, rgba(0,0,0,1) 60%) !important;
}
.inspectorRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(#071fa5 0%, rgba(0,0,0,1) 60%) !important;
}
.mayorRoleBackground{
     background: radial-gradient(var(--mayor) 0%, rgba(0,0,0,1) 60%) !important;
}
.serialRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(#573935 0%, rgba(0,0,0,1) 60%) !important;
}
.jesterRoleBackground{
    /* background: linear-gradient(180deg, rgba(0,0,0,1) 35%,
     #DF342A 60%, rgba(0,0,0,1) 85%) !important;  */
     background: radial-gradient(var(--jester) 0%, rgba(0,0,0,1) 60%) !important;
}
.jackalRoleBackground{
     background: radial-gradient(var(--jackal) 0%, rgba(0,0,0,1) 60%) !important;
}
.sidekickRoleBackground{
    background: radial-gradient(var(--sidekick) 0%, rgba(0,0,0,1) 60%) !important;
}
.lawyerRoleBackground{
    background: radial-gradient(var(--lawyer) 0%, rgba(0,0,0,1) 60%) !important;
}
.proRoleBackground{
   background: radial-gradient(var(--pro) 0%, rgba(0,0,0,1) 60%) !important;
}
.neutralRoleBackground{
    background: radial-gradient(var(--neutral) 0%, rgba(0,0,0,1) 60%) !important;
}
.hunterRoleBackground{
    background: radial-gradient(var(--hunter) 0%, rgba(0,0,0,1) 60%) !important;
}
.imposterRoleText{
    color: #DF342A !important; 
}
.minionRoleText{
    color: #df822a !important; 
}
.sheriffRoleText{
    color: #972adf !important; 
}
.inspectorRoleText{
    color: #071fa5 !important; 
}
.mayorRoleText{
    color: var(--mayor) !important; 
}
.serialRoleText{
    color: #573935 !important; 
}
.jesterRoleText{
    color: var(--jester) !important; 
}
.jackalRoleText{
    color: var(--jackal) !important; 
}
.sidekickRoleText{
    color: var(--sidekick) !important; 
}
.lawyerRoleText{
    color: var(--lawyer) !important; 
}
.proRoleText{
    color: var(--pro) !important; 
}
.neutralRoleText{
    color: var(--neutral) !important; 
}
.hunterRoleText{
    color: var(--hunter) !important; 
}
.minionImage {
    filter: drop-shadow(2px 0 0 #df822a) 
        drop-shadow(0 2px 0 #df822a)
        drop-shadow(-2px 0 0 #df822a) 
        drop-shadow(0 -2px 0 #df822a);
}

.sheriffImage {
    filter: drop-shadow(2px 0 0 #972adf) 
        drop-shadow(0 2px 0 #972adf)
        drop-shadow(-2px 0 0 #972adf) 
        drop-shadow(0 -2px 0 #972adf);
}

.inspectorImage {
    filter: drop-shadow(2px 0 0 #071fa5) 
        drop-shadow(0 2px 0 #071fa5)
        drop-shadow(-2px 0 0 #071fa5) 
        drop-shadow(0 -2px 0 #071fa5);
}

.mayorImage {
    filter: drop-shadow(2px 0 0 var(--mayor)) 
        drop-shadow(0 2px 0 var(--mayor))
        drop-shadow(-2px 0 0 var(--mayor)) 
        drop-shadow(0 -2px 0 var(--mayor));
}

.hunterImage {
    filter: drop-shadow(2px 0 0 var(--hunter)) 
        drop-shadow(0 2px 0 var(--hunter))
        drop-shadow(-2px 0 0 var(--hunter)) 
        drop-shadow(0 -2px 0 var(--hunter));
}

.jackalImage {
    filter: drop-shadow(2px 0 0 var(--jackal)) 
        drop-shadow(0 2px 0 var(--jackal))
        drop-shadow(-2px 0 0 var(--jackal)) 
        drop-shadow(0 -2px 0 var(--jackal));
}
.sidekickImage {
    filter: drop-shadow(2px 0 0 var(--sidekick)) 
        drop-shadow(0 2px 0 var(--sidekick))
        drop-shadow(-2px 0 0 var(--sidekick)) 
        drop-shadow(0 -2px 0 var(--sidekick));
}
.lawyerImage {
    filter: drop-shadow(2px 0 0 var(--lawyer)) 
        drop-shadow(0 2px 0 var(--lawyer))
        drop-shadow(-2px 0 0 var(--lawyer)) 
        drop-shadow(0 -2px 0 var(--lawyer));
}
.proImage {
    filter: drop-shadow(2px 0 0 var(--pro)) 
        drop-shadow(0 2px 0 var(--pro))
        drop-shadow(-2px 0 0 var(--pro)) 
        drop-shadow(0 -2px 0 var(--pro));
}
.neutralImage {
    filter: drop-shadow(2px 0 0 var(--neutral)) 
        drop-shadow(0 2px 0 var(--neutral))
        drop-shadow(-2px 0 0 var(--neutral)) 
        drop-shadow(0 -2px 0 var(--neutral));
}

.playerImage {
    position: absolute;
    width: min(50vw,25vh);;
    transform: translate(-50%, -50%);
}

.imposterPlayerName {
    position: absolute;
    font-size: min(7vw,3.5vh);;
    transform: translate(-50%, -50%);
}

.fullScreenImage {
    position: absolute;
    transform: translate(-50%, -50%);
    left:50%;
    top:50%;
    height: 100vmin;
    width: 100vmin;
}

@keyframes roleColorReveal {
    /* 0%   {opacity: 0;}
    75%  {opacity: 0.9;}
    100% {opacity: 1;} */
    00%   {width:20%;left:40%}
    100%  {width:160%;left:-30%;}
  }

  @keyframes roleTextReveal {
    /* 0%   {opacity: 0;}
    75%  {opacity: 0.9;}
    100% {opacity: 1;} */
    00%   {top:17%}
    100%  {top:20%;}
  }

#upperHalf {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    position: absolute;
}

.quarter {
    position: relative;
}

.verticalQuarter {
    width: 50%;
    height: 100%;
    float:left;
}

.horizontalQuarter {
    width: 100%;
    height: 50%;
}

.nameInput {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 85%;
    left: 50%;
    box-sizing:border-box;
    padding: 1%;
    width: 70%;
    border-radius:100px;
    font-size: 10%;
    font-size: 3vmax;
    text-align: center;
    background: #eee;
}

.button {
    position:relative;
    z-index: 999999999;
}

.alivedeadLabel {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 85%;
    left: 50%;
    box-sizing:border-box;
    padding: 1%;
    width: 70%;
    border-radius:100px;
    font-size: 10%;
    font-size: 3vmax;
    text-align: center;
    background: #000;
    color:white;
    font-family: Arial, Helvetica, sans-serif;
}

.bodySelected {
    background: #0ffa;
    border-radius: 20px;
    border: 10px solid #fff;
}

.map {
    height: 97%;
    top: 50%;
    left: 50%;
    position: relative;
    /* align-content: center; */
    display: block;
    transform: translate(-50%, -50%);
}

.grayscale {
    filter: grayscale(100%);
}

.circle {
    z-index: 5;
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: #ff0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%; 
    border-radius: 100%
}

.redCircle {
    background-color: red;
    z-index: 10;
}

.locationTracker {
    z-index: 6;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: height 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sonar {
    z-index: 5;
    transform: translate(-50%, -50%);
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%; 
    border-radius: 100%;
    opacity: 1;
    transition: all 5s;
}


#bottomHalf {
    position: absolute;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4vmin;
    text-align: center;
    height: 50%;
    width: 100%;
    left: 0%;
    top: 50%
}

.partialCompleteTask {
    color: #ecff20;
}

.completedTask {
    color: #1c1;
}

#reportButton {
    position: absolute;
    bottom: calc(0% + 2vmin);
    left: calc(0% + 2vmin);
    z-index: 8;
    width: 20vmin;
    width: 20vmin;
    display: none;
}

#skipButton {
    position: absolute;
    bottom: calc(0% + 4.5vmin);
    left: calc(0% + 4.5vmin);
    z-index: 8;
    width: 30vmin;
    width: 30vmin;
    display: none;
    cursor: pointer;
}

#skipVoteDiv {
    position: absolute;
    bottom: calc(0% + 4.5vmin);
    left: calc(0% + 17vmin);
    z-index: 8;
    height: 14vmin;
    width: 30vmin;
    pointer-events: none;
}


#deadBodyDiv {
    width: 100%;
    display: none;
    height: 100%;
    position: absolute;
    top: 0%;
    animation-name: bodyReported;
    animation-duration: 1s;
    z-index: 1000;
}

#banner {
    width: 100%;
    height: 15%;
    left: 0%;
    position: absolute;
    top: 12.5%;
    background-color: white;
    z-index: 1003;
    font-size: 9vw;
    text-align: center;
    font-family: monospace;
    color: red;
    line-height: 14vh;
}

#deadBodyBackground {
    width: 100%;
    left: 0%;
    position: absolute;
    animation-name: bodyReportedBG;
    animation-duration: 1s;
    height: 100%;
    top: 0%;
    /* background-color: black; */
    background: -webkit-linear-gradient(270deg, rgba(0,0,0,1) 0%, rgba(255,11,11,1) 5%, rgba(233,114,114,1) 9%, rgba(251,107,107,1) 11%, rgba(255,0,0,1) 15%, rgba(214,65,65,1) 17%, rgba(255,103,103,1) 20%, rgba(255,0,0,1) 22%, rgba(255,142,142,1) 26%, rgba(214,81,81,1) 31%, rgba(191,0,0,1) 35%, rgba(0,0,0,1) 49%);
}
#deadBodySymbol {
    width: 40vmin;
    height: 40vmin;
    left: 50%;
    position: absolute;
    top: 60%;
    transform: translate(-50%, -50%);
    z-index: 1004;
}

.offlineDiv {
    position: absolute;
    width: 10%;
    height: 100%;
    right: 0%;
    top: 0%;
    background-color: #777;
}


@keyframes bodyReported {
    0%   {left:100%}
    50%  {left:0%;}
    100%  {left:0%;}
}
@keyframes bodyReportedBG {
    0%   {
        top:25%; height: 0%;
    }
    20%   {
        top:25%; height: 0%;
    }
    60%  {
        top:0%; height: 100%;
    }
}

#beanFriend {
    position: absolute;
    right: 1vmin;
    bottom: 0%;
    height: 15vmin;
    z-index: 12;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#helpButton {
    position: absolute;
    right: 1.5vmin;
    bottom: 13vmin;
    height: 8vmin;
    z-index: 12;
}

#helpDiv {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    box-sizing: border-box;
    padding: 10%;
    background-color: #252525;
    z-index: 11;
    font-size: 3.5vmin;
    color: white;
    font-family: monospace;
    overflow-x: hidden;
    overflow-y: auto;
    /* position: relative; */
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
}

.crewmateText {
    color: #a3cbff;
}

.imposterText {
    color: #ff9a9a;
}

.underline {
    text-decoration: underline;
}


/*TaskBar*/
#taskBar {
    position: absolute;
    bottom: 3%;
    left: 25%;
    width: 50%;
    height: 6vmin;
    background-color: #293F2A;
    border-color: black;
    border-style: solid;
    border-width: 4px;
    outline: white;
    outline-style: solid;
    outline-width: 2px;
}

#taskBarMeter {
    position: relative;
    top: 0%;
    left: 0%;
    width: 0%;
    height: 100%;
    background-color: rgb(60, 255, 0);
    transition: width .8s ease-in-out;
}

.taskBarDivider {
    position: absolute;
    top: 0%;
    left: 33%;
    width: 2%;
    height: 100%;
    background-color: rgb(0, 0, 0);
}

.ghostTaskListItem {
    background: gray;
    width: 70%;
    left: 15%;
    position: relative;
    border-radius: 25px;
    outline-style: solid;
    outline-width: 3px;
}

#taskTrackerLabel  {
    position: absolute;
    width: 80%;
    text-align: center;
    color: white;
    left: 10%;
    top: 70%;
    font-family: Helvetica;
    font-size: 10vmin;
    border-radius: 10px;
    background-color: darkgreen;
    border: 3px solid;
    display: none;
}

@keyframes expandCircle {
    0%   {left:100%}
    50%  {left:0%;}
    100%  {left:0%;}
}

#connectionHealth {
    position: absolute;
    right: 1vmin;
    top: 1vmin;
    width: 3vmin;
    height: 3vmin;
    z-index: 15;
    background-color: #206318;
}

#connectionHealth.health1 {
    background-color: #f5d310;
}
#connectionHealth.health2 {
    background-color: #f57710;
}
#connectionHealth.health3 {
    background-color: #f51010;
}
#connectionHealth.health4 {
    background-color: #000000;
}

#lightsOutDiv {
    background-color: #000000bb;
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    display: none;
}

#alarmDiv {
    background-color: #ff00005e;
    z-index: 9;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    display: none;
}

#timer {
    position: absolute;
    right: 2vmin;
    bottom: 0;
    height: 13vmin;
    width: 16vmin;
    z-index: 26;
    color: white;
    font-family: system-ui;
    font-size: 10vmin;
    text-align: center;
    -webkit-text-stroke-width: 0.3vmin;
    -webkit-text-stroke-color: black;
    font-weight: 600;
    display: none;
    pointer-events: none;
}

#selfDestruct {
    color: red;
    position: absolute;
    transform: translateX(-50%);
    top: 0;
    left: 50%;
    background: #111;
    padding: 0.5vmin 2vmin 1vmin 2vmin;
    font-size: min(5vw, 2.5vh);
    border-radius: 0 0 2vmin 2vmin;
    font-family: monospace;
    z-index: 25;
    display: none;
}

.littleText {
    font-size: 2.2vh;
    line-height: 1vh;
    color: black;
    text-shadow: none;
    -webkit-text-stroke-width: 0;
}

.hideSabotages {
    padding: 1vh;
    background: darkred;
    border-radius: 10px;
    margin-top: 1vh;
    text-align: center;
}

#commsJammed {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #888;
    display: none;
    text-align: center;
    font-size: 10vw;
    font-family: monospace;
    line-height: 100vh;
}

.beanImage {
    left: 10px;
    bottom: 0px;
    position: absolute;
    height: 100%;
}

#targetBox {
    background: #99666e;
    border-radius: 50px;
    text-align: center;
    padding-top: 10px;
}

.laywerTargetBox {
    background: #867553 !important;
}

.proTargetBox {
    background: var(--pro) !important;
}

#targetSpan {
    font-size: 15vmin;
    font-weight: 800;
}

#targetName {
    text-align: center;
    font-size: 10vmin;
    font-style: italic;
}

#targetImg {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.brighten {
    filter: brightness(220%);
}

.collapse {
    background-color: #2b2b2b;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: center;
    outline: none;
    font-size: 25px;
    border-radius: 15px;
    transition: border-radius 0.2s ease-out;
    /* border-top-left-radius: 10px;
    border-bottom-left-radius: 10px; */
  }

.roleHelpContainer {
    margin-bottom: 20px;
}

.roleHelpContainer>button:nth-of-type(odd) {
    background: #333;
}

.collapse.active {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.collapse:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: #222;
}

.pleaseRefresh {
    position: absolute;
    background: #333;
    padding: 4vmin;
    font-size: 10vmin;
    border-radius: 5vmin;
    color: white;
    font-family: monospace;
}

.chooseRole {
    border-radius: 10px;
    height: 5vh;
    width: 80%;
    font-size: 2vh;
    margin-left: 10%;
    margin-bottom: 1vh;
    background: black;
    border: none;
    outline: none;
}

.choosenRole {
    background: #ddd;
    color: black !important;
    font-weight: bold;
}

.findSidckDiv {
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -50%);
    color: white;
    background-image: linear-gradient(to bottom right, #585a5f, #282a2f);
    width: 70vmin;
    height: 60vmin;
    padding: 5vmin;
    z-index: 2;
    font-family: monospace;
    font-size: 5.6vmin;
}

.findSidckDivTopBar {
    border-radius: 10px;
    position: absolute;
    top: 10vmin;
    left: 50%;
    text-align: left;
    white-space: pre-wrap;
    transform: translate(-50%, -50%);
    color: white;
    background-image: linear-gradient(to bottom right, #585a5f, #282a2f);
    width: 70vmin;
    height: 10vmin;
    padding: 3vmin;
    z-index: 2;
    font-family: monospace;
    font-size: 3.6vmin;
}