/*@import url('http://fonts.googleapis.com/css?family=Bree+Serif');*/

body {
  margin: 0;
  line-height: 1.5;
  background: #fff;
  padding: 0px 0 10px;
  color: #676767;
  font-family: Arial, helvetica, sans-serif;
  font-size: 12px;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
*/

::-moz-selection {
  background: #000000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000000;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
   Links
   ========================================================================== */

a {
  color: #005580;
  text-decoration: none;
}

a:visited,
a:active,
a:link {
  color: #005580;
}

a:hover {
  color: #000;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
}

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0;
}

hr {
  margin: 10px 0 !important;
}

/* =============================================================================
   Tables
   ========================================================================== */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td {
  vertical-align: top;
}

.toggle-bg {
  background-color: #f0f0f0 !important;
}

.table-mini,
.table-mini th,
.table-mini td {
  font-size: 11px !important;
}

/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}

/* ==============================
CSS for .card copied from BS 3.*
===============================*/
.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  margin: 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }

  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }

  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }

  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-img-top,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-img-bottom,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-header,
  .card-group
    > .card:not(:first-child):not(:last-child):not(:only-child)
    .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* =============================================================================
   pagination
   ========================================================================== */
.pagination ul > li.selected > a {
  background: #f0f0f0;
}

/* =============================================================================
   search-panel
   ========================================================================== */
.search-form {
  margin: 0;
}

.search-form .input-append,
.search-form .input-append input {
  margin-bottom: 0;
}

#headerPanel {
  height: 82px;
  width: 100%;
  position: relative;
  top: 0px;
  left: 0px;
  background: #f7f7f7;
}

#headerContentPane {
  height: 82px;
  position: relative;
}

#headLogo img {
  height: 82px;
  padding: 0.55rem;
  background: #fff;
}

#socialIcons {
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 15px;
}

#topNavigation {
  display: inline-block;
  position: absolute;
  right: 20px;
  bottom: 15px;
}

#bodyPanel {
  padding: 1em 0 1em;
  min-height: 400px;
}

#footerPanel {
  border-top: 1px solid #f0f0f0;
  padding: 10px 1em 5px;
  color: #a6acb2;
}

.header-fixed {
  padding-top: 90px;
}

.header-fixed #headerPanel {
  position: fixed;
  z-index: 1001;
  box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.15);
}

/* =============================================================================
   Navigation
   ========================================================================== */

#topNav {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: #fff;
  padding: 10px 20px 10px;
}

/* overwrite classes */

#topNav .nav-pills > li > a {
  margin-right: 4px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #676767;
}

#topNav .nav-pills .open .dropdown-toggle {
  color: #fff;
}

#topNav .nav-pills > .active > a,
#topNav .nav-pills > .active > a:hover,
#topNav .nav-pills > .active > a:focus {
  color: #fff;
  background-color: #676767;
}

#topNav .nav-pills .dropdown-menu {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

#topNav {
  font-size: 118%;
}

#topNav .dropdown-menu > li > a:hover,
#topNav .dropdown-menu > li > a:focus,
#topNav .dropdown-submenu:hover > a,
#topNav .dropdown-submenu:focus > a {
  color: #ffffff;
  background-color: #676767;
  background-image: -moz-linear-gradient(top, #676767, #7a7a7a);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#676767),
    to(#7a7a7a)
  );
  background-image: -webkit-linear-gradient(top, #676767, #7a7a7a);
  background-image: -o-linear-gradient(top, #676767, #7a7a7a);
  background-image: linear-gradient(to bottom, #676767, #7a7a7a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff676767', endColorstr='#ff7a7a7a', GradientType=0);
}

#topNav .dropdown-menu > .active > a,
#topNav .dropdown-menu > .active > a:hover,
#topNav .dropdown-menu > .active > a:focus {
  color: #ffffff;
  background-color: #676767;
  background-image: -moz-linear-gradient(top, #676767, #7a7a7a);
  background-image: -webkit-gradient(
    linear,
    0 0,
    0 100%,
    from(#676767),
    to(#7a7a7a)
  );
  background-image: -webkit-linear-gradient(top, #676767, #7a7a7a);
  background-image: -o-linear-gradient(top, #676767, #7a7a7a);
  background-image: linear-gradient(to bottom, #676767, #7a7a7a);
  background-repeat: repeat-x;
  outline: 0;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff676767', endColorstr='#ff7a7a7a', GradientType=0);
}

.dropdown-menu .divider {
  border-bottom: inherit;
}

.nav-tabs > li > a {
  background: #f0f0f0;
  color: #000;
  font-weight: bold;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus {
  color: navy;
}

/* Sidenav for Docs
-------------------------------------------------- */

.bs-sidenav {
  width: 228px;
  margin: 30px 0 0;
  padding: 0;
  background-color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}
.bs-sidenav > li > a {
  display: block;
  width: 190px \9;
  margin: 0 0 -1px;
  padding: 8px 14px;
  border: 1px solid #e5e5e5;
}
.bs-sidenav > li:first-child > a {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}
.bs-sidenav > li:last-child > a {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}
.bs-sidenav > .active > a {
  position: relative;
  z-index: 2;
  padding: 9px 15px;
  border: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
    inset -1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
    inset -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1),
    inset -1px 0 0 rgba(0, 0, 0, 0.1);
}
/* Chevrons */
.bs-sidenav .icon-chevron-right {
  float: right;
  margin-top: 2px;
  margin-right: -6px;
  opacity: 0.25;
}
.bs-sidenav > li > a:hover {
  background-color: #f5f5f5;
}
.bs-sidenav a:hover .icon-chevron-right {
  opacity: 0.5;
}
.bs-sidenav .active .icon-chevron-right,
.bs-sidenav .active a:hover .icon-chevron-right {
  background-image: url(../../../../asset/static/img/glyphicons-halflings-white.png);
  opacity: 1;
}
.bs-sidenav.affix {
  top: 80px;
}
.bs-sidenav.affix-bottom {
  position: absolute;
  top: auto;
  bottom: 270px;
}

p strong.rgt {
  width: 200px;
  text-align: right;
}

.modal-header h3 {
  font-size: 18px;
}
.modal-body {
  max-height: 350px;
}
body .modal-large {
  /* new custom width */
  width: 750px;
  /* must be half of the width, minus scrollbar on the left (30px) */
  margin-left: -375px;
}

body .modal-xlarge {
  /* new custom width */
  width: 900px;
  /* must be half of the width, minus scrollbar on the left (30px) */
  margin-left: -450px;
}

#topNav {
  border-top: 1px solid #ececec;
}

.title-2019 {
  font-weight: 400;
  margin: 0;
  line-height: 2;
  font-size: 17.5px;
}
/* =============================================================================
   Others
   ========================================================================== */
.v-wrapper {
  margin: auto 5%;
  position: relative;
}

.v-block-img {
  display: block;
  width: 100%;
}

.v-tiny-text {
  font-size: 10px;
}

.v-tiny-text a {
  color: #222222 !important;
  font-family: sans-serif !important;
  text-decoration: none;
}

.v-page-title,
.v-modal-title {
  font-size: 24px;
  font-weight: normal;
  padding: 5px 0;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #676767;
}

.v-modal-title {
  font-size: 22px;
  margin: 0;
}

.v-social-icons {
  margin-top: 5px;
}

.v-social-icons img {
  display: inline-block;
  margin-left: 10px;
}

.v-blue {
  color: rgb(27, 153, 218);
}

.v-frm-row {
  padding: 0px 0 15px 10px;
  margin: 0;
  position: relative;
}

.v-frm-row label {
  font-size: 18px;
}

#ajaxProgress,
#ajaxMessage {
  display: none;
}

.v-inline-form label {
  display: inline-block;
  min-width: 150px;
}

.v-tiny-form {
  width: 600px;
}

label.error {
  color: #c53727;
  display: inline-block;
  line-height: 1;
  margin: 0px;
  padding: 5px 0;
  vertical-align: top;
  font-size: 0.7rem;
  font-weight: 600;
}

label.valid {
  color: green;
  display: inline-block;
  line-height: 1;
  margin: 5px 10px;
  padding: 5px 0;
  vertical-align: top;
  font-size: 0.7rem;
  font-weight: 600;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  font-family: Arial, helvetica, sans-serif;
  display: inline-block;
  /*height: 20px;
    padding: 4px 6px;
    line-height: 20px;*/
  color: #555555;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  vertical-align: middle;
  width: auto;
  margin-bottom: 8px;
  font-size: 12px;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
}

.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  font-size: 12px;
  height: calc(1.6em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.6;
}

.auto-height,
.dataTables_filter input,
.dataTables_filter select {
  height: auto !important;
}

textarea {
  height: auto;
}

select {
  height: 30px;
  line-height: 30px;
  outline: 0px;
}

select:focus {
  outline: 0px;
}

input[type="button"],
input[type="submit"],
button {
  font-family: Arial, helvetica, sans-serif;
}

.ash-block {
  background: transparent;
  padding: 20px 10px 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.white-block {
  background: #fff;
  padding: 20px 10px 10px;
  border: 1px solid #f0f0f0;
}

.tool-panel {
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-left: 0;
  border-right: 0;
  padding: 5px;
  margin-bottom: 10px;
}

.control-checkbox-title-label {
  text-align: left;
  font-weight: bold;
  float: left;
  padding-top: 5px;
  width: 100%;
  border-color: #d1d1d1;
  border-image: none;
  border-style: solid none;
  border-width: 0 0 1px;
}

.controls-ckeckbox-list {
  clear: both;
}

.course_info_box {
  width: 200px;
  float: left;
  padding: 3px;
}

.course_info_box label {
  margin: 0 0 0 6px !important;
}

.course_info_box input,
.course_info_box label {
  display: inline-block;
  margin: 0px;
}

.span11 {
  width: 920px;
}

.straight {
  width: 200px;
  text-align: right;
}

#loading {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 1050;

  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

#mask {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 37%;
  left: 45%;
  display: block;
  z-index: 1010;
}

.thumb-view {
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.125);
  float: left;
  height: 200px;
  margin: 0px 5px 10px 5px;
  overflow: hidden;
  padding: 5px 8px;
  position: relative;
  text-overflow: ellipsis;
  text-align: center;
  width: 190px;

  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;

  /*
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
    */
}

.thumb-view:hover {
  background: #e9e9e9;
  cursor: pointer;
}

/* .thumb-view:nth-child() {
    float: right; 
    margin: 5px 0 15px;
} */

.thumb-view a {
  display: inline-block;
  height: 93%;
  margin: 0;
  text-decoration: none;
  width: 100%;
}

.thumb-view img {
  display: inline-block;
  max-height: 80%;
  max-width: 100%;
}

.img-doc {
  height: 50% !important;
  margin: 10% auto 0 !important;
  width: 50% !important;
}

.thumb-view p {
  background: #ffffff;
  bottom: 0;
  color: #0088cc;
  display: block;
  font-size: 14px;
  height: 45px;
  left: 0;
  line-height: 1.1;
  margin: 0;
  overflow: hidden;
  padding: 8px 10px 6px;
  position: absolute;
  text-align: center;
  text-overflow: ellipsis;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}
.text-danger {
  color: rgb(114, 28, 36);
}
.text-success {
  color: rgb(21, 87, 36);
}
.text-info {
  color: rgb(12, 84, 96);
}
.text-warning {
  color: rgb(133, 100, 4);
}

ul.permissions {
  list-style: none;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid #f0f0f0;
}

ul.permissions li {
  display: inline-block;
  padding-right: 5px;
  width: 32%;
}

.btn-box {
  padding: 0px 10px 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.btn-box h1,
.btn-box h2,
.btn-box h3,
.btn-box h4 {
  margin: 0;
}

a.btn,
a.btn:hover,
a.btn:active {
  text-decoration: none !important;
}

a.btn-info,
a.btn-info:hover,
a.btn-info:active,
a.btn-info *,
a.btn-primary,
a.btn-primary:hover,
a.btn-primary:active,
a.btn-primary *,
a.btn-danger,
a.btn-danger:hover,
a.btn-danger:active,
a.btn-danger *,
a.btn-success,
a.btn-success:hover,
a.btn-success:active,
a.btn-success *,
a.btn-warning,
a.btn-warning:hover,
a.btn-warning:active,
a.btn-warning * {
  color: #fff;
}

/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (max-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
  ul.permissions li {
    width: 100%;
  }
}

/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}

.ir br {
  display: none;
}

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}

.clear {
  height: 0px;
  clear: both;
  overflow: hidden;
}

.just-print {
  display: none;
}

.panel-grid {
  margin-bottom: 10px;
}

.panel-heading {
  position: relative;
  padding: 5px 0;
  border-bottom: 1px solid #f2f2f2;
}

.panel-heading h4 {
  margin: 0;
  font-weight: normal;
  font-size: 130%;
  line-height: 1.5;
  display: inline-block;
}

.panel-body {
  position: relative;
  padding: 10px;
  border: 1px solid #f2f2f2;
  border-top: 0px;
}

.panel-body.no-heading {
  border-top: 1px solid #f2f2f2 !important;
}

.panel-body table {
  margin: 0px;
}

.panel-tools {
  position: absolute;
  bottom: -1px;
  right: 0px;
  background: #fff;
  border: 1px solid #f2f2f2;
  padding: 5px;
}

.timeline .header {
  background: #ccc;
  background-size: cover;
  color: #fff;
  position: relative;
}

.timeline .header .color-overlay {
  padding: 3em 2em;
  box-sizing: border-box;
  background: rgba(123, 94, 155, 0.5);
  line-height: normal;
}

.timeline > ul {
  margin: 0;
  padding: 0 0 0 0.5em;
  padding: 0.5em;
  list-style: none;
  position: relative;
}

.timeline > ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: list-item;
  text-align: -webkit-match-parent;
}
.timeline > ul > li:last-child {
  border-bottom-width: 0px;
}

.timeline .bullet {
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background: #fff;
  z-index: 2;
  position: relative;
}

.timeline li div {
  margin: 0.45em 0;
  vertical-align: top;
  display: inline-block;
}

.timeline .bullet {
  margin: 0.9em 0;
  margin-right: 5px;
}

.timeline .bullet.orange {
  border: 2px solid #ff9800;
}

.timeline .bullet.pink {
  border: 2px solid #e91e63;
}

.timeline .bullet.green {
  border: 2px solid #4caf50;
}

.timeline .time {
  width: 120px;
  font-size: 0.9em;
  padding-top: 0.25em;
}

.timeline .desc {
  font-size: 1em;
  padding-top: 0.25em;
}

.pink-label {
  border: 1px solid #e91e63;
  color: #e91e63;
  padding: 0.5em;
}

.orange-label {
  border: 1px solid #ff9800;
  color: #ff9800;
  padding: 0.5em;
}

.green-label {
  border: 1px solid #4caf50;
  color: #4caf50;
  padding: 0.5em;
}

.mt-10 {
  margin-top: 10px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.dm-uploader {
  border: 0.25rem dashed #a5a5c7;
  text-align: center;
}
.dm-uploader.active {
  border-color: green;
}

trix-editor,
.trix-editor {
  border-width: 0px;
}
.trix-container {
  position: relative;
  flex-grow: 1;
  max-width: 100%;
  margin: 0 auto;
  padding: 1em;
  background-color: #fff;
  box-shadow: 0rem 0rem 1rem rgba(0, 0, 0, 0.1);

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
@media (min-width: 1080px) {
  .trix-container {
    max-width: 100%;
    margin: 0em 0 0 0;
    padding: 1em;
  }
}
.trix-container__inner {
  max-width: 60em;
  margin: 0 auto;
}
trix-toolbar {
  position: -webkit-sticky;
  position: sticky;
  top: -0.1rem;
  font-family: sans-serif;
  background-color: #fff;
  z-index: 10;
  padding: 1em 0;
}

@media screen {
  .flex-row {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-row > .flex-col {
    flex: 1 0 100%;
    max-width: calc((100% / 5) - 1em);
    margin: 1em 0em;
    margin-right: 1em;
    float: none;
    width: initial;
    height: auto;
    width: auto;
  }

  .flex-row > .flex-col.last {
    margin-right: 0;
  }
}

/*MIN*/
@media screen and (max-width: 320px) {
  .flex-row {
    flex-direction: column;
  }
}

/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  /* Added by Syed */
  .just-print {
    display: block;
  }

  table,
  table th,
  table td {
    border: 1px solid #ddd !important;
  }
}

@media print {
  a[href]:after {
    content: none !important;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
[v-cloak] {
  display: none;
}

table.dataTable thead th,
table.dataTable thead td,
table.dataTable.no-footer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 11px;
}
.lds-ellipsis div {
  position: absolute;
  top: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}

/* styles for modal */
.modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}

.modal-wrapper {
  display: table-cell;
  vertical-align: top;
  padding-top: 1rem;
}

.modal-container {
  position: relative;
  width: 40%;
  margin: 0px auto;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-container-sm {
  width: 60%;
}

.modal-container-md {
  width: 70%;
}

.modal-container-lg {
  width: 80%;
}

.modal-header h3 {
  margin-top: 0;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 0.4rem 1rem 0.4rem;
}
.modal-header {
  /*padding-right: 2rem;*/
}

.modal-header * {
  margin: 0;
}

.modal-body {
  min-height: 200px;
}

.modal-footer.inside-body {
  padding: 0.5rem 0;
}
/*
   * The following styles are auto-applied to elements with
   * transition="modal" when their visibility is toggled
   * by Vue.js.
   *
   * You can easily play with the modal transition by editing
   * these styles.
   */

.modal-enter {
  opacity: 0;
}

.modal-leave-active {
  opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#dispResult {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .bs-sidenav.affix {
    position: relative;
    margin: auto;
    top: auto;
    margin-bottom: 20px;
  }

  .header-fixed {
    padding-top: 0px;
  }

  .header-fixed #headerPanel {
    position: relative;
    box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.15);
  }

  #topNav {
    position: relative;
    right: inherit;
    bottom: inherit;
    border-bottom: 1px solid #ececec;
    padding: 10px 20px 0px;
  }

  #bodyPanel,
  #footerPanel {
    padding: 1em;
  }
}
