.page_title h1:after {
    display: inline-block;
    content: '';
    width: 12px;
    height: 12px;
    background-color: red;
    border-radius: 50%;
    margin-left: 15px;
    animation-name: blink;
    animation-timing-function: linear;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    vertical-align: middle;
}

#main_content h3 {
    margin-bottom: 15px;
}

#evrima-live {
    width: 100%;
    display: block;
}

.live {
    display: block;
    border: 2px solid #ededed;
    border-radius: 5px;
    padding: 10px 15px;
    max-height: 650px;
    overflow: hidden;
}

.live .l-item {
    display: flex;
    width: 100%;
    padding: 5px 10px;
    background: linear-gradient(90deg, rgb(245 236 255) 0%, rgb(243 236 255 / 27%) 46%, rgb(89 0 255 / 0%) 100%);
    border-radius: 4px;
    margin: 3px 0;
}

.live .l-item.new {
   
}

.live .l-item.animation {
    animation-name: blink;
    animation-timing-function: linear;
    animation-duration: 1s;
    animation-iteration-count: 2;
}

.live .l-item b {
    margin-left: 10px;
}

.live .l-item a {
   margin: 0 5px;
}

.players {
   margin-top: 50px;
}

.empty {
    text-align: center;
    color: #9E9E9E;
}

.guides {
    margin-top: 50px;
    user-select: none;
}

.guide-table {
    display: table;
    font-size: 16px;
    line-height: normal;
}

.guide-table-column {
    display: table-cell;
    font-weight: bold;
    border: 1px solid #9E9E9E;
    border-left: none;
    border-bottom: none;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
}

.guide-table-row {
    display: table-row;
}

.guide-table-cell {
    display: table-cell;
    vertical-align: middle;
    border: 1px solid #9E9E9E;
    border-left: none;
    padding: 5px 10px;
    border-radius: 0 4px 4px 0;
}

.guide-table-row .guide-table-cell:first-child, .guide-table-row .guide-table-column:first-child {
    border-left: 1px solid #9E9E9E;
    border-radius: 4px 0 0 4px;
}

.guide-table-cell i {
    font-style: normal;
    color: #4CAF50;
}

.text-source {
    font-size: 12px;
    color: #9E9E9E;
    margin-top: 10px;
}

.text-source a {
    color: #9E9E9E;
}

.guide-nutrients h4 {
    margin-top: 15px;
}

.nutrient-list {
    user-select: none;
}

.nutr-info {
    display: flex;
    align-items: center;
}

.nutr-info span {
    margin-left: 20px;
    font-size: 16px;
}

.nutrients {
    display: flex;
}

.evrima-welcome {
    border-radius: 4px;
    box-shadow: 0 0.75rem 1.5rem rgb(18 38 63 / 3%);
    border: 1px solid #ededed;
    margin: -25px 0 35px;
    padding: 25px 30px 25px 30px;
}

.welcome-title {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.welcome-offers {
    display: flex;
}

.wo-item {
    width: 25%;
    font-size: 16px;
}

.ev-player-list {
    display: block;
    border: 2px solid #ededed;
    border-radius: 5px;
    padding: 10px 15px;
    max-height: 650px;
    overflow: hidden;
    margin-bottom: 30px;
}

.ev-player-item {
    margin: 5px 0;
}

.e-name {
    font-weight: bold;
}

.e-name span {
    font-weight: normal;
    margin-left: 10px;
    color: #9E9E9E;
}

.e-dino {
    display: flex;
}

.e-details {
    margin-left: 15px;
    font-size: 13px;
    color: #9E9E9E;
}


@keyframes blink {
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    0% {
        opacity: 1;
    }
} 
