.accordion {
    background-color: #2980B9;
    color: #fff;
    cursor: pointer;
    padding: 18px;
    width: 67%;
    text-align: left;
    border: ridge;
	border-width: 1px;
    outline: none;
    transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #2980B9;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: #004080;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #fff;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\25BA"; /* Unicode character \2796 - for "heavy minus" sign (-) */
}

.div-border-inside {	/* 15.06.25 */
  box-sizing: border-box;
  -webkit-box-sizing: border-box; /* для Safari */
  -moz-box-sizing: border-box; /* Для Firefox */
  box-sizing: border-box;
  border-radius: 12px;  
  width: 360px;
  border: 1px solid white;
  padding: 10px;
}

.div-border-inside:hover {
  box-shadow: inset 0 0 0 5px #2980B9;
  transition: box-shadow 0.3s ease;
}

.liulol {
  list-style-type: disc;
}

.container {
  display: flex;
}

#block1 {
float: left;
display: block;
width: 860px;		/* blok1, blok2 - for 4:3 videos (~640x480) */
border: 1px solid white;
border-radius: 12px;
margin: 2px;
padding: 4px;
}

#block2 {
float: right;
display: block;
width: 200px;
border: 1px solid none; /* solid none or white */
border-radius: 12px;
margin: 2px;
padding: 4px;
}

#block3 {
float: left;
display: block;
width: 1074px;		/* blok3, blok4 - for format 16:9 (854x480) */
border: 1px solid white;
border-radius: 12px;
margin: 2px;
padding: 4px;
}

#block4 {
float: right;
display: block;
width: 200px;
border: 1px solid none; /* solid none or white */
border-radius: 12px;
margin: 2px;
padding: 4px;
}