.lvgallery-container{
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.lvgallery-container li{
    position: relative;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    width: 230px;
}

.lvgallery-container li:after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 30px;
    border-color: transparent transparent transparent #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -15px;
}

.lvgallery-container li:hover:after {
    border-left-color: red;
}

.lvgallery-container li img{
    max-width: 100%;
}

.lvgallery-modal{
    display: none;
    position: relative;
    background: #000;
}

.lvgallery-modal-close{
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 1000;
    font-size: 50px;
    color: #fff;
    height: 30px;
    line-height: 25px;
    cursor: pointer;
    font-weight: bold;
}

.lvgallery-modal-close:hover {
    color: red;
}


.lvgallery-modal-arrow
{
    width: 0;
    height: 0;
    border-style: solid;
    top: 50%;
    cursor: pointer;
    margin-top: -15px;
    position: absolute;
}

.lvgallery-modal-arrow.right {

    border-width: 25px 0 25px 30px;
    border-color: transparent transparent transparent #ffffff;
    right: -55px;
}

.lvgallery-modal-arrow.left {
    border-width: 25px 30px 25px 0;
    border-color: transparent #fff transparent transparent;
    left: -55px;
}

.lvgallery-modal-arrow.right:hover {
    border-left-color: #ff0000;
}

.lvgallery-modal-arrow.left:hover {
    border-right-color: #ff0000;
}