#hamburger {
    position: fixed;
    bottom: 250px;
    right: 40px;
    background: #0C0908;
    border: 3px solid #ecf3dd;
    border-radius: 15px;
}

#search-page {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 300vw;
    overflow-y: auto;
}

#video-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100vw;
    height: 100%;
}

#video-container {
  width: 100vw;
  height: 576px;
}

#video-element {
    object-fit: contain;
    width: 100vw;
    height: 100%;
}


#ad-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.video-list {
    height: 100%;
    flex-basis: 100vw;
    padding: 0px;
    overflow-y: auto;
}

.video-li {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-top: 3px solid #535357;
    border-bottom: 3px solid #535357;
    width: 100%;
    height: 200px;
    gap: 20px;
}

.video-li > img {
    padding-left: 20px;
    padding-right: 20px;
    height: 130px;
    object-fit: contain;
}

.video-li-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-li-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 110px;
}

.video-li-title > img {
    height: 120px;
    margin-top: 60px;
    border-radius: 50%;
    border: 2px solid #CDBE91;
    object-fit: contain;
}

.video-li-matchup {
    flex-grow: 1;
    height: 100%;
}

.video-li-matchup > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #CDBE91;
    font-size: 36px;
    text-align: center;
    height: 50%;
}

.video-li-props {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    height: 45px;
}

.video-li-props > p {
    display: inline-flex;
    font-size: 25px;
    color: #CDBE91;
}

.right-border {
    padding-right: 20px;
    border-right: 2px solid #CDBE91; 
}



#search-menu {
    height: 100%;
    background: #0C0908;
    flex-basis: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Submit button */
#search-menu > button {
    width: 240px;
    height: 90px;
    border-radius: 25px;
    font-size: 36px;
    color: #C9AA6E;
    background: #212122;
}

.search-visible {
    animation-name: search-slide-in;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}
.search-hidden {
    animation-name: search-slide-out;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}
.player-visible {
    animation-name: player-slide-in;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}
.player-hidden {
    animation-name: player-slide-out;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
}

@keyframes search-slide-in {
    0%   { transform:translateX(0) }
    100% { transform:translateX(-100vw) }
}
@keyframes search-slide-out {
    0%   { transform:translateX(-100vw) }
    100% { transform:translateX(0) }
}
@keyframes player-slide-in {
    0%   { transform:translateX(0) }
    100% { transform:translateX(100vw) }
}
@keyframes player-slide-out {
    0%   { transform:translateX(100vw) }
    100% { transform:translateX(0) }
}


#role-select {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #212122;
    width: 100%;
    border-top: 3px solid #535357;
    border-bottom: 3px solid #535357;
}

#role-select > img {
    width: 120px;
}

#matchup {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 15px;
}

#matchup-select {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

/* This is for selecting which champ's games/videos to watch */
.search-base {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 120px;
    width: 50%;
    padding: 10px;
    background: #212122;
}

.champion {
    border-top: 3px solid #535357;
    border-bottom: 3px solid #535357;
}

.search-base > img {
    border-radius: 50%;
    border: 4px solid #535357;
    height: 120px;
    object-fit: contain;
}

.selecting-champion {
    background-image: linear-gradient(to right, rgba(78,66,43,1), rgba(78,66,43,0));
}

.selection-champion > img {
    border: 3px solid #C9AA6E;
}

.opponent > p {
    width: 300px;
    font-size: 50px;
    text-align: left;
    padding-left: 24px;
    color: #C9AA6E;
}

.opponent {
    border-top: 3px solid #535357;
    border-bottom: 3px solid #535357;
}

.selecting-opponent {
    background-image: linear-gradient(to right, rgba(78,66,43,0), rgba(78,66,43,1));
}

.opponent > p {
    width: 300px;
    font-size: 50px;
    padding-right: 24px;
    text-align: right;
    color: #C9AA6E;
}

.search-base > p {
    width: 300px;
    font-size: 50px;
    padding-left: 24px;
    color: #C9AA6E;
}

.search-base > input:hover {
    background: #535357;
}

#champion-select {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #212122;
    border-radius: 20px;
    gap: 20px;
    overflow: auto;
    transition: height 200ms;
}

.champion-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

#champion-select > input {
    outline: none;
    font-size: 50px;
    background: #0C0908;
    border-radius: 25px;
    padding: 30px;
    color: #EFF6E0;
    width: 50%;
    padding: 20px;
}

.closed {
    height: 0px;
    padding: 0px;
}

.open {
    height: 680px;
    padding: 20px;
}

.champion-icons > img {
    border-radius: 50%;
    border: 3px solid #C9AA6E;
    height: 120px;
    object-fit: contain;
}

.summoner-search {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 120px;
    border-top: 3px solid #535357;
    border-bottom: 3px solid #535357;
    background: #212122;
    padding-top: 10px;
    padding-bottom: 10px;
}

.summoner-search > input {
    box-sizing: border-box;
    margin: 20px;
    border-radius: 20px;
    font-size: 36px;
    height: 90px;
    width: 420px;
    color: #EFF6E0;
    background: #0C0908;
    padding-left: 20px;
}

.comment-section {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.comment-text-area {
    align-self: center;
    color: #CDBE91;
    margin-top: 10px;
    padding: 20px;
    font-size: 28px;
    text-align: left;
    width: 90%;
    border-radius: 20px;
    background: #212122;
}

[contenteditable=true]:empty:before{
  content: attr(placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
  color: #717171;
}

.comment-submit {
    margin: 40px;
    padding: 15px;
    border-radius: 20px;
    font-size: 36px;
    color: #CDBE91;
    background: #212122;
    align-self: flex-end;
}

.comment-list {
    flex-grow: 1;
    align-self: center;
    padding: 20px;
    overflow-y: auto;
    width: 90%;
    list-style-type: none;
}

.comment-actions {
    display: flex;
    flex-direction: row;
    height: 50px;
}

/* All the comment actions.. */

.comment-submit-reply {
    border-radius: 10px;
    margin: 5px;
    background: #212122;
    font-size: 16px;
    color: #CDBE91;
}

.video-timestamp {
    border-radius: 10px;
    margin: 5px;
    background: #212122;
    font-size: 16px;
    color: #CDBE91;
}

.comment-reply {
    box-sizing: border-box;
    overflow-y: auto;
    list-style-type: none;
    width: 100%;
    transition: max-height 0.2s linear;
}

.comment-reply.show-replies {
    max-height: 310px;
}

.comment-reply.hide-replies {
    max-height: 0;
    transition: max-height 0.2s linear;
}

.comment-reply > .comment {
    margin-top: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    color: #CDBE91;
    background: #212122;
    border-radius: 20px;
    width: 100%;
}

.comment-show-replies {
    /* Put the button at the rhs of the action box */
    margin-left: auto;
    margin-top: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
    background: #212122;
    font-size: 16px;
    color: #CDBE91;
}

.comment {
    box-sizing: border-box;
    color: #CDBE91;
    background: #212122;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.comment-metadata {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 45px;
}
