/*!
 * Bootstrap Drawer v1.0.0 (http://iqbalfn.com/bootstrap-drawer)
 * Copyright 2011-2016 Iqbal Fauzi.
 * Licensed under MIT (https://github.com/iqbalfn/bootstrap-drawer/blob/master/LICENSE)
 */
.drawer-open {
  overflow: hidden;
}
.drawer {
  position: fixed;
  left: -280px;
  top: 0;
  height: 100%;
  width: 100vw;
  max-width: 450px;
  transition: all .3s ease;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  z-index: 105000;
  visibility: hidden;
}

@media(max-width:1091px) {
  .drawer {
    max-width:100%;
  }
}

.drawer .drawer-dialog::-webkit-scrollbar {
  display: none;
}

.drawer.active {
  left: 0;
  visibility: visible;
}
.drawer .drawer-dialog {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-right: 1px solid #999;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  overflow: auto;
}
.drawer[data-placement=right] {
  left: auto;
  right: -280px;
}
.drawer[data-placement=right].active {
  left: auto;
  right: 0;
}
.drawer[data-placement=right] .drawer-dialog {
  border: 0 none;
  border-left: 1px solid #999;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.drawer .list-group {
  border-radius: 0;
  margin-bottom: 0;
}
.drawer .list-group .list-group-item {
  border-radius: 0;
  border-right: 0 none;
  border-left: 0 none;
}
.drawer .list-group .list-group-item:first-child {
  border-top: 0 none;
}
.drawer .list-group .list-group-item:last-child {
  border-bottom: 0 none;
}
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  background: rgba(0, 0, 0, 0.5);
}
.drawer-backdrop.active {
  visibility: visible;
  opacity: 1;
}
.drawer-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
.drawer-header,
.drawer-footer {
  padding: 15px;
}
.drawer-body form {
  padding: 8px 10px;
}
.drawer-header {
  border-bottom: 1px solid #e5e5e5;
}
.drawer-header img {
  width: 70%;
}
.drawer-header .logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header .logo .close-btn {
  font-size: 18px;
  color: #141F35;
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid #141F35;
}
.drawer-footer {
  border-top: 1px solid #e5e5e5;
}

.drawer-group {
  background-color: #F1F1F1;
  padding: 0px 0px;
}
.drawer-group .drawer-links .header {
  color: #c7060c;
  margin-bottom: 10px;
  font-size:16px;
  padding: 8px 16px;
  background: #eee;
  font-weight: bold;
}
.drawer-group .drawer-links .multiple-menu ul{
  background: transparent !important;
}
.drawer-group .drawer-links ul {
  list-style: none;
  padding: 0;
}
.drawer-group .drawer-links ul li {
  gap:5px 5px;
  margin:5px;
}
.drawer-group .drawer-links ul li a {
  display: flex;
  color: #000;
  line-height:1.5;
  text-decoration: none;
  font-size:13px;
  font-weight: bold;
  padding: 8px 10px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.05);
}
.drawer-group .drawer-links .row {
  padding: 8px 16px;
  margin:10px;
}
.drawer-group .drawer-links .row .link {
  color: #000;
  line-height:1.5;
  text-decoration: none;
  font-size:13px;
  font-weight: bold;
  padding: 8px 10px;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.05);
}
.drawer-group .drawer-links ul li a:hover {
  text-decoration: underline;
}
