/*$red: rgb(255, 177, 177);
$red-30: rgba(255, 177, 177, 0.3);
$red-45: rgba(255, 177, 177, 0.45);
$red-60: rgba(255, 177, 177, 0.6);
$red-75: rgba(255, 177, 177, 0.75);
$red-90: rgba(255, 177, 177, 0.9);*/
/*
$blue: rgb(111, 145, 203);
$blue-lighter: rgba(111, 145, 203, 0.45);
$blue-30: rgba(111, 145, 203, 0.3);
$blue-45: rgba(111, 145, 203, 0.45);
$blue-60: rgba(111, 145, 203, 0.6);
$blue-75: rgba(111, 145, 203, 0.75);
$blue-90: rgba(111, 145, 203, 0.90);*/
/* SCSS RGB */
/* SCSS RGB 60% Opacity*/
.text-white {
  color: #fefefe !important;
}

.text-green {
  color: #2fa55e !important;
}

.text-blue {
  color: #6f809e;
}

.text-red {
  color: #ff4a2f !important;
}

.text-red-lighter {
  color: rgba(255, 74, 47, 0.9);
}

.text-purple {
  color: rgba(68, 22, 142, 0.6);
}

.text-grey {
  color: rgba(143, 137, 149, 0.9);
}

.text-orange {
  color: #FD7E14;
}

.text-solyom-blue {
  color: #6f91cb;
}

.text-bold {
  font-weight: bold;
}

.text-alt {
  font-style: italic;
  font-size: 12px;
  line-height: 12px;
}

.text-small {
  font-size: 12px;
  line-height: 12px;
}

.text-smaller {
  font-size: 14px;
  line-height: 14px;
}

.bg-purple {
  background-color: #44168e;
}

.bg-grey {
  background-color: #393939;
}

.bg-grey-dark {
  background-color: #2d2d2d;
}

.hover-red {
  transition: color 0.12s linear !important;
}

.hover-red:hover {
  color: #ff4a2f !important;
}

.hover-green {
  transition: color 0.12s linear !important;
}

.hover-green:hover {
  color: #2fa55e !important;
}

.button-transition, .btn-purple, input.btn-check ~ label.btn-checkbox, .btn-primary, .btn-default, .btn-orange, .btn-red, .btn-green {
  transition-property: background-color, color, box-shadow;
  transition-duration: 0.15s;
  transition-timing-function: linear;
}

.btn {
  color: #6f91cb;
}
.btn:hover {
  color: rgba(111, 145, 203, 0.75);
}

.btn.show {
  color: #6f91cb;
}

.btn-disabled {
  color: rgba(111, 128, 158, 0.3);
  background-color: transparent;
  border: none;
}
.btn-disabled:hover {
  color: rgba(111, 128, 158, 0.3);
  background-color: transparent;
  border: none;
}

.btn-check + .btn-default.btn:hover {
  background-color: rgba(111, 145, 203, 0.21);
}

.btn-check:checked + .btn-default.btn {
  background-color: #6f91cb;
  color: #fefefe;
}

.btn-check + .btn-purple.btn:hover {
  background-color: rgba(68, 22, 142, 0.21);
}

.btn-check:checked + .btn-purple.btn {
  background-color: rgba(68, 22, 142, 0.6);
  color: #fefefe;
}

.btn-white {
  color: #6f91cb !important;
  background-color: rgba(254, 254, 254, 0.9) !important;
}

.btn-green {
  color: #2fa55e !important;
  background-color: rgba(47, 165, 94, 0.12) !important;
}
.btn-green.dark {
  color: #fefefe !important;
  background-color: #2fa55e !important;
}
.btn-green.dark:hover {
  background-color: rgba(47, 165, 94, 0.75) !important;
  color: #fefefe !important;
}
.btn-green.disabled {
  color: rgba(111, 128, 158, 0.75) !important;
  background-color: transparent !important;
}

.btn-green:hover {
  background-color: rgba(47, 165, 94, 0.9) !important;
  color: #fefefe !important;
}

.btn-red {
  color: #ff4a2f;
  background-color: rgba(255, 74, 47, 0.12);
}

.btn-red:hover {
  background-color: #ff4a2f;
  color: #fefefe;
}

.btn-orange {
  color: #FD7E14;
  background-color: rgba(253, 126, 20, 0.12);
}

.btn-orange:hover {
  background-color: #FD7E14;
  color: #fefefe;
}

.btn-default {
  color: #6f91cb;
  background-color: rgba(111, 145, 203, 0.12);
}
.btn-default.dark {
  color: #fefefe;
  background-color: #6f91cb;
}
.btn-default.dark:active {
  background-color: rgba(111, 145, 203, 0.6);
  color: #fefefe;
  border: none;
}

.btn-primary {
  color: #fefefe;
  background-color: #6f91cb;
  border-color: transparent;
}
.btn-primary:hover {
  background-color: rgba(111, 145, 203, 0.75);
  color: #fefefe;
  border-color: transparent;
}

.btn-transparent {
  background-color: transparent;
  box-shadow: none;
  transition: all 0.12s linear;
  border: none;
  color: #6f91cb;
}
.btn-transparent.btn-outline {
  box-shadow: 0px 0px 1px 1px rgba(111, 145, 203, 0.6);
}
.btn-transparent:hover {
  background-color: rgba(111, 145, 203, 0.12);
  color: #6f91cb;
}
.btn-transparent.hover-dark:hover {
  background-color: #6f91cb;
  color: #fefefe;
}
.btn-transparent.danger {
  color: #ff4a2f;
}
.btn-transparent.danger:hover {
  background-color: rgba(255, 74, 47, 0.12);
  color: #ff4a2f;
}
.btn-transparent.success {
  color: #2fa55e;
}
.btn-transparent.success:hover {
  background-color: rgba(47, 165, 94, 0.12);
  color: #2fa55e;
}
.btn-transparent.warning {
  color: #FD7E14;
}
.btn-transparent.warning:hover {
  background-color: rgba(253, 126, 20, 0.12);
  color: #FD7E14;
}

.btn-text {
  background-color: transparent;
  box-shadow: none;
  transition: all 0.12s linear;
  border: none;
  padding: 0px;
  font-size: inherit;
}
.btn-text.danger {
  color: #ff4a2f;
}
.btn-text.danger:hover {
  color: rgba(255, 74, 47, 0.75);
}
.btn-text.warning {
  color: #FD7E14;
}
.btn-text.warning:hover {
  color: rgba(253, 126, 20, 0.75);
}

.close-button {
  cursor: pointer;
  color: rgba(255, 74, 47, 0.9);
  margin: 5px 0 2px 9px;
  font-size: 15px;
  border-radius: 3px;
  background-color: transparent;
  border: none;
}
.close-button:hover {
  color: rgba(255, 74, 47, 0.75) !important;
}

input.btn-check ~ label.btn-checkbox {
  box-shadow: 0px 0px 1px 1px rgba(111, 145, 203, 0.3);
  border: none;
}
input.btn-check ~ label.btn-checkbox:hover {
  background-color: rgba(111, 145, 203, 0.75);
  color: #fefefe;
}

input:checked.btn-check ~ label.btn-checkbox {
  background-color: rgba(111, 145, 203, 0.75);
  color: white;
  border: none;
}
input:checked.btn-check ~ label.btn-checkbox:hover {
  background-color: rgba(111, 145, 203, 0.6) !important;
}

.button-close {
  cursor: pointer;
  color: #ff4a2f;
}
.button-close:hover {
  color: rgba(255, 74, 47, 0.6) !important;
}

.btn-addon {
  background-color: rgba(111, 145, 203, 0.12);
  box-shadow: 0px 0px 1px 1px rgba(111, 145, 203, 0.21);
}
.btn-addon:hover {
  background-color: rgba(111, 145, 203, 0.21);
}

.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
  border: none;
  color: #6f809e;
}

.btn-default:hover, .btn-default:active, .btn-default.dropdown-toggle.show {
  background-color: rgba(111, 145, 203, 0.9);
  color: #fefefe;
}

.btn-purple {
  color: rgba(68, 22, 142, 0.6);
  background-color: rgba(68, 22, 142, 0.12);
}

.btn-purple:hover {
  background-color: rgba(68, 22, 142, 0.6);
  color: #fefefe;
}

.glow-red {
  box-shadow: 0px 0px 1px 1px rgba(255, 74, 47, 0.6) !important;
}

.glow-green {
  box-shadow: 0px 0px 1px 1px rgba(47, 165, 94, 0.6) !important;
}

.glow-primary {
  box-shadow: 0px 0px 1px 1px rgba(111, 128, 158, 0.6) !important;
}

.glow-purple {
  box-shadow: 0px 0px 1px 1px rgba(68, 22, 142, 0.6) !important;
}

.text-primary {
  color: #6f809e !important;
}

span.danger, i.danger, svg.danger {
  color: #ff4a2f;
}
span.warning, i.warning, svg.warning {
  color: #FD7E14;
}
span.success, i.success, svg.success {
  color: #2fa55e;
}

.border-blue-top {
  border-top: 1px solid rgba(111, 128, 158, 0.45);
}

.blur {
  filter: blur(12px) saturate(38%);
  pointer-events: none;
  opacity: 0.3;
}

.mr-3 {
  margin-right: 3px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.ml-3 {
  margin-left: 3px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.nowrap {
  white-space: nowrap;
}

.mb-1px {
  margin-bottom: 1px !important;
}

.mb-3px {
  margin-bottom: 3px !important;
}

.mb-5px {
  margin-bottom: 5px !important;
}

.v-lower {
  vertical-align: -1px;
}

.text-italic {
  font-style: italic;
}

.mw-12 {
  min-width: 12px;
}

.mw-18 {
  min-width: 18px;
}

.full-width-center {
  width: 100%;
  text-align: center;
}

.column-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.column {
  display: flex;
  flex-direction: column;
}

.column-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.w-128px {
  width: 128px !important;
}

.br-0 {
  border-radius: 0 !important;
}

.no-word-break {
  white-space: nowrap;
}

.v-unset {
  vertical-align: unset;
}

.v-align-plus-1 {
  vertical-align: 1px !important;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: Cantarell, serif;
  background: none !important;
}

.form-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fefefe;
}
.form-container button {
  background-color: #6f91cb;
  border-color: #6f91cb;
  border-width: 2px;
  transition-property: opacity;
  color: white;
  transition-duration: 0.21s;
  transition-timing-function: linear;
}
.form-container .form-check-input:checked {
  background-color: #6f91cb;
  border-color: #6f91cb;
}
.form-container button:hover {
  background-color: #6f91cb;
  color: white;
  border-color: #6f91cb;
  opacity: 0.72;
  transition-property: opacity;
  transition-duration: 0.21s;
  transition-timing-function: linear;
}
.form-container .sm-logo {
  max-width: 300px;
}
.form-container .login-error {
  color: rgba(255, 74, 47, 0.9);
  border-radius: 9px;
  padding: 3px;
}

input[type=text], input[type=password], input[type=url] {
  border-radius: 5px;
  caret-color: #6f809e !important;
  color: #6f809e;
  margin-right: 1px;
  transition: box-shadow 0.06s linear;
}
input[type=text]::placeholder, input[type=password]::placeholder, input[type=url]::placeholder {
  color: rgba(111, 128, 158, 0.6);
}
input[type=text]:focus, input[type=text]:focus-visible, input[type=password]:focus, input[type=password]:focus-visible, input[type=url]:focus, input[type=url]:focus-visible {
  box-shadow: 0px 0px 1px 1px rgba(111, 145, 203, 0.6);
  color: #6f809e !important;
}

@media only screen and (max-width: 768px) {
  video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-height: 100%;
    z-index: -1;
    transform: translateX(calc((100% - 100vw) / 2));
  }
}
@media only screen and (min-width: 768px) {
  video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-height: 100%;
    min-width: 100%;
    z-index: -1;
    transform: translateX(calc((100% - 100vw) / 2));
  }
}

/*# sourceMappingURL=login.css.map */
