@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Roboto+Condensed&display=swap');

*{
    margin: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

.mainApp{
    margin-bottom: 100px;
}

.bgImage, .bgImage img{
    width: 100%;
}

body{
    background-color: black;
}

.bgImage{
    z-index: -10;
}

.tournaments{
    background-color: #181818;
    padding: 10px;
    z-index: 2;
    margin: 10px;
    margin-top: 40px;
    border-radius: 8px;
    color: #E50914;
}

.compartments{
    position: absolute;
    z-index: 1;
    width: 100%;
    margin-top: -45px;
}

.firstRow{
    display: flex;
}
.tournamentsList{
    cursor: pointer;
    margin: 10px 0;
    padding: 7px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 23px 0px rgba(0,0,0,0.4);
    border-radius: 5px;
    background-color: #222222;
}

.gameIcon{
    display: flex;
    align-items: center;
}

.tournamentsList .gameIcon img{
    border-radius: 10px;
}

.details{
    margin-left: 10px;
    color: white;
}

.joinButton{
    margin: 10px;
    /* width: 100%; */
    display: flex;
    justify-content: end;
}

.joinButton #joinBtn{
    text-decoration: none;
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #E50914;
    color: white;
    border: none;
    font-size: 16px;
}

.menu{
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    z-index: 9;
    background-color: black;
    color: white;
    font-size: 16px;
    position: fixed;
    bottom: 0;
}

.menu i{
    margin: 10px;
    padding: 10px;
    font-size: 30px;
    cursor: pointer;
}

.badges a{
    margin: 0 10px;
    color: white;
    font-family: sans-serif;
    background-color: rgb(0 107 255);
    padding: 5px;
    border-radius: 4px;
}

.moreDetails{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

.firstRowBadges{
    display: flex;
    justify-content: space-between;
}

.badges{
    display: flex;
    align-items: center;
    /* width: 70%; */
}
.snd{
    margin-top: 20px;
}
.blankDiv{
    height: 80px;
    width: 100%;
    background-color: black;
}
.creditDiv p{
    padding: 10px 0;
    color: white;
    text-align: center;
}
.creditDiv p span{
    color: #E50914;
    text-decoration: underline;
    cursor: pointer;
}
#green{
    background-color: rgb(3 134 3);
}
#yellow{
    background-color: rgb(255 167 0);
}
#red{
    background-color: red;
}
.loadingDiv{
    position: absolute;
    background-color: black;
    height: 100%;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loadingPng{
    animation-name: loadingAnimation;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}
@keyframes loadingAnimation {
    from{
        transform: rotate(0deg);
    } to {
        transform: rotate(360deg);
    }
}

.appTitleBar{
    position: relative;
    height: 50px;
    background-color: #E50914;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appTitleBar img{
    margin: 200px 0;
}

.appTitleBar i{
    font-size: 25px;
}

#menuIconTitleBar{
    position: absolute;
    left: 15px;
}

#notificationIconTitleBar{
    position: absolute;
    right: 10px;
}

.sideMenu{
    left: -100vw;
    position: absolute;
    width: 100%;
    background-color: black;
    color: white;
    z-index: 10;
    top: 0;
    transition: 0.3s;
}

.sideMenu hr{
    margin: 10px 10%;
    color: white;
}

#pSmall{
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1;
}

.closeMenuIcon{
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}

.closeMenuIcon i{
    margin-top: 20px;
    margin-right: 30px;
    color: #E50914;
    font-size: 30px;
}

.userInfoCard{
    background-color: #181818;
    margin: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 15px;
}

.userInfoCardSecondRow p{
    font-size: 20px;
    margin-bottom: 2px;
}

.userInfoCardSecondRow a{
    background-color: #E50914;
    padding: 1px 4px;
    border-radius: 5px;
}

.userInfoCard i{
    font-size: 80px;
    margin-right: 20px;
}

.sideMenu a{
    color: white;
    text-decoration: none;
}

.sideMenuOptions{
    display: flex;
    flex-direction: column;
}

.sideMenuOptions a{
    padding: 5px;
    margin: 5px 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    padding-left: 30px;
    border-radius: 8px;
}

.sideMenuOptions a:hover{
    background-color: #181818;
    color: #E50914;
}

.sideMenuOptions i{
    font-size: 28px;
    margin: 10px 0;
    margin-right: 10px;
}


.versionInfo{
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    color: #E50914;
    margin: 20px 0;
}

.versionInfo p{
    margin-left: 5px;
}

#comingSoonDiv{
    height: 100vh;
    color: transparent;
    position: absolute;
    z-index: 12;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.444);
    display: none;
}

#comingSoonContainer{
    transform: scale(0);
    background: white;
    border-radius: 8px;
    transition: 0.3s;
}

#comingSoonContainer .comingSoonMsg{
    color: black;
    font-size: 20px;
    padding: 30px 40px;
}

.comingSoonOKbtn button{
    width: 100%;
    font-size: 16px;
    border: none;
    padding: 8px 10px;
    background-color: #E50914;
    color: white;
    border-radius: 0px 0px 8px 8px;
    transition: 0.3s;
}

.comingSoonOKbtn button:hover{
    background-color: #9b0008;
}