:root {
  --sb-link-color: #212529FF;
  --sb-link-color-alpha: #212529A6;
  --sb-dark-blue: #0637F4FF;
  --sb-light-blue: #a9c4f4FF;
}

html {
  font-size: 14px;
}

.label-m {
  width: 150px;
}

.bg-grey-js {
  background-color: #eee;
  opacity: 1;
}

table thead th a {
  text-decoration: none;
}

table thead th a:hover {
  text-decoration: underline;
}

.input-group .form-control, .input-group-addon, .input-group-btn {
  width: 230px;
  text-align: left;
}

.radio-border {
  width: 25px;
}

.label-large {
  width: 500px !important;
  overflow: scroll;
}

.perf-box {
  background: #000f69;
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  height: 50px;
  color: white;
  line-height: 50px;
  border-radius: 4px
}

.btn-primary {
  background-color: #000f69 !important;
  border-color: #2e6da4 !important;
  color: white !important;
}

a {
  color: #000f69;
}

.card-primary > .card-header {
  background-color: #000f69;
  border-color: #000f69;
  color: #ffffff;
}

body {
  font-family: 'Montserrat', serif;
}

.btn-primary .btn-outline {
  color: white !important;
}


.btn-default {
  color: #fff;
  background-color: #000f69;
  border-color: #000f69;
}

.btn-default:hover {
  color: #fff !important;
  background-color: #ff918c !important;
  border-color: #ff918c !important;
}

.btn-success {
  color: #fff !important;
  background-color: #000f69 !important;
  border-color: #000f69 !important;
}

.btn-success:hover {
  color: #fff !important;
  background-color: #ff918c !important;
  border-color: #ff918c !important;
}

.error-info {
  color: #f2eff3 !important;
  background-color: #d01111 !important;
  border-color: #bce8f1;
}

.sb-bi {
  vertical-align: -.125em;
  pointer-events: none;
  fill: currentColor;
}

.sb-btn-single,
.sb-btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: .25rem .5rem;
  font-weight: 600;
  color: var(--sb-link-color-alpha);
  background-color: transparent;
  border: 0;
}
.sb-btn-single:hover,
.sb-btn-single:focus,
.sb-btn-toggle:hover,
.sb-btn-toggle:focus {
  color: var(--sb-dark-blue) !important;
  background-color: var(--sb-light-blue);
}
.sb-btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}
.sb-btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.sb-btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.sb-btn-single {
  padding-left: 1.75em;
}

.sb-btn-single a {
  text-decoration: none;
  color: var(--sb-link-color-alpha) !important;
}
.sb-btn-single:hover a,
.sb-btn-single:focus a,
.sb-btn-single a:hover,
.sb-btn-single a:focus {
  color: var(--sb-dark-blue) !important;
}

.sb-btn-toggle-nav a {
  display: inline-flex;
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.sb-btn-toggle-nav a:hover,
.sb-btn-toggle-nav a:focus {
  color: var(--sb-dark-blue) !important;
  background-color: var(--sb-light-blue);
}

@media(min-width:768px) {
  #yk-navbar {
    z-index: 1;
    position: absolute;
    width: 250px;
  }
}

.ticker-marquee {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}

.ticker-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-marquee 20s linear infinite;
}

@-moz-keyframes ticker-marquee {
  0%   { -moz-transform: translateX(0); }
  100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes ticker-marquee {
  0%   { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-100%); }
}
@keyframes ticker-marquee {
  0%   {
    -moz-transform: translateX(0); /* Firefox bug fix */
    -webkit-transform: translateX(0); /* Firefox bug fix */
    transform: translateX(0);
  }
  100% {
    -moz-transform: translateX(-100%); /* Firefox bug fix */
    -webkit-transform: translateX(-100%); /* Firefox bug fix */
    transform: translateX(-100%);
  }
}
