.aside {
  min-width: 300px;
  width: 15%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #234A66;
  font-family: Helvetica, Arial, sans-serif;
  border-right: 1px solid #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 2000;
  width: 0px;
  min-width: 0px;
  overflow: hidden;
  transition: 0.35s width ease, 0.35s min-width ease;
}

.aside .aside-header {
  background-color: #234A66;
  padding: 15px 20px;
  border-bottom: 3px solid #2B526E;
  font-size: 1.2em;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.aside .aside-header .close {
  float: right;
  cursor: pointer;
}

.aside .aside-contents {
    padding: 0.5em;
    padding-bottom: 1em;
    overflow-y: auto;
    height: 90vh;
    color: #fff;
}

.aside.in {
  width: 15%;
  min-width: 350px;
}

.aside-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
  transition: 0.2s opacity ease;
  opacity: 0;
  display: none;
}

.aside-backdrop.in {
  display: block;
  opacity: 0.5;
}

.single_support{
    background-color: #279BE9;
    padding: 10px 15px;
    margin: 5px 0px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
}
.mbs-25{
    margin-bottom: 25px;
}
