/*==========================
 Image Box
===========================*/

.image-box{
    position:relative;
    overflow:hidden;
    border-radius:12px;
    cursor:pointer;
}

.image-box img{
    width:100%;
    height:auto;
    display:block;
    transition:transform .4s ease;
}

.image-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:opacity .3s ease;
}

.image-overlay span{
    width:60px;
    height:60px;

    background:#fff;
    color:#111;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    transition:.3s;
}

.image-box:hover img{
    transform:scale(1.08);
}

.image-box:hover .image-overlay{
    opacity:1;
}

.image-overlay span:hover{
    transform:scale(1.1);
}


/*==========================
 Lightbox
===========================*/

.lightbox{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.95);

    display:flex;
    justify-content:center;
    align-items:center;

    visibility:hidden;
    opacity:0;

    transition:.3s ease;

    z-index:999999;

}

.lightbox.active{

    visibility:visible;
    opacity:1;

}

.lightbox img{

    max-width:90%;
    max-height:90%;
    border-radius:12px;

    animation:zoom .35s ease;

}

@keyframes zoom{

    from{
        transform:scale(.7);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }

}

/* Close Button */

.close-lightbox{

    position:absolute;

    top:20px;
    right:30px;

    font-size:45px;
    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-lightbox:hover{

    transform:rotate(90deg);
    color:#ddd;

}


/* -------------------------------------------------------------- */

/*=============================
 Quantity
==============================*/

.qty-wrapper{
    margin:30px 0;
}

.qty-label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    color:#666;
    font-weight:500;
}

.qty-box{

    width:170px;
    height:55px;

    border:1px solid #cfcfcf;
    background:#fff;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.qty-btn{

    width:55px;
    height:55px;

    border:none;
    background:transparent;

    font-size:28px;
    color:#333;

    cursor:pointer;

    transition:.25s;

}

.qty-btn:hover{

    background:#111;
    color:#fff;

}

.qty-input{

    width:60px;

    border:none;
    outline:none;

    text-align:center;

    font-size:20px;
    font-weight:600;

    background:transparent;

    color:#222;

}

/* Remove arrows */

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button{
    -webkit-appearance:none;
}


/* -------- custom----- */

.workshop-title-product{
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 25px;
}

.btn-book{
    background: #121212;
    padding: 10px 33px;
    color: #fff;
    border-radius: 14px;
    width:100%;
}

.btn-book:hover{
    background: #121212e3;
    padding: 10px 33px;
    color: #fff;
    border-radius: 14px;
}


.workshop-date label {
    background: #000000;
    color: #d7d7d7;
    padding: 8px 20px;
    border-radius: 50px;
    /* color: #fff; */
    margin-top:20px;
    margin-bottom:20px;
}


.qty-input{
    -moz-appearance:textfield;
}



/* ----------------------- */
   /*=========================
 Accordion start
==========================*/

.custom-accordion .accordion-item{

    border:none;
    border-bottom:1px solid #e5e5e5;
    border-radius:0;
    background-color:#ffffff00;

}

.custom-accordion .accordion-button{

    background:#fff;
    box-shadow:none;
    padding:22px 0;

    font-size:32px;
    font-weight:400;
    color:#222;

}

/* .custom-accordion .accordion-button:not(.collapsed){

    background:#fff;
    color:#111;
    box-shadow:none;

} */

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff2e6;
    color: #111;
    box-shadow: none;
}

/* .custom-accordion .accordion-button::after{

    background-image:none;
    content:"+";

    font-size:30px;
    font-weight:300;

    transform:none;

} */


.custom-accordion .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 30px;
    font-weight: 300;
    transform: none;
    position: absolute;
    right: 0px;
    top: 4px;
}

.custom-accordion .accordion-button:not(.collapsed)::after{

    content:"−";

}

.icon{
    width: 21px;
    font-size: 23px;
    margin-right: 11px;
    display: inline-flex;
    justify-content: center;
}

.accordion-body {
    padding: 15px 0 15px 30px;
    color: #666;
    line-height: 1.8;
}

/*----- custom start ----- */
  
.custom-accordion .accordion-button {
    background: #faf6f2;
    box-shadow: none;
    padding: 10px 17px;
    font-size: 19px;
    font-weight: 400;
    color: #222;
}

/*------- custom end -------- */

/* Mobile */

@media(max-width:768px){

.custom-accordion .accordion-button{

font-size:22px;
padding:18px 0;

}

.icon{

font-size:22px;
width:35px;

}

.accordion-body{

padding-left:45px;

}

}
    
/* ------ Accordion end
----------------- */

/* Mobile */

@media(max-width:768px){

.qty-box{

width:150px;
height:50px;

}

.qty-btn{

width:50px;
height:50px;
font-size:24px;

}

.qty-input{

font-size:18px;

}

}


/*==========================
 Responsive
===========================*/

@media(max-width:768px){

    .image-overlay span{

        width:50px;
        height:50px;
        font-size:20px;

    }

    .close-lightbox{

        font-size:35px;
        top:15px;
        right:20px;

    }

}