.b-dics {
    width     : 100%;
    max-width : 100%;
    position  : relative;
    overflow  : hidden;
    display   : -webkit-box;
    display   : -ms-flexbox;
    display   : flex;
    opacity   : 0;
}

.b-dics__section {
    height : 100%;
}

.b-dics__slider:hover :before {
    color        : #FFFFFF;
    border-color : #FFFFFF;
}

.b-dics__text {
    position       : absolute;
    top            : 0;
    left           : 50%;
    padding        : 5px 25px;
    -webkit-transform      : translateX(-50%);
    -ms-transform      : translateX(-50%);
    transform      : translateX(-50%);
    background     : #FFFFFF;
    z-index        : 11;
    font-family    : Arial, serif;
    color          : #3d3d3d;
    -webkit-user-select    : none;
    -moz-user-select    : none;
    -ms-user-select    : none;
    user-select    : none;
    font-size      : 13px;
    text-align     : center;
    margin         : 16px 0;
    white-space    : nowrap;
    opacity        : .7;
    pointer-events : none;
}

.b-dics__image-container {
    width    : 100%;
    height   : 100%;
    display  : block;
    overflow : hidden;
    position : relative;
}

.b-dics__image {
    height      : 100%;
    position    : absolute;
    left        : 0;
    top         : 50%;
    -webkit-transform   : translateY(-50%);
    -ms-transform   : translateY(-50%);
    transform   : translateY(-50%);
    -webkit-user-select : none;
    -moz-user-select : none;
    -ms-user-select : none;
    user-select : none;
    max-width   : none;
}

.b-dics__slider {
    color        : #FFFFFF;
    position     : absolute;
    left         : 100%;
    top          : 0;
    cursor       : pointer;
    -webkit-transform    : translateX(-50%);
    -ms-transform    : translateX(-50%);
    transform    : translateX(-50%);
    height       : 100%;
    width        : 3px;
    padding      : 0 30px;
    z-index      : 1;
    -ms-touch-action : none;
    touch-action : none;
    line-height  : normal;
    opacity      : .7;
}

.b-dics__slider:after {
    content          : '';
    position         : absolute;
    left             : 50%;
    top              : 0;
    -webkit-transform        : translateX(-50%);
    -ms-transform        : translateX(-50%);
    transform        : translateX(-50%);
    height           : 100%;
    width            : 3px;
    background-color : currentColor;
    z-index          : 1;
}

.b-dics__image-container:hover .b-dics__text {
    opacity : 1;
}

.b-dics__slider:hover {
    opacity : 1;
}