.root-everything {
    margin-left: 2vw;
    margin-right: 2vw;
    overflow-x: hidden;
}

.root-first-c {
    margin-top: 2vh;
}

.the-form {
    display: flex;
    flex-direction: column;
}

.indicator {
    width: auto;
}

.actions-2r32tt {
    margin-top: 3vh;
    margin-left: 3vw;
    margin-bottom: 3vh;
}

.actions-2r32tt p {
    padding-top: 10px;
    padding-bottom: 10px;
}

.actions-section {
    padding-bottom: 3vh;
}

.actions-button-container {
    display: flex;
    flex-direction: column;
}

.row-2 {
    display: inline-block;
    min-width: 900px;
    width: 75%;
    margin-top: 3vh;
    margin-right: 3vw;
    margin-bottom: 3vh;
}

.row-2-head {
    position: absolute !important;
    top: 4vh;
    right: 6vw;
}

.letsgomate-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 4vh;
}

.letsgomate-container-2 {
    align-items: center;
}

.letsgomate {
    min-width: 10vw;
    width: 10vw;
    white-space: nowrap;
    z-index: 3;
}

.modal-content {
    display: block;
    position: absolute;
    left: 50%;
    top: 33%;
    transform: translate(-50%, -50%);
    width: 2%;
    /* Could be more or less, depending on screen size */
    height: 2%;
    z-index: 99999;
}

.bolder {
    font-size: 1.3em;
    font-weight: bold;
    color: white;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999998;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.warning-modal-content {
    z-index: 999999;
    background-color: var(--grey-600);
    margin: 10% auto;
    /* 15% from the top and centered */
    padding: 1px;
    border: 1px solid #888;
    width: 50%;
    /* Could be more or less, depending on screen size */
}

.video-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999998;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.party-mode-background {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: hidden;
    background-image: url(./confetti.gif);
}

/* Modal Content/Box */
.modal-content2 {
    z-index: 999999;
    background-color: var(--grey-600);
    margin: 10% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    /* Could be more or less, depending on screen size */
}

.ignore-switch {
    position: absolute !important;
    right: 0px;
    /*margin-left: 20em !important;*/
}

.choose-game-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999998;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.login-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 999998;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.choose-game-content {
    z-index: 999999;
    background-color: var(--grey-600);
    margin: 10% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 65em;
    /* Could be more or less, depending on screen size */
    min-width: 65em;
}

.login-content {
    z-index: 999999;
    background-color: var(--grey-600);
    margin: 10% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 20em;
    /* Could be more or less, depending on screen size */
    min-width: 20em;
}

#wheelOfFortune {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
  
  #wheel {
    display: block;
  }
  
  #spin {
    font: 1.5em/0 sans-serif;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    height: 30%;
    margin: -15%;
    background: #fff;
    color: #fff;
    box-shadow: 0 0 0 8px currentColor, 0 0px 15px 5px rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    transition: 0.8s;
  }
  
  #spin::after {
    content: '';
    position: absolute;
    top: -17px;
    border: 10px solid transparent;
    border-bottom-color: currentColor;
    border-top: none;
  }