﻿/* BORDERS */
@media (min-width: 576px) {
    .border-bottom-sm {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .border-bottom-0-sm {
        border-bottom: 0 !important;
    }
}

@media (min-width: 768px) {
    .border-bottom-md {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .border-bottom-0-md {
        border-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .border-bottom-lg {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .border-bottom-0-lg {
        border-bottom: 0 !important;
    }
}

@media (min-width: 1200px) {
    .border-bottom-xl {
        border-bottom: 1px solid #dee2e6 !important;
    }

    .border-bottom-0-xl {
        border-bottom: 0 !important;
    }
}

/* WIDTH&HEIGHT */
@media (min-width: 576px) {
    .w-sm-25 {
        width: 25% !important;
    }
    .w-sm-50 {
        width: 50% !important;
    }
    .w-sm-75 {
        width: 75% !important;
    }
    .w-sm-100 {
        width: 100% !important;
    }
    .w-sm-auto {
        width: auto !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }
    .h-sm-50 {
        height: 50% !important;
    }
    .h-sm-75 {
        height: 75% !important;
    }
    .h-sm-100 {
        height: 100% !important;
    }
    .h-sm-auto {
        height: auto !important;
    }

    .mw-sm-100 {
        max-width: 100% !important;
    }
    .mh-sm-100 {
        max-height: 100% !important;
    }
    .min-sm-vw-100 {
        min-width: 100vw !important;
    }
    .min-sm-vh-100 {
        min-height: 100vh !important;
    }

    .vw-sm-100 {
        width: 100vw !important;
    }
    .vh-sm-100 {
        height: 100vh !important;
    }
}

@media (min-width: 768px) {
    .w-md-25 {
        width: 25% !important;
    }
    .w-md-50 {
        width: 50% !important;
    }
    .w-md-75 {
        width: 75% !important;
    }
    .w-md-100 {
        width: 100% !important;
    }
    .w-md-auto {
        width: auto !important;
    }

    .h-md-25 {
        height: 25% !important;
    }
    .h-md-50 {
        height: 50% !important;
    }
    .h-md-75 {
        height: 75% !important;
    }
    .h-md-100 {
        height: 100% !important;
    }
    .h-md-auto {
        height: auto !important;
    }

    .mw-md-100 {
        max-width: 100% !important;
    }
    .mh-md-100 {
        max-height: 100% !important;
    }
    .min-md-vw-100 {
        min-width: 100vw !important;
    }
    .min-md-vh-100 {
        min-height: 100vh !important;
    }

    .vw-md-100 {
        width: 100vw !important;
    }
    .vh-md-100 {
        height: 100vh !important;
    }
}

@media (min-width: 992px) {
    .w-lg-25 {
        width: 25% !important;
    }
    .w-lg-50 {
        width: 50% !important;
    }
    .w-lg-75 {
        width: 75% !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
    .w-lg-auto {
        width: auto !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }
    .h-lg-50 {
        height: 50% !important;
    }
    .h-lg-75 {
        height: 75% !important;
    }
    .h-lg-100 {
        height: 100% !important;
    }
    .h-lg-auto {
        height: auto !important;
    }

    .mw-lg-100 {
        max-width: 100% !important;
    }
    .mh-lg-100 {
        max-height: 100% !important;
    }
    .min-lg-vw-100 {
        min-width: 100vw !important;
    }
    .min-lg-vh-100 {
        min-height: 100vh !important;
    }

    .vw-lg-100 {
        width: 100vw !important;
    }
    .vh-lg-100 {
        height: 100vh !important;
    }
}

@media (min-width: 1200px) {
    .w-xl-25 {
        width: 25% !important;
    }
    .w-xl-50 {
        width: 50% !important;
    }
    .w-xl-75 {
        width: 75% !important;
    }
    .w-xl-100 {
        width: 100% !important;
    }
    .w-xl-auto {
        width: auto !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }
    .h-xl-50 {
        height: 50% !important;
    }
    .h-xl-75 {
        height: 75% !important;
    }
    .h-xl-100 {
        height: 100% !important;
    }
    .h-xl-auto {
        height: auto !important;
    }

    .mw-xl-100 {
        max-width: 100% !important;
    }
    .mh-lx-100 {
        max-height: 100% !important;
    }
    .min-xl-vw-100 {
        min-width: 100vw !important;
    }
    .min-xl-vh-100 {
        min-height: 100vh !important;
    }

    .vw-xl-100 {
        width: 100vw !important;
    }
    .vh-xl-100 {
        height: 100vh !important;
    }
}

a.active.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-underline:hover {
    text-decoration: underline !important
}

.text-decoration-underline-alt {
    border-bottom: 1px solid transparent
}
.text-decoration-underline-alt:hover {
    border-bottom: 1px solid #ccc
}