@charset "utf-8";
/* CSS Document */

/*Login dropdown*/
.anz-login {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 128.571% */
    text-transform: capitalize;
    color: #000A2B;
    box-shadow: none !important;
    display: flex;
    gap: 4px;
    align-items: flex-end;
}

.anz-login img {
    height: 18px;
}

.anz-login:hover {
    opacity: 0.6;
}

.anz-user {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px; /* 128.571% */
    text-transform: capitalize;
    color: #000A2B;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 19px;
    position: relative;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}

.anz-user-dropdown {
    position: absolute;
    display: none;
    top: 40px;
    left: 0;
    background: #000A2B;
    width: 100%;
    padding: 0 19px 0;
    border-radius: 0 0 10px 10px;
}

.anz-user.active {
    background: #000A2B;
    color: white;
}

.anz-user.active img {
    filter: brightness(0) invert(1);
    transform: rotate(180deg);
}

.anz-user-dropdown a, .anz-user-dropdown p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    color: #F0EDE8;
    box-shadow: none;
}

.anz-user-dropdown p {
    line-height: 22px;
    margin: 0 0;
    cursor: auto;
}

.anz-user-dropdown a:hover {
    color: white;
}

/*New menu*/
.mobile-anz-login, .mobile-anz-user {display: none;}

.header.active {
    background: #000A2B;
}

.header.active .anz-user, .header.active #burgerMenu span {
    color: white;
}

.home .header:not(.fixed) .anz-login, .home .header:not(.fixed) .anz-user .top {
    color: white;
}

.home .header:not(.fixed) .anz-login img, .home .header:not(.fixed) .anz-user img {
    filter: brightness(0) invert(1);
}

.header.active #burgerMenu {
    border-color: white;
}

.container-fluid.mobile-menu-new {
    padding-top: 138px;
    padding-bottom: 83px;
    background: #000A2B;
}

ul.menu.menu-2, ul.menu.menu-3 {
    padding-left: 45px;
}

.mobile-menu-inner ul.menu > li > ul.sub-menu {
    margin: 15px 0 0;
}

.mobile-menu-new .mobile-menu-inner > div:nth-child(1):before, .mobile-menu-new .mobile-menu-inner > div:nth-child(2):before {
    content: "";
    width: 1px;
    height: 100%;
    background: white;
    position: absolute;
    top: 0;
    right: 0;
    visibility: visible;
}

.mobile-menu-inner ul.menu > li {
    margin: 0 0 65px;
}

.mobile-menu-inner ul.menu > li > a {
    color: white;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px; /* 131.25% */
    letter-spacing: 1px;
    font-family: 'Roboto Slab', sans-serif;
    text-transform: none;
}

.mobile-menu-inner ul.menu > li.menu-item-has-children > a {
    padding-right: 25px;
}

.mobile-menu-inner ul.menu > li.menu-item-has-children > a:after {
    color: white;
    content: "\f078";
    font-size: 16px;
    font-weight: 700;
    line-height: 50px;
}

.mobile-menu-new .mobile-menu-inner > div:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.mobile-menu-inner ul.menu > li.menu-item-has-children > a.active:after {
    content: "\f078";
    transform: rotate(180deg);
}

.mobile-menu-inner ul.menu > li > ul.sub-menu > li {
    margin: 0 0 10px;
}

.mobile-menu-inner ul.menu > li > ul.sub-menu > li > a {
    color: white;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px; /* 175% */
    letter-spacing: 1px;
}

.menu-btn {
    margin-left: 45px;
}

.menu-btn .btn:after {
    background: #FF3D14;
}

/*Custom loader*/
.loader {
    float: left;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    backdrop-filter: blur(1px);
    display: flex;
    justify-content: center;
    align-items: center;
	opacity: 0;
	z-index: -10;
}

.loader.active {
	opacity: 1;
	z-index: 10;
}

.loader .shape {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 100px;
    overflow: hidden;
    animation: bounce2 2s ease infinite;
    box-shadow: 0 0 110px 0 #00000026;
}

.loader .shape span {
    width: 130%;
    height: 200%;
    position: absolute;
    border-radius: 40px;
    opacity: 0.8;
    animation: spin 5s infinite linear;
}

.loader .shape span:nth-child(1) {
    background: #f4502d;
    top: 1%;
    animation-delay: 0s;
}

.loader .shape span:nth-child(2) {
    background: #ec9c00;
    top: 66%;
    animation-delay: 1s;
}

.loader .shape span:nth-child(3) {
    background: #f3dabe;
    bottom: 9%;
    animation-delay: 2s;
}

.loader .shape span:nth-child(4) {
    background: #d8ecfa;
    bottom: 50%;
    animation-delay: 3s;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.modal-content {display:block;}

.with_frm_style .frm_blank_field .frm_dropzone {
    background-color: transparent !important;
}

/*Save progress bug fix*/
.single-actions .action-form.border-blue-style form {
display: none;
}