.left-side {
    background-image: linear-gradient(#335789, #345789);
}

.right-side {
    background-image: linear-gradient(to right, #5074a5, #5174a5);
}

.content-wrapper {
    position: relative;
    margin-top: 148px;
    margin-left: 64px;
}

.btn-home {
    position: absolute;
    top: -10px;
    right: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    width: 30px;
    text-align: center;
}

.play-link {
    margin-top: -12px;
    margin-bottom: 18px;
}

.play-link-label {
    color: white;
    font-size: 17px;
}

.play-link-content {
    position: relative;
    display: grid;
    grid-template-columns: auto 80px;
    grid-column-gap: 8px;
    width: 90%;
    margin-top: 7px;
}

.play-link-content-text {
    display: flex;
    align-items: center;
    height: 34px;
    padding: 0 10px;
    overflow: hidden;
    background-color: #d6e1d5;
}

.play-link-content-text > span {
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    text-align: center;
}

.inform-copy {
    position: absolute;
    top: -25px;
    right: 10px;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: ProximaNovaSoft-Regular;
    color: white;
    animation-name: inform-copy-appear;
    animation-duration: 3s;
    opacity: 0;
}

@keyframes inform-copy-appear {
    0% {
        opacity: 1;
    }
    66% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.my-name {

}

.my-name-content {
    display: grid;
    grid-template-columns: auto 50px;
    grid-column-gap: 8px;
    width: 60%;
    margin-top: 7px;
}

.my-name-content-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 5px;
    border: 2px solid black;
    background-color: #d6e1d5;
    overflow: hidden;
}

.my-name-content-text > span {
    font-size: 16px;
}

.btn-refresh {
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.players-queue {
    width: 88%;
    margin-top: 18px;
    color: white;
}

.players-queue tr {
    display: flex;
    align-items: center;
}

.players-queue tr:nth-child(2n + 1) {
    background-color: #2e507d;
}

.players-queue tr:nth-child(2n) {
    background-color: #496489;
}

.players-queue .header {
    height: 40px;
    font-family: ProximaNovaSoft-Bold;
    font-size: 17px;
    text-shadow: 0 2px 1px rgba(0,0,0,1);
}

.players-queue td {
    padding: 0 12px;
    display: flex;
    align-items: center;
}

.waiting-player {
    height: 28px;
    font-family: ProximaNovaSoft-Regular;
    font-size: 17px;
}

.waiting-player .badge {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #f6e026;
}

.start-explanation {
    display: flex;
    align-items: center;
    font-size: 17px;
    margin-top: 18px;
    text-shadow: 0 2px 1px rgba(0,0,0,1);
    color: white;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #f6e026;
}

.btn-start {
    display: none;
    justify-content: center;
    align-items: center;
    width: 155px;
}

.btn-start.selected {
    background-color: #496489;
    color: #d8d8d8;
}

.waiting-text {
    display: none;
    font-size: 17px;
}

.footer {
    display: flex;
    margin-top: 10px;
    align-items: center;
}