:root {
    --hover-bg-color: #7257C4;
}
@font-face {
    font-family: 'BPG Mrgvlovani';
    src: url('../fonts/BPGMrgvlovani.woff2') format('woff2'),
    url('../fonts/BPGMrgvlovani.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
html,body{
    width:100%;
    height:100%;
    margin:0 auto;
    position: relative;
    font-family: BPG Mrgvlovani;
}
body{
    background: #121325 0% 0% no-repeat padding-box;
}
.wrapper{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.header{
    height: 70px;
    background: #1C1E34 0% 0% no-repeat padding-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.header-inner{
    display: flex;
    width: 100%;
    max-width: 1700px;
    height: 100%;
    flex-direction: row;
}
.header-left{
    display: flex;
    width: 100%;
    max-width: 1294px;
    justify-content: space-between;
}
.header-left .logo{
    display: block;
    position: relative;
    float: left;
    width: 112px;
    height: 28px;
    background: transparent url(../img/logo.png) 0% 0% no-repeat padding-box;
    opacity: 1;
    margin-top: 19px;
    margin-left: 10px;
}
.header-left .search{
    display: block;
    position: relative;
    float: right;
    width: 370px;
    height: 40px;
    margin-top: 15px;
}
.header-left .search .search-text{
    width: 345px;
    height: 40px;
    background: #2A2C4A 0% 0% no-repeat padding-box;
    border-radius: 20px;
    opacity: 1;
    border: 0px;
    padding-left: 25px;
    outline: 0;
    color:#ffffff;
    font-family: 'BPG Mrgvlovani', Arial, Helvetica, sans-serif;
    font-size: 12px;
}
.header-left .search .search-text:outline,.header-left .search .search-text:focus{
    border:0px;
    outline: 0;
}
.header-left .search .search-text::-webkit-input-placeholder {
    font-family: 'BPG Mrgvlovani', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #C7D0FE;
    letter-spacing: 0px;
}

.header-left .search .search-text:-ms-input-placeholder {
    font-family: 'BPG Mrgvlovani', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #C7D0FE;
    letter-spacing: 0px;
}

.header-left .search .search-text:-moz-placeholder {
    font-family: 'BPG Mrgvlovani', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #C7D0FE;
    letter-spacing: 0px;
}

.header-left .search .search-text::-moz-placeholder {
    font-family: 'myFBPG Mrgvlovaniont', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #C7D0FE;
    letter-spacing: 0px;
}
.header-left .search .search-button{
    display: block;
    position: absolute;
    float: right;
    background: transparent url(../img/search.png) 0% 0% no-repeat padding-box;
    z-index: 1;
    right: 16px;
    top: 14px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.header-right {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 365px;
    justify-content: flex-end;
    padding-right: 45px;
}
.header-right .profile{
    width: 175px;
    height: 45px;
    border: 2px solid #383B64;
    border-radius: 27px;
    float: right;
    cursor: pointer;
    margin-top: 10px;
}
.header-right .profile .user{
    position: relative;
}
.header-right .profile .user img{
    width: 29px;
    height: 29px;
    margin-left: 9px;
    margin-top: 8px;
    display: block;
    float: left;
    border-radius: 50%;
}
.header-right .profile .user img.reg-icon{
    width: 20px;
    height: 16px;
    margin-top: 15px;
    margin-left: 20px;
    border-radius: 0px;
}
.header-right .profile .user span{
    letter-spacing: 0px;
    color: #C7D0FE;
    font-size: 12px;
    display: block;
    float: left;
    padding-top: 15px;
    padding-left: 10px;
}
.header-right .notifications{
    width: 44px;
    height: 44px;
    border: 2px solid #383B64;
    border-radius: 50%;
    float: right;
    background: url(../img/bell.png) no-repeat center center;
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    margin-left: 10px;
}
.header-right .notifications .new-message{
    position: absolute;
    background-color: #EE2D87;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 24px;
    top: 14px;
}
.header-right .header-menu{
    width: 44px;
    height: 44px;
    border: 2px solid #383B64;
    border-radius: 50%;
    float: right;
    background: url(../img/menu.png) no-repeat center center;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
    margin-top: 10px;
}
.header-right .header-menu:hover,.header-right .header-menu.open{
    background: url(../img/menu-active.png) no-repeat center center;
}
.header-right .notifications:hover{
    background: url(../img/bell_active.png) no-repeat center center;
}
.header-right .profile:hover span{
    color:#fff;
}
.header-right .header-menu:hover,.header-right .notifications:hover,.header-right .profile:hover{
    background-color: var(--hover-bg-color);
    border: 2px solid var(--hover-bg-color);
    transition: 0.4s;
}
