.site-wrap {
    width:1360px;
    margin:0 auto;
}
.top-header {
    float:left;
    width:100%;
    background: #F5F5F5;
    padding:10px 0px;
    box-sizing:border-box;
}
.top-header-info {
    float:left;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.left-logos {
    display:flex;
    gap:10px;
    align-items:center;
}
.logo {
    float:left;
    width:80px;
}
.logo img {
    float:left;
    width:100%;
}
.is-hover {
    display:none;
}
.logo:hover .no-hover {
    display:none;
}
.logo:hover .is-hover {
    display:block;
}
.right-social-icons {
    display:flex;
    gap:10px;
}
.middle-header {
    float:left;
    width:100%;
    
}
.middle-header-info {
    float:left;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin:20px 0px;
}
.left-middle-header {
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:20px;
}
.big-play-btn {
    display:flex;
    flex-direction:row;
    background: #F5F5F5;
    border-radius:100px;
    padding:10px;
    gap: 50px;
    box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.15);

}
.left-btn-part {
    display:flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.left-btn-part .img img {
    width:92px;
    height: 92px;
    border-radius:100%;
    object-fit:cover;
}
.info-song {
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 340px;
}
.info-song .song,
.info-song .singer,
.info-song .more-info {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.info-song .song {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 800;
    color:#1D1929;
}
.info-song .singer {
    font-size:16px;
    font-weight: 600;
    text-transform: uppercase;
    color:#1D1929;
}
.info-song .more-info {
    color:#A6A6A6;
    font-size:16px;
    font-weight: 400;
}
.right-btn-part {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.now-go {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.now-go .live {
    color:#1D1929;
    font-weight: 700;
    font-size:12px;
    text-transform: uppercase;
    padding-left:15px;
    box-sizing:border-box;
    position:relative;
}
.now-go .live:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: url(../img/live.svg) no-repeat center;
    background-size: cover;
}
.now-go .name {
    font-size:28px;
    font-weight: 700;
    color:#1D1929;
}
.now-go .hour {
    font-size:16px;
    font-weight: 400;
}
.bottom-red-header {
    float:left;
    width:100%;
    background: url("../img/top gradient_1920.png") no-repeat center;
    min-height: 320px;
    padding-top:30px;
    box-sizing:border-box;
}
.red-header {
    float:left;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.red-header .left-links {
    display:flex;
    gap:1px;
}
.red-header .left-links .header-link {
    color:#fff;
    font-size:16px;
    text-transform: uppercase;
    font-weight: bold;
    padding:8px 12px;
    box-sizing:border-box;
    border-radius:50px;
}
.red-header .left-links .header-link span {
    position:relative;
}
.red-header .left-links .header-link span:before {
    position:absolute;
    content:"";
    left:0;
    bottom:-3px;
    height: 3px;
    background: #fff;
    width:0;
    
}
.red-header .left-links .header-link.active span:before {
    width:50%;
}
.red-header .left-links .header-link:hover {
    border-radius: 50px;
    background: #D72416;

}
.search-wrap {
    display: flex;
    float: left;
    height: 50px;
}
.search-wrap .search {
    float:left;
    position: relative;
}
.search-wrap .search input {
    width:365px;
    height: 40px;
    border:1px solid #fff;
    border-radius:50px;
    background: none;
    padding: 0 44px 0 16px;
    box-sizing:border-box;
    color:#fff;
    font-size: 14px;
    outline: none;
    transition: background .2s ease, border-color .2s ease;
}
.search-wrap .search input::placeholder         { color: rgba(255,255,255,0.78); opacity: 1; }
.search-wrap .search input::-webkit-input-placeholder { color: rgba(255,255,255,0.78); }
.search-wrap .search input::-moz-placeholder    { color: rgba(255,255,255,0.78); opacity: 1; }
.search-wrap .search input:-ms-input-placeholder{ color: rgba(255,255,255,0.78); }
.search-wrap .search input:focus {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.search-btn {
    position:absolute;
    right:6px;
    top:4px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.12);
    border:none;
    border-radius: 50%;
    cursor:pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s ease, transform .15s ease;
    z-index: 2;
}
.search-btn:hover  { background: rgba(255,255,255,0.25); }
.search-btn:active { transform: scale(0.94); }
.search-btn img    { width: 14px; height: 14px; }

.soc-icon:hover .no-hover{
    display:none;
}
.soc-icon:hover .is-hover{
    display:block;
}
.mobile-header-wrap {
    display:none;
}