/* Оформление панели */
#side-checkbox {
    display: none;
}
.side-panel {
    position: fixed;
    z-index: 99999;
    top: 0px;
    left: 0px;
    background: #ffffff;
    transition: all 0.5s;   
    width: 205px;
    height: 100vh;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    color: #FFF;
    padding: 40px 5px;
}


@media (max-width: 1400px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel {display: none;} /* боковая колонка исчезает */
}

@media (max-width: 1600px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel {width: 230px;} /* боковая колонка исчезает */
}

@media (max-width: 1450px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel {width: 175px;} /* боковая колонка исчезает */
}


.side-title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #BFE2FF;
}



/* Оформление кнопки на странице */
.side-button-1-wr {
    text-align: center; /* Контейнер для кнопки, чтобы было удобнее ее разместить */
}
.side-button-1 .side-b {
    margin: 10px;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding: 12px 30px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    font-family: 'Roboto Condensed', Тahoma, sans-serif;
    background: #337AB7;
    cursor: pointer; 
    border: 2px solid #BFE2FF;
}
.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;
    left: 50%;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.side-button-1 .side-open:after,
.side-button-1 .side-open:before {
    background: green;
}
.side-button-1 .side-close:after,
.side-button-1 .side-close:before {
    background: red;
}
.side-button-1 .side-b:before {
    top: -6px;
}
.side-button-1 .side-b:hover:after,
.side-button-1 .side-b:hover:before {
    width: 100%;
    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: -360px;
}


/* Оформление кнопки на панеле */
.side-button-2 {
    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: #000000;
}












/* Оформление панели-right */
#side-checkbox-right {
    display: none;
}
.side-panel-right {
   position:fixed;
   right:0;
   z-index: 99999;
   top: 0px;
   background: #ffffff;
   transition: all 0.5s;   
   width: 205px;
   height: 100vh;
   box-shadow: 10px 0 20px 15px rgba(0,0,0,0.1);
   color: #FFF;
   padding: 40px 5px;
}


@media (max-width: 1400px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel-right {display: none;} /* боковая колонка исчезает */
}


@media (max-width: 1600px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel-right {width: 230px;} 
}

@media (max-width: 1460px) { /* если максимальное разрешение экрана составит 469 пикселей */
.side-panel-right {width: 175px;} 
}




.side-title-right {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #BFE2FF;
}






/* Оформление кнопки на странице */
.side-button-1-wr-right {
    text-align: center; /* Контейнер для кнопки, чтобы было удобнее ее разместить */
}
.side-button-1-right .side-b-right {
    margin: 10px;
    text-decoration: none;
    position: relative;
    font-size: 20px;
    line-height: 20px;
    padding: 12px 30px;
    color: #FFF;
    font-weight: bold;
    text-transform: uppercase; 
    font-family: 'Roboto Condensed', Тahoma, sans-serif;
    background: #337AB7;
    cursor: pointer; 
    border: 2px solid #BFE2FF;
}
.side-button-1-right .side-b-right:hover,
.side-button-1-right .side-b-right:active,
.side-button-1-right .side-b-right:focus {
    color: #FFF;
}
.side-button-1-right .side-b-right:after,
.side-button-1-right .side-b-right:before {
    position: absolute;
    height: 4px;
    left: 50%;
    bottom: -6px;
    content: "";
    transition: all 280ms ease-in-out;
    width: 0;
}
.side-button-1-right .side-open-right:after,
.side-button-1-right .side-open-right:before {
    background: green;
}
.side-button-1-right .side-close-right:after,
.side-button-1-right .side-close-right:before {
    background: red;
}
.side-button-1-right .side-b-right:before {
    top: -6px;
}
.side-button-1-right .side-b-right:hover:after,
.side-button-1-right .side-b-right:hover-right:before {
    width: 100%;
    left: 0;
}


/* Переключатели кнопки 1 */
.side-button-1-right .side-close-right {
    display: none;
}
#side-checkbox-right:checked + .side-panel-right + .side-button-1-wr-right .side-button-1-right .side-open-right {
    display: none;
}
#side-checkbox-right:checked + .side-panel-right + .side-button-1-wr-right .side-button-1-right .side-close-right {
    display: block;
}
#side-checkbox-right:checked + .side-panel-right {
    left: -360px;
}


/* Оформление кнопки на панеле */
.side-button-2-right {
    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-right:hover {
    transform: rotate(45deg) scale(1.1);    
    color: #000000;
}







