/* Add here all your css styles (customizations) */
footer a {
    color:#72c02c;
}

.nav-item {
    display: flex;
    align-items: center;
}

.hs-menu-initialized .animated {
    -webkit-animation-duration: 30ms;
    animation-duration: 30ms;
}

@media only screen and (max-width: 991px) {
    .nav-item {
        display:initial
    }
}

.u-btn-blue {
    background-color: #167bbf;
}

.price-strike {
    position: relative;
    display: inline-block;
}

    .price-strike::after {
        content: "";
        position: absolute;
        left: -4px;
        top: 50%;
        width: calc(100% + 8px);
        border-top: 2px solid red;
        transform: rotate(-25deg);
    }

    main a{
        text-decoration:underline;
    }





:root {
    --shelter-primary: #555555;
    --shelter-bg: #fff;
    --shelter-hover-bg: #f5f5f5;
    --shelter-shadow: 0 4px 12px rgba(0,0,0,.12);
    --shelter-min-width: 220px;
}

.a11y-shelter-navbar {
    background: var(--shelter-bg);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    z-index: 1000;
}

.a11y-shelter-navbar__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 .75rem;
    gap: 1rem;
    flex-wrap: wrap
}

.a11y-shelter-navbar__brand {
    flex-shrink: 0;
}

    .a11y-shelter-navbar__brand img {
        padding: 10px 0 0 0;
    }

.a11y-shelter-navbar__toggle {
    display: none;
    background: none;
    border: 2px solid var(--shelter-primary);
    border-radius: 4px;
    padding: .5rem 0.75rem;
    cursor: pointer;
    color: var(--shelter-primary);
    font-size: 1em;
    line-height: 1;
}

    .a11y-shelter-navbar__toggle:focus-visible {
        outline: 3px solid var(--shelter-primary);
        outline-offset: 2px;
    }

.a11y-shelter-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.a11y-shelter-navbar__menu {
    margin-left: auto;
}

.a11y-shelter-nav__link,
.a11y-shelter-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem .5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: .85rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--shelter-primary);
    border-radius: 3px;
    white-space: nowrap;
    transition: background .15s, color .15s;
}


    .a11y-shelter-nav__link:hover,
    .a11y-shelter-nav__btn:hover, .a11y-shelter-nav__link:focus-visible,
    .a11y-shelter-nav__btn:focus-visible {
        color: #3498db;
    }

    .a11y-shelter-nav__link:focus-visible,
    .a11y-shelter-nav__btn:focus-visible {
        outline: 3px solid var(--shelter-primary);
        outline-offset: 2px;
    }

.a11y-shelter-nav__chevron {
    font-size: .65em;
    transition: transform .2s;
    pointer-events: none;
}

[aria-expanded="true"] .a11y-shelter-nav__chevron {
    transform: rotate(180deg);
}

.a11y-shelter-nav__item {
    position: relative;
}

.a11y-shelter-dropdown {
    list-style: none;
    margin: 0;
    padding: .4rem 0;
    position: absolute;
    left: 0;
    min-width: var(--shelter-min-width);
    background: var(--shelter-bg);
    border-top: 2px solid var(--shelter-primary);
    border-radius: 0 0 4px 4px;
    box-shadow: var(--shelter-shadow);
    z-index: 200;
    display: none;
}

.a11y-shelter-nav__btn[aria-expanded="true"] + .a11y-shelter-dropdown {
    display: block;
}

.a11y-shelter-dropdown__link {
    display: block;
    padding: .55rem .55rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: .8rem;
    white-space: nowrap;
    transition: background .12s, color .12s;
}

    .a11y-shelter-dropdown__link:hover,
    .a11y-shelter-dropdown__link:focus-visible {
        background: var(--shelter-hover-bg);
        color: #3498db;
    }

    .a11y-shelter-dropdown__link:focus-visible {
        outline: 3px solid var(--shelter-primary);
        outline-offset: -3px;
    }

@media (max-width: 991px) {
    header {
        max-width: none !important;
    }

    .a11y-shelter-navbar__toggle {
        display: inline-flex;
        align-items: center;
    }

    .a11y-shelter-navbar__menu {
        display: none;
        width: 100%;
        order: 3;
    }

        .a11y-shelter-navbar__menu.is-open {
            display: block;
        }

    .a11y-shelter-navbar__inner {
        flex-wrap: wrap;
        justify-content: space-around
    }

    .a11y-shelter-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: .5rem 0;
    }

    .a11y-shelter-nav__link,
    .a11y-shelter-nav__btn {
        width: 100%;
        text-align: left;
        border-radius: 0;
        padding: .7rem 1rem;
    }

    .a11y-shelter-dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--shelter-primary);
        margin-left: 1rem;
        padding: 0;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}



.a11y-shelter-dropdown__item {
    position: relative;
}

.a11y-shelter-subdropdown {
    list-style: none;
    margin: 0;
    padding: .4rem 0;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: var(--shelter-min-width);
    background: var(--shelter-bg);
    border-top: 2px solid var(--shelter-primary);
    border-radius: 0 4px 4px 4px;
    box-shadow: var(--shelter-shadow);
    z-index: 300;
    display: none;
}

.a11y-shelter-subdropdown__btn[aria-expanded="true"] + .a11y-shelter-subdropdown {
    display: block;
}

.a11y-shelter-subdropdown__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .55rem 1.2rem;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: .95rem;
    color: #333;
    text-align: left;
    white-space: nowrap;
    transition: background .12s, color .12s;
    text-transform: uppercase;
}

    .a11y-shelter-subdropdown__btn:hover,
    .a11y-shelter-subdropdown__btn:focus-visible {
        background: var(--shelter-hover-bg);
        color: #3498db;
    }

    .a11y-shelter-subdropdown__btn:focus-visible {
        outline: 3px solid var(--shelter-primary);
        outline-offset: -3px;
    }

.a11y-shelter-subdropdown__chevron {
    font-size: .65em;
    transition: transform .2s;
    pointer-events: none;
    margin-left: .5rem;
}

.a11y-shelter-subdropdown__btn[aria-expanded="true"] .a11y-shelter-subdropdown__chevron {
    transform: rotate(90deg);
}

.a11y-shelter-subdropdown__link {
    display: block;
    padding: .55rem 1.2rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background .12s, color .12s;
}

    .a11y-shelter-subdropdown__link:hover,
    .a11y-shelter-subdropdown__link:focus-visible {
        background: var(--shelter-hover-bg);
        color: #3498db;
    }

    .a11y-shelter-subdropdown__link:focus-visible {
        outline: 3px solid var(--shelter-primary);
        outline-offset: -3px;
    }

@media (max-width: 991px) {
    .a11y-shelter-subdropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        border-left: 3px solid var(--shelter-primary);
        border-radius: 0;
        margin-left: 1rem;
        padding: 0;
    }

    .a11y-shelter-subdropdown__btn[aria-expanded="true"] .a11y-shelter-subdropdown__chevron {
        transform: rotate(180deg);
    }
}

.a11y-shelter-dropdown.drop-left {
    left: auto;
    right: 0;
}

.a11y-shelter-subdropdown.drop-left {
    left: auto;
    right: 100%;
    border-radius: 4px 0 4px 4px;
}
