/*multiple box*/
.redux-templates-multiple-template-box {

    margin-bottom: 25px;
    position: relative;
    transition: all 0.05s ease-in-out;

    img {
        transition: all 0.05s ease-in-out;
    }
    .redux-templates-box-shadow {
        transition: all 0.05s ease-in-out;
        box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    }
    .redux-templates-default-template-image {
        .imageloader-loaded {
            overflow: hidden;
        }
    }

    .multiple-template-view {
        background: #fff;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), 0 10px 0 -5px #fff, 0 10px 1px -4px rgba(0, 0, 0, 0.08), 0 20px 0 -10px #fff, 0 20px 1px -9px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        min-height: 100px;
    }

    .redux-templates-import-button-group {
        margin-top: 15%;
    }

    .redux-templates-tmpl-info {
        padding: 10px 12px;
        position: absolute;
        bottom: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid #f2f4f7;
        transition: all 0.2s ease-in-out;

        h5 {
            margin: 0;
            font-size: 14px;
            color: #23282d;
            line-height: 19px;

            span {
                font-size: 13px;
                color: #cdcfd1;
                line-height: 18px;
            }
        }
    }

    .redux-templates-button-overlay {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 0px;
        opacity: 0;
        -webkit-transition: opacity 0.2s ease-in-out;
        transition: opacity 0.2s ease-in-out;
        box-sizing: border-box;

    }

    &::before {
        z-index: 2;
    }

    &::after {
        z-index: 1;
    }
    .redux-templates-button-overlay {
        background: rgba(0, 0, 0, 0.5);
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: 0;
    }

    &:hover {
        .redux-templates-box-shadow {
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
        }

        .multiple-template-view {
            border-color: transparent;
        }
        .redux-templates-tmpl-info {
            border-top-color: transparent;
            background: #fff;
        }
        .redux-templates-button-overlay {
            opacity: 1;
        }
        img {
            filter: blur(2px);
        }
    }
}
