.snotifyToast {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.snotify-leftTop .fadeIn,
.snotify-leftCenter .fadeIn,
.snotify-leftBottom .fadeIn {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

.snotify-leftTop .fadeOut,
.snotify-leftCenter .fadeOut,
.snotify-leftBottom .fadeOut {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft; }

.snotify-rightTop .fadeIn,
.snotify-rightCenter .fadeIn,
.snotify-rightBottom .fadeIn {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight; }

.snotify-rightTop .fadeOut,
.snotify-rightCenter .fadeOut,
.snotify-rightBottom .fadeOut {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

.snotify-centerTop .fadeIn {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown; }

.snotify-centerTop .fadeOut {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp; }

.snotify-centerCenter .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn; }

.snotify-centerCenter .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

.snotify-centerBottom .fadeIn {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp; }

.snotify-centerBottom .fadeOut {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown; }

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scaleX(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) scaleX(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) scaleX(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) scaleX(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scaleY(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0) scaleY(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0) scaleY(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0) scaleY(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

@-webkit-keyframes appear {
  0% {
    max-height: 0; }
  100% {
    max-height: 50vh; } }

@keyframes appear {
  0% {
    max-height: 0; }
  100% {
    max-height: 50vh; } }

@-webkit-keyframes disappear {
  0% {
    opacity: 0;
    max-height: 50vh; }
  100% {
    opacity: 0;
    max-height: 0; } }

@keyframes disappear {
  0% {
    opacity: 0;
    max-height: 50vh; }
  100% {
    opacity: 0;
    max-height: 0; } }

@-webkit-keyframes async {
  0% {
    transform: translate(0, -50%) rotate(0deg); }
  100% {
    transform: translate(0, -50%) rotate(360deg); } }

@keyframes async {
  0% {
    transform: translate(0, -50%) rotate(0deg); }
  100% {
    transform: translate(0, -50%) rotate(360deg); } }

.snotify {
  display: block;
  position: fixed;
  width: 300px;
  z-index: 9999;
  box-sizing: border-box;
  pointer-events: none; }
  .snotify * {
    box-sizing: border-box; }

.snotify-leftTop,
.snotify-leftCenter,
.snotify-leftBottom {
  left: 10px; }

.snotify-rightTop,
.snotify-rightCenter,
.snotify-rightBottom {
  right: 10px; }

.snotify-centerTop,
.snotify-centerCenter,
.snotify-centerBottom {
  left: calc(50% - 300px / 2); }

.snotify-leftTop,
.snotify-centerTop,
.snotify-rightTop {
  top: 10px; }

.snotify-leftCenter,
.snotify-rightCenter,
.snotify-centerCenter {
  top: 50%;
  transform: translateY(-50%); }

.snotify-leftBottom,
.snotify-rightBottom,
.snotify-centerBottom {
  bottom: 10px; }

.snotify-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 9998;
  transition: opacity .3s; }

.snotifyToast {
  display: block;
  cursor: pointer;
  background-color: #fff;
  height: 100%;
  margin: 5px;
  opacity: 0;
  border-radius: 5px;
  overflow: hidden;
  pointer-events: auto; }
  .snotifyToast--in {
    -webkit-animation-name: appear;
    animation-name: appear; }
  .snotifyToast--out {
    -webkit-animation-name: disappear;
    animation-name: disappear; }
  .snotifyToast__inner {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 5px 65px 5px 15px;
    min-height: 78px;
    font-size: 16px;
    color: #000; }
  .snotifyToast__noIcon {
    padding: 5px 15px 5px 15px; }
  .snotifyToast__progressBar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #c7c7c7; }
    .snotifyToast__progressBar__percentage {
      position: absolute;
      top: 0;
      left: 0;
      height: 10px;
      background-color: #4c4c4c;
      max-width: 100%; }
  .snotifyToast__title {
    font-size: 1.8em;
    line-height: 1.2em;
    margin-bottom: 5px;
    color: #fff; }
  .snotifyToast__body {
    font-size: 1em; }

.snotifyToast-show {
  transform: translate(0, 0);
  opacity: 1; }

.snotifyToast-remove {
  max-height: 0;
  overflow: hidden;
  transform: translate(0, 50%);
  opacity: 0; }

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight; }

/***************
 ** Modifiers **
 **************/
.snotify-simple .snotifyToast__title,
.snotify-simple .snotifyToast__body {
  color: #000; }

.snotify-success {
  background-color: #4caf50; }
  .snotify-success .snotifyToast__progressBar {
    background-color: #388e3c; }
  .snotify-success .snotifyToast__progressBar__percentage {
    background-color: #81c784; }
  .snotify-success .snotifyToast__body {
    color: #c8e6c9; }

.snotify-info {
  background-color: #1e88e5; }
  .snotify-info .snotifyToast__progressBar {
    background-color: #1565c0; }
  .snotify-info .snotifyToast__progressBar__percentage {
    background-color: #64b5f6; }
  .snotify-info .snotifyToast__body {
    color: #e3f2fd; }

.snotify-warning {
  background-color: #ff9800; }
  .snotify-warning .snotifyToast__progressBar {
    background-color: #ef6c00; }
  .snotify-warning .snotifyToast__progressBar__percentage {
    background-color: #ffcc80; }
  .snotify-warning .snotifyToast__body {
    color: #fff3e0; }

.snotify-error {
  background-color: #f44336; }
  .snotify-error .snotifyToast__progressBar {
    background-color: #c62828; }
  .snotify-error .snotifyToast__progressBar__percentage {
    background-color: #ef9a9a; }
  .snotify-error .snotifyToast__body {
    color: #ffebee; }

.snotify-async {
  background-color: #1e88e5; }
  .snotify-async .snotifyToast__progressBar {
    background-color: #1565c0; }
  .snotify-async .snotifyToast__progressBar__percentage {
    background-color: #64b5f6; }
  .snotify-async .snotifyToast__body {
    color: #e3f2fd; }

.snotify-confirm {
  background-color: #009688; }
  .snotify-confirm .snotifyToast__progressBar {
    background-color: #4db6ac; }
  .snotify-confirm .snotifyToast__progressBar__percentage {
    background-color: #80cbc4; }
  .snotify-confirm .snotifyToast__body {
    color: #e0f2f1; }

.snotify-prompt {
  background-color: #009688; }
  .snotify-prompt .snotifyToast__title {
    margin-bottom: 0; }
  .snotify-prompt .snotifyToast__body {
    color: #e0f2f1; }

.snotify-confirm .snotifyToast__inner,
.snotify-prompt .snotifyToast__inner {
  padding: 10px 15px; }

.snotifyToast__input {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  width: 100%;
  vertical-align: top;
  transition: all .5s;
  transition-delay: .3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }
  .snotifyToast__input__field {
    position: relative;
    display: block;
    float: right;
    padding: .85em .5em;
    width: 100%;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #333;
    font-weight: bold;
    -webkit-appearance: none;
    /* for box shadows to show on iOS */
    opacity: 0;
    transition: opacity .3s; }
    .snotifyToast__input__field:focus {
      outline: none; }
  .snotifyToast__input__label {
    display: inline-block;
    float: right;
    padding: 0 .85em;
    width: 100%;
    color: #e0f2f1;
    font-weight: bold;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    left: 0;
    height: 100%;
    text-align: left;
    pointer-events: none; }
    .snotifyToast__input__label::before, .snotifyToast__input__label::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transition: transform .3s; }
    .snotifyToast__input__label::before {
      border-top: 2px solid #fff;
      transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
      transition-delay: .3s; }
    .snotifyToast__input__label::after {
      z-index: -1;
      background: #b2dfdb;
      transform: scale3d(1, 0, 1);
      transform-origin: 50% 0; }
  .snotifyToast__input__labelContent {
    position: relative;
    display: block;
    padding: 1em 0;
    width: 100%;
    transition: transform .3s .3s; }

.snotifyToast__input--filled {
  margin-top: 2.5em; }
  .snotifyToast__input--filled:focus,
  .snotifyToast__input--filled .snotifyToast__input__field {
    opacity: 1;
    transition-delay: .3s; }

.snotifyToast__input__field:focus + .snotifyToast__input__label .snotifyToast__input__labelContent,
.snotifyToast__input--filled .snotifyToast__input__labelContent {
  transform: translate(0, -80%);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.snotifyToast__input__field:focus + .snotifyToast__input__label::before,
.snotifyToast__input--filled .snotifyToast__input__label::before {
  transition-delay: 0s; }

.snotifyToast__input__field:focus + .snotifyToast__input__label::before,
.snotifyToast__input--filled .snotifyToast__input__label::before {
  transform: translate(0, 0); }

.snotifyToast__input__field:focus + .snotifyToast__input__label::after,
.snotifyToast__input--filled .snotifyToast__input__label::after {
  transform: scale(1, 1);
  transition-delay: .3s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.snotifyToast--invalid .snotifyToast__input__label::before {
  border-color: #f44336; }

.snotifyToast--valid .snotifyToast__input__label::before {
  border-color: #4caf50; }

.snotifyToast__buttons {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .snotifyToast__buttons button {
    position: relative;
    width: 100%;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-bottom: none;
    background: transparent;
    padding: 8px;
    text-transform: capitalize;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden; }
    .snotifyToast__buttons button::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 5px;
      height: 5px;
      background: rgba(255, 255, 255, 0.3);
      opacity: 0;
      border-radius: 100%;
      transform: scale(1, 1) translate(-50%);
      transform-origin: 50% 50%; }
    .snotifyToast__buttons button:focus:not(:active)::after {
      -webkit-animation: ripple 1s ease-out;
      animation: ripple 1s ease-out; }
    .snotifyToast__buttons button:hover, .snotifyToast__buttons button:focus {
      background: rgba(0, 0, 0, 0.1);
      outline: none; }
    .snotifyToast__buttons button:active {
      background: rgba(0, 0, 0, 0.15); }
    .snotifyToast__buttons button:last-child {
      border-right: none; }
    .snotifyToast__buttons button:first-child {
      border-left: none; }
  .snotifyToast__buttons--bold {
    font-weight: 700; }

@-webkit-keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1; }
  20% {
    transform: scale(25, 25);
    opacity: 1; }
  100% {
    opacity: 0;
    transform: scale(40, 40); } }

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1; }
  20% {
    transform: scale(25, 25);
    opacity: 1; }
  100% {
    opacity: 0;
    transform: scale(40, 40); } }

.snotify-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  line-height: 0;
  transform: translate(0, -50%);
  max-height: 48px;
  max-width: 48px;
  width: 100%;
  height: 100%; }

.snotify-icon--error {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23ffcdd2%22%3E%3Cg%3E%3Cpath%20d=%22M437,75A256,256,0,1,0,75,437,256,256,0,1,0,437,75ZM416.43,416.43a226.82,226.82,0,0,1-320.86,0C7.11,328,7.11,184,95.57,95.57a226.82,226.82,0,0,1,320.86,0C504.89,184,504.89,328,416.43,416.43Z%22/%3E%3Cpath%20d=%22M368.81,143.19a14.5,14.5,0,0,0-20.58,0L256,235.42l-92.23-92.23a14.55,14.55,0,0,0-20.58,20.58L235.42,256l-92.23,92.23a14.6,14.6,0,0,0,10.24,24.89,14.19,14.19,0,0,0,10.24-4.31l92.23-92.23,92.23,92.23a14.64,14.64,0,0,0,10.24,4.31,14,14,0,0,0,10.24-4.31,14.5,14.5,0,0,0,0-20.58l-92-92.23,92.23-92.23A14.5,14.5,0,0,0,368.81,143.19Z%22/%3E%3C/g%3E%3C/svg%3E"); }

.snotify-icon--warning {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23ffccbc%22%3E%3Cg%3E%3Cpath%20d=%22M256,512c141.15,0,256-114.84,256-256S397.15,0,256,0,0,114.84,0,256,114.85,512,256,512Zm0-480.49c123.79,0,224.49,100.71,224.49,224.49S379.79,480.49,256,480.49,31.51,379.79,31.51,256,132.21,31.51,256,31.51Z%22/%3E%3Ccircle%20cx=%22260.08%22%20cy=%22343.87%22%20r=%2226.35%22/%3E%3Cpath%20d=%22M254.68,278.39a15.76,15.76,0,0,0,15.75-15.75V128.72a15.75,15.75,0,1,0-31.51,0V262.63A15.76,15.76,0,0,0,254.68,278.39Z%22/%3E%3C/g%3E%3C/svg%3E"); }

.snotify-icon--info {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23bbdefb%22%3E%3Cg%3E%3Cpath%20d=%22M256,0C114.84,0,0,114.84,0,256S114.84,512,256,512,512,397.16,512,256,397.15,0,256,0Zm0,478.43C133.35,478.43,33.57,378.64,33.57,256S133.35,33.58,256,33.58,478.42,133.36,478.42,256,378.64,478.43,256,478.43Z%22/%3E%3Cpath%20d=%22M251.26,161.24a22.39,22.39,0,1,0-22.38-22.39A22.39,22.39,0,0,0,251.26,161.24Z%22/%3E%3Cpath%20d=%22M286.84,357.87h-14v-160A16.79,16.79,0,0,0,256,181.05H225.17a16.79,16.79,0,0,0,0,33.58h14.05V357.87H225.17a16.79,16.79,0,0,0,0,33.57h61.67a16.79,16.79,0,1,0,0-33.57Z%22/%3E%3C/g%3E%3C/svg%3E"); }

.snotify-icon--success {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23c8e6c9%22%3E%3Cg%3E%3Cpath%20d=%22M256,0C114.85,0,0,114.84,0,256S114.85,512,256,512,512,397.16,512,256,397.15,0,256,0Zm0,492.31c-130.29,0-236.31-106-236.31-236.31S125.71,19.69,256,19.69,492.31,125.71,492.31,256,386.29,492.31,256,492.31Z%22/%3E%3Cpath%20class=%22cls-1%22%20d=%22M376.64,151,225.31,321.24l-91.17-72.93a9.85,9.85,0,0,0-12.3,15.38l98.46,78.77a9.86,9.86,0,0,0,13.52-1.15L391.36,164.08A9.85,9.85,0,0,0,376.64,151Z%22/%3E%3C/g%3E%3C/svg%3E"); }

.snotify-icon--async {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns=%22http://www.w3.org/2000/svg%22%20version=%221.1%22%20x=%220px%22%20y=%220px%22%20viewBox=%220%200%20512%20512%22%20fill=%22%23bbdefb%22%3E%3Cg%3E%3Cpath%20d=%22M256,0a32,32,0,0,0-32,32V96a32,32,0,0,0,64,0V32A32,32,0,0,0,256,0Zm0,384a32,32,0,0,0-32,32v64a32,32,0,0,0,64,0V416A32,32,0,0,0,256,384ZM391.74,165.5,437,120.22A32,32,0,0,0,391.74,75L346.5,120.22a32,32,0,0,0,45.25,45.28Zm-271.52,181L75,391.74A32,32,0,0,0,120.22,437l45.25-45.25a32,32,0,0,0-45.25-45.25Zm0-271.52A32,32,0,1,0,75,120.22l45.25,45.28a32,32,0,1,0,45.25-45.28ZM391.74,346.5a32,32,0,0,0-45.25,45.25L391.74,437A32,32,0,0,0,437,391.74ZM480,224H416a32,32,0,0,0,0,64h64a32,32,0,0,0,0-64ZM128,256a32,32,0,0,0-32-32H32a32,32,0,0,0,0,64H96A32,32,0,0,0,128,256Z%22/%3E%3C/g%3E%3C/svg%3E");
  -webkit-animation: async 3s infinite linear;
  animation: async 3s infinite linear;
  transform-origin: 50% 50%; }
@charset "UTF-8";

@font-face {
  font-family: Roboto Bold;
  src: url(/fonts/Roboto-Bold.ttf?ee7b96fa85d8fdb8c126409326ac2d2b);
}

body {
  height: 100%;
  font-family: Roboto;
  /* background-color: #A6C8D0; */
  background-color: #7fb6ce;
  width: 100%;
}

body.help {
  background-color: #fff;
}

.wrap {
  min-height: 100%;
  height: auto;
  margin: 0 auto -60px;
  padding: 0 0 60px;
}

.wrap > .container {
  padding: 15px 15px 20px;
}

.footer {
  height: 60px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.jumbotron {
  text-align: center;
  background-color: transparent;
}

.jumbotron .btn {
  font-size: 21px;
  padding: 14px 24px;
}

.not-set {
  color: #c55;
  font-style: italic;
}

/* add sorting icons to gridview sort links */

a.asc:after,
a.desc:after {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  padding-left: 5px;
}

a.asc:after {
  content: "\E151";
}

a.desc:after {
  content: "\E152";
}

.sort-numerical a.asc:after {
  content: "\E153";
}

.sort-numerical a.desc:after {
  content: "\E154";
}

.sort-ordinal a.asc:after {
  content: "\E155";
}

.sort-ordinal a.desc:after {
  content: "\E156";
}

.grid-view td {
  white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
  min-width: 50px;
}

.hint-block {
  display: block;
  margin-top: 5px;
  color: #999;
}

.error-summary {
  color: #a94442;
  background: #fdf7f7;
  border-left: 3px solid #eed3d7;
  padding: 10px 20px;
  margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */

.nav li > form > button.logout {
  padding: 15px;
  border: none;
}

@media (max-width: 767px) {
  .nav li > form > button.logout {
    display: block;
    text-align: left;
    width: 100%;
    padding: 10px 15px;
  }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
  text-decoration: none;
}

.header_logged {
  padding: 10px 0 0 0;
  background-color: #22242d;
}

.menu-head {
  /*background-color:#8CC739;*/
  background-color: #739F35;
  text-align: center;
}

.menu-head .container,
.menu-head .container-fluid {
  /*padding:20px 0 0 0;*/
  padding: 13px 0 7px 0;
}

.menu-head a {
  /*color:#164556;*/
  color: #034259;
  padding: 30px 29px 10px 29px;
  font-size: 15px;
}

.menu-head .active a {
  text-decoration: underline;
  font-family: Roboto;
  font-weight: 700;
}

.treeview-menu a {
  font-family: Roboto !important;
}

.nav > li > form > button.logout:focus {
  outline: none;
}

.header_logged .img-responsive {
  width: 120px;
}

.header_logged .user-det .img-responsive {
  width: 60px;
  margin: 0;
  margin: 0;
}

.header_logged .school_logo .img-responsive {
  margin: 0 auto;
  /*width: 170px;*/
}

.header_logged .school-add {
  text-align: center;
  padding: 10px;
}

.user-logged {
  padding: 20px 0 0 0;
}

.user-logged li {
  list-style-type: none;
}

i {
  /* border: solid black; */
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/* Mobile Navigation Menu style starts here */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #8CC739;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #478a2b;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.sidenav ul.menu {
  list-style-type: none;
}

.upper_header {
  border-bottom: 2px solid #7DAF33;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

#menu-bar {
  list-style-type: none;
  vertical-align: text-bottom;
  margin-bottom: 4px;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

#menu-bar li {
  display: inline;
}

.menu li.active a {
  font-family: Roboto;
  font-weight: 700;
  text-decoration: underline;
}

.hamburger {
  padding: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto;
  font-weight: 700;
}

.small_head {
  text-align: center;
  padding: 10px 0;
}

.small_head hr {
  border-top: 1px solid #dbd8d8;
  margin-top: 10px;
}

.bold-uppper {
  font-family: Roboto;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.normal-lower {
  font-family: Roboto;
  font-size: 14px;
  text-transform: none;
}

.site-table thead {
  background-color: #085DAD;
  color: #fff;
}

.site-table {
  margin: 0;
}

.subtd1 {
  padding: 8px 20px 8px 40px !important;
}

.subtd2 {
  padding: 8px 20px 8px 70px !important;
}

.site-table th {
  text-align: center;
  padding: 20px !important;
  border-left: 2px solid #fff;
}

.site-table:not(.small-pad) td:not(.subtd1):not(.subtd2) {
  padding: 10px !important;
}

.tabsec {
  padding: 10px;
  border: 3px solid #8CC739;
  border-radius: 20px;
}

.site-table.hr-table {
  text-align: center;
  font-weight: bold;
}

.site-table:not(.hr-table) td.amts {
  text-align: right;
  /* font-weight:bold; */
}

.site-table.table-striped.site-table > tbody > tr:nth-of-type(odd):not(.green-row) {
  background-color: #fff;
}

.site-table.table-striped.site-table > tbody > tr:nth-of-type(odd).green-row {
  background-color: #C5E39B;
}

.site-table.table-striped.site-table > tbody > tr:nth-of-type(even).green-row {
  background-color: #BCDA92;
}

.final-tot {
  font-family: Roboto;
  font-weight: 700;
  font-size: 20px;
}

.tabsec {
  margin-top: 26px;
}

#form-signup .form-control,
#login-form .form-control,
#forgot-password .form-control,
#reset-password .form-control {
  border-radius: 30px;
}

/*.form-control {
    border-radius: 30px;
}*/

.login-header,
.reset-header,
select {
  font-family: Arial, Helvetica, sans-serif;
}

input,
button,
.login-header,
.forgot-header {
  font-family: Helvetica;
}

.input-lg {
  font-size: 15px;
}

.head-page {
  color: #085DAD;
  font-size: 26px;
}

.center-head {
  text-align: center;
}

.glyphicon.circle,
.glyphicon.bl-tick {
  border: unset;
  background: #fff;
  color: #085DAD;
  margin-right: 4px;
  border-radius: 20px;
  padding: 3px;
}

.glyphicon.del {
  border: unset;
  background: #fff;
  color: #d9534f;
  margin-right: 4px;
  border-radius: 20px;
  padding: 3px;
}

.btn-success {
  background-color: #8CC739;
}

.btn-primary {
  background-color: #085DAD;
}

.glyphicon.tick {
  border: unset;
  background: #fff;
  color: #8CC739;
  margin-right: 4px;
  border-radius: 20px;
  padding: 3px;
}

.add-btn {
  border-radius: 20px;
  padding: 9px 31px;
}

.small-btn {
  border-radius: 20px;
  padding: 0px 10px;
  margin: 5px 0;
}

.small-tabhead {
  font-weight: bold;
  font-size: 12px;
  padding: 38px 0px 0px 26px;
}

.tabsec.hr {
  margin-top: 10px;
}

.line {
  margin-top: 17px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #d7cdcd;
  margin-left: 30px;
}

.secondary-head {
  font-size: 24px;
  font-weight: bold;
}

.sm_bl_head {
  color: #085DAD;
  font-weight: bold;
  font-size: 16px;
}

.accod-head {
  background: #B0BEC5;
  /* color: #fff; */
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.accod-head > a {
  color: #fff;
}

.accod-body {
  display: none;
  transition-timing-function: ease-in;
}

.fa.angle {
  font-size: 16px;
  border: 0px;
}

.site-table.table-striped.site-table > tbody > tr:nth-of-type(even):not(.green-row) {
  background-color: #F4F4F4;
}

.rotate {
  /* Chrome, Safari, Opera */
  /* Firefox */
  /* IE 9 */
  transform: rotate(180deg);
  /* Standard syntax */
}

.form-horizontal .form-control {
  height: unset;
  padding: 9px 12px;
}

.form-horizontal .form-group {
  margin-bottom: 4px;
}

.form-btn .btn {
  margin: 0 20px;
}

/**

Hiding submenus so that they have parent highlighted with active class

 **/

#menu-bar ul,
.sidenav .menu ul {
  display: none;
}

.accordion-menu .panel-heading {
  color: white;
  background-color: #b0bec5;
  padding: 14px 20px;
  /* border-top-left-radius:10px;
  border-top-right-radius:10px; */
}

/* input[type='radio']:checked::after {
    width: 15px;
    height: 15px;
    border-radius: 15px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #8CC739;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #000;
} */

input[type=radio] {
  -webkit-appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid darkgray;
  background: #fff;
  border-radius: 50%;
}

input[type=radio]:hover {
  box-shadow: 0 0 5px 0px orange inset;
}

input[type=radio]:before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  border-radius: 50%;
}

input[type=radio]:checked:before {
  background: #8CC739;
}

input[type=radio]:focus {
  outline: none;
}

#addform,
#docs {
  margin-top: 50px;
}

#setting-tab {
  margin-top: 20px;
}

.radio-inline {
  margin-right: 15px;
}

.form-btn {
  padding: 16px 0;
}

.form-btn {
  text-align: center;
}

.form-btn .btn {
  padding: 9px 31px;
  border-radius: 20px;
}

.up-file {
  width: 20px;
}

.nav-tabs {
  border-bottom: 2px solid #8CC739 !important;
}

.nav > li > a {
  padding: 6px 22px;
}

.nav-tabs > li > a {
  color: #696f71;
  /*font-weight: bold;*/
  font-family: Roboto;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #fff;
  cursor: default;
  /*background-color: #8CC739;*/
  background-color: #739F35;
  border: 1px solid #ddd;
  border-color: transparent;
  /*font-weight: bold;*/
  font-family: Roboto;
}

#setting-tab .tab-pane {
  margin-top: 30px;
}

/** 
Css for checkbox with green bg starts here

**/

.ch-cont {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */

.ch-cont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 20px;
  background-color: #fff;
  border: 1px solid grey;
}

/* On mouse-over, add a grey background color */

.ch-cont:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.ch-cont input:checked ~ .checkmark {
  background-color: #8CC739;
  border: 1px solid #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.ch-cont input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */

.ch-cont .checkmark:after {
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/** 
Css for checkbox with green bg ends here

**/

.ch-round {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ch-round input {
  opacity: 0;
  cursor: pointer;
  height: 34px;
  width: 0;
}

.ch-round input:checked ~ .roundcheck {
  background-color: #8CC739;
  border: 0px;
  color: #fff;
}

.roundcheck {
  position: absolute;
  top: 0;
  left: 0;
  padding: 9px 12px;
  width: 100%;
  background-color: #fff;
  border: 1px solid grey;
  border-radius: 50px;
  font-size: 12px;
  color: #A1A1A1;
}

.ch-round input ~ .roundcheck:before {
  font-family: "Glyphicons Halflings";
  float: left;
  content: "+";
  color: #A1A1A1;
  margin-right: 8px;
  margin-top: 2px;
}

.ch-round input:checked ~ .roundcheck:before {
  content: "\E013";
  color: #fff;
}

.ch-round input ~ .roundcheck:after {
  display: block;
  margin-left: 20px;
  color: #A1A1A1;
  font-weight: normal;
}

.ch-round input:checked ~ .roundcheck:after {
  color: #fff;
}

.chround-row {
  margin-bottom: 20px;
}

.sm-text {
  font-size: 11px;
  color: #628298;
  margin-bottom: 10px;
}

.choose {
  width: 100%;
  /* height: 80%; */
  text-align: center;
  line-height: 32px;
  background-color: #fff;
  border: 2px dashed #C9CACB;
  padding: 10px;
  border-radius: 10px;
  font-size: 10px;
}

.input-boxfile input[type=file] {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 90%;
  height: 80%;
  outline: none;
  opacity: 0;
  max-height: 113px;
}

.drop-img {
  width: 50px;
}

.green-link {
  color: #8CC739;
  font-family: Roboto;
  font-weight: 700;
}

.line-class hr {
  border-top: 1px solid #2873B9;
}

.line-class {
  margin-top: -7px;
}

.line-text {
  color: #2873B9;
  font-size: 20px;
}

.tabs-left,
.tabs-right {
  border-bottom: none;
  padding-top: 2px;
}

.tabs-left {
  border-right: 1px solid #ddd;
}

.tabs-right {
  border-left: 1px solid #ddd;
}

.tabs-left > li,
.tabs-right > li {
  float: none;
  margin-bottom: 2px;
}

.tabs-left > li {
  margin-right: -1px;
}

.tabs-right > li {
  margin-left: -1px;
}

.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
  border-bottom-color: #ddd;
  border-right-color: transparent;
}

.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
  border-bottom: 1px solid #ddd;
  border-left-color: transparent;
}

.tabs-left > li > a {
  border-radius: 4px 0 0 4px;
  margin-right: 0;
  display: block;
}

.tabs-right > li > a {
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}

.mid-links a {
  font-size: 18px;
}

.mid-links li a {
  font-size: 15px;
}

/*all media query here */

@media (max-width: 767px) {
  .mob-hidden {
    display: none;
  }

  .add-btn {
    padding: 5px;
  }

  .line-class {
    display: none;
  }
}

@media (max-width: 400px) {
  .form-btn .btn {
    padding: 6px 12px;
  }

  /* .ch1 .ch-round{
          margin-bottom: 36px;
  } */
}

#existing_school_menu:hover .treeview-menu {
  display: block;
}

#partnership_menu:hover .treeview-menu {
  display: block;
}

#pet_menu:hover .treeview-menu {
  display: block;
}

.dropdown-menu > li > a {
  text-decoration: none !important;
  /* color:#fff; */
}

.dropdown-menu.help_dropdown {
  top: 90%;
}

#help_menu:hover .help_dropdown {
  display: block;
}

.info-box-content {
  padding: 5px 10px;
  border-left: 15px solid #2abae5;
}

.info-box-text {
  text-transform: uppercase;
}

.progress-description,
.info-box-text {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.info-box-number {
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.bg-green {
  background-color: #fff;
  color: #000 !important;
}

.info-box {
  display: block;
  /*  min-height: 50px; */
  width: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  margin-bottom: 15px;
}

.info-box .progress {
  background: rgba(0, 0, 0, 0.2);
  margin: 5px 0px 5px 0px;
  height: 10px;
}

.progress-description {
  margin: 0;
}

.progress-description,
.info-box-text {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar.green {
  background: #8CC739;
}

.progress-bar.red {
  background: #ff1212;
}

.progress-bar.yellow {
  background: #ffcc13;
}

.prog-row a:hover {
  text-decoration: none;
}

ul .info-box-content {
  padding: 1px 3px;
}

.prog-row .mid-links:hover {
  padding-left: 50px;
  transition: padding 1s;
}

.dropdown-menu:not(.datepicker):not(.help_dropdown) {
  /*background-color: #8cc739;*/
  /*   background-color: #9d449d; */
  /*   background-color: #fcbda6 ; */
  /*   background-color: #023547 ; */
  background-color: #BCDA92;
}

.dropdown-menu .active a {
  background-color: unset;
  color: unset;
  font-family: Roboto !important;
  font-weight: 700;
}

.treeview-menu li a {
  font-family: Roboto !important;
}

.dropdown-menu .active a:hover,
.dropdown-menu .active a:focus {
  background-color: inherit;
  color: inherit;
}

.breadcrumb {
  font-size: 12px;
  /* padding: 4px 13px; */
  padding: 0px;
  /*background-color:#D6F3FA;*/
  background-color: transparent;
}

.breadcrumb_wrap {
  padding-left: 0px;
}

.mt-7 {
  margin-top: 7px;
}

.mg-10 {
  margin-top: 10px;
}

.mg-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.small-head {
  color: #2873B9;
  font-size: 16px;
}

.smaller-head {
  color: #2873B9;
  font-size: 14px;
}

.inner_background {
  padding: 20px;
  /*background-color:#B1D9FF;*/
  background-color: #80bbab;
  margin-top: 10px;
}

label {
  font-weight: 500;
  color: #2f506c;
}

.breadcrumb > li + li::before {
  color: #9b9b9b !important;
}

.pd-0 {
  padding: 0;
}

.datepicker {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.board_member2,
.sub_sec {
  /* 	border: 2px solid #31C3E7; */
  padding: 10px;
  margin-top: 10px;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 0 8px;
  vertical-align: middle;
  font-size: 14px;
}

.first-tr {
  background-color: #449D44;
}

.second-tr {
  background-color: #68A255;
}

.third-tr {
  background-color: #44819D;
}

.fade-enter-active {
  transition: opacity 0.5s;
}

/* .fade-leave-active {
    transition: opacity .1s;
} */

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.slide-fade-enter-active {
  transition: all 0.3s ease;
}

.slide-fade-leave-active {
  transition: all 0.8s cubic-bezier(1, 0.5, 0.8, 1);
}

.slide-fade-enter,
.slide-fade-leave-to {
  transform: translateX(10px);
  opacity: 0;
}

.tox-tinymce {
  height: 150px;
}

.tox-notification.tox-notification--in.tox-notification--warning {
  display: none;
}

.padding_0 {
  padding-left: 0px;
  padding-right: 0px;
}

.padding_left_0 {
  padding-left: 0px !important;
}

.padding_right_0 {
  padding-right: 0px !important;
}

.padding_top_15 {
  padding-top: 15px !important;
}

.padding_bottom_15 {
  padding-bottom: 15px !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.alert-box {
  margin-bottom: 10px;
  text-align: center !important;
}

.alert-box .alert-message {
  padding: 5px;
  line-height: 1.3;
  border-radius: 3px;
  margin-top: 0;
  margin-bottom: 1rem;
}

.alert-box .alert-message.warning {
  color: #c26700;
  background-color: #fcf8e3;
  border: 1px solid #faebcc;
}

.alert-box .alert-message.danger {
  color: #a94442;
  background-color: #f2dede;
  border: 1px solid #ebccd1;
}

.alert-box .alert-message.success {
  color: #3c763d;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
}

.tooltip {
  color: #337ab7;
  position: relative;
  display: contents;
  border-bottom: 1px dotted black;
  font-size: 12px;
  cursor: pointer;
}

.tooltip .tooltiptext {
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px;
  z-index: 10;
  position: absolute;
}

.tooltip .tooltiptext2 {
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px;
  /* right: 8%;
  margin-right: 2px; */
  position: absolute;
  z-index: 10;
  transform: rotate(180deg);
  transform-origin: left top;
}

.tooltiptext2 p {
  transform: rotate(180deg);
  margin: 0;
}

.tooltip a {
  word-wrap: break-word;
}

.underline {
  text-decoration: underline;
}

.chat-background {
  padding: 20px 0;
}

.vertical-align {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}

.vertical-align [class*=col-] {
  float: none !important;
}

.chats .to-message {
  background-color: #CFF899;
  border: 1px solid #fff;
  border-radius: 5px;
  /* 
  padding:10px 20px; */
  position: relative;
  word-wrap: break-word;
}

.chats .from-message {
  background-color: #DAE270;
  border: 1px solid #fff;
  border-radius: 5px;
  /* padding:10px 20px; */
  position: relative;
  word-wrap: break-word;
}

.chats .to-message::after {
  content: "";
  position: absolute;
  top: 32px;
  left: -16px;
  transform: rotate(270deg);
  border-width: 0 10px 10px;
  border-style: solid;
  border-color: #CFF899 transparent;
  display: block;
  width: 0;
}

.chats .from-message::after {
  content: "";
  position: absolute;
  top: 32px;
  right: -16px;
  transform: rotate(90deg);
  border-width: 0 10px 10px;
  border-style: solid;
  border-color: #DAE270 transparent;
  display: block;
  width: 0;
}

.chat-user {
  text-transform: capitalize;
  font-weight: normal;
  display: inline-block;
  width: 100%;
}

.chat-time {
  color: #fff;
  margin-top: 20px;
}

.showmore {
  text-decoration: underline;
  font-size: 16px;
  cursor: pointer;
  color: #008577;
  font-weight: bold;
}

.user-circle {
  /* width: 75px; */
  /* height: 75px; */
  border-radius: 50%;
  font-size: 30px;
  color: #fff;
  line-height: 75px;
  background: #460C4A;
  text-align: center;
  text-transform: uppercase;
}

.user-circle.to {
  margin-left: 10px;
}

.user-circle.from {
  margin-right: 10px;
}

.user-none.to {
  margin-left: 10px;
}

.user-none.from {
  margin-right: 10px;
}

@media (max-width: 767px) {
  .chats .mob {
    display: block;
  }

  .chats .desk {
    display: none;
  }

  .chats .user-circle {
    width: 75px;
    height: 75px;
  }
}

@media (max-width: 500px) {
  .chats .user-circle {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 15px;
  }

  .chats .user-none {
    width: 45px;
    height: 45px;
  }
}

.chat-send {
  /*     position: absolute;
      top: 19px;
      right: 35px; */
  border-radius: 30px;
  background-color: #fff;
  padding: 4px;
}

.chat-form {
  position: relative;
}

.fa-paper-plane {
  color: #3C6734;
  font-size: 22px !important;
}

a {
  cursor: pointer;
}

.prev_next {
  color: #514370;
  padding: 0 5px 0 5px;
}

.prev_next:hover {
  text-decoration: none;
}

a,
a:active,
a:focus {
  outline: none;
}

.mg-15 {
  margin-top: 15px;
}

.details_div {
  padding-top: 20px;
}

@media (min-width: 962px) {
  .help .modal-dialog {
    width: 962px;
    margin: 30px auto;
  }
}

.help .modal-title {
  text-align: center;
}

.help .modal-header .close {
  margin-top: -29px;
}

.help .nav-tabs > li {
  float: none;
  display: inline-block;
  zoom: 1;
}

.help .nav-tabs {
  text-align: center;
}

.help_sign {
  color: #8d2a76;
  cursor: pointer;
  top: 0px;
  font-size: 19px;
}

.help-modal.modal-body {
  max-height: calc(100vh - 130px);
  overflow-y: auto;
}

.faqs {
  background: #fff;
  border: 1px solid #5B86BC;
  border-radius: 5px;
  margin-bottom: 30px;
  display: grid;
}

.faq_que {
  background: #0A5EAD;
  color: #fff;
  padding: 10px 15px;
  font-weight: normal;
  font-size: 15px;
}

.faq_line {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #5B86BC;
}

.faq_ans {
  padding: 15px;
}

.faq_btn {
  margin: 0 12px;
}

.chat_user {
  font-weight: bold;
}

.to-message .chat_user p {
  padding: 10px 0 0 10px;
  font-size: 14px;
}

.from-message .chat_user p {
  text-align: right;
  padding: 10px 10px 0 0;
  font-size: 14px;
}

.to-message .chat_underline {
  border-bottom: 1px solid #000;
  margin: 0 0 0 11px;
}

.from-message .chat_underline {
  border-bottom: 1px solid #000;
  margin-right: 11px;
}

.msg {
  padding: 10px 15px;
  margin: 0;
}

.to-message .created_time {
  padding-left: 15px;
  font-size: 10px;
}

.from-message .created_time {
  padding-right: 15px;
  font-size: 10px;
}

.msg-row {
  margin-bottom: 20px !important;
}

.second_inner_bg {
  padding: 10px;
  border: 1px solid;
  color: #2873B9;
}

.userlist_multiselect .multiselect__option {
  padding-left: 35px;
}

.userlist_multiselect .multiselect__option--group {
  background: #35495e;
  color: white;
  padding-left: 10px;
}

.scenario_font {
  font-size: 18px;
}

.float-btn {
  padding-right: 0px;
  float: right;
}

.btn-grp-align {
  padding-right: 0px;
}

.flex-comments {
  display: flex;
}

.no-bold {
  font-weight: normal !important;
}

.report_first_tr {
  background-color: #44819d;
}

.report_second_tr {
  background-color: #68a255;
}

.report_bg_color {
  background-color: #b3d0a6;
}

.report-table tr {
  height: 25px;
}

.report-table tr > td .form-control {
  height: 23px;
}

#swal2-content {
  font-size: 14px !important;
}

.disable-all {
  pointer-events: none !important;
}

.disable-all .form-control {
  background-color: #eee;
  opacity: 1;
}

.disable-all .btn {
  opacity: 0.65;
  cursor: not-allowed;
}

.comment_td a {
  padding: 2px 0;
}

.comment_td .glyphicon {
  font-size: 14px !important;
}

.comment_td a:hover {
  text-decoration: none;
}

.tooltiptext a {
  color: #fff;
  text-decoration: underline;
}

.vdp-datepicker__clear-button .fa-times {
  right: 0;
  top: 5px;
  position: absolute;
}

