.skedul-item{
    background-color: transparent;    
    height:100%;
    width: 150px;
    border-radius: 5px;
    overflow: hidden;
}

.skedul-item--activity,
.skedul-item--card{
    aspect-ratio:190/280;/* + 20 margin */
    max-height: 280px;
    width: 190px;
}
div[data-lines="1"] .skedul-item--activity,
div[data-lines="1"] .skedul-item--card{
    aspect-ratio:210/280;
    width: 210px;
}

.skedul-item--streamer{
    aspect-ratio:300/110;/* + 20 margin */
    width: 300px;
    max-height: 110px;
}

/* --- */

.skedul-item-container{
    display: block;
    position: relative;
    height:100%;
    width:100%;
}

.skedul-item--image-container{
    position: absolute;
    z-index: 5;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    display: block;
}
.skedul-item--image{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: 0.25s all ease;
}
.skedul-item--image-container:hover .skedul-item--image{
    transform: scale(1.05);
}
a.skedul-item-container:hover .skedul-item--image{
    transform: scale(1.05);
}
.skedul-item--image-layer{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.64%, rgba(0, 0, 0, 0.90) 88.93%);

    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}

/* -- */

.skedul-item .skedul-item--like{
    position: absolute;
    top: 0;
    right: 0;
    padding:12px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.skedul-item .skedul-item--like i{
    --fa-primary-color: white;
    --fa-secondary-color: black;
    --fa-primary-opacity: 1;
    --fa-secondary-opacity: 0.42;
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.8));
    transition: all 0.25s ease;
}
.skedul-item .skedul-item--like:hover i{    
    --fa-secondary-color: #44e5b5;
    --fa-secondary-opacity: 0.42;
}
.skedul-item .skedul-item--like.liked i{
    --fa-secondary-color: #44e5b5;
    --fa-secondary-opacity: 1;
}



/* --- */

.skedul-item--card--metas--container{
    position: absolute;
    z-index: 10;
    left: 0;
    width: 100%;
    bottom: 0;
    padding:13px;
    display: flex;
    gap:10px;
    align-items: center;
}


.skedul-item--card--metas{
    display: flex;
    flex-direction: column;
    gap:2px;
    flex: 1;
    width: calc(100% - 38px - 10px);
}
.skedul-item--streamer-image{
    width:38px;
    height:38px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 38px;
    border: 1px solid black;
}
.skedul-item--streamer-image img{
    width:100%;
    height:100%;
    vertical-align: top;
    object-fit: fill;
    transition: all 0.25s ease;
}
.skedul-item--streamer-image:hover img{
    transform: scale(1.05);
}

.skedul-item--card--activity{
    overflow: hidden;
    color: #44E5B5;
    
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Smooch Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;

    display: block;
    text-decoration: none;
}
.skedul-item--card--activity:hover{
    text-decoration: underline;
}
.skedul-item--card--streamer{
    color: #44E5B5;
    
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 17px;
    font-style: italic;

    display: block;
    text-decoration: none;

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.skedul-item--card--streamer span{
    color: #ffffff;
}
.skedul-item--card--streamer:hover span{
    text-decoration: underline;
}

.skedul-item--card--date{
    position: absolute;
    z-index: 5;
    top: 8px;
    left: 8px;
    padding: 6px 10px;
    color: #FFF;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap:4px;
}
.skedul-item-container.no-date .skedul-item--card--date{
    display:none;
}
.skedul-item-container.onprogress .skedul-item--card--date::before{
    content:'';
    display: block;
    width: 10px;
    aspect-ratio: 1;
    background-color: #EA2E31;
    border-radius: 50%; 
    animation: clignoter 1s infinite; 
}
@keyframes clignoter {
    0% {
        opacity: 1; 
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

.skedul-item--card--title{
    
    display: flex;
    flex-direction: column;

    font-family: "Smooch Sans";
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px; 
    text-transform: uppercase;
    text-decoration: none;
}
.skedul-item--card--title:hover{
    text-decoration: underline;
}
.skedul-item--card--title:before{
    content:'';
}
.skedul-item--card--separator{
    width: 50px;
    height:2px;
    margin:auto;
}


/* ---*/

.skedul-item--card-announcement .skedul-item--card--metas{
    gap:10px;
    width: auto;
}
.skedul-item--card-announcement .skedul-item--card--metas--container{
    bottom: 50%;
    left: 50%;
    translate: -50% 50%;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: auto;
    padding:0;
}
.skedul-item--card-announcement .skedul-item--image {
    z-index: 10;
    position: relative;
}
.skedul-item--card-announcement .skedul-item--image-layer {
    z-index: 5;
}

/* --- */

.skedul-item--activity--metas{
    position: absolute;
    z-index: 10;
    left: 0;
    width: 100%;
    bottom: 0;
    padding:20px;
    text-align: center;
}
.skedul-item--activity--icon{
    color: #44E5B5;
    font-size: 20px;
}
.skedul-item--activity--activity{
    color: #FFF;

    font-family: "Smooch Sans";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.skedul-item--activity--count{
    color: #44E5B5;
    font-family: Montserrat;
    font-size: 12px;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
}

/* -- */



.skedul-item--streamer--metas-container{
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 17px;
}

.skedul-item--streamer--metas{
    display: flex;
    flex-direction: column;
    gap:7px;
    width: calc(100% - 64px - 17px);
}

.skedul-item--streamer--name{
    color: #44E5B5;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.skedul-item--streamer-image-container{
    flex: 0 0 64px;
}

.skedul-item--streamer .skedul-item--streamer-image{
    width: 64px;
    height: 64px;
}

.skedul-item--streamer .skedul-item--image-layer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.90) 88.93%);
}