/* ==========================================================================
   SmartMenus base
   ========================================================================== */

.sm,
.sm ul,
.sm li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sm {
    position: relative;
    z-index: 9999;
}

    .sm ul {
        display: none;
        position: static;
    }

    .sm li {
        position: relative;
    }

    .sm a {
        display: block;
        position: relative;
    }

        .sm a.disabled {
            cursor: default;
        }

    .sm::after {
        display: block;
        clear: both;
        height: 0;
        overflow: hidden;
        content: "\00a0";
    }


/* ==========================================================================
   Mobile navigation
   ========================================================================== */

.sm-clean {
    width: 100%;
    padding: 8px 0;
    background-color: #fff;
}

    .sm-clean li {
        border-top: 1px solid #e5eaed;
    }

    .sm-clean > li:first-child {
        border-top: 0;
    }

    .sm-clean a,
    .sm-clean a:visited,
    .sm-clean a:hover,
    .sm-clean a:focus,
    .sm-clean a:active {
        padding: 14px 56px 14px 20px;
        color: #233746;
        font-family: 'Barlow', sans-serif;
        font-size: 17px;
        font-weight: 400;
        line-height: 1.3;
        text-decoration: none;
    }

        .sm-clean a:hover,
        .sm-clean a:focus,
        .sm-clean a:active,
        .sm-clean a.highlighted,
        .sm-clean a.current {
            background-color: #f3f8fa;
            color: #4c86a5;
        }

        .sm-clean a.disabled {
            color: #aab4ba;
        }

        .sm-clean a .sub-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            position: absolute;
            top: 50%;
            right: 10px;
            margin-top: -18px;
            overflow: hidden;
            border-radius: 4px;
            background-color: rgba(76, 134, 165, 0.1);
            color: #4c86a5;
            font: 600 18px/1 monospace !important;
            text-align: center;
        }

            .sm-clean a .sub-arrow::before {
                content: "+";
            }

        .sm-clean a.highlighted .sub-arrow::before {
            content: "−";
        }

    .sm-clean ul {
        background-color: #f7f9fa;
    }

        .sm-clean ul a,
        .sm-clean ul a:visited,
        .sm-clean ul a:hover,
        .sm-clean ul a:focus,
        .sm-clean ul a:active {
            padding-left: 36px;
            font-size: 16px;
        }

        .sm-clean ul ul a,
        .sm-clean ul ul a:visited,
        .sm-clean ul ul a:hover,
        .sm-clean ul ul a:focus,
        .sm-clean ul ul a:active {
            padding-left: 52px;
        }

        .sm-clean ul ul ul a,
        .sm-clean ul ul ul a:visited,
        .sm-clean ul ul ul a:hover,
        .sm-clean ul ul ul a:focus,
        .sm-clean ul ul ul a:active {
            padding-left: 68px;
        }


/* ==========================================================================
   Desktop navigation
   ========================================================================== */

@media (min-width: 1024px) {
    .sm-clean {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        padding: 0;
        background: transparent;
    }

        .sm-clean li {
            float: left;
            border-top: 0;
        }

        .sm-clean ul {
            width: 220px;
            position: absolute;
            padding: 6px 0;
            border: 1px solid #dde4e8;
            border-radius: 4px;
            background-color: #fff;
            box-shadow: 0 10px 22px rgba(23, 45, 63, 0.15);
        }

            .sm-clean ul li {
                float: none;
                border-top: 0;
            }

        .sm-clean.sm-rtl li {
            float: right;
        }

        .sm-clean.sm-rtl ul li,
        .sm-clean.sm-vertical li {
            float: none;
        }

        .sm-clean a:hover,
        .sm-clean a:focus,
        .sm-clean a:active,
        .sm-clean a.highlighted,
        .sm-clean a.current {
            background-color: transparent;
        }

        .sm-clean a {
            white-space: nowrap;
        }

        .sm-clean ul a,
        .sm-clean.sm-vertical a {
            white-space: normal;
        }

        .sm-clean .sm-nowrap > li > a,
        .sm-clean .sm-nowrap > li > :not(ul) a {
            white-space: nowrap;
        }

        .sm-clean > li > a,
        .sm-clean > li > a:visited,
        .sm-clean > li > a:hover,
        .sm-clean > li > a:focus,
        .sm-clean > li > a:active,
        .sm-clean > li > a.highlighted {
            padding: 17px 10px;
            background: transparent;
            color: #233746;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.2;
        }

        

        .sm-clean > li:first-child > a {
            padding-left: 0;
        }

        .sm-clean > li:last-child > a {
            padding-right: 0;
        }

        .sm-clean > li > a:hover,
        .sm-clean > li > a:focus,
        .sm-clean > li > a:active,
        .sm-clean > li > a.highlighted,
        .sm-clean > li > a.current {
            color: #4c86a5;
        }

            .sm-clean > li > a.current::after {
                height: 2px;
                position: absolute;
                right: 10px;
                bottom: 6px;
                left: 10px;
                background-color: #4c86a5;
                content: "";
            }

        .sm-clean > li:first-child > a.current::after {
            left: 0;
        }

        .sm-clean > li:last-child > a.current::after {
            right: 0;
        }

        .sm-clean a.has-submenu {
            padding-right: 24px;
        }

        .sm-clean a .sub-arrow {
            display: block;
            width: 0;
            height: 0;
            top: 50%;
            right: 9px;
            margin-top: -2px;
            border-width: 4px;
            border-style: solid dashed dashed;
            border-color: #536773 transparent transparent;
            border-radius: 0;
            background: transparent;
        }

            .sm-clean a .sub-arrow::before {
                display: none;
            }

        .sm-clean ul a,
        .sm-clean ul a:visited,
        .sm-clean ul a:hover,
        .sm-clean ul a:focus,
        .sm-clean ul a:active,
        .sm-clean ul a.highlighted {
            padding: 9px 18px;
            border: 0;
            background-color: #fff;
            color: #41525d;
            font-size: 15px;
            line-height: 1.3;
        }

            .sm-clean ul a:hover,
            .sm-clean ul a:focus,
            .sm-clean ul a:active,
            .sm-clean ul a.highlighted,
            .sm-clean ul a.current {
                background-color: #f3f8fa;
                color: #4c86a5;
            }

            .sm-clean ul a.has-submenu {
                padding-right: 28px;
            }

            .sm-clean ul a .sub-arrow {
                right: 10px;
                margin-top: -5px;
                border-width: 5px;
                border-style: dashed dashed dashed solid;
                border-color: transparent transparent transparent #536773;
            }

        .sm-clean > li > ul::before,
        .sm-clean > li > ul::after {
            width: 0;
            height: 0;
            position: absolute;
            left: 28px;
            overflow: hidden;
            border-style: dashed dashed solid;
            content: "";
        }

        .sm-clean > li > ul::before {
            top: -14px;
            border-width: 7px;
            border-color: transparent transparent #ccd6dc;
        }

        .sm-clean > li > ul::after {
            top: -12px;
            left: 29px;
            border-width: 6px;
            border-color: transparent transparent #fff;
        }

        .sm-clean .scroll-up,
        .sm-clean .scroll-down {
            display: none;
            visibility: hidden;
            height: 20px;
            position: absolute;
            overflow: hidden;
            background-color: #fff;
        }

        .sm-clean .scroll-up-arrow,
        .sm-clean .scroll-down-arrow {
            width: 0;
            height: 0;
            position: absolute;
            top: 0;
            left: 50%;
            margin-left: -6px;
            overflow: hidden;
            border-width: 6px;
            border-style: dashed dashed solid;
            border-color: transparent transparent #536773;
        }

        .sm-clean .scroll-down-arrow {
            top: 8px;
            border-style: solid dashed dashed;
            border-color: #536773 transparent transparent;
        }

        .sm-clean.sm-rtl a.has-submenu {
            padding-right: 10px;
            padding-left: 24px;
        }

        .sm-clean.sm-rtl a .sub-arrow {
            right: auto;
            left: 9px;
        }

        .sm-clean.sm-rtl > li > ul::before {
            right: 28px;
            left: auto;
        }

        .sm-clean.sm-rtl > li > ul::after {
            right: 29px;
            left: auto;
        }

        .sm-clean.sm-vertical {
            display: block;
            padding: 6px 0;
        }

            .sm-clean.sm-vertical li {
                float: none;
            }

            .sm-clean.sm-vertical > li > a,
            .sm-clean.sm-vertical > li > a:visited {
                padding: 10px 18px;
            }

            .sm-clean.sm-vertical > li > ul::before,
            .sm-clean.sm-vertical > li > ul::after {
                display: none;
            }
}


/* ==========================================================================
   Medium desktop
   ========================================================================== */

@media (min-width: 900px) {
    .sm-clean > li > a,
    .sm-clean > li > a:visited,
    .sm-clean > li > a:hover,
    .sm-clean > li > a:focus,
    .sm-clean > li > a:active,
    .sm-clean > li > a.highlighted {
        padding-right: 12px;
        padding-left: 12px;
        font-size: 17px;
    }

        .sm-clean > li > a.current::after {
            right: 12px;
            left: 12px;
        }

    .sm-clean > li:first-child > a {
        padding-left: 0;
    }

        .sm-clean > li:first-child > a.current::after {
            left: 0;
        }

    .sm-clean > li:last-child > a {
        padding-right: 0;
    }

        .sm-clean > li:last-child > a.current::after {
            right: 0;
        }
}


/* ==========================================================================
   Small mobile
   ========================================================================== */

@media (max-width: 450px) {
    .sm-clean a,
    .sm-clean a:visited,
    .sm-clean a:hover,
    .sm-clean a:focus,
    .sm-clean a:active {
        padding-top: 13px;
        padding-bottom: 13px;
        font-size: 16px;
    }
}
