.search-filter-wrap {
    background-color: #f9fafa;
    padding: 20px;
    margin-bottom: 2em;
}

.search-filter-wrap .filter-title {
    padding: 15px 10px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #ebefef;
    border-bottom: 1px solid #f9fafa;
}

.search-filter-wrap .filter-title h3 {
    font-size: 20px;
}

.search-filter-wrap .filter-title:hover {
    cursor: pointer;
    background-color: #ebefef;
}

.search-filter-wrap .filter-title.expand {
    border-bottom: 1px solid #ccc;
    background-color: #ebefef;
    box-shadow: inset 0px -1px 0px 0px #ccc;

}

.search-filter-wrap .filter-title svg {
    width: 16px;
    position: absolute;
    right: 10px;
    transition: 0.3s;
}

.search-filter-wrap .filter-title.expand svg {
    transform: rotate(180deg);
    transition: 0.3s;
}

.event-image img {
    object-fit: cover;
    width: 100%;
}

.event-search .event-wrapper {
    display: grid;
    position: relative;
    min-height: 100px;
}

.event-wrapper .event-content {
    display: inline-flex;
    flex-wrap: wrap;
    flex-flow: column;
}

.event-search-form {
    position: relative;
}

.event-search-input-wrapper {
    width: 100%;
    display: inline-flex;
    margin-bottom: 1em;
}

.event-search-form label {
    color: #0D0F1B;
    font-weight: 600;
}

.event-search-input-wrapper input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    color: #0D0F1B;
    background-color: #fff;
    border: 1px solid #F1F2F3;
}

.event-search-input-wrapper input:focus {
    outline: none;
}

.search-button {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    border: none;
}
.search-button:hover{
    cursor: pointer;
}
.search-button svg {
    width: 16px;
    color: #fff !important;
    fill: #fff !important;
}

.check-list {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 30px;
    margin: 15px 0px;
}

.check-list li {
    min-width: 200px;
}

.check-list input {
    margin-right: 10px;
}

.check-list input:focus {
    outline: none;
}

.event-load-more {
    margin: 0.5em 0em;
}

/* Hide the browser's default checkbox */
.check-list input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-list li {
    position: relative;
}


.check-list label {
    padding-left: 30px;
}

.check-list label:hover {
    cursor: pointer;
}

/* Create a custom checkbox */
.check-list .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #F1F2F3;
    border: 2px solid #333;
}


/* When the checkbox is checked, add a blue background */
.check-list input:checked~.checkmark {
    background-color: #0C2E5C;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-list input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-list .checkmark:after {
    left: 6px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.event-load-more .btn-load-more {
    border: 1px solid;
}

.event-load-more .btn-load-more:hover {
    cursor: pointer !important;
}

a:hover .event-title,
a:hover .event-tagline {
    color: initial;
}

a:hover .event-title {
    text-decoration: underline;
}

.event-warning{
    position: absolute;
    width: 100%;
}