.boardAndContents{
    width: 1040px;
    margin: auto;
    display: none;
    margin-top: 30px;
}

.allBoardRelatedContents{
    display: block;
    animation: ease-in-out slide-in 0.3s;
}

@keyframes slide-in{
    0%{
        opacity: 0;
        transform: translateY(15px);
    }
    100%{
        opacity: 1;
    }
}

.noOverFlow{
    overflow-y: hidden;
}

.innerBoardContents{
    display: flex;
}

.evalContainer{
    width: 20px;
    background-color: rgb(27, 27, 27);
    position: relative;
}

.whiteBar{
    width: 100%;
    height: 50%;
    background-color: rgb(160, 225, 236);
    position: absolute;
    bottom: 0;
    transition: 1s cubic-bezier(.19,.79,.59,1);
}

.configContainer{
    width: 40px;
    height: 700px;
}

.configButtons{
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    font-weight: bold;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.settings:hover{
    background-color: rgb(49, 156, 206);
    cursor: pointer;
}

.configBtnImages{
   width: 25px;
}

.configButtonContainer{
    position: relative;
}

.settings{
    background-color: rgb(16, 118, 165);
}

.settingsSlider{
    background-color: rgb(49, 156, 206);
}

.theme{
    background-color: rgb(219, 11, 11);
}

.themeSlide{
    background-color: rgb(172, 12, 12);
}

.theme:hover{
    background-color: rgb(172, 12, 12);
    cursor: pointer;
}

.annimations{
    background-color: rgb(10, 95, 7);
}

.annimations:hover{
    background-color: rgb(18, 141, 14);
}

.annimationsSlide{
    background-color: rgb(18, 141, 14); 
}

.configButtonNameSliders{
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    z-index: -1;
    color: white;
    font-family: "Lato", sans-serif;
    padding: 10px;
    box-sizing: border-box;
    transition: 0.5s;
    overflow-x: hidden;
}

.configButtonContainer:hover > .configButtonNameSliders{
    width: 120px;
    transform: translateX(-120px);
}

.boardContainer{
    width: 700px;
    height: 700px;
    margin: auto;
    transition: 0.8s;
    position: relative;
}

.row{
    width: 100%;
    margin: auto;
    height: 12.5%;
    display: flex;
}

.square{
    width: 12.5%;
    height: 100%;
    display: none;
    animation: squareFadeIn ease-in-out 0.3s;
    justify-content: center;
    position: relative;
    align-items: center;
    overflow-y: hidden;
    overflow-x: hidden;
    box-sizing: border-box;
}

.light{
    background-color: rgb(224, 224, 224);
    transition:0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dark{
    background-color: rgb(25, 110, 150);
    transition:0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wTop{
     display: none;
     animation: pieceSlideIn ease-in-out 0.3s;
}

.wBottom{
    display: none;
    animation: pieceSlideIn ease-in-out 0.3s;
}

.bTop{
    display: none;
    animation: pieceSlideIn ease-in-out 0.3s;
}

.bBottom{
    display: none;
    animation: pieceSlideIn ease-in-out 0.3s;
}

@keyframes pieceSlideIn {
    0%{
        opacity: 0;
        transform: translateY(20px);
    }

    /* 80%{
        transform: translateY(-8px);
    } */

    100%{
        opacity: 1;
    }
}

@keyframes squareFadeIn {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

.pieces{
    display: block;
    width: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 9;
    cursor: grab;
    transition: 0.3s;
}

.piecesPlaced{
    display: none;
    width: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 9;
    cursor: grab;
    transition: 0.3s;
    animation: pieceSlideIn ease-in-out 0.5s;
}

@keyframes pieceSlideIn {
    0%{
        opacity: 0;
        transform: translateY(10px);
    }

    100%{
        opacity: 1;
    }
}

.trayPieces{
    display: block;
    width: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    z-index: 8000;
    cursor: grab;
    transition: 0.3s;
}

.moving{
    width: 70px;
    z-index: 9;
    cursor: grab;
    transition: 0.3s; 
}

.dragging{
    cursor: grabbing;
    position: absolute;
    opacity: 0;

}

.pieceFollowingContainer{
    position: absolute;
    z-index: 10000;
    left: 200px;
    width: 60px;
    height: 60px;
}

.followingPiece{
    width: 80px;
    cursor: grabbing;
}

.playerContainer{
    position: relative;
    display: flex;
    width: 700px;
    height: 60px;
    width: 700px;
    z-index: 100;
    margin-left: 40px;
}

.profilePicture{
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: white;
}

.infoContainer{
    margin-left: 10px;
}

.nameHeader{
    color: white;
    font-family: lato, sans-serif;
    font-size: 18px;
}

.rating{
    font-family: lato, sans-serif;
    color: rgb(206, 21, 21);
    font-weight: bold;
}

.points{
    color: rgb(194, 168, 20);
    font-size: 12px;
    font-family: lato, sans-serif;
}

.profileTitle{
    background-color: rgb(189, 13, 13);
    color: white;
    font-family: lato, sans-serif;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 15px;
    height: 20px;
    margin-left: 15px;
}

#topProfileImage{
    background-image: url(../img/defaultRegisterProfile.jpg);
    background-size: cover;
}

.marginTop{
    margin-top: 15px;
}

.settingsContainer{
    width: 500px;
    height: 550px;
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(45, 58, 66);
    z-index: 200;
    padding-top: 40px;
    display: none;
    transition: 0.5s;
    animation: settingFadeIn ease-in-out 0.5s;
}

@keyframes settingFadeIn{
    0%{
        opacity: 0;
        transform: translateY(20px);
    }

    100%{
        opacity: 1;
    }
}

.clsoseButton{
    background-color: transparent;
    width: 30px;
    height: 30px;
    border: 2px solid rgb(23, 116, 170);
    color: rgb(23, 116, 170);
    position: absolute;
    top: 20px;
    right: 20px;
    transition: 0.3s;
}

.clsoseButton:hover{
    color: rgb(49, 156, 206);
    border-color: rgb(49, 156, 206);
    cursor: pointer;
}

.settingContainer{
    width: 100%;
    padding: 6px;
    margin: auto;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
    transition: 0.5s;
}

.settingTitle{
    color: white;
    font-family: lato, sans-serif;
    font-size: 20px;
    padding: 5px 20px;
}

.leverContainer{
    width: 60px;
    height: 30px;
    border-radius: 25px;
    background-color: rgb(243, 243, 243);
    position: absolute;
    right: 50px;
    cursor: pointer;
    transition: 0.5s;
}

.leverButtonSlide{
    position: absolute;
    height: 35px;
    width: 35px;
    border-radius: 100%;
    border: 1px solid rgb(161, 161, 161);
    background-color: rgb(233, 233, 233);
    box-sizing: border-box;
    top: -2px;
    left: -2px;
    transition: 0.3s;
}

.settingSelects{
   font-family: lato, sans-serif;
   font-size: 15px;
   padding: 8px;
   position: absolute;
   right: 50px;
   color: white;
   background-color: rgb(75, 75, 75);
   width: 120px;
   outline: none;
}

.saveSettingsButton{
    background-color: rgb(14, 187, 43);
    font-family: lato, sans-serif;
    font-size: 18px;
    padding: 10px 25px;
    border: none;
    outline: none;
    margin: 20px;
    transition: 0.5s;
    color: white;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
}

.saveSettingsButton:hover{
    box-shadow: 10px 10px 0px black;
}

.moveTrackerMenuContainer{
    width: 0px;
    height: 700px;
    background-color: rgb(51, 51, 51);
    transition: 0.7s;
}

.boardAndMoveWrapper{
    display: flex;
    width: auto;
    margin: auto;
    align-items: center;
    padding-bottom:12px;
}

.moveMenuContents{
    display: none;
}

.moveMenuTitle{
    width: 100%;
    background-color: transparent;
    padding: 15px;
    font-family: lato, sans-serif;
    color: grey;
    font-size: 25px;
    box-sizing: border-box;
    animation: squareFadeIn ease-in-out 0.3s;
}

.playersName{
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
}

.playerNameRep{
    padding: 12px;
    box-sizing: border-box;
}

.pOne{
    width: 50%;
    background-color: grey;
    color:rgb(51, 51, 51);
    font-size: 15px;
    text-align: center;
    font-family: lato, sans-serif;
    border: 3px solid grey;
}

.pTwo{
    width: 50%;
    background-color: rgb(51, 51, 51);;
    color:grey;
    font-size: 15px;
    text-align: center;
    font-family: lato, sans-serif;
    border: 3px solid grey;
    border-left: none;
}

.allInOneScollContainer{
    margin: auto;
    overflow-y: scroll;
    animation: squareFadeIn ease-in-out 0.3s;
}

.allInOneScollContainer::-webkit-scrollbar {
    display: none;
  }

.trackerTableFlexContainer{
    display: flex;
    height: 350px;
}

.moveTrackerTableClient{
    width: 50%;
    height: 100%;
    color: white;
    font-family: lato, sans-serif;
}

.moveTrackerTableOpponent{
    width: 50%;
    height: 100%;
    color: white;
    font-family: lato, sans-serif; 
}

tr{
    padding-bottom: 0;
    padding-left: 10px;
    margin-bottom: 0;
    height: 30px;
    display: block;
    transition: 0.3s;
}

td{
    height: 30px;
    width: 50%;
    margin-left: 10px;
    transition: 0.2s;
}

td:hover{
    color:rgb(21, 179, 252);
    cursor:pointer;
}

.moveTrackerTableClient{
    border-right: 3px solid grey;
    border-bottom: 3px solid grey;
}

.moveTrackerTableOpponent{
    border-bottom: 3px solid grey;
}

.moveTrackerTable{
    width: 100%;
    margin: auto;
    border-collapse: collapse;
}

.endingMenu{
    width: 400px;
    height: 600px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgb(54, 54, 54);
    display: none;
    z-index: 2000;
    padding: 20px;
}

.checkmate{
    font-family: lato, sans-serif;
    color: transparent;
    font-weight: bold;
    font-size: 35px;
    text-align: center;
    margin-top: 40px;
    transition: 1s;
}



