* {
    box-sizing: border-box;
    margin: 0;
}

body {
    background-color: #0A0A0A;
    font-family: "Open Sans", sans-serif;
}

#container-events {
    padding: 1%;
}

#list-events {
    width: 95vw;
}

@media (min-width: 1100px) {
    #list-events {
        width: 50vw;
    }
}

.event-container {
    padding: 1rem;
    width: 100%;
    margin: 1rem 0 0 0;
    border-radius: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #141414;

}

.event-header {
    color: #E4E6EA;
    width: 100%;
    margin-bottom: 0.5rem;
}

@media (min-width: 700px) {
    .event-header {
        padding-left: 1rem;
    }
}

.event-main {
    width: 100%;
}

.event-footer {
    margin-top: 1rem;
    width: 100%;
    padding-left: 1rem;
    font-size: 1rem;
    line-height: 1rem;
}

.event-footer a {
    color: #E4E6EA;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.event-title {
    color: #E4E6EA;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Josefin Sans", sans-serif;
}

.event-description {
    color: #E4E6EA;
    font-size: 0.90rem;
    text-overflow: ellipsis;
}

.event-main-info-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 1rem;
    width: 100%;
    height: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.event-thumbnail-container {
    height: 100%;
}

.event-thumbnail {
    height: 100px;
}

@media (min-width: 1000px) {
    .event-thumbnail {
        height: 200px;
    }
}

.flex-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.flex-r {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.staticUrlDiv {
    display: none;
    height: 0;
}

.icon {
    height: 1rem;
    line-height: 1rem;
    margin: 0 0.25rem 0 0.25rem;
}

#defaultText {
    color: #E4E6EA !important;
    font-size: 2rem;
}

/* custom scrollbar */
::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 6px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}