.container {
    display: grid;
    width: inherit;
    text-align: left;
    gap: 5px;
    margin: auto;
    padding: 0 10px;
    grid-template-areas:
            "B B B B   С С C C   C C C C"
            "D D D D   D D D D   D D D D";
}

.box-1 {
    grid-area: B;
    padding-top:5px
}

.box-1 img{
    filter: grayscale(.3);
}

.box-2 {
    grid-area: C;
}


.box-2 p{
    font-size: 14px !important;
}

@media (max-width: 700px) {
    .container {
        grid-template-areas:
                "B B B B   B B B B   B B B B"
                "C C C C   C C C C   C C C C";
        gap: 0;        
    }

}

/*Episode Selector - BEGIN*/
 .select{
     font-size: 24px;
     padding: 5px 15px;

     width: 225px;
     cursor: pointer;
     box-shadow: 0 2px 0 #e7e7e7;
     border-radius: 2px;
 }

.select:focus{
    outline: none;
}

.radio{
    margin: 20px 0;    
    padding-right: 10px;
    width: fit-content;
    border-radius: 6px;
    border: 1px solid #dedede;
    
}

.radio label{
    color: #0c1115 !important;
    padding-right: 15px;
    font-size: 16px;
    font-family: inherit;
}

.radio legend{
    font-size: 12px;
    background: #fff;
    padding: 0 27px 0 5px;
}
/*
input[type='radio']:checked:after {
    width: 13px;
    height: 13px;
    border-radius: 15px;
    top: -4px; 
    left: 0px;
    position: relative;
    background-color: #b4b4b4;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #474747;
    
}
*/
input[type='radio'] {
    accent-color: currentcolor;
}
/*Episode Selector - END*/


/* Tooltip container - BEGIN*/
.tooltip {
    position: relative;
    display: inline-block;
    /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */    
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #424242;
    border-radius: 4px;
    width: 230px;
    bottom: 10px;
    left: 50%;
    margin-left: -115px; /* Use half of the width (120/2 = 60), to center the tooltip */    
    /*text-align: center;*/
    padding: 8px;
    opacity: 0;
    transition: opacity .3s;
    
    /* Position the tooltip text - see examples below! */
    position: absolute;
    z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #424242 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    opacity: 1;
}

/* Tooltip container - END*/