.contenRating{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: auto;
}
  
.textRatingNotFound{
    color: white;
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 600;
}

.lineRating{
    display: grid;
    width: 100%;
    height: 5px;
    background-color: #212529;
    margin-top: 10px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 5px 5px rgba(0, 0, 0, 0.22);
}

.textTimeUpdateRating{
    color: white;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 300;
}

.contentBlockRating{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: auto;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
    margin-bottom: 50px;
    padding-bottom: 50px;
}

.blockGlobalRating{
    display: grid;
    width: calc(33.33% - 10px);
    height: auto;
    background-color: #212529;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.45), 2px 5px 5px rgba(0, 0, 0, 0.52);
}




.fieldNameRating{
    color: white;
    text-align: center;
    width: 100%;
    height: 60px;
    font-size: 1.4rem;
    margin-top: 10px;
    font-weight: 600;
}

.globalTable {
    width: 100%;
    height: auto;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.tdGlobalTable {
    padding: 8px;
    border-bottom: 1px solid #ddd;
    padding-left: 20px; /* отступ слева */
    padding-right: 20px; /* отступ справа */
    text-align: left;
    font-size: 16px;
}
.tdGlobalTable:last-child {
    text-align: right;
    padding-right: 20px;
}

.ratingGlobalTable{
    display: grid;
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

.ratingGlobalTable tr:nth-child(1) td:first-child {
    width: 15px; /* Цвет текста первого столбца первой строки */
    color: #e3253e;
}

.ratingGlobalTable tr:nth-child(2) td:first-child {
    color: #dcad0b; /* Цвет текста первого столбца второй строки */
}

.ratingGlobalTable tr:nth-child(3) td:first-child {
    color: #98a440; /* Цвет текста первого столбца третьей строки */
}


.contentFullRating{
    display: grid;
    width: 100%;
}

.tableFullRating{
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    border: 1;
    margin-bottom: 50px;
}

.tableFullRating tbody tr{
    cursor: pointer;
    height: 54px;
    transition: 0.25s ease-in-out;
}

.tableFullRating tbody tr:hover{
    background-color: #252b31;;
}

.textNameCurrentRating{
    color: white;
    text-align: center;
    width: 100%;
    font-size: 2.5rem;
    font-weight: 600;
}

.tableFullRating th{
    font-size: 16px;
}

.tableFullRating td{
    font-size: 16px;
    height: 54px;
    transition: 0.25s ease-in-out;
}

.tableFullRating tr:nth-child(1) td{
    color: #e3253e;;
}
.tableFullRating tr:nth-child(2) td{
    color: #dcad0b;
}
.tableFullRating tr:nth-child(3) td{
    color: #98a440;
}

.tableFullRating th:last-child {
    text-align: right;
}

.tableFullRating td:last-child {
    text-align: right;
}

.tableFullRating tr:nth-child(1) th:first-child {
    width: 35px;
}

.tableFullRating td:nth-child(3),
.tableFullRating td:nth-child(4),
.tableFullRating td:nth-child(5) {
    display: table-cell; /* Отображаем эти колонки как ячейки таблицы */
}

.tableFullRating th:nth-child(3),
.tableFullRating th:nth-child(4),
.tableFullRating th:nth-child(5) {
    display: table-cell; /* Отображаем эти колонки как ячейки таблицы */
}


#floatingButton {
    position: fixed;
    bottom: 20px; /* Расположение кнопки в нижнем правом углу */
    right: 20px;
    width: 200px; /* Фиксированная ширина кнопки */
    height: 40px; /* Фиксированная высота кнопки */
    background-color: #06f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {

    #floatingButton {
        width: 100%; /* Растягиваем кнопку на всю ширину на мобильных устройствах */
        border-radius: 0; /* Убираем скругление углов */
        bottom: 85px; /* Расположение кнопки внизу экрана */
        right: 0;
        border-radius: 5px;
    }

    .tableFullRating td:nth-child(3),
    .tableFullRating td:nth-child(4),
    .tableFullRating td:nth-child(5) {
        display: none; /* Скрываем эти колонки при ширине экрана менее 768px */
    }

    .tableFullRating th:nth-child(3),
    .tableFullRating th:nth-child(4),
    .tableFullRating th:nth-child(5) {
        display: none; /* Скрываем эти колонки при ширине экрана менее 768px */
    }

    .tableFullRating tr:nth-child(1) th:first-child {
        width: 45px;
    }
    .textNameCurrentRating
    {
        font-size: 1.3rem;
    }
}



@media screen and (max-width: 1200px) {
.blockGlobalRating {
    width: calc(50% - 10px);
}
}
@media screen and (max-width: 800px) {
.blockGlobalRating {
    width: 100%;
}
}