﻿

.card-event {
    position: relative;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 6px;
    height: 450px;
    overflow: hidden;
    width: auto;
    margin-bottom: 30px;
}

    .card-event .shimmerBG {
        -webkit-animation-duration: 2.2s;
        animation-duration: 2.2s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-name: shimmer;
        animation-name: shimmer;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        background: #e5f0fb;
        background: linear-gradient(to right, #c1dceb 4%, #a3cbe1 25%, #c1dceb 36%);
        background-size: 1200px 100%;
    }

@-webkit-keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1200px 0;
    }

    100% {
        background-position: 1200px 0;
    }
}

.card-event .media {
    height: 200px;
}

.card-event .p-32 {
    padding: 32px;
}

.card-event .title-line {
    height: 24px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 20px;
}

.card-event .content-line {
    height: 8px;
    width: 100%;
    margin-bottom: 16px;
    border-radius: 8px;
}

.card-event .end {
    width: 40%;
}

.m-t-24 {
    margin-top: 24px;
}

/*title Event Shimmer*/
.title-event .bg-shimmer {
    -webkit-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: shimmer;
    animation-name: shimmer;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background: #e5f0fb;
    background: linear-gradient(to right, #c1dceb 4%, #a3cbe1 25%, #c1dceb 36%);
    background-size: 1200px 100%;
}

.title-event .line-title {
    height: 5px;
    width: 100%;
}

@media (max-width: 764px) {
    /* --sm*/
    .as-bg-color-input--sm {
        background-color: #E8F0FE !important;
    }
}