#drawer {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  z-index: 9999;
}

#drawer .drawer-mark {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: ease-out opacity 0.3s;
  display: none;
}
#drawer .drawer-mark.in {
  display: block;
  opacity: 1;
}

#drawer .drawer-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 500px;
  height: 100%;
  border: 0.0625rem solid #dee2e6;
  box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.2);
  z-index: 2;
  background-color: #fff;
  box-sizing: border-box;
  right: -540px;
  transition: right ease-in-out 0.3s;
}

#drawer .drawer-content.in {
  right: 0;
}

#drawer .drawer-content-close {
  position: absolute;
  top: 0.625rem;
  right: 100%;
  margin-right: 0.625rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
}
.drawer-content-close svg {
  width: 30px;
  height: 30px;
  fill: rgba(255, 255, 255, 0.8);
  top: 0.125em;
  position: relative;
}
#drawer .drawer-content-header {
  padding: 0.9375rem;
  background-color: #f9f9f9;
  border-bottom: 0.0625rem solid #edeff1;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 1rem;
  color: #414c52;
}

#drawer .drawer-content-body {
  padding: 0.9375rem;
  flex-basis: 0;
  flex-grow: 1;
  overflow: auto;
}

.sosCall-{
  display: none;
}