/*
====================================
Gallery
====================================
*/
/* Big item */
.gallery-container .img-big-box {
    position: relative;
    border: 1px solid #e6e6e6;
    box-sizing: content-box;
    width: calc(100% - 2px);
}
.gallery-container .img-big-item {
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
}
.gallery-container .img-big-item .img-big {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
}
.gallery-container .img-big-item img {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    max-width: 100%;
    max-height: 100%;
    border: 0;
}
.gallery-container .img-big-item * {
    vertical-align: middle;
}
.gallery-container .img-big-item, .gallery-container .img-big-box {
    height: 300px;
}

@media (min-width: 576px) {
.gallery-container .img-big-item, .gallery-container .img-big-box {
    height: 300px;
}
}

@media (min-width: 768px) {
.gallery-container .img-big-item, .gallery-container .img-big-box {
    height: 400px;
}
}

@media (min-width: 992px) {
.gallery-container .img-big-item, .gallery-container .img-big-box {
    height: 500px;
}
}

@media (min-width: 1200px) {
.gallery-container .img-big-item, .gallery-container .img-big-box {
    height: 500px;
}
}
/* thumbs */
.gallery-container .thumbs-box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    font-size: 0;
    margin-bottom: 0px;
}
.gallery-container .thumbs-box * {
    vertical-align: middle;
}
.gallery-container .thumbs-box label {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    margin: 1rem 0.5rem 0;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    text-align: center;
    position: relative;
    background: #FFFFFF;
    padding: 5px;
}
.gallery-container .thumbs-box label img {
    display: inline-block;
    border: 0;
    max-width: 100%;
    max-height: 100%;
}
.gallery-container .thumbs-box label {
    height: 60px;
    width: 60px;
}

@media (min-width: 576px) {
.gallery-container .thumbs-box label {
    height: 80px;
    width: 80px;
}
}

@media (min-width: 768px) {
.gallery-container .thumbs-box label {
    height: 80px;
    width: 80px;
}
}

@media (min-width: 992px) {
.gallery-container .thumbs-box label {
    height: 90px;
    width: 90px;
}
}

@media (min-width: 1200px) {
.gallery-container .thumbs-box label {
    height: 90px;
    width: 90px;
}
}
.gallery-container #gallery-img-thumb-1 ~ .img-big-box #gallery-img-big-1, .gallery-container #gallery-img-thumb-2 ~ .img-big-box #gallery-img-big-2, .gallery-container #gallery-img-thumb-3 ~ .img-big-box #gallery-img-big-3, .gallery-container #gallery-img-thumb-4 ~ .img-big-box #gallery-img-big-4, .gallery-container #gallery-img-thumb-5 ~ .img-big-box #gallery-img-big-5, .gallery-container #gallery-img-thumb-6 ~ .img-big-box #gallery-img-big-6, .gallery-container #gallery-img-thumb-7 ~ .img-big-box #gallery-img-big-7, .gallery-container #gallery-img-thumb-8 ~ .img-big-box #gallery-img-big-8, .gallery-container #gallery-img-thumb-9 ~ .img-big-box #gallery-img-big-9, .gallery-container #gallery-img-thumb-10 ~ .img-big-box #gallery-img-big-10 {
    opacity: 0;
    -webkit-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
}
.gallery-container #gallery-img-thumb-1:checked ~ .img-big-box #gallery-img-big-1, .gallery-container #gallery-img-thumb-2:checked ~ .img-big-box #gallery-img-big-2, .gallery-container #gallery-img-thumb-3:checked ~ .img-big-box #gallery-img-big-3, .gallery-container #gallery-img-thumb-4:checked ~ .img-big-box #gallery-img-big-4, .gallery-container #gallery-img-thumb-5:checked ~ .img-big-box #gallery-img-big-5, .gallery-container #gallery-img-thumb-6:checked ~ .img-big-box #gallery-img-big-6, .gallery-container #gallery-img-thumb-7:checked ~ .img-big-box #gallery-img-big-7, .gallery-container #gallery-img-thumb-8:checked ~ .img-big-box #gallery-img-big-8, .gallery-container #gallery-img-thumb-9:checked ~ .img-big-box #gallery-img-big-9, .gallery-container #gallery-img-thumb-10:checked ~ .img-big-box #gallery-img-big-10 {
    display: block;
    opacity: 1;
    visibility: visible;
}