/* Minification failed. Returning unminified contents.
(16,28): run-time error CSS1039: Token not allowed after unary operator: '-secura-red'
(20,17): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
(167,35): run-time error CSS1046: Expect comma, found '0'
(167,39): run-time error CSS1046: Expect comma, found '/'
(171,39): run-time error CSS1046: Expect comma, found '0'
(171,43): run-time error CSS1046: Expect comma, found '/'
(204,17): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
(205,28): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
(209,32): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
(408,28): run-time error CSS1039: Token not allowed after unary operator: '-dark-background'
(408,60): run-time error CSS1034: Expected closing parenthesis, found ','
(408,60): run-time error CSS1042: Expected function, found ','
(408,65): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')'
(479,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '&'
(496,15): run-time error CSS1034: Expected closing parenthesis, found '<'
(507,15): run-time error CSS1034: Expected closing parenthesis, found '<'
(513,15): run-time error CSS1034: Expected closing parenthesis, found '<'
(521,17): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
(526,21): run-time error CSS1039: Token not allowed after unary operator: '-secura-black'
 */
/* #region General Styles */

body {
    padding-top: 0;
}

.white-text {
    color: #fff;
}

.white-bg {
    background-color: #fff;
}

.secura-red-bg {
    background-color: var(--secura-red, #cb333b);
}

.secura-black-text {
    color: var(--secura-black, #3f4444);
}

#account-section a:hover {
    color: #fff !important;
}

li {
    list-style-type: none;
}


button {
    font-size: inherit;
}

button {
    border: unset;
    outline: unset;
    background-color: unset;
}

.text-align-center {
    text-align: center;
}

.fw-700 {
    font-weight: 700;
}

.full-width {
    width: 100%;
}

.full-width--gutter-30 {
    width: calc(100% - 60px);
}

.max-240 {
    max-width: 240px;
}

.full-height {
    min-height: 100vh;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}

.none {
    display: none;
}

.block {
    display: block;
}

.m-auto {
    margin-inline: auto;
}

.m-top-30 {
    margin-top: 30px;
}

.m-top-40 {
    margin-top: 40px;
}

.m-top-60 {
    margin-top: 60px;
}

.m-bot-10 {
    margin-bottom: 10px;
}

.m-bot-30 {
    margin-bottom: 30px;
}

.padding-20 {
    padding: 20px;
}

.p-top-20 {
    padding-top: 20px;
}

.p-bot-20 {
    padding-bottom: 20px;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.flex {
    display: flex;
}

.justify-content-flex-end {
    justify-content: flex-end;
}

.justify-content-space-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.br-8rem {
    border-radius: 8px;
}

.cursor-pointer {
    cursor: pointer;
}

.standard-box-shadow {
    box-shadow: 0 0 3px 1px rgb(0 0 0 / 5%);
}

.darker-box-shadow {
    box-shadow: 3px 3px 9px 2px rgb(0 0 0 / 15%);
}

.z-index5 {
    z-index: 5;
}

.fs-18 {
    font-size: 18px;
}

.fs-22 {
    font-size: 22px;
}

.standard-transition {
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}


.secondary-btn {
    padding: 10px;
    border-radius: 2px;
    cursor: pointer;
    font-size: inherit;
    font-weight: 500;
}

.secondary-btn {
    background-color: #fff;
    color: var(--secura-black, #3f4444);
    border: 1px solid var(--secura-black, #3f4444);
}

    .secondary-btn:hover {
        background-color: var(--secura-black, #3f4444);
        color: #fff;
    }

button:not(:disabled) {
    cursor: default;
}

.max-1400 {
    max-width: 1400px;
    width: calc(100% - 60px);
}

@media (min-width: 2100px) {
    .max-1400 {
        max-width: 2160px;
    }
}

/* #endregion General Styles */

/*#region AgentExperienceNavigationDropdownsDesktop */
#secura-header a {
    font-size: 15px;
}

.navbar-nav {
    justify-content: right;
}

#secura-header .nav-link {
    padding: 0.625rem .5rem 0 .5rem;
    color: #3f4444 !important;
}

.nav-link {
    position: relative;
    display: inline-block;
    z-index: 3;
}

    .nav-link::before {
        content: '';
        position: absolute;
        width: calc(100% - 1rem);
        height: 0.25rem;
        bottom: 75%;
        left: 0.5rem;
        background-color: #f2a900;
        border-radius: 0.125rem;
        visibility: hidden;
        transform: scaleX(0);
        transform-origin: left;
        transition: all 0.2s ease-in-out;
    }

#secura-header-main-links a {
    font-size: 14px;
}

#secura-header-main-links .nav-link:hover {
    text-decoration: underline !important;
}

.nav-item.dropdown:hover .nav-link::before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    width: max-content;
    border: none;
    top: 100%;
    padding: 30px 20px 20px 20px;
    border-radius: 0 0 0.5rem 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.dropdown-menu-resources {
    max-width: 200px;
}

    .dropdown-menu-resources a {
        white-space: normal;
        word-break: break-word;
    }

.dropdown-category-header {
    font-weight: 700;
    margin-top: 0.75rem;
    padding: 0;
    white-space: nowrap;
    display: block;
}

.dropdown-link {
    padding: 0;
    color: #3f4444;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    display: block;
}

    .dropdown-link:hover {
        color: #3f4444;
    }

.gap-10 {
    gap: 1rem !important;
}

.align-chevron {
    position: relative;
    top: 0.063rem;
    margin-left: 0.25rem;
}

.header-user {
    position: relative;
    display: block;
    padding: 10px 0;
    margin: 0 .5rem !important;
    color: #3f4444;
}

    .header-user:hover {
        text-decoration: none;
        color: #3f4444;
    }

.header-agency {
    position: relative;
    display: block;
    padding: 7px 0 4px 0;
    margin: 0 .5rem !important;
    color: #3f4444;
    font-size: 14px;
}

    .header-agency::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: url("https://cdn.secura.net/8d/a2/43da1d214a8bb13a75e89a0d7868/secura-color-bar-12524-horizontal.png") no-repeat center center/cover;
    }

.account-dropdown {
    min-width: 12px;
    border-radius: 8px;
    padding: 20px;
}

.dropdown-caret {
    color: #3f4444;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
}

.vertical-line {
    border-right: 1px solid rgba(63, 68, 68, 0.25);
    padding-right: 2rem;
    margin-right: 2rem;
}

.top-header-dropdown {
    z-index: 1000;
}
/*#endregion AgentExperienceNavigationDropdownsDesktop */

/*#region _LayoutBootstrap4 desktop */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/*#endregion _LayoutBootstrap4 desktop */

/* #region Mobile Header Styles */
.dark-background,
.dark-background-mobile {
    background-color: var(--dark-background, rgb(34, 34, 34, .5));
    height: 100%;
}

.insurance-name-tag {
    padding-bottom: 6px;
    display: inline;
}

    .insurance-name-tag:after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: url("https://cdn.secura.net/8d/a2/43da1d214a8bb13a75e89a0d7868/secura-color-bar-12524-horizontal.png") no-repeat center center/cover;
    }

.mobile-header .top-section .left-col p,
.mobile-header .top-section .left-col .fa-solid,
.mobile-header .side-menu-close .fa-solid,
.mobile-header .side-menu-close p {
    font-size: 22px;
}

.mobile-header .right-col img {
    transition: 0.2s ease-in-out;
}

.mobile-header .side-menu {
    width: 85%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    top: 0;
    left: -100%;
    z-index: 100;
    background: #fff;
    overflow: auto;
    z-index: 100000;
    overscroll-behavior: contain;
    padding-bottom: 60px;
}

.side-menu.slide-open {
    left: 0;
}

.mobile-header .side-menu .side-menu-main li:not(:first-of-type) {
    margin-top: 30px;
}

.mobile-header .side-menu .side-menu-main li {
    font-size: 18px;
}

.mobile-header .side-menu .side-menu-sub li {
    flex: 1 1 50%;
}

.mobile-header .side-menu .side-menu-main button i {
    font-size: 22px;
}

.mobile-header .side-menu .side-menu-sub li a,
.mobile-header .side-menu .side-menu-sub li span {
    font-size: 16px;
}

.tabbed-in {
    & button, p, p i, li a

{
    font-size: 18px;
}

.tabbed-links {
    & li {
        margin-left: 20px;

    & a {
    font-size: 16px;
    }
   }
  }
}

@media (width < 1280px) {
    .dae-desktop-header {
        display: none;
    }

    .mobile-header, .mobile-header,
    .dark-background-mobile.enabled {
        display: block;
    }
}

@media (width <= 500px) {
    .mobile-header .right-col img {
        max-width: 200px;
    }
}

@media (width <= 400px) {
    .mobile-header .right-col img {
        max-width: 180px;
    }
}

#mobile-header a {
    text-decoration: none;
    color: var(--secura-black, #3f4444);
}

    #mobile-header a:hover {
        text-decoration: none;
        color: var(--secura-black, #3f4444);
    }

/* #endregion Mobile Header Styles*/

/* #region New Footer styles */
.footer-img {
    max-width: 100px;
}

.footer-img-reduce {
    max-width: 60px;
}

.footer-img-enlarge {
    max-width: 160px;
}

.max-240 {
    max-width: 240px;
}

.footer-notes {
    font-size: 16px !important;
}

#footer-links .list-inline-item:not(:last-child) {
    margin-right: 24px;
}

@media (max-width: 992px) {
    #footer-links .list-inline-item:not(:last-child) {
        margin-bottom: 24px;
    }

    #footer-links {
        padding-bottom: 50px;
    }
}

#social-icons .list-inline-item:not(:last-child) {
    margin-right: 12px;
}

.ae-top-footer {
    padding-top: 50px;
    padding-bottom: 50px;
}

.ae-bottom-footer {
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer .row {
    margin-left: 0;
    margin-right: 0;
}

.footer .col-xl-8.offset-xl-2 {
    padding-left: 0;
    padding-right: 0;
}

.footer-social-icons {
    height: 40px;
    width: 40px;
}
/* #endregion New Footer styles */

