@charset "utf-8";
    /* 섬네일 이미지 */
    .gallery_full_wrap_rol {
        overflow: hidden;
        margin: 0 auto;
    }

    .gallery_wrap_rol {
        overflow: hidden;
        height: 100px;
        position: relative;
    }

    .gal_list_rol {
        overflow: hidden;
        float: left;
        position: relative;
        left: 0;
    }

    .gal_list_rol * {
        box-sizing: border-box;
    }

    .gal_list_rol:after {
        display: block;
        clear: both;
        content: "";
    }

    .gal_list_rol li {
        float: left;
    }

    .gal_list_rol li .img_box {
        position: relative;
        left: 0;
        top: 0;
        text-align: center;
        overflow: hidden;
        padding:30px 10px;
    }

    .gal_list_rol li .img_box img{
        height: 40px;
    }

    .gal_list_rol li .img_box a {
        display: block;
    }

    .gal_list_rol li .img_box a img {
        margin: 0 auto;
    }   

    .gal_list_rol li .info_box {
        display: none
    }

    /* 오버효과 */
    .gal_list_rol li .img_box a:after {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        content: "";
        opacity: 0;
    }

    .gal_list_rol li .img_box a:before {
        /* display:inline-block; */
        /* display: none;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        margin: auto;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50% 50%;
        font-family: "FontAwesome";
        font-size: 18px;
        color: #01b1d7;
        content: "\f002";
        background: #fff;
        opacity: 0; */
    }

    .gal_list_rol li .img_box a:before,
    .gal_list_rol li .img_box a:after {
        transition: all 0.3s ease
    }

    .gal_list_rol li .img_box a:hover:before,
    .gal_list_rol li .img_box a:hover:after {
        opacity: 1;
    }



    /* 섬네일 정보*/
    .gal_list_rol dl {
        display: none;
        height: 60px;
        margin-top: 10px;
    }

    .gal_list_rol dt {
        font-size: 16px;
    }

    .gal_list_rol dd {
        font-size: 13px;
    }

    /* responsive css */
    @media (min-width: 992px) and (max-width: 1199px) {}

    @media (min-width:768px) and (max-width:991px) {}

    @media (max-width:767px) {}

    @media (max-width: 479px) {}