.radio-block {
  margin-top: 9px;
    display: flex;
    justify-content: center;
    align-items: center;  
    background-image: url('https://www.armyinform.com.ua/wp-content/themes/iamo/assets/img/onair3.jpg');
    padding: 20px 10px; 
    border-radius: 8px;
    box-shadow: 0 0 12px 0 #c1c0c0;
    background-size: cover;
  }
  
  .radio-block__logo {
    flex-shrink: 0;
     height: 60px;
    width: 60px;
    display: flex;
    margin-right: 20px;
  }
  
  .radio-block__img {
    height: 100%;
    width: 100%;
  }
  
  
  .radio-block__title {  
    font-size: 16px;
    margin-right: 20px;
    color: white;  
    text-align: center;
  }
  
  .radio-block__title-line1 {  
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .radio-block__title-line2 {
    font-weight: bold; 
    font-size: 20px;
  }
  
  .header__radio-button {
    flex-shrink: 0;
    position: relative;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid currentColor;
    background-color: #fff;
    outline: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #949494;;
    transition-property: color, border-color;
    transition-duration: 0.3s;
  }
  
  .header__radio-button:hover,
  .header__radio-button:focus {
    color: #6b6b6b;;
  }
  
  .header__radio-button-img {
    position: absolute;
    width: 12px;
    fill: currentColor;
    transition-property: visibility, opacity;
    transition-duration: 0.3s;
  }
  
  .header__radio-button-img--play {
    height: 40px;
  }
  
  .header__radio-button--active .header__radio-button-img--play {
    visibility: hidden;
    opacity: 0;
  }
  
  .header__radio-button-img--pause {
    visibility: hidden;
    opacity: 0;
    height: 46px;
  }
  
  .header__radio-button--active .header__radio-button-img--pause {
    visibility: visible;
    opacity: 1;
  }