/* BASIC css start */
body { 
            overflow-x: hidden; /* °¡·Î ½ºÅ©·Ñ ¹æÁö */
        }
#container {background-color:#222;}
.gallery {
            display: flex;
            flex-wrap: wrap;
            margin: 0 0 0 8px; /* ¿À¸¥ÂÊ ¸¶Áø Á¦°Å */
        }
        .gallery-item {
            width: calc(50% - 8px); /* Masonry°¡ Àû¿ëµÈ ÈÄ¿¡µµ °£°Ý À¯Áö */
            margin-bottom: 8px; /* MasonryÀÇ gutter¿Í ÀÏÄ¡ */
            box-sizing: border-box;
            opacity: 0; /* ÃÊ±â ·Îµù ½Ã ±ôºýÀÓ ¹æÁö */
            transition: opacity 0.3s ease-in-out;
            border-radius:8px;
            overflow:hidden;   
        }        
        
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .gallery-item:hover img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .gallery-item i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 32px;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
        }
        
        /* ¹ÝÀÀÇü ¼³Á¤ */
        @media (min-width: 960px) {
            .gallery-item { width: calc(33.33333% - 8px); }
        }
        @media (min-width: 1200px) {
            .gallery-item { width: calc(25% - 8px); }
        }
        @media (min-width: 1600px) {
            .gallery-item { width: calc(20% - 8px); }
        }
        
        
        
        
        /* Fancybox Ä¿½ºÅÒ ½ºÅ¸ÀÏ */
        
        .fancybox__container {z-index:99999999 !important;}
        
        .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
            border: 3px solid #ff6600 !important; /* Ä³·¯¼¿ ¼±ÅÃ º¸´õ »ö»ó º¯°æ */
        }
        
        
.collection_title {
    margin: 0px auto 10px;
    color:#fff;
    position: relative;
    text-align: center;
    border-top: 1px #eee solid;
    border-bottom: 0px #eee solid;
    padding-top: 20px;    
    text-align:left;
}

.collection_title h1{
    display: inline-block;
    margin: 16px 0 4px 16px;
    font-size: 18px;
    font-weight: bold;
}

.btn_slide_prd {
    display:none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 4px 20px 4px 36px;
    background: #fff;
    color: #000;
    border-radius: 4px;
    text-decoration: none;    
    z-index: 99999999999;
}

.btn_slide_prd img {
    width:32px;
    margin-left: -32px;
}

.btn_slide_prd  p{
    float: right;
    line-height: 15px;
    margin-left: 6px;
    font-size: 11px;
    color:#999;
}
.btn_slide_prd  p span{
    color:#000;
    font-size: 13px;
}
.btn_slide_prd  i{
    position: absolute;
    right: 2px;
    top: 12px;
    font-size: 16px;
    color:#999;
}
/* BASIC css end */

