/*Act Default Lazy Load Image*/

img[actlzy-finalimgloaded=false] {
    width: 100%;
    height: 100%;
    object-fit: scale-down!important;
}

.act-lazyload-component-loader {
    width: 100px;
    height: 100px;
    margin: auto;
}

    .act-lazyload-component-loader img {
        width: 100%;
        height: 100%;
        object-fit: scale-down;
    }


/*Act Master Default Pop Up*/

.act-master-default-popup-overlay {
    background: #8e8e8e;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    opacity: 0;
    transition: .5s;
    pointer-events: none;
}

    .act-master-default-popup-overlay.active {
        opacity: .6;
        pointer-events: initial;
    }

.act-master-default-popup-container {
    position: fixed;
    z-index: 12;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    background-color: #fff;
    width: 80%;
    max-width: 1000px;
    box-shadow: 5px 7px 23px -5px #313131;
    border-radius: 10px;
    transition: .5s;
    opacity: 0;
    pointer-events: none;
    max-height: 80vh;
    padding: 10px 25px;
    overflow-y: auto;
}

    .act-master-default-popup-container.active {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
        pointer-events: initial;
    }

.act-master-default-popup-bottom {
    background-color: #fff;
    position: sticky;
    bottom: 0;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-shadow: 0px -25px 20px -20px #c1c1c1;
}

.act-master-default-popup-cancel{
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.act-master-default-popup-cancel-btn {
    outline: 0;
    border: 0;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 25px;
    height: 45px;
    box-shadow: rgba(0,0,0,.1) 0 10px 10px 0, rgba(0,0,0,.1) 0 20px 20px 0, rgba(0,0,0,.15) 0 30px 30px 0;
    transition: .2s ease-out;
    cursor: pointer;
    border-radius: 10px;
}

.act-master-default-popup-cancel-btn {
    background-color: #d62b2b;
}


    .act-master-default-popup-cancel-btn:hover {
        background-color: #d62b2b;
        box-shadow: rgba(0,0,0,.1) 0 10px 10px 0, rgba(0,0,0,.1) 0 20px 20px 0, rgba(0,0,0,.15) 0 30px 30px 0, inset 0px 0px 24px -5px #3c3c3c;
    }

/*Generic*/
.act-hide-element{
    display:none;
}

.act-show-element {
    display: block;
}

/*Mini Loader*/

.act-mini-loader {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #dbdbdb80;
    border: 1px solid lightgrey;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center;
    background-image: url(/ActContent/BuildContent/images/LazyLoadImageLoader.svg);
    display: none;
}

    .act-mini-loader.active {
        display: block;
    }



/*Default Css For Act Header, to avoid conflicts with Content Template Builder Image Gallery*/

.act-header-dropbelow-gallery {
    position: static !important;
}




/*---- Common Accordion -----*/

.act-parent-accordion-trigger {
    padding: 15px 35px 15px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border-bottom: 4px solid #ffffff;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.act-parent-accordion-trigger {
    background-color: #eee;
}

.act-child-accordion-container {
    transition: .5s ease-out;
}

.act-commonaccordion-container .hidden {
    overflow: hidden;
}

.act-child-accordion-container-inner {
    padding: 0 22px;
}
