/*********** header ***********/
#header {
    background: var(--gtt-primary-color);
    z-index: 10;
    position: relative;
}
#header .wrap-header {
    display: flex;
    width: 100%;
    position: relative;
    height: 65px;
}
#header .left-header {
    height: 100%;
}
#header .left-header .logo {
    height: 100%;
}
#header .left-header .logo a {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}
#header .left-header .logo a .badge-blink {
    background-color: var(--bs-danger);
    text-decoration: none;
    position: absolute;
    right: -43px;
    top: 7px;
    font-size: 10px;
}
#header .left-header .logo a img {
    height: 45px;
}

#header .right-header {
    width: calc(100% - 200px);
    margin-left: auto;
}
#header .wrap-global-nav {
    display: flex;
    height: 100%;
    margin-left: 55px;
}
#header .global-nav {
    display: flex;
    width: calc(100% - 52px);
    align-items: center;
}
#header .global-nav li {
    margin-right: 40px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
#header .global-nav li:last-child {
    margin-right: 0;
}
#header .global-nav li a {
    text-transform: uppercase;
    color: #ffffff82;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    transition: 0.3s;
}
#header .global-nav li:hover a, #header .global-nav li.active a {
    color: #fff;
}
/* #header .global-nav li.active a:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-bottom: 15px solid #fff;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
} */
#header .profile {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* dropdown */
#header .profile .dropdown-toggler {padding: 0;height: 47px;width: 47px;overflow: hidden;}
#header .profile .dropdown-toggler img {height: 100%;}

#header .profile .profile-dropdown {min-width: 190px;}
#header .profile .profile-dropdown:before {
    left: auto;
    right: 20px;
    transform: translate(0);
}
#header .profile .profile-dropdown ul {}
#header .profile .profile-dropdown ul li {
    position: relative;
}
#header .profile .profile-dropdown ul li.line:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% - 20px);
	height: 0.5px;
	background: var(
	--gtt-border-color);
	opacity: 0.5;
}
#header .profile .profile-dropdown ul li.line.line-top:after {
    bottom: auto;
    top: 0;
}
#header .profile .profile-dropdown ul li a,
#header .profile .profile-dropdown button {
    text-decoration: none;
    display: block;
    padding: 7px 10px;
    border: 0;
    background: transparent;
    width: 100%;
    font-size: 14px;
    text-align: left;
    height: 35px;
}
#header .profile .profile-dropdown form {}