.wide-banner-container {
    box-sizing: border-box;
    position: relative;
    height: 308px;
    min-width: 1120px;
    max-width: 1400px;
    margin-left: -10px;
    /*margin-top: -15px;*/
    background-color: green;
    margin-right: -10px;
    margin-bottom: 10px;
}

.wide-banner-container.loading-awaiting {
    height: 0;
    overflow:hidden;
}



.wide-banner-item {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 308px;
    background-color: #FFFFFF;
    display: flex;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}

.wide-banner-container .wide-banner-dots {
    position: relative;
    bottom: 5px;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.wide-banner-container .wide-banner-dots li {
    position: relative;
    width: 6px;
    height: 6px;
    background-color: #0089ce;
    border-radius: 3px;
    margin-right: 7px;
    cursor: pointer;
    transition-duration: 0.3s;
}

.wide-banner-container .wide-banner-dots li:hover {
    width: 11px;
    height: 11px;
    border-radius: 5px;
}

.wide-banner-container .wide-banner-dots li:last-of-type {
    margin-right: 0;
}

.wide-banner-container .wide-banner-dots li.slick-active {
    width: 11px;
    height: 11px;
    border-radius: 5px;
    cursor: default;
}
