
.cycle_banner_container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.page_home .cycle_banner_container {
    margin-bottom: 0;
}

.cycle_banner_container .banner_content {
    width: 100%;
    height: 100%;
}

.cycle_banner_container .banner_content img {
    width: 100%;
    height: 100%;
}

.cycle_banner_container .banner_item {
    background-size: cover !important;
    background-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0,0,0,.4) !important;
    background-blend-mode: hue;
}

    .cycle_banner_container .banner_item.no-overlay {
        background-color: transparent !important;
    }

    .cycle_banner_container .banner_item_description_container {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        left: 0;
        padding: 15px;
        color: #fff;
        width: 100%;
    }

.cycle_banner_container .banner_item_title {
    font-size: 3.5rem;
    line-height: 1.2em;
    text-transform: uppercase;
    padding: 0 0 15px;
    text-align: center;
}

.cycle_banner_container .banner_item_description {
    font-size: 1.2em;
}

.cycle_banner_container .banner_item_options {
    padding: 30px 0 0;
    text-align: center;
}

.cycle_banner_container .banner_pager {
    position: absolute;
    z-index: 100;
    bottom: 20px;
    right: 20px;
}

.cycle_banner_container .banner_pager a {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    color: #000000;
    display: block;
    float: left;
    font-size: 1.2em;
    height: 20px;
    line-height: 20px;
    margin-left: 6px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
    -moz-transition: background-color 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
    -ms-transition: background-color 0.2s ease;
    -o-transition: background-color 0.2s ease;
    width: 20px;
}

.cycle_banner_container .banner_pager a.cycle-pager-active {
    color: #FFFFFF;
    background-color: rgba(255,255,255,1);
}

.cycle_banner_container .banner_pager_next,
.cycle_banner_container .banner_pager_previous {
    position: absolute;
    padding: 6px 10px;
    background: var(--primary);
    top: 50%;
    transform: translate(0, -50%);
    font-size: 1rem;
    z-index: 100;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s linear;
}

.cycle_banner_container .banner_pager_next:hover,
.cycle_banner_container .banner_pager_previous:hover {
    background: var(--primary-active);
}

.cycle_banner_container .banner_pager_next {
    right: 30px;
}

.cycle_banner_container .banner_pager_previous {
    left: 30px;
}

a.edit_banner {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}