.logo-small {
  display: block;
  max-width: 100px;
  max-height: 100px;
}

.underline {
  text-decoration: underline;
}

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

.logo-large {
  display: block;
  max-width: 300px;
  max-height: 300px;
}

.router-link-active {
  font-weight: 600 !important;
  color: #2d785d !important;
}

.router-link-active img {
  filter: none;
}

.clickable-card {
  text-align: center;
  font-weight: 600;
  background-color: #fffff5;
  padding: 20px;
  width: 100%;
  height: 65px;
  color: black;
  font-size: 1.1rem;
}

.clickable-card:hover {
  background-color: #69f0ae1a;
  border-color: #000;
  color: black;
}

.dim {
  opacity: 0.5;
}

.spinner.loading {
  padding: 50px;
  position: relative;
  margin-top: 17%;
  text-align: center;
}

.spinner.loading:before {
  content: "";
  height: 70px;
  width: 70px;
  margin: -15px auto auto -15px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-width: 8px;
  border-style: solid;
  border-color: #009986 #ccc #ccc;
  border-radius: 100%;
  animation: rotation 0.7s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.el-input--prefix .el-input__inner {
  padding-right: 10px;
}

.el-input--suffix .el-input__inner {
  padding-right: 10px;
}

.table th {
  border-top: 0px !important;
}

.el-textarea__inner::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #acacac;
  opacity: 1; /* Firefox */
}

.float-right-r {
  float: right;
  right: 20%;
}

.el-table .cell {
  word-break: keep-all !important;
}

.el-table .danger-row {
  background: #ffefef;
}

.el-table .success-row {
  background: #f0f9eb;
}

.el-table .warning-row {
  background: #fdf6ec;
}

.el-table .big-danger-row {
  background: #f93eff;
}

.el-table__header th {
  background-color: #f7f7f7;
  color: #222;
  font-weight: 500;
}

.el-table__column-filter-trigger i {
  font-size: 12pt;
  font-weight: bold;
  color: #009986;
}

.navbar-nav .nav-link {
  font-size: 11pt;
  font-weight: 500;
}

.el-dropdown {
  font-size: 11pt;
  font-weight: 500;
}

.text-muted {
  font-weight: 500;
}

.purchaseForm td {
  border: 0px !important;
  padding: 0 !important;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

@media only screen and (max-width: 500px) {
  .studentContractTable {
    font-size: 0.8rem;
  }
}

#loading {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  position: fixed;
  display: none;
  z-index: 100;
  background: white;
}

.w-15 {
  width: 15%;
}

.w-10 {
  width: 10%;
}

.w-5 {
  width: 5%;
}

.signin-page {
  background: none;
}

.blue {
  color: #131b30;
}

.shadow {
  box-shadow: 0 20px 30px 0 rgba(36, 83, 107, 0.15);
}

.checkmark {
  width: 200px;
  margin: 0 auto;
  padding-top: 40px;
}

.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash 2s ease-in-out;
  -webkit-animation: dash 2s ease-in-out;
}

.spin {
  animation: spin 2s;
  -webkit-animation: spin 2s;
  transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

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

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

.el-card {
  overflow: auto;
}

.el-card--no-padding .el-card__body {
  padding: 0;
}

.table-borderless > tbody > tr > td,
.table-borderless > tbody > tr > th,
.table-borderless > tfoot > tr > td,
.table-borderless > tfoot > tr > th,
.table-borderless > thead > tr > td,
.table-borderless > thead > tr > th {
  border: none !important;
}

.upload-list-text span {
  font-family: sans-serif;
  font-size: 0.9em;
}

.content table td,
.content table th {
  padding: 0.5em 0.75em;
}
.content table td:first-child,
.content table th:first-child {
  padding-left: 1.75em;
}
.content table td:last-child,
.content table th:last-child {
  padding-right: 1.75em;
}
