/* BASIC css start */
body { 
            overflow-x: hidden; /* °¡·Î ½ºÅ©·Ñ ¹æÁö */
            background-color:#222;
        }
.gallery {
            display: flex;
            flex-wrap: wrap;
            margin: 0 0 0 8px; /* ¿À¸¥ÂÊ ¸¶Áø Á¦°Å */
        }
        .gallery-item {
            width: calc(25% - 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%;
        }
        
        /* Fancybox Ä¿½ºÅÒ ½ºÅ¸ÀÏ */
        
        .fancybox__container {z-index:99999999 !important;}
        
        .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
            border: 3px solid #ff6600 !important; /* Ä³·¯¼¿ ¼±ÅÃ º¸´õ »ö»ó º¯°æ */
        }
        
        
.collection_title {
    text-align:center;
}
.collection_title h1 {
    text-align:center;
    font-size:15px;
    font-weight:bold;
    padding:50px 0 0;
    color:#fff;
}
.collection_subtitle{
    padding:30px 0 40px;
}

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

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

.btn_slide_prd  p{
    float: right;
    line-height: 21px;
    margin: 7px 0 0 6px;
    min-width: 80px;
    font-size: 11px;
    color:#999;
}
.btn_slide_prd  p span{
    color:#000;
    font-size: 13px;
}
.btn_slide_prd  i{
    position: absolute;
    right: 2px;
    top: 24px;
    font-size: 16px;
    color:#999;
}

/* ¹ÝÀÀÇü ¼³Á¤ */
@media (min-width: 1600px) {
    .gallery-item { width: calc(20% - 8px); }

}
/* BASIC css end */

