.tcbl--container {
    width: 100%;
    max-width: 100% !important;
    --tcbl-color: #FF6969;
}

.tcbl--container input {
    outline: none;
}

.tcbl--loader {
    display: inline-block;
    width: 80px;
    height: 80px;
    transform: rotate(45deg);
    transform-origin: 40px 40px;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 99999;
}

.tcbl--loader div {
    top: 32px;
    left: 32px;
    position: absolute;
    width: 32px;
    height: 32px;
    background: var(--tcbl-color);
    animation: tcblloader 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.tcbl--loader div:after,
.tcbl--loader div:before {
    content: " ";
    position: absolute;
    display: block;
    width: 32px;
    height: 32px;
    background: var(--tcbl-color);
}

.tcbl--loader div:before {
    left: -24px;
    border-radius: 50% 0 0 50%;
}

.tcbl--loader div:after {
    top: -24px;
    border-radius: 50% 50% 0 0;
}

@keyframes tcblloader {
    0% {
        transform: scale(0.95);
    }
    5% {
        transform: scale(1.1);
    }
    39% {
        transform: scale(0.85);
    }
    45% {
        transform: scale(1);
    }
    60% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(0.9);
    }
}

.tcbl--content {
    position: relative;
}

.tcbl--content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 40px;
}

@media screen and (max-width: 1024px) {
    .tcbl--content-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.tcbl--content-grid-single {
}

.tcbl--content-grid-single a {
    padding: 24px 36px;
    border-radius: 5px;
    border: 1px solid #ebebeb;
    background: #ffffff;
    display: flex;
    text-decoration: none;
    transition: box-shadow .3s;
    color: #333333;
}

.tcbl--content-grid-single a:hover {
    box-shadow: 0 0 10px #0000001a;
}

.tcbl--content-grid-single a:focus {
    background: #ebebeb;
}

.tcbl--content-grid-single .tcbl--content-grid-single__logo {
    max-width: 60px;
    margin-right: 20px;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta {
    width: 100%;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta .tcbl--content-grid-single__meta-single {
    margin: 0 0 15px 0;
    font-size: 16px;
    display: flex;
    align-items: first baseline;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta .tcbl--content-grid-single__meta-single .tcbl--content-grid-single__meta-single--icon {
    fill: var(--tcbl-color);
    margin-right: 10px;
    width: 16px;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta .tcbl--content-grid-single__meta-single:last-child {
    margin-bottom: 0;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta .tcbl--content-grid-single__meta-single span {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tcbl--content-grid-single .tcbl--content-grid-single__meta .tcbl--content-grid-single__meta-title {
    font-size: 24px;
    font-weight: bold;
}

.tcbl--content-filters {
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    /*overflow: hidden;*/
}

@media screen and (max-width: 1024px) {
    .tcbl--content-filters {
        flex-direction: column;
    }
}

.tcbl--content-filters:hover {
    transition: box-shadow .3s;
    box-shadow: 0 0 10px #0000001a;
}

.tcbl--content-filters__search-input {
    margin: 0 !important;
    border: none !important;
    width: 100%;
}

@media screen and (max-width: 1024px) {
    .tcbl--content-filters__search-input {
        border-bottom: 1px solid #ebebeb !important;
    }
}

.tcbl--content-filters__search-button {
    border: none;
    background-color: var(--tcbl-color) !important;
}

@media screen and (max-width: 1024px) {
    .tcbl--content-filters__search-button {
        width: 100%;
    }

    .tcbl--content-filters__search-button svg {
        width: 16px;
        height: 16px;
    }
}

.tcbl--content-filters__show-results {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
}

.tcbl--content-filters__show-results:after {
    display: block;
    content: '';
    clear: both;
    height: 1px;
}

.tcbl--content-filters__show-results > span:nth-child(1) {
    position: absolute;
    display: block;
    left: 0;
}

.tcbl--content-filters__show-results > span:nth-child(2) {
    position: absolute;
    display: block;
    right: 0;
}

.tcbl-pagination {
    margin: 80px 0 0;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.tcbl-pagination--single {
    margin: 5px;
}

.tcbl-pagination--single a {
    padding: 5px 8px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: 0.2s all;
    border-radius: 4px;
}

.tcbl-pagination--single.active a {
    background-color: var(--tcbl-color);
    color: #fff;
}

.tcbl-pagination--single a:focus,
.tcbl-pagination--single a:active,
.tcbl-pagination--single a:hover {
    color: #fff;
    background-color: var(--tcbl-color) !important;
}

.tcbl--content-filters__location {
    position: relative;
    border-left: 1px solid #ccc;
    padding-left: 20px;
    margin-left: 20px;
    width: 100%;
}

.tcbl--content-filters__location-input {
    margin: 0 !important;
    border: none !important;
    width: 100%;
}

.tcbl--content-filters__location-list {
    position: absolute;
    top: calc(100% + 7px);
    margin: 0;
    list-style: none;
    width: 100%;
    background-color: #fff;
    left: 0;
    padding: 10px 20px;
    z-index: 1;
    box-shadow: 0 7px 10px #0000001a;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    max-height: 285px;
    overflow-x: hidden;
}

.tcbl--content-filters__location-list-single {
    cursor: pointer;
    font-size: 16px;
    padding: 5px 8px;
    border-radius: 5px;
    transition: 0.2s all;
    line-height: normal;
}

.tcbl--content-filters__location-list-single.disabled-link {
    pointer-events: none;
    color: #cccccc;
}

.tcbl--content-filters__location-list-single:hover {
    background-color: #e0e0e0;
}

@media screen and (max-width: 1024px) {

    .tcbl--content-filters__location {
        padding: 0;
        border: none;
        margin: 0;
    }
}
