/* Оформление панели */
#side-checkbox {
    display: none;
}
.side-panel {
    position: fixed;
    z-index: 1000;
    top: 75px;
    left: -600px;
    background: #FFF;
    transition: all 0.5s;   
    width: 600px;
    height: 70vh;
    box-shadow: 10px 0 20px rgba(0,0,0,0.4);
    padding: 40px 20px;
    border-radius: 10px;
    overflow-y: scroll;
}

.side-panel-2 {
    position: fixed;
    z-index: 1000;
    top: 75px;
    right: -600px;
    background: #FFF;
    transition: all 0.5s;   
    width: 600px;
    height: 80vh;
    box-shadow: 10px 0 20px rgba(0,0,0,0.4);
    padding: 3px 10px;
    border-radius: 10px;
    overflow-y: scroll;
}

.side-title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 3px;
    border-bottom: 2px solid #336f14;
    text-align: center;
}
/* Оформление кнопки на странице */
.side-button-1-wr {
    text-align: center; /* Контейнер для кнопки, чтобы было удобнее ее разместить */
    position: absolute;
    right: -100px;
    top: -20px;
}
.side-button-2-wr {
    text-align: center; /* Контейнер для кнопки, чтобы было удобнее ее разместить */
    position: absolute;
    left: -65px;
    top: -20px;
}
.side-button-1 {
    display: inline-block;
    width: 100px;
}
.side-button-1 .side-b {
    margin: 5px;
    text-decoration: none;
    position: fixed;
    padding: 10px 10px;
    background: #FFF;
    cursor: pointer; 
    border: 2px solid #336f14;
    border-radius: 20px;
}
.side-button-1 .side-b:hover,
.side-button-1 .side-b:active,
.side-button-1 .side-b:focus {
    color: #FFF;
}
.side-button-1 .side-b:after,
.side-button-1 .side-b:before {
    position: absolute;
    height: 4px;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
} 
.side-button-1 .side-b:hover:after,
.side-button-1 .side-b:hover:before {
    left: 0;
}
 /* Переключатели кнопки 1 */
.side-button-1 .side-close {
    display: none;
}
#side-checkbox:checked + .side-panel + .side-button-1-wr .side-button-1 .side-open {
    display: none;
}
#side-checkbox:checked + .side-panel + .side-button-1-wr .side-button-1 .side-close {
    display: block;
}
#side-checkbox:checked + .side-panel {
    left: 20px;
}
/* Оформление кнопки на панеле */
.side-button-2 {
    width: 200px;
    font-size: 30px;
    border-radius: 20px;
    position: absolute;
    z-index: 1;
    top: 8px;
    right: 8px;
    cursor: pointer;
    transform: rotate(45deg);
    color: #BFE2FF;    
    transition: all 280ms ease-in-out;    
}
.side-button-2:hover {
    transform: rotate(45deg) scale(1.1);    
    color: #FFF;
}



.side-button-3 {
    display: inline-block;
    width: 100px;
}
.side-button-3 .side-b {
    margin: 5px;
    text-decoration: none;
    position: fixed;
    padding: 10px 10px;
    background: #FFF;
    cursor: pointer; 
    border: 2px solid #336f14;
    border-radius: 20px;
}
.side-button-3 .side-b:hover,
.side-button-3 .side-b:active,
.side-button-3 .side-b:focus {
    color: #FFF;
}
.side-button-3 .side-b:after,
.side-button-3 .side-b:before {
    position: absolute;
    height: 4px;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
} 
.side-button-3 .side-b:hover:after,
.side-button-3 .side-b:hover:before {
    right: 0;
}
 /* Переключатели кнопки 1 */
.side-button-3 .side-close {
    display: none;
}
#side-checkbox2 {
    display: none;
}
/* #side-checkbox2:checked + .side-panel-2 + .side-button-1-wr .side-button-3 .side-close { */
    /* display: block; */
/* } */
/* #side-checkbox2:checked + .side-panel + .side-button-1-wr .side-button-3 .side-open { */
    /* display: none; */
/* } */
/* #side-checkbox2:checked + .side-panel + .side-button-1-wr .side-button-3 .side-close { */
    /* display: block; */
/* } */
#side-checkbox2:checked + .side-panel-2 {
    right: 20px;
}


table {
  height: 100%;
  width: 100%;
  border-collapse:separate; 
  border-spacing: 0 1em;
  table-layout:fixed;
}