.flex-gallery {
    position:        relative;
    display:         flex;
    flex:            1;
    flex-direction:  row;
    justify-content: flex-start;
    /*align-items: center;*/
    align-items:     stretch;
    margin:          0;
    padding-bottom:  30px;
}

div.triangle {
    display:          flex;
    width:            30px;
    position:         relative;
    align-items:      center;
    /*flex: 0 30px;*/
    /*content: '&nbsp;';*/
    /*border-top: 30px solid transparent;*/
    /*border-bottom: 30px solid transparent;*/
    /*border-top: 30px solid transparent;*/
    /*border-bottom: 30px solid transparent;*/
    cursor:           pointer;
    margin:           0 10px;
    background-color: rgba(0, 0, 0, 0.01);
}

div.triangle:hover {
    /*background-color: rgba(0, 0, 0, 0.1);*/
}

div.triangle.left-arrow::after {
    content:       '';
    border-top:    30px solid transparent;
    border-bottom: 30px solid transparent;
    border-right:  30px solid #3E9E49;
    /*opacity: 0.6;*/
}

.triangle.disabled {
    opacity:        0.5;
    pointer-events: none;

}

div.triangle.right-arrow::after {
    content:       '';
    border-top:    30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left:   30px solid #3E9E49;
    /*opacity: 0.6;*/
}

div.gallery-content div {
    display:  flex;
    position: relative;
    flex:     0 0 24%;
    margin:   0 0.5%;
}

div.gallery-content a {
    display: block;
    width:   100%;
}

div.gallery-content a img {
    width:  100%;
    height: 100%;
}

div.gallery-content div .desc {
    display:          block;
    position:         absolute;
    color:            white;
    padding:          10px;
    bottom:           0;
    left:             0;
    right:            0;
    background-color: rgba(0, 0, 0, 0.6);
}

div.gallery-content {
    display:    flex;
    flex-basis: 100%;
    flex-flow:  row nowrap;
    overflow:   hidden;
}

.gallery-foot {
    position: absolute;
    bottom:   10px;
    right:    55px;
    /*background-color: red;*/
}