.fa-globe {
    position: relative;
    /* other styles for the icon */
}

.fading-effect:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px; /* Initial size of the circle */
    height: 30px;
    background: rgba(255, 255, 255, 0.5); /* Color of the circle */
    border-radius: 50%;
    animation: fadeOutEffect 2s ease-out infinite;
}

@keyframes fadeOutEffect {
    0% {
        width: 30px;
        height: 30px;
        opacity: 1;
    }
    100% {
        width: 50px; /* Final size of the circle */
        height: 50px;
        opacity: 0;
    }
}


.choosed {
    color: #e08821;
}

.hide-header {
    height: 0;
    padding: 0;
    transform: translateY(-250px);
}

.rate-buttons {
    display: flex;
    justify-content: space-evenly;
    font-size: 40px;
    margin-bottom: 50px;
    text-shadow: #fff 1px 1px 20px;
}

.rate-button-active {
    display: flex;
    justify-content: space-evenly;
    font-size: 40px;
    margin-bottom: 50px;
    color: rgb(224, 136, 33);
    text-shadow: #E08821FF 1px 1px 20px;
}

.custom-striped-tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.15);
}

.nk-back-button {
    position: fixed;
    left: 0;
    top: 100px;
    padding-top: 25px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    -webkit-transition: .2s transform ease-in-out, .3s margin-bottom;
    -o-transition: .2s transform ease-in-out, .3s margin-bottom;
    transition: .2s transform ease-in-out, .3s margin-bottom;
    -webkit-transform: translateX(50px) translateY(60%);
    -ms-transform: translateX(50px) translateY(60%);
    transform: translateX(50px) translateY(60%);
    z-index: 1000;
    will-change: transform;
    list-style-type: none;
}