/* Minification failed. Returning unminified contents.
(270,1): run-time error CSS1019: Unexpected token, found '@import'
(270,9): run-time error CSS1019: Unexpected token, found 'url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap&subset=latin-ext")'
(817,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(818,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
 */
@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap&subset=latin-ext");
a.announcement-card {
  font-family: 'Ubuntu', sans-serif;
  border: 1px solid #D7D7D7;
  padding: 30px 30px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  top: 0;
  background-color: #FFFFFF;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #e30a18 transparent;
  right: 0;
  bottom: 0;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card i.icon-announce {
  color: #E30A17;
  font-size: 0.875rem;
  z-index: 1;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card .announce-date {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  font-weight: 500;
  color: #A2A2A2;
  margin: 15px 0 20px;
  z-index: 1;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card .announce-title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #252525;
  z-index: 1;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card span.hover-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  border: 1px solid transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  background-color: transparent;
  z-index: 0;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
  padding: 0 30px 30px 20px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

a.announcement-card span.hover-bg i.icon-long-arrow-right {
  opacity: 0;
  visibility: hidden;
  color: #FFFFFF;
  font-size: 0.625rem;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover {
  background-color: #000080;
  border-color: #000080;
  top: -30px;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover i.icon-announce {
  color: #FFFFFF;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover .announce-date {
  color: #FFFFFF;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover .announce-title {
  color: #FFFFFF;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover:after {
  border: 0;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover span.hover-bg {
  top: 0;
  bottom: -60px;
  background-color: #000080;
  -webkit-box-shadow: 0 10px 30px #ADADFB;
  box-shadow: 0 10px 30px #ADADFB;
  border: 1px solid #000080;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

a.announcement-card:hover span.hover-bg i.icon-long-arrow-right {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.announcement-slider {
  padding: 70px 30px;
  margin: 0 -30px;
}

.announcement-slider .swiper-slide {
  height: auto;
}

.announcement-slider .announce-helper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
}

.announcement-slider .announce-helper .announce-pagination {
  margin: 0 40px;
}

.announcement-slider .announce-helper .announce-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background-color: #D7D7D7;
  border-radius: 50%;
  opacity: 1;
}

.announcement-slider .announce-helper .announce-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E30A17;
}

.announcement-slider .announce-helper .announce-pagination .swiper-pagination-bullet:not(:last-of-type) {
  margin-right: 10px;
}

.announcement-slider .announce-helper .announce-button-prev, .announcement-slider .announce-helper .announce-button-next {
  width: 40px;
  height: 40px;
  border: 1px solid #D7D7D7;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.announcement-slider .announce-helper .announce-button-prev i, .announcement-slider .announce-helper .announce-button-next i {
  font-size: 0.875rem;
  color: #000080;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.announcement-slider .announce-helper .announce-button-prev:hover, .announcement-slider .announce-helper .announce-button-next:hover {
  background-color: #000080;
  border: 1px solid #000080;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.announcement-slider .announce-helper .announce-button-prev:hover i, .announcement-slider .announce-helper .announce-button-next:hover i {
  color: #FFFFFF;
  -webkit-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.announcement-slider .announce-helper .announce-button-prev i {
  margin-right: 3px;
  -webkit-transform: rotate(0deg) /*rtl:rotate(180deg)*/;
  transform: rotate(0deg) /*rtl:rotate(180deg)*/;
}

.announcement-slider .announce-helper .announce-button-next i {
  margin-left: 3px;
  -webkit-transform: rotate(0deg) /*rtl:rotate(180deg)*/;
  transform: rotate(0deg) /*rtl:rotate(180deg)*/;
}

@media (max-width: 1289.98px) {
  .announcement-slider {
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  a.announcement-card:hover {
    top: 0;
  }
  a.announcement-card:hover span.hover-bg {
    display: none;
  }
  .announcement-slider {
    padding: 0 0 100px 0;
  }
  .announcement-slider .announce-helper {
    margin-top: 10px;
  }
  .announcement-slider .announce-helper .announce-button-prev, .announcement-slider .announce-helper .announce-button-next {
    display: none;
  }
}



@import url("https://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700&display=swap&subset=latin-ext");

.announcement-list {
    font-family: 'Ubuntu', sans-serif;
    margin: 20px 0;
}

    .announcement-list .select2-container--default {
        margin-bottom: 90px;
        min-height: 40px;
    }

        .announcement-list .select2-container--default .select2-selection--single {
            padding: 7px 34px 7px 12px;
            height: auto;
        }

            .announcement-list .select2-container--default .select2-selection--single.select2-selection {
                border-radius: 4px;
                border: 1px solid #E4E4E4;
            }

            .announcement-list .select2-container--default .select2-selection--single .select2-selection__rendered {
                line-height: 1.5rem;
                font-size: 0.75rem;
                font-weight: 500;
                color: #000000;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                padding: 0;
            }

                .announcement-list .select2-container--default .select2-selection--single .select2-selection__rendered i {
                    color: #000080;
                    /*rtl:ignore*/
                    margin-right: 10px;
                }

                .announcement-list .select2-container--default .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
                    line-height: 1.5rem;
                    font-size: 0.75rem;
                    color: #000000;
                    display: block;
                }

            .announcement-list .select2-container--default .select2-selection--single .select2-selection__arrow b {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                border: 0;
                width: 16px;
                height: 16px;
                margin: -2px 0 0 -15px;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                -webkit-transform: rotate(0);
                transform: rotate(0);
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

                .announcement-list .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
                    font-family: 'ib-icon';
                    content: '\e900';
                    font-size: 0.875rem;
                    line-height: 0.875rem;
                    color: #000080;
                }

        .announcement-list .select2-container--default.select2-container--below .select2-selection--single.select2-selection {
            border: 1px solid #000080;
        }

        .announcement-list .select2-container--default.select2-container--open .select2-selection--single.select2-selection {
            border: 1px solid #000080;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .announcement-list .select2-container--default.select2-container--open .select2-selection__arrow b {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
        }

        .announcement-list .select2-container--default.select2-container--focus .select2-selection--single.select2-selection {
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .announcement-list .filter-elements {
        margin-bottom: 30px;
    }

    .announcement-list .filter-tags {
        display: none;
        margin-top: 10px;
    }

        .announcement-list .filter-tags .tag {
            background-color: #000080;
            color: #FFFFFF;
            font-size: 0.75rem;
            font-weight: 500;
            line-height: 2.5rem;
            padding: 0 10px;
            border-radius: 4px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            min-width: 140px;
        }

            .announcement-list .filter-tags .tag a.close-tag {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                background-color: rgba(64, 64, 159, 0.8);
                margin-left: auto;
            }

                .announcement-list .filter-tags .tag a.close-tag i {
                    font-size: 0.625rem;
                    color: #FFFFFF;
                }

            .announcement-list .filter-tags .tag:not(:last-of-type) {
                margin-right: 6px;
            }

    .announcement-list .input-group button {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: transparent;
        padding: 0;
        margin: 0;
        border: 0;
        position: absolute;
        right: 0;
        top: 0;
        width: 38px;
        height: 38px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        z-index: 1;
    }

        .announcement-list .input-group button i {
            color: #000080;
            font-size: 0.875rem;
        }

    .announcement-list .input-group .form-control {
        border-color: #D7D7D7;
        border-width: 0 0 1px 0;
        border-radius: 0;
        font-size: 0.75rem;
        color: #252525;
        line-height: 2.5rem;
        min-height: 40px;
        padding-right: 40px;
        padding-top: 0;
        padding-bottom: 0;
        z-index: 0;
    }

        .announcement-list .input-group .form-control:focus {
            -webkit-box-shadow: none;
            box-shadow: none;
            outline: none;
        }

        .announcement-list .input-group .form-control::-webkit-input-placeholder {
            font-size: 0.75rem;
            color: #A2A2A2;
        }

        .announcement-list .input-group .form-control:-ms-input-placeholder {
            font-size: 0.75rem;
            color: #A2A2A2;
        }

        .announcement-list .input-group .form-control::-ms-input-placeholder {
            font-size: 0.75rem;
            color: #A2A2A2;
        }

        .announcement-list .input-group .form-control::placeholder {
            font-size: 0.75rem;
            color: #A2A2A2;
        }

    .announcement-list .mobile-filter {
        display: none;
        margin-left: 10px;
        border: 1px solid #000080;
        background-color: #FFFFFF;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        border-radius: 4px;
        cursor: pointer;
    }

        .announcement-list .mobile-filter i {
            font-size: 0.875rem;
            color: #000080;
        }

        .announcement-list .mobile-filter:hover {
            background-color: #000080;
        }

            .announcement-list .mobile-filter:hover i {
                color: #FFFFFF;
            }

    .announcement-list .announcement-card-container {
        padding-bottom: 40px;
        height: 100%;
    }

    .announcement-list a.announcement-card {
        font-family: 'Ubuntu', sans-serif;
        border: 1px solid #D7D7D7;
        padding: 30px 30px 20px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        background-color: #FFFFFF;
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        height: 100%;
        top: 0;

    }

        .announcement-list a.announcement-card:after {
            content: '';
            display: inline-block;
            position: absolute;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 0 20px 20px;
            border-color: transparent transparent #e30a18 transparent;
            right: 0;
            bottom: 0;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
        }

        .announcement-list a.announcement-card i.icon-announce {
            color: #E30A17;
            font-size: 0.875rem;
            z-index: 1;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
        }

        .announcement-list a.announcement-card .announce-date {
            font-size: 0.75rem;
            line-height: 0.9375rem;
            font-weight: 500;
            color: #A2A2A2;
            margin: 15px 0 20px;
            z-index: 1;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
        }

        .announcement-list a.announcement-card .announce-title {
            font-size: 1.125rem;
            line-height: 1.75rem;
            color: #252525;
            z-index: 1;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
           
        }

        .announcement-list a.announcement-card span.hover-bg {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            position: absolute;
            border: 1px solid transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
            left: -1px;
            right: -1px;
            top: -1px;
            bottom: -1px;
            background-color: transparent;
            z-index: 0;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
            padding: 0 30px 30px 20px;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
            -webkit-box-pack: start;
            -ms-flex-pack: start;
            justify-content: flex-start;
        }

            .announcement-list a.announcement-card span.hover-bg i.icon-long-arrow-right {
                opacity: 0;
                visibility: hidden;
                color: #FFFFFF;
                font-size: 0.625rem;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

        .announcement-list a.announcement-card:hover {
            background-color: #000080;
            border-color: #000080;
            -webkit-transition: all .15s ease-in-out;
            transition: all .15s ease-in-out;
            top: -30px;
        }

            .announcement-list a.announcement-card:hover i.icon-announce {
                color: #FFFFFF;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

            .announcement-list a.announcement-card:hover .announce-date {
                color: #FFFFFF;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

            .announcement-list a.announcement-card:hover .announce-title {
                color: #FFFFFF;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;

            }

            .announcement-list a.announcement-card:hover:after {
                border: 0;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

            .announcement-list a.announcement-card:hover span.hover-bg {
                top: 0;
                bottom: -60px;
                background-color: #000080;
                -webkit-box-shadow: 0 10px 30px #ADADFB;
                box-shadow: 0 10px 30px #ADADFB;
                border: 1px solid #000080;
                -webkit-transition: all .15s ease-in-out;
                transition: all .15s ease-in-out;
            }

                .announcement-list a.announcement-card:hover span.hover-bg i.icon-long-arrow-right {
                    opacity: 1;
                    visibility: visible;
                    -webkit-transition: all .15s ease-in-out;
                    transition: all .15s ease-in-out;
                }

    .announcement-list .list-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 30px;
        border-top: 1px solid #E4E4E4;
    }

        .announcement-list .list-pagination button {
            background-color: transparent;
            border: 0;
            border-top: 3px solid transparent;
            padding: 30px 0 0 0;
            margin: 0 15px 0 0;
            min-width: 30px;
            text-align: center;
            cursor: pointer;
            color: #A2A2A2;
        }

            .announcement-list .list-pagination button i {
                font-size: 0.625rem;
                color: #000080;
            }

            .announcement-list .list-pagination button.selected-page {
                border-top: 3px solid #E30A17;
                color: #000080;
                font-weight: 700;
            }

            .announcement-list .list-pagination button.disabled {
                cursor: default;
            }

                .announcement-list .list-pagination button.disabled i {
                    color: #A2A2A2;
                }

    .announcement-list .btn-showmore {
        display: none;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .announcement-list .btn-showmore a {
            margin: 15px auto 0;
            color: #252525;
            font-size: 0.75rem;
            font-weight: 500;
            padding-bottom: 7px;
            border-bottom: 1px solid #E30A17;
        }

            .announcement-list .btn-showmore a:before {
                font-family: 'ib-icon';
                content: '\e900';
                color: #252525;
                /*rtl:ignore*/
                margin-right: 10px;
            }

.selectAnnounceDropdown.select2-dropdown {
    border-color: navy;
}

.selectAnnounceDropdown .select2-results .select2-results__option {
    font-size: .75rem;
}

.selectAnnounceDropdown .select2-results .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(0, 0, 128, 0.7);
}

.selectAnnounceDropdown .select2-results .select2-results__option[aria-selected=true] {
    background-color: #E4E4E4;
}

    .selectAnnounceDropdown .select2-results .select2-results__option[aria-selected=true].select2-results__option--highlighted[aria-selected] {
        background-color: rgba(0, 0, 128, 0.7);
    }

@media (max-width: 991.98px) {
    .announcement-list .input-group .form-control {
        border-width: 1px;
        border-radius: 4px;
    }

        .announcement-list .input-group .form-control:not(:placeholder-shown), .announcement-list .input-group .form-control:focus {
            border-color: #000080;
        }

    .announcement-list .announcement-card-container {
        padding-bottom: 15px;
    }

    .announcement-list a.announcement-card:hover {
        top: 0;
    }

        .announcement-list a.announcement-card:hover span.hover-bg {
            display: none;
        }
}

@media (max-width: 991.98px) {
    /*.announcement-list .list-pagination {
        display: none;
    }*/

    .announcement-list .btn-showmore {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 767.98px) {
    .announcement-list .mobile-filter, .announcement-list .filter-tags {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.mm-slideout {
    z-index: auto;
}

body.modal-open .mm-slideout {
    z-index: inherit !important;
}

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
    opacity: 0.9;
}

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
    background: #000000;
}

.mm-menu {
    --mm-navbar-size: 45px !important;
    --mm-listitem-size: 45px !important;
}

.mm-menu_offcanvas {
    width: 90%;
    font-family: 'Ubuntu',sans-serif;
}

    .mm-menu_offcanvas .mm-navbars_top {
        border: 0;
    }

    .mm-menu_offcanvas .btn-navy {
        color: #FFFFFF !important;
        background-color: #000080 !important;
        border: 0;
        border-radius: 0;
        width: 80%;
        line-height: 2.8125rem;
        margin: auto auto 5px auto;
        padding: 0;
    }

    .mm-menu_offcanvas .navbar-header {
        font-weight: 500;
        font-size: 1rem;
        color: #000080;
        padding: 13px 15px 12px 15px;
        text-align: left;
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
        position: relative;
    }

        .mm-menu_offcanvas .navbar-header i {
            color: #000080;
            float: right;
            position: absolute;
            right: 15px;
            top: calc(50% - 8px);
        }

.mm-panel, .mm-panels {
    background-color: #FAFAFA;
}

.mm-panels {
    border-top: 3px solid #FAFAFA;
}

.mm-navbars_top + .mm-panels {
    top: 75px;
    bottom: 0;
    border-top: 0;
}

.mm-navbars_bottom a.mobile-loginBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px;
    width: 100%;
    min-height: 70px;
    background-color: #0039FF;
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
}

    .mm-navbars_bottom a.mobile-loginBtn:focus {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .mm-navbars_bottom a.mobile-loginBtn:after {
        font-family: 'ib-icon';
        content: '\e902';
        margin-left: auto;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-size: 0.875rem;
    }

    .mm-navbars_bottom a.mobile-loginBtn[aria-expanded="true"]:after {
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    .mm-navbars_bottom a.mobile-loginBtn[aria-expanded="false"]:after {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        -webkit-transition: all .15s ease-in-out;
        transition: all .15s ease-in-out;
    }

.mm-navbar {
    height: auto !important;
    padding: 0;
    background-color: #FFFFFF;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .mm-navbar .mm-navbar__title {
        color: #000080 !important;
        font-weight: 500;
        font-size: 1rem;
        text-align: left;
        padding: 13px 0 13px 15px !important;
        border-bottom: 1px solid #FAFAFA;
    }

.mm-listview .mm-listitem {
    background-color: #FFFFFF;
    border-bottom: 2px solid #FAFAFA;
}

    .mm-listview .mm-listitem .mm-listitem__text {
        white-space: normal;
        padding-left: 15px;
        padding-right: 15px;
        color: #000080;
        font-weight: 400;
        font-size: 1rem;
        line-height: 1.1875rem;
    }

        .mm-listview .mm-listitem .mm-listitem__text strong {
            color: #D7D7D7;
            font-weight: 400;
            float: right;
            margin-right: 20px;
        }

        .mm-listview .mm-listitem .mm-listitem__text.ext-link {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

            .mm-listview .mm-listitem .mm-listitem__text.ext-link:after {
                font-size: 0.75rem;
                margin: auto 2px auto auto;
                font-family: 'ib-icon';
                content: '\e907';
                color: #E30A17;
            }

    .mm-listview .mm-listitem span.mm-listitem__text {
        font-size: 0.75rem;
        color: #A2A2A2;
    }

    .mm-listview .mm-listitem .mm-btn_next:after {
        -webkit-transform: none;
        transform: none;
        width: auto;
        height: auto;
        border: 0;
        right: 12px;
        font-family: 'ib-icon';
        content: '\e902';
        line-height: 2.75rem;
        color: #E30A17;
    }

    .mm-listview .mm-listitem h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #252525;
        margin: 15px;
        display: block;
    }

        .mm-listview .mm-listitem h3:before {
            font-family: 'ib-icon';
            content: '\e96e';
            font-size: 1.25rem;
            color: #000080;
            display: inline-block;
            margin-right: 10px;
        }

    .mm-listview .mm-listitem p {
        font-size: 0.75rem;
        line-height: 1.25rem;
        margin: 0 15px 15px 45px;
    }

    .mm-listview .mm-listitem a.mobileModalOpen {
        border: 1px solid #0039FF;
        min-height: 50px;
        line-height: 3.125rem;
        border-radius: 4px;
        color: #0039FF;
        font-weight: 500;
        font-size: 1rem;
        text-align: center;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        margin: 15px 15px 0 15px;
        padding: 0;
    }

    .mm-listview .mm-listitem.contact-list {
        background-color: transparent;
    }

        .mm-listview .mm-listitem.contact-list a.mm-listitem__text {
            color: #252525;
        }

        .mm-listview .mm-listitem.contact-list + .mm-listview {
            background-color: transparent;
        }

.mm-listview.contacts .mm-listitem {
    background-color: #FAFAFA;
    border-color: #EEEEEE;
}

    .mm-listview.contacts .mm-listitem span.mm-listitem__text {
        font-size: 0.875rem;
        color: #252525;
    }

.mm-listview.login-content {
    height: 100%;
}

    .mm-listview.login-content .mm-listitem {
        height: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

.mm-listview.login-types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    height: 100%;
}

:not(#mm-1) .mm-btn {
    width: 30px;
}

:not(#mm-1) .mm-btn_prev:before {
    -webkit-transform: none;
    transform: none;
    width: auto;
    height: auto;
    border: 0;
    left: 12px;
    font-family: 'ib-icon';
    content: '\e901';
    line-height: 2.75rem;
    color: #FFFFFF;
}

:not(#mm-1) .mm-navbar__title {
    color: #FFFFFF !important;
    background-color: #000080;
    font-size: 1rem;
    line-height: 1.1875rem;
    padding-left: 30px !important;
    font-weight: 500;
}

#mm-1 > .mm-listview > .mm-listitem.single-link {
    background-color: transparent;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 2px;
}

    #mm-1 > .mm-listview > .mm-listitem.single-link > .mm-listitem__text {
        font-size: 0.875rem;
        padding-left: 25px;
    }

#MobileAnnounceFilter .mm-navbars_top + .mm-panels {
    top: 55px;
}

#MobileAnnounceFilter .mm-listview .mm-listitem label {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 45px;
    padding: 15px;
    line-height: 0.9375rem;
    width: 100%;
}

    #MobileAnnounceFilter .mm-listview .mm-listitem label .submenu-title {
        font-size: 0.875rem;
        color: #000080;
        width: 100%;
    }

    #MobileAnnounceFilter .mm-listview .mm-listitem label .subtitle {
        font-size: 0.75rem;
        color: #A2A2A2;
        width: 100%;
    }

        #MobileAnnounceFilter .mm-listview .mm-listitem label .subtitle:not(:empty) {
            margin-top: 10px;
        }

#MobileAnnounceFilter .mm-listview .mm-listitem select {
    position: absolute;
    opacity: 0;
    z-index: 0;
    width: 100%;
    height: 45px;
}

#MobileAnnounceFilter .mm-listview .mm-listitem:before {
    font-family: 'ib-icon';
    content: '\e902';
    font-size: 0.875rem;
    color: #E30A17;
    position: absolute;
    right: 12px;
    top: calc(50% - 10px);
}

#MobileAnnounceFilter .mm-listview .mm-listitem.selected-date:before {
    font-family: 'ib-icon';
    content: '\e904';
    top: 15px;
}

#MobileAnnounceFilter .mm-navbars_bottom {
    border: 0;
    bottom: 30px;
}

    #MobileAnnounceFilter .mm-navbars_bottom .mm-navbar {
        background-color: #FAFAFA;
    }

        #MobileAnnounceFilter .mm-navbars_bottom .mm-navbar a.filter-apply {
            background-color: #000080;
            width: 75%;
            line-height: 2.5rem;
            border-radius: 4px;
            font-weight: 500;
            margin: 0 auto;
            color: #FFFFFF;
            font-size: 0.75rem;
            padding: 0;
        }

