
.img-team-icon img {
    width: auto;
    height: 36px;
}
.img-game-icon img {
    width: auto;
    height: 20px;
}

.progress-container {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 1000;
}

.progress-back {
    width: 100%;
    height: 100%;
    position: fixed;
    justify-content: center;
    align-items: center;
    background: rgba(52, 52, 52, 0.62);
    margin: 0;
    display: flex;
}

.progress-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #4CAF50;
    border-top: 6px solid transparent;
    position: fixed;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
}


@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


#notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #5b504d;
    font-size: 14px;
    color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 14px 16px;
    width: 300px;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#notificationClose {
    background-color: #DC3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

#notificationClose:hover {
    background-color: #C82333;
}
.hidden {
    display: none;
}
.cn-table td {
    font-size: 13px;
}

.selection {
    width: 100%;
}
.select2-container .select2-selection--single {
    height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
     line-height: 50px !important;
 }
