/*! sass-bem-constructor - version : 1.1.0 - 2016-08-18 */
#container[data-is-authenticated=true] {
  overflow: hidden;
}

#body[data-is-authenticated=true] {
  overflow: hidden;
}

.c-sb {
  position: absolute;
  top: 60px;
  right: 0;
  width: 40%;
  height: calc(100vh - 60px);
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px 0 #707070;
  border: 1px solid blue;
  border-radius: 10px 0 0 10px; /* top left, top right, bottom right, bottom left */
  z-index: 9999;
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .c-sb {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .c-sb {
    width: 60%;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .c-sb {
    width: 60%;
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 767px) {
  .c-sb {
    border-radius: 0;
    width: 100%;
    overflow-y: scroll;
  }
}
.c-sb__right {
  margin: 0 20px;
}

.c-sb__student {
  margin: 0 20px;
}
.c-sb__student ul li {
  margin-top: 10px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #2526A9;
}
.c-sb__student ul li:last-child {
  border-bottom: none;
}
.c-sb__student ul li:not(:first-child) .c-sb__btn {
  display: none;
}

.c-sb__header {
  display: flex;
  justify-content: space-between;
  align-content: space-around;
  padding-bottom: 10px;
  margin: 30px 15px 10px 15px;
  border-bottom: 2px solid #2526A9;
}
.c-sb__header--title {
  color: #2526A9;
  font-size: 32px;
  font-family: "suisseintl-light", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.c-sb__header--close {
  position: absolute;
  top: 20px;
  right: 10%;
  font-size: 42px;
  color: #2526A9;
  font-family: "suisseintl-light", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.c-sb__content {
  padding: 10px 0;
  margin-right: 10px;
}

.c-sb__avatar {
  float: left;
  margin: 20px 10px;
}
@media (max-width: 420px) {
  .c-sb__avatar {
    margin: 10px 10px 50px 10px;
  }
}
.c-sb__avatar img {
  width: 80px;
  height: 80px;
}
@media (max-width: 420px) {
  .c-sb__avatar img {
    width: 50px;
    height: 50px;
  }
}

.c-sb__username {
  font-size: 22px;
  font-family: "suisseintl-regular", Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: capitalize;
  line-height: 28.88px;
}

.c-sb__status {
  display: block;
  padding: 5px 0;
}
.c-sb__status--icon {
  float: left;
  margin-right: 10px;
  width: 18px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #000000;
  box-shadow: 0 0 0 1px #000000;
  padding-left: 1px;
}

.c-sb__status--text {
  color: #606060;
  font-size: 16px;
  font-family: "suisseintl-regular", Helvetica Neue, Helvetica, Arial, sans-serif;
}

.c-sb__details {
  color: #606060;
  font-size: 16px;
  font-family: "suisseintl-regular", Helvetica Neue, Helvetica, Arial, sans-serif;
}
@media (max-width: 350px) {
  .c-sb__details {
    font-size: 14px;
  }
}

.c-sb__btn {
  float: right;
  margin-right: 30px;
  margin-top: -40px;
}
.c-sb__btn span {
  width: 70px;
  outline: none;
  display: inline-block;
}
.c-sb__btn span:hover {
  outline: none;
}
.c-sb__btn span:focus {
  outline: none;
  box-shadow: 0 0 1px 1px rgb(77, 144, 254);
}
.c-sb__btn span button {
  background: transparent;
  padding: 0;
  border: none;
}
.c-sb__btn span button:hover, .c-sb__btn span button:focus {
  background: transparent;
  padding: 0;
  border: none;
}
.c-sb__btn span button i {
  font-size: 26px;
}
@media only screen and (max-width: 767px) {
  .c-sb__btn {
    margin-right: 45px;
    width: 20px;
  }
}
@media (max-width: 390px) {
  .c-sb__btn {
    float: none;
    margin-left: 80px;
    margin-top: 10px;
  }
}

.c-status-update {
  background-color: #FFFFFF;
  border: #FFFFFF;
  color: #FFFFFF;
  border-radius: 4px;
  display: flex;
  padding-right: 20px;
  margin-bottom: -20px;
}
.c-status-update__icon {
  background-color: #FFFFFF;
  border: 2px solid;
  border-radius: 4px;
  float: left;
  text-align: center;
  padding: 7px;
  width: 30px;
  margin-right: 50px;
  margin-top: 20px;
  font-size: 18px;
}
.c-status-update__icon i {
  color: #EB0000;
}
@media only screen and (max-width: 767px) {
  .c-status-update__icon {
    padding: 7px;
    width: 60px;
  }
}

.c-status-update__reasons {
  padding: 15px 0 15px 0;
  color: #EB0000;
}
.c-status-update__reasons li {
  font-family: "suisseintl-regular", Helvetica Neue, Helvetica, Arial, sans-serif;
  list-style: disc;
  list-style-position: inside;
  text-indent: -21px;
  margin-left: 10px;
  margin-bottom: 0;
  font-weight: 300;
  font-size: 16px;
}
.c-status-update__reasons li:only-child {
  padding-top: 7px;
}

.tooltip-wrapper .activateBtn[disabled=disabled] {
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
  background-color: transparent;
  opacity: 0.65;
}

.tooltip-wrapper.disabled {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.65;
}