/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
.layout-img{
    width: auto;
}
.h-200{
    min-height: 150px;
}
.h-200 p{
    font-size: 16px;
}
.overlay img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 1px 0px 3px 1px #0000007d;
    background-color: white;
    border-radius: 30px;
    padding: 6px;
}
#email-form input, #email-form textarea{
border: 1px solid #8c8f943b !important;
}

.grayscale {
        filter: grayscale(100%);
    }

.sepia {
    filter: sepia(100%);
}

.brightness {
    filter: brightness(150%);
}
.blur {
    filter: blur(5px);
}

.contrast {
    filter: contrast(150%);
}

.hue-rotate {
    filter: hue-rotate(90deg);
}
.saturate {
    filter: saturate(200%);
}

.invert {
    filter: invert(100%);
}

.opacity {
    opacity: 0.5;
}

.drop-shadow {
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.5));
}
.mr-10{
    margin-right: 10px;
}