
/* Tutorial CSS */
.tutorial-overlay-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.tutorial-overlay-clear-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: none;
  z-index: 10002;
}

.tutorial-guide {
  position: absolute;
  width: 300px;
  border-radius: 0;
  box-shadow: 3px 3px 5px #808080;
  z-index: 10003;
}

.tutorial-guide-arrow {
  position: absolute;
}

.tutorial-guide-arrow::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0px;
  border-bottom: 15px solid #f5f5f5;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.tutorial-guide .panel-heading {
  font-size: 18px;
  font-weight: bold;
}


.tutorial-guide .panel-body {
  min-height: 100px;
}

.tutorial-selected-item {
  z-index: 10001 !important;
  box-shadow: 0 0 5px 3px #FFFFFF !important;
}

.tutorial-selected-item-force-position {
  position: relative;
}

.tutorial-selected-item-force-background {
  background: #FFFFFF;
}

.tutorial-focus-item {
  position: absolute;
  box-shadow: 0 0 5px 3px #A7EEFF;
  z-index: 10003;
}


.btn-collab {
  background: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
}

.btn-collab-primary {
  background: none;
  color: #0070A4;
  border: none;
  border-radius: 0;
}

.btn-collab-primary:hover {
  color: #23527C;
}

.btn-collab-primary:active,
.btn-collab-primary:focus {
  box-shadow: none !important;
}

.btn-collab-dark {
  background: none;
  color: #3C5C72;
  border: none;
  border-radius: 0;
}

.btn-collab-dark:hover {
  color: #0070A4;
}

.btn-collab-danger {
  background: none;
  color: #A92429;
  border: none;
  border-radius: 0;
}

.btn-collab-danger:hover {
  color: #871D21;
}

.btn-collab-danger:active,
.btn-collab-danger:focus {
  box-shadow: none !important;
}

.btn-collab-new-item {
  padding: 5px 10px;
  background: #0070A4;
  color: #FFFFFF;
  font-size: 16px;
  border-radius: 0;
}

.btn-collab-new-item:hover,
.btn-collab-new-item:active,
.btn-collab-new-item:focus {
  background: #23527C;
  color: #FFFFFF;
}

.btn-collab-gray {
  padding: 5px 10px;
  background: #808080;
  color: #FFFFFF;
  font-size: 16px;
  border-radius: 0;
}

.btn-collab-gray:hover,
.btn-collab-gray:active,
.btn-collab-gray:focus {
  background: #777777;
  color: #FFFFFF;
}

.btn-collab-access {
  background: none;
  color: #7F95A8;
  border: none;
  border-bottom: solid 3px transparent;
  border-radius: 0;
}

.btn-collab-access:hover {
  color: #7F95A8;
  border-bottom: solid 3px #7F95A8;
}

.btn-collab-access:active,
.btn-collab-access:focus {
  box-shadow: none !important;
}

.btn-collab-access.selected {
  background: none;
  color: #0070A4;
  border: none;
  border-bottom: solid 3px;
  border-radius: 0;
}

.btn-collab-access.selected:hover {
  color: #23527C;
  border-bottom: solid 3px #23527C;
}

.rotateArrowDown {
  transform: rotate(180deg);
  -ms-transform:rotate(180deg); /* IE 9 */
  -webkit-transform:rotate(180deg); /* Safari and Chrome */
}