/* Prod Page */
#sessionHide{
    display: none;
}

#InfoWrapper{
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    background-color: #2e2e2e;
    font-size: 24px;
    color: #e7bc6e;
    z-index: -1;
}

#InfoWrapper input:disabled{
    position: absolute;
    filter: blur(6px) grayscale(1);
}

#InfoWrapper select:disabled{
    position: relative;
    filter: blur(6px);
}

#InfoWrapper label > input[disabled]{
    position: relative;
    filter: blur(6px) grayscale(1);
}

#teamInfoCont{
    position: relative;
    width: 1580px;
    height: 140px;
    display: flex;
    justify-content: space-between;
    accent-color: #e7bc6e;
    overflow: hidden;
    border: 4px double #e7bc6e;
}

#teamCont{
    position: relative;
    width: 750px;
    height: 140px;
}

#teamName{
    position: relative;
    height: 65px;
    left: 5px;
}

#teamName input{
    width: 250px;
    font-size: 16px;
    color: #e7bc6e;
    background-color: black;
}

.teamBlue{
    background-color: #0c1e44;
}

.teamRed{
    background-color: #5e1a19;
}

#rosterLabels{
    position: relative;
    width: 750px;
    height: 30px;
    display: flex;
    justify-content: space-evenly;
}

#rosterLabels label{
    width: 125px;
    text-align: center;
}

#rosterBoxes{
    position: relative;
    width: 750px;
    height: 30px;
    display: flex;
    justify-content: space-evenly;
}

#rosterBoxes input[type=text]{
    width: 125px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

#teamNameCont{
    position: relative;
    display: flex;
    justify-content: space-between;
}

#teamScore{
    position: relative;
    top: 5px;
    font-size: 30px;

}

#teamScore #team1Score{
    position: relative;
    right: 5px;
    margin-left: 5px;
    color: #e7bc6e;
    background-color: black;
}

#teamScore #team2Score{
    position: relative;
    left: 5px;
    margin-right: 5px;
    color: #e7bc6e;
    background-color: black;
}

#teamScore input{
    position: relative;
    width: 50px;
    height: 35px;
    font-size: 30px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #e7bc6e;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #e7bc6e;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #e7bc6e;
  }
  
  input:disabled + .slider {
    position: relative;
    filter: blur(6px) grayscale(1);
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  #flipTeamsCont{
    position: relative;
    width: 80px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 20px;
    text-align: center;
    background-color: #424242;
  }

  #flipButton{
    position: relative;
    display: flex;
    justify-content: center;
}

#staffCont{
    position: relative;
    width: 1580px;
    height: 150px;
    background-color: #26243e;
    border: 4px double #e7bc6e;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#staffCont input{
    position: relative;
    width: 200px;
    height: 35px;
    font-size: 25px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

#staff{
    position: relative;
    width: 1580px;
    height: 65px;
}

#chairs{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

#chairs label{
    position: relative;
    width: 300px;
}

#chairs input{
    position: relative;
    width: 300px;
}

#chairs input:disabled{
    position: relative;
    filter: blur(6px);
}

#chairToggleCont{
    position: relative;
    top: -20px;
    width: 300px;
    height: 65px;
    display: flex;
    justify-content: space-evenly;
}

#chairToggleCont label{
    position: relative;
    width: 60px;
}

#userInputCont{
    position: relative;
    width: 1580px;
    height: 100px;
    background-color: #26243e;
    border: 4px double #e7bc6e;
}

#inputs{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

#inputs label{
    position: relative;
    width: 300px;
}

#inputs input{
    position: relative;
    width: 300px;
    font-size: 20px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

#userInputTitle{
    position: relative;
    text-align: center;
}

#bestOfCont{
    position: relative;
    width: 1580px;
    height: 30px;
    background-color: #26243e;
    border: 4px double #e7bc6e;
}

#bestOf{
    position: relative;
    display: flex;
    justify-content: space-between;
    text-align: center;
}

#bestOfBox label{
    position: relative;
    width: 300px;
}

#bestOfBox input{
    display: inline-block;
}

#bestOfBox input[type="text"]{
    position: relative;
    width: 200px;
    font-size: 20px;
    text-align: center;
    color: #e7bc6e;
    visibility: visible;
    background-color: black;
}

#bestOfBox img{
    max-width: 100%;
    height: 15px;
}

#bestOfBox label > input {
    visibility: hidden;
    position: absolute;
}

#bestOfBox label > input + img {
    cursor: pointer;
    filter: grayscale(0.75);
}

#bestOfBox label > input:hover + img {
    cursor: pointer;
    filter: grayscale(0.45);
}

#bestOfBox label > input:checked + img {
    cursor: pointer;
    filter: none;
}

#bestOfBox label > input:disabled + img {
    cursor: pointer;
    filter: blur(6px) grayscale(1);
}

#picksNBansCont{
    position: relative;
    width: 1580px;
    height: 355px;
    font-size: 30px;
    text-align: center;
    background-color: #26243e;
    border: 4px double #e7bc6e;
}

#picksNBansCont select{
    position: relative;
    width: 300px;
    font-size: 25px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

#bansCont{
    position: relative;
    width: 1580px;
    height: 45px;
    display: flex;
    justify-content: space-between;
}

#bans{
    position: relative;
    width: 790px;
    display: inline-block;
}

#bans div{
    position: relative;
    top: 5px;
}

#picksCont{
    position: relative;
    width: 1580px;
    height: 45px;
    display: flex;
    justify-content: space-between;
}

#picks{
    position: relative;
    width: 790px;
    height: 275px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.pickOrient{
    position: relative;
    display: flex;
    justify-content: space-evenly;
}

#linkToCont{
    position: absolute;
    top: 50px;
    left: 0;
    width: 1580px;
}

#linkTo{
    position: absolute;
    right: 0;
}

#linkTo input{
    position: relative;
    width: 750px;
    font-size: 20px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}

input[id="userLock"]{
    position: relative;
    width: 200px;
    font-size: 20px;
    text-align: center;
    color: #e7bc6e;
    background-color: black;
}
