.header{
    background: #fff;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, .05);
    padding-block: 8px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 91;
}

.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rt-logo{
    display: flex;
}

.header .user-icon{
    background-color: #fa4b00;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: relative;
}

.header .user-icon .u-arrow-icon {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid #777;
    background-color: #fff;
    position: absolute;
    bottom: -1px;
    right: 0px;
}

.header .user-icon .u-arrow-icon:after {
    content: "";
    position: absolute;
    height: 4px;
    width: 4px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
    top: 1.5px;
    color: #fa4b00;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.rt-login{
    width: 30px;
    position: relative;
}

.user-dropdown{
    background-color: #fff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .1);
    width: 160px;
    display: none;
    padding: 10px 0;
    position: absolute;
    right: 4px;
    top: 38px;
}

.user-dropdown ul{
    margin: 0;
    padding: 0;
}

.user-dropdown ul li{
    list-style: none;
}

.user-dropdown ul li a{
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.48px;
    font-weight: 500;
    cursor: pointer;
    display: block;
    padding: 4px 10px;
    text-decoration: none;
    color: #242424;
}

.user-dropdown ul li a:hover{
    color: #fa4b00;
}

.header .rt-login.user-active .user-dropdown{
    display: block;
}

.header .rt-login.user-active .u-arrow-icon:after{
    transform: rotate(45deg);
    top: 3.5px;
}