﻿.custom-image-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background-color: #f4f4f4;*/
    /*padding: 20px;*/
    /*border: 1px solid #ddd;*/
    border-radius: 5px;
    margin-bottom: 20px;
}

.custom-image-block-images {
    display: flex;
    /*
        flex-wrap: wrap;
        width: 100%;
    */
}

.custom-image-block-image {
    flex-basis: calc(100% / 3);
    margin-right: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.custom-image-block-image:last-child {
    margin-right: 0;
}

.custom-image-block img {
    height: auto;
    background: white;
    max-width: 658px;
    width: calc(100% - 2px);
    border-radius: 3px;
    border: 1px solid rgb(219, 219, 219);
    box-shadow: none;
    display: block;
    margin: 0px 0px 12px;
    /*min-width: 326px;*/
    padding: 0px;
}

@media only screen and (max-width: 767px) {
    .custom-image-block-images{
        display: block;
    }
    .custom-image-block-image{
        margin-right: auto;
        margin-bottom: 10px;
        padding-bottom: 20px;
    }
}    