.position-full-y {
    top: 0 !important;
    bottom: 0 !important;
}

.position-full-x {
    left: 0 !important;
    right: 0 !important;
}

.position-relative-full {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.position-absolute-full {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.position-absolute-md {
    position: absolute;
}

.min-height-100-no-footer {
    min-height: calc(100vh - 48px);
}

.min-height-100-no-footer-and-navigation {
    min-height: calc(100vh - 176px);
}

.min-height-100-auto {
    min-height: calc(100vh - 208px);
}

@media only screen and (max-width: 480px) {
    .position-absolute-md {
        position: inherit;
    }

    .min-height-100-no-footer {
        min-height: calc(100vh - 70px);
    }

    .min-height-100-no-footer-and-navigation {
        min-height: calc(100vh - 166px);
    }

    .min-height-100-auto {
        min-height: calc(100vh - 185px);
    }
}
