.menu { height: 100vh; width: 370px; background: green; } .basket { height: 100vh; width: 370px; background: red; } .block_mini { margin-top: 50px; margin-left: 85px; width: 200px; height: 50px; background: black; } .btn { display: flex; } .btn_ { background: white; width: 150px; height: 40px; cursor: pointer; display: flex; justify-content: center; align-items: center; border: 1px solid gray; } [type="radio"], .menu, .basket { display: none; } #menu:checked ~ .menu, #basket:checked ~ .basket{ display: block; }