
.container-fluid {
    margin: 0;
    padding: 0;
    outline: 0
}

html, body {
    font-family: 'Roboto', sans-serif;
    background: #000;
    height: 100%;
    overflow: hidden;
}

.btn {
    padding: .375rem !important;
    color: #f1f1f1;
    font-size: 26px;
    background-color: transparent;
    text-transform: lowercase;
}

.btn:hover, .btn:focus {
    color: #fff;
    text-decoration: none;
    box-shadow: none;
}

.stronger {
    color: #8bc34a !important;
    font-weight: 700
}
.mystronger {
 color: #8bc34a !important;
    font-weight: bold;
	margin-left: 3em;
	white-space: nowrap; /* Запрещаем перенос строк */
    overflow: hidden; /* Обрезаем все, что не помещается в область */
    text-overflow: ellipsis; /* Добавляем многоточие */
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    white-space: nowrap;
    z-index: 999999;
    top: 0;
    left: 0;
    /* background-color: rgba(27,80,119,0.3); */
    /* background-color: rgba(0,35,219,0.9); */
	background-color: rgba(0,0,0,0.9);
    border-right: 1px solid #000;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 0.5s;
    padding-top: 30px;
    font-size: 18px;
  }
  
  /* width */
  ::-webkit-scrollbar {
      width: 7px;
    }
    
    /* Track */
    ::-webkit-scrollbar-track {
      background: rgba(0, 0, 0, 0);
      opacity: 0; 
    }
     
    /* Handle */
    ::-webkit-scrollbar-thumb {
      background: rgba(136, 136, 136, 0.20);
      opacity: 0.20; 
    }
    
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
      background:rgba(241, 241, 241, 0.20);
      opacity: 0.20; 
    }
  
  .sidebar a {
      padding: 10px 20px;
      text-decoration: none;
      font-size: 25px;
      color: rgba(255, 255, 255, 1);
      display: block;
      opacity: 0;
      /* transition: 0.5s; */
  }
  
  .sidebar a:hover {
    color: rgba(255,255,255, 1);
  }
  
  .sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 20px;
    margin-left: 50px;
    cursor: pointer;
    user-select: none;
  }
  
  .openbtn {
    font-size: 46px;
    cursor: pointer;
    background-color: transparent;
    color: #000;
    padding: 5px 15px;
    outline: none;
    box-shadow: none;
    border: none;
    position: fixed;
    z-index: 999999;
    opacity: 1;
    user-select: none;
  }
  
 .openbtn:hover {
    background-color: transparent;
 }
  
 button:focus {
      outline: none;
 }
  
  #main {
    transition: margin-left .5s;
    height: 100%;
    width: 100%;
    /* padding: 16px; */
    #position: fixed;
    background-color: #fff;
    z-index: 0;
 }

 .bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    z-index: 9999
}
  
  
 @media only screen and (max-width:1536px) {
      .sidebar {
          font-size: .85rem;
    }
 }
  
 @media only screen and (max-width: 1366px) {
      .sidebar {
          font-size: .85rem;
    }
 }

 /* Accordion */

 .accordion-body {
    color: #fff;
    padding-left: 2px;
    white-space: normal !important;
	
}

 .accordion-item, .accordion-button {
    background-color: transparent !important;
    text-decoration: none !important;
}

.accordion-button::before{
    flex-shrink:0;
    width:1.25rem;
    height:1.25rem;
    margin-left: 10px;    
    margin-right: 10px;    
    content:"";
    background-image: url(../images/arrow-verde.png);
    background-repeat:no-repeat;
    background-size:1.25rem;
    transition:transform .2s ease-in-out;
    /* background-color:lightblue; */
}

.accordion-button:not(.collapsed)::before {
    background-image: url(../images/arrow-verde.png);
    transform: rotate(-180deg);
}
.accordion-button:not(.collapsed)::after {
    background-image: url(../images/arrow-verde.png);
    transform: rotate(-180deg);
}

.accordion-button:not(.collapsed) {
    color: #fff;    
}

.accordion-button {
    transition: ease .6s;
}

button > span {
    padding: 0 6px 0 0px;
}
 
.accordion {
    padding-top: 15px;
}

