.module {
    width: 300px;
    height: 200px;
}

.module-add{
    width: 50px;
    height: 50px;
}

.module:hover {
    z-index: 100;
}

.module-image {
    border-radius: var(--mud-default-borderradius);
    width: 100%;
    height: 100%;
}

.module-actions {
    border-radius: var(--mud-default-borderradius);
    padding: 5px;
    margin: 5px 5px 0px 5px;
    position: relative;
    bottom: 60px;
    background: var(--mud-palette-surface);
    display: none;
}

.module:hover .module-actions {
    display: block;
}

.module-header {
    border-radius: var(--mud-default-borderradius);
    padding: 5px;
    margin: 5px 5px 0px 5px;
    position: absolute;
    top: 0px;
    background: var(--mud-palette-surface);
    display: none;
}

.module:hover .module-header {
    z-index: 10;
    display: block;
}

.module-footer {
    z-index: 10;
    padding: 5px;
    margin: 5px 5px 0px 5px;
    position: relative;
    bottom: 60px;
    background: var(--mud-palette-surface);
    opacity: 0.5;
}

.module-footer-hover{
    visibility: hidden;
}

.module:hover .module-footer {
    visibility: hidden;
}

.module:hover .module-footer-hover {
    z-index: 10;
    padding: 5px;
    margin: 5px 5px 0px 5px;
    position: relative;
    top: -80px !important;
    background: var(--mud-palette-surface);
    opacity: 1;
    visibility: visible;
}
