.cursor-default {
    cursor: default;
}

.card-actions .dropdown-toggle::after {
    display: none;
}

.button {
    display: inline-block;
    padding: 1em 2em;
    color: #ffffff;
    background-color: #00898d;
    text-decoration: none;
    border-radius: 2em;
    transition: opacity 0.3s;
}

.button:hover {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.footer .iconic-text__icon {
    color: #ffffff;
}

.footer {
    padding: 2em 1em;
    position: relative;
    font-size: 14px;
    color: #ffffff;
    background-color: #00898d;
    background-image: url(img/footer-bg.jpg);
    background-position: 50% 50%;
    background-size: cover;
}

.footer__copyright {
    line-height: 1.5;
}

.footer__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00898d;
    opacity: 0.8;
}

.footer__inner {
    position: relative;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2em;
    line-height: 1.5;
}

.footer__column:last-child {
    margin-bottom: 0;
}

.footer__column .iconic-text__text {
    font-weight: 600;
}

@media (min-width: 576px) {
    .footer {
        padding-top: 3em;
        padding-bottom: 3em;
        font-size: 16px;
    }
    .footer__inner {
        display: flex;
        flex-wrap: wrap;
    }
    .footer__column {
        padding-right: 2em;
        padding-left: 2em;
    }
    .footer__column:first-child {
        width: 60%;
        padding-left: 0;
    }
    .footer__column:last-child {
        padding-right: 0;
    }

    .footer__column:nth-child(2) {
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    .footer {
        padding-top: 5em;
        padding-bottom: 5em;
    }
}

.mobile-menu {
    position: fixed;
    top:0;
    right: 100%;
    bottom: 0;
    width: 300px;
    background: #66b8bb;
    z-index: 1000;
    transition: transform 0.5s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(100%);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar {
    min-width: 320px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    color: #ffffff;
    background-color: #00b8bd;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}

.sidebar_active {
    transform: translateX(0);
}

.sidebar__brand {
    color: inherit;
}

.sidebar__nav-link_active {
    background-color: rgba(0, 137, 141, 0.5);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar__nav-collapsible .fa-caret-left {
    transition: transform 0.5s ease-in-out;
}

.sidebar__nav-collapsible_active .fa-caret-left {
    transform: rotate(-90deg);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mobile-menu-overlay_active {
    display: block;
    opacity: 1;
}
