@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&family=Roboto&display=swap');
body {
	background: #464c4f;
	overflow-x: hidden;
  font-family: inter;
}
p {
  font-family: roboto;
}
.margin {
	margin-top: 2vh;
}
.available {
  display: none !important;
}
.custom-sidebar::-webkit-scrollbar {
  width: 0;
}
.notice {
  color: red;
  text-align: center;
}
.custom-sidebar {
  height: 100%;
  overflow-y: auto;
}
@media (min-width: 767px) {
  .main_content {
    transform: translateX(200px);
  }
  .jumbotron {
    width: calc(100% - 200px);
  }
  .block_transform {
    transform: translateX(-200px);
  }
}
.logo {
  
}
.copyright {
	position: sticky;
  text-align: right;
  color: lightgray;
  font-size: 100%;
  font-family: inter;
}
@media (max-width: 767px) {
  .button_margin {
    margin-top: 10px;
  }
}
.button_styles {
  font-size: 400%;
}
@media (min-width: 767px) {
  .button_styles {
    padding-top: 20vh;
    padding-bottom: 20vh;
  }
}
.content_type {
  font-size: 60%;
  float: right;
  position: relative;
  top: 4px;
}

.custom-sidebar {
  height: 100vh;
  width: 200px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 20px;
  transition: 0.3s;
}

.custom-sidebar.open {
  width: 100%;
}

.custom-sidebar .toggle-link {
  display: none;
}

.custom-sidebar .sidebar-content {
  display: block;
}

.intro-page-sidebar {
  padding-left: 16px !important;
}

.custom-sidebar .sidebar-content .custom-sidebar-link, .custom-dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.custom-sidebar .sidebar-content .custom-sidebar-link:hover, .custom-dropdown-btn:hover {
  color: #f1f1f1;
}

.custom-sidebar .sidebar-content .dropdown-container {
  display: none;
  background-color: #262626;
  padding-left: 8px;
}

.custom-sidebar .sidebar-content .dropdown-container a {
  padding-left: 24px;
  color: #818181;
}

.custom-sidebar .sidebar-content .dropdown-container a:hover {
  color: #f1f1f1;
}

.custom-sidebar .sidebar-content .active {
  background-color: green;
  color: white;
}

.custom-caret-down {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .custom-sidebar .sidebar-content .custom-caret-down {
    float: right;
    padding-right: 8px;
  }
  .custom-caret-down {
    margin-right: 40px;
  }
  .mini-caret-down {
    margin-right: 90px;
  }
}

.custom-content {
  margin-left: 200px;
  font-size: 20px;
  padding: 0px 10px;
}

.toggle-link {
  position: absolute;
  border-radius: 5px;
  top: 3px;
  margin-top: -15.75px;
  right: 10px;
  padding: 5px;
  background-color: #111;
  color: #f1f1f1;
  text-decoration: none;
  font-size: 18px;
  z-index: 2;
  display: none;
  cursor: pointer;
}

.toggle-link:hover {
  color: #ccc;
}

@media screen and (max-width: 767px) {
  .custom-sidebar {
    width: 0;
    position: fixed;
  }
  .custom-sidebar.open {
    width: 100%;
  }

  .custom-sidebar .toggle-link {
    display: block;
  }

  .custom-sidebar .sidebar-content {
    display: block;
  }

  .custom-content {
    margin-left: 0;
  }
  .toggle-link {
    top: 19px;
    display: block;
  }
  .navbar_modifications {
   margin-right: 35px; 
 }