*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: 0.4s;
}

h1, h2, h3, h4, h5, h6, p, span, div{
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #161617;
    overflow: hidden;
}

.pad-buttons{
    display: flex;
}

.center-flex{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.circle-bordered-button{
    background-color: #1d1d1f;
    height: 80px;
    width: 80px;
    border-radius: 50px;
    outline: none;
    border: none;
    font-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    cursor: pointer;
    background: #252526;
    border: 1px solid #303031;
}

.circle-bordered-button:hover{
    border-color: #6464C7;
}

.pr-active{
    border-color: #6464C7;
}

.circle-bordered-button img{
    height: 50px;
    width: 50px;
}

.header{
    position: fixed;
    width: 100%;
    padding: 50px;
    top: 0;
    left: 0;
    color: white;
    display: flex;
    justify-content: space-between;
}

.chat-button{
    background-color: #1d1e22;
    border: none;
    padding: 10px 15px;
    outline: none;
    color: white;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 25%);
}

.button-text h6{
    color: #99999f;
    font-size: 15px;
    width: 270px;
    margin-top: 20px;
}

.footer{
    position: fixed;
    bottom: 0;
    left: 0%;
    width: 100%;
    padding: 30px;
}

.players-wrap{
    display: flex;
}

.player-box{
    display: flex;
    margin-right: 10px;
    color: white;
    border-radius: 5px;
    align-items: center;
    cursor: pointer;
}

.player-box:hover{
    transform: scale(1.1);
    padding: 10px 5px;
    padding-right: 15px;
    background-color: rgba(0, 0, 0, 0.267);
    backdrop-filter: blur(10px);
    position: relative;
}

.text-icon{
    width: 35px;
    height:35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin: 0 10px;
}

.player-box .text-icon:nth-child(1){
    background-image: linear-gradient(-20deg, #b721ff 0%, #21d4fd 100%);
}

.player-box .text-icon:nth-child(2){
    background-image: linear-gradient(to right, #f9d423 0%, #ff4e50 100%);
}

.player-name{
    color: white;
    font-size: 15px;
}

.win-screen{
    background-color: rgba(0, 0, 0, 0.795);
    backdrop-filter: blur(10px);
    position: fixed;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 999;
    align-items: center;
    color: white;
    top: 0;
    left: 0;
    text-align: center;
}

.win-inner h1{
    font-size: 100px;
    line-height: 100px;
}

.win-inner h6{
    font-size: 15px;
    font-weight: 500;
}

.continue-link{
    color: white;
    border-radius: 5px;
    bottom: 20px;
    text-decoration: none;
    padding: 8px 12px;
    background-color: #343536;
    position: fixed;
}

.cflex{
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-wrap{
    height: 100vh;
    width: 100%;
}

.intro-inner{
    width: 350px;
}

.settings-btn{
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 5px;
}

.settings-btn:hover{
    background-color: #1d1d1f;
}

.intro-head{
    display: flex;
    margin-bottom: 30px;
}

.intro-text h1{
    color: white;
    font-size: 40px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 5px;
}

.intro-text h6{
    color: #99999f;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    width: 300px;
}

.button-border{
    background: #252526;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.intro-input{
    overflow: hidden;
    display: flex;
    padding: 0;
}

.go-join{
    height: inherit;
    width: 50px;
    background-color: #6464C7;
    color: white;
    cursor: pointer;
    display: none;
}

.intro-input input{
    background-color: transparent;
    outline: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    width: 100%;
    font-size: 15px;
    color: white;
    padding: 12px 16px;
}

.host-btn{
    background-color: #ff4e50;
    color: white;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    cursor: pointer;
}

.settings-pop{
    position: absolute;
    right: 30px;
    background: #1d1e22;
    box-shadow: 0 4px 30px rgb(0 0 0 / 50%);
    border-radius: 6px;
    width: 250px;
    bottom: 30px;
    padding: 15px;
    display: none;
}

.settings-pop h3{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
}

.settings-pop h4{
    font-size: 14px;
    line-height: 15px;
    color: lightgray;
    margin-bottom: 15px;
    font-weight: 600;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.input-name{
    width: 100%;
}

.input-name input{
    outline: none;
    border: none;
    background-color: transparent;
    padding: 8px;
    background-color: #303031;
    border-radius: 5px;
    color: white;
    width: 100%;
}

.overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}


.create-inner{
    background-color: #1d1e22;
    border: none;
    padding: 20px;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 30px rgb(0 0 0 / 25%);
    width: 300px;
    position: fixed;
    left: calc(50% - 150px);
    top: calc(50vh - 100px);
    display: none;
}

.create-abs{
    font-size: 15px;
    font-weight: 500;
    color: #99999f;
    margin-bottom: 10px;
}

.points-max{
    background-color: #252526;
    color: white;
    outline: none;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.create-room{
    display: flex;
}

.fadethis{
    display: none;
}

.cancel-create{
    color: dodgerblue;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}

.load-text{
    color: rgb(214, 214, 214);
    font-weight: 500;
    font-size: 18px;
}

.wait-div{
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(20px);
}

.wait-inner{
    text-align: center;
}

.join-info h2{
    color: white;
}

.join-info h5{
    color: #99999f;
}

.warning-label{
    color: #ff4e50;
    font-size: 12px;
    font-weight: 500;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.game-history{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 320px;
    background: #1a1a1b;
    border: 1px solid #343536;
    overflow-y: scroll;
    display: none;
}

.history-title{
    color: white;
    font-size: 18px;
}

.sidebar-head{
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-area{
    padding: 10px 25px;
}

.chatbox{
    width: 100%;
    background: #252526;
    padding: 10px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.chatbox:hover{
    transform: scale(1.2);
}

.chat-abs{
    color: white;
}

.dot{
    height: 5px;
    width: 5px;
    border-radius: 10px;
    background: green;
}

.style-bar::-webkit-scrollbar-track
{
	background-color: transparent;
}

.style-bar::-webkit-scrollbar
{
	width: 6px;
	background-color: transparent;
}

.style-bar::-webkit-scrollbar-thumb
{
	background-color: #343536;
}

.close-div{
    padding: 5px;
    border-radius: 5px;
    height: 30px;
}
.close-div:hover{
    background-color: #252526;
}