@import "./variables.css";
@import "./typography.css";
@import "./base.css";
@import "./layout.css";

.custom-logo-link {
    display: block;
}
#breadcrumbs {
    margin-bottom: 32px;
    a {
        display: inline-flex;
    }
}

.slide-in-enter-active,
.slide-in-leave-active {
    transition: all 0.3s ease-in-out;
}

.slide-in-enter-from,
.slide-in-leave-to {
  opacity: 0;
}

.dropdown {
    position: relative;
    max-width: 200px;
    .dropdown-selected {
        position: relative;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        background-color: var(--dark-grey);
        height: 40px;
        padding: 8px 35px;
        border-radius: 40px;
        text-transform: uppercase;
        cursor: pointer;
        transition: color 0.3s ease-in-out;
        &:hover {
            color: var(--red);
        }
        &:after {
            position: absolute;
            background-image: url("../images/chevron-down-alt.svg");
            background-size: cover;
            background-repeat: no-repeat;
            width: 12px;
            height: 10px;
            right: 17px;
            top: 50%;
            transform: translateY(-50%);
            content: '';
        }
        @media screen and (max-width: 991px) {
            min-width: 140px;
            height: 28px;
        }
        @media screen and (max-width: 639px) {
            text-transform: none;
            font-size: 14px;
        }
    }
    .dropdown-list {
        position: absolute;
        background-color: var(--dark-grey);
        margin: 0;
        width: 100%;
        padding-left: 0;
        list-style-type: none;
        border-radius: 20px;
        top: 0;
        li {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 8px;
            height: 36px;
            border-bottom: 1px solid var(--black);
            cursor: pointer;
            transition: color 0.3s ease-in-out;
            &:hover {
                color: var(--red);
            }
        }
    }
}