body{
    background: rgb(245, 245, 245);
}
.fm{
    width: 1280px;
    margin: 0 auto;
    color: rgba(0, 0, 0, 0.85);

}
.fm-header{
    font-size: 35px;
    margin-top: 30px;
}

.fm-standart-window{
   width: 300px;
   height: 400px;
   margin-top: 20px;
   background: yellowgreen; 
}
.fm-standart-window:nth-child(1){
    margin-top: 30px;
}
.fm-left-block{
    float: left;
    width: calc(100% - 320px);
    
}
.fm-right-block{
    float: right;
    width: 300px;
}
.fm-blocks-wrapper{
    overflow: hidden;
}
.fm-play-but{
    height: 35px;
    cursor: pointer;
    transition: 0.2s;
    fill: #1b75bb;
}
.fm-play-but:hover{
    fill: #faaf41;
}
.fm-con{
    margin-top: 30px;
    overflow: hidden;
    width: 400px;
    background: white;
    padding: 20px;
    border-radius: 3px;
    box-shadow:  0px 2px 3px rgba(0, 0, 0, 0.08);
}
.fm-play-but-pause{
    display: none;
}
.fm-play-wrapper, .fm-time-wrapper{
    float: left;
}
.fm-volume-wrapper{
    float: right;
}
.fm-time-wrapper{
    line-height: 35px;
    margin-left: 15px;
}
.fm-volume-wrapper input{
    height: 35px;
    cursor: pointer;
    
}
.fm-volume-wrapper{
    overflow: hidden;
}
.fm-volume-wrapper svg{
    float: left;
    height: 35px;
    width: 25px;
    margin-right: 10px;
    fill: #1b75bb;
    transition: 0.2s;
}
.fm-volume-wrapper:hover svg{
    fill: #faaf41;
    fill: #1b75bb;
}
.fm-volume-wrapper input::-ms-track{
    width: 100%;
  cursor: pointer;
  background: transparent; /* Скрывает слайдер, чтобы можно было добавить собственные стили. */
  border-color: transparent;
  color: transparent;
}
.fm-menu{
    float: left;
    background: white;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 3px;
    box-shadow:  0px 2px 3px rgba(0, 0, 0, 0.08);
}
.fm-menu-main-item{
    font-weight: bold;
}
.fm-menu-item{
    padding-left: 10px;
    color: #1b75bb;
    cursor: pointer;
    transition: 0.2s;
}
.fm-menu-item:hover{
    color: #faaf41;
}
.item-active{
    color: #faaf41;
    cursor: pointer;
}
.fm-menu-main-item{
    margin-top: 5px;
    margin-bottom: 3px;
}
.fm-playlist{
    float: left;
    width: calc(100% - 232px);
    margin-left: 20px;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 0px;
    background: white;
    border-radius: 3px;
    padding-bottom: 30px;
}
.playlist-title{
    margin-top: 10px;
    padding: 0px 30px;
    line-height: 45px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1b75bb;
    
}
.playlist-table{
    border-spacing: 0px;

    width: 100%;
}
.playlist-table tr:nth-child(2n+1){
    background: #1b76bb09;
}
.playlist-table-time{
    font-size: 18px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 40px;
    text-align: center;
    color: #1b75bb;
    padding-left: 30px;
    
    box-sizing: border-box;
}
.playlist-table-time-active{
    color: #faaf41;
    font-weight: bold;
    font-size: 20px;
    border-left: 3px solid #1b75bb;
    padding-left: 27px;
}
.playlist-table-title{
    font-size: 18px;
    padding-left: 30px;
    
}
.playlist-table-age{
    width: 40px;
    text-align: right;
    color: rgb(190, 190, 190);
    padding-right: 30px;   
}

.program-slider-wrapper{
    width: 100%;
    height: 50px;
    margin-top: 5px;
    margin-bottom: 35px;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.program-slider-item{
    display: inline-block;
    width: 14.285%;
    text-align: center;
    height: 50px;
    line-height: 25px;
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
    color: #1b75bb;
    box-sizing: border-box;
}
.program-slider-item:nth-child(1){
    border-left: 0px solid #0a4775;
}

.program-slider-item:hover{

    color: #faaf41;
}
.program-slider{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    height: 60px;
    position: relative;
    font-size: 0px;
    background: #1b76bb09;
}
.program-slider-container{
    width: calc(100% - 60px);
    margin-left: 30px;
    
    
}
.program-slider-item-active{
    background: #1b75bb;
    color: white;
}
.program-slider-item-active:hover{
    background: #1b75bb;
    color: white;
}
.program-slider-arrow svg{
    width: 30px;
    height: 30px;
    fill: #1b75bb;
}

.program-slider-arrow{
    position: absolute;
    top: 15px;
    left: 5px;
    cursor: pointer;
}
.program-slider-arrow g{
    fill: #1b75bb;
    transition: 0.1s;
}
.program-slider-right-arrow{
    right: 5px;
    left: unset;
}
.program-slider-arrow:hover g{
 fill: #faaf41;
}