 #loader {
     position: fixed;
     display: flex;
     justify-content: center;
     align-items: center;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 100000;
}
 .loader-body {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     width: 100%;
     height: 100%;
     background: #FFFFFF;
}
 .loader-text {
     display: block;
     font-family: 'Source Sans Pro', Arial, sans-serif;
     font-size: 18pt;
     color: #2a3137;
     background: #FFFFFF;
     text-align: center;
}
 .redirect-text {
     position: relative;
     display: block;
     margin-top: 24px;
     padding: 16px 24px;
     border-radius: 50px;
     font-size: 18px;
     background-color: #e5f0ff;
     animation: fadeInUp 1s ease forwards;
}
 .redirect-text.hide {
     display: none;
}
 @keyframes fadeInUp {
     0% {
        bottom: -50px;
         opacity: 0
    }
     100% {
        bottom: 0;
         opacity: 1
    }
}
 .dropdown-dropdown-menu{
     position: relative;
     top: 20px;
     display: none;
     width: 100%;
}
 .dropdown-dropdown {
     width: 100%;
     flex-direction: column;
     padding: 0.75rem 1.5rem;
}
 @media screen and (max-width: 1024px) {
     .sgds-navbar-item.sgds-dropdown{
         align-items: flex-start;
         width: 92%;
         flex-direction: column;
    }
     .sgds-navbar-item.sgds-dropdown.dropdown-dropdown{
         width: 100%;
    }
     .sgds-dropdown-menu{
         position: relative;
         width: 106%;
    }
     .sgds-dropdown.sgds-navbar-item.dropdown-dropdown .dropdown-dropdown-menu{
         position: relative;
         top: 15px;
         display: none;
         width: 100%;
    }
}
 .sgds-dropdown-menu.sgds-dropdown-content .sgds-dropdown-item, .dropdown-dropdown .sgds-dropdown-trigger {
     color: #414950;
}
 .sgds-dropdown.sgds-navbar-item.dropdown-dropdown.is-active .dropdown-dropdown-menu{
     display:block;
}
 @media screen and (min-width: 1024px) {
     .dropdown-dropdown-menu{
         position: absolute;
         top: -8px;
         left: 100%;
         display: none;
    }
     .sgds-dropdown-menu.sgds-dropdown-content {
         width: calc(100% + 56px);
    }
}
 