/** BLOCK: LIVEWALL - CSS **/
.livewall {
    width: 80%;
    margin: auto;
}

.livewall .title {
    text-align: center;
    margin-bottom: 0.75rem;
    margin-top: 40px;
}

.livewall .livewall-text {
    text-align: center;
    /*margin-bottom: 3rem;*/
}

.livewall .wall {
    display: grid;
    grid-template-columns: 2fr 0.1fr 2fr;
    grid-gap: 1rem;
}

.livewall .circle {
    height: 6px;
    width: 6px;
    background: #D5D5D5;
    margin: auto;
    border-radius: 100%;
}

.livewall .line {
    height: 100%;
    width: 1px;
    background: #D5D5D5;
    margin: auto;
}

.livewall .block .thumbnail {
    margin-top: 3rem;
    height: 300px;
    position: relative;
    padding: 1rem;
}

.livewall .block .thumbnail .date {
    background: var(--primary-color);
    color: #FFFFFF;
    position: absolute;
    padding: 0.35rem;
    font-family: var(--font-medium);
}

.livewall .block .thumbnail .block-logo {
    font-family: "Font Awesome 5 Pro";
    content: '\f16d';
    position: absolute;
    color: #FFFFFF;
}

.livewall .livewall-btn {
    text-align: center;
    /*margin: 3rem 0 0 0;*/
}

.livewall .sbi_caption_wrap {
    background: var(--secondary-color) !important;
    color: var(--tertiary-color) !important;
    text-align: left;
    padding: 2rem 1rem !important;
}

@media only screen and (max-width: 990px) {

    .livewall {
        width: 100%;
    }

    .livewall .wall {
        grid-template-columns: 1fr;
    }

    .livewall .livewall-text {
        margin: 0;
    }

    .livewall .wall .middle {
        display: flex;
    }

    .livewall .circle {
        margin: initial;
    }

    .livewall .line {
        height: 1px;
        width: 100%;
    }

}