.header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.header-top{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #003E79;
    height: 40px;
}

.header-top-content{
    display: flex;
    align-items: center;
}

.header-top-left{
    font-weight: bold;
}

.header-top-right{
    display: flex;
    align-items: center;
    margin-left: auto;
}

.header-icon-share{
    width: 23px;
    padding: 3px;
    margin-right: 20px;
    cursor: pointer;
}

.header-icon-search{
    width: 23px;
    padding: 3px;
    cursor: pointer;
}

.header-icon-share > img,
.header-icon-search > img{
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.header-bottom{
    display: flex;
    justify-content: center;
}

.header-bottom-content{

}

.header-bottom-top{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.header-logo{

}

.header-logo > img{
    display: block;
}

.header-info{
    display: flex;
    align-items: center;
    padding: 10px 0;
    margin-left: auto;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
}

.header-info-item{
    min-width: 115px;
    max-width: 140px;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
    border-right: 1px solid #E5E5E5;
}

.header-info-item:last-child{
    border-right: none;
}

.header-info-item-title{
    font-size: 14px;
    color: #A0A0A0;
    text-align: center;
    margin-bottom: 4px;
}

.header-info-item-value{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.header-bottom-bottom{
    display: flex;
    justify-content: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #E5E5E5;
}

.header-categories{
    display: flex;
    align-items: center;
}

.header-categories-link{
    font-size: 18px;
    font-weight: bold;
    padding: 3px 5px;
    margin-right: 14px;
}

.header-categories-link:last-child{
    margin-right: 0;
}

.header-categories-link:hover{
    text-decoration: underline;
}


