/* Minification failed. Returning unminified contents.
(1919,26): run-time error CSS1039: Token not allowed after unary operator: '-blue'
(1922,22): run-time error CSS1039: Token not allowed after unary operator: '-blue'
(1970,26): run-time error CSS1039: Token not allowed after unary operator: '-blue'
(2027,35): run-time error CSS1046: Expect comma, found '0'
(2027,39): run-time error CSS1046: Expect comma, found ')'
(2032,35): run-time error CSS1046: Expect comma, found '0'
(2032,39): run-time error CSS1046: Expect comma, found ')'
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
 * pretty-checkbox.css
 *
 * A pure CSS library to beautify checkbox and radio buttons
 *
 * Source: https://github.com/lokesh-coder/pretty-checkbox
 * Demo: https://lokesh-coder.github.io/pretty-checkbox
 *
 * Copyright (c) 2017 Lokesh rajendran
 */

.pretty * {
  box-sizing: border-box;
}

.pretty input:not([type='checkbox']):not([type='radio']) {
  display: none;
}

.pretty {
  position: relative;
  display: inline-block;
  margin-right: 1em;
  white-space: nowrap;
  line-height: 1;
  font-size:20px;
}

.pretty input {
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1em;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.pretty .state label {
  position: initial;
  display: inline-block;
  font-weight: normal;
  margin: 0;
  text-indent: 2em;
  min-width: calc(1em + 2px);
}

.pretty .state label:before,
.pretty .state label:after {
  content: '';
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  display: block;
  box-sizing: border-box;
  border-radius: 0;
  border: 2px solid transparent;
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  /*top: calc((0% - (100% - 1em)) - 8%);*/
  background-color: white;
}

.pretty .state label:before {
  border-color: black;
}

.pretty .state.p-is-hover,
.pretty .state.p-is-indeterminate {
  display: none;
}

@-webkit-keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@keyframes zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@-webkit-keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes tada {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: scale(7);
    transform: scale(7);
  }
  38% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  72% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  81% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.24);
    transform: scale(1.24);
  }
  89% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  95% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
  }
  100% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes jelly {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    -webkit-transform: scale3d(0.85, 1.15, 1);
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-200px) rotate(-45deg);
    transform: translateZ(-200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) rotate(0);
    transform: translateZ(0) rotate(0);
  }
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0px 0px 0px 0px #bdc3c7;
  }
  100% {
    box-shadow: 0px 0px 0px 1.5em rgba(189, 195, 199, 0);
  }
}

.pretty.p-default.p-fill .state label:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.pretty.p-default .state label:after {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.pretty.p-default input:checked ~ .state label:after {
  background-color: #bdc3c7 !important;
}

.pretty.p-default.p-thick .state label:before,
.pretty.p-default.p-thick .state label:after {
  border-width: calc(1em / 7);
}

.pretty.p-default.p-thick .state label:after {
  -webkit-transform: scale(0.4) !important;
  -ms-transform: scale(0.4) !important;
  transform: scale(0.4) !important;
}

.pretty.p-icon .state .icon {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-icon .state .icon:before {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.pretty.p-icon input:checked ~ .state .icon {
  opacity: 1;
}

.pretty.p-icon input:checked ~ .state label:before {
  border-color: #5a656b;
}

.pretty.p-svg .state .svg {
  position: absolute;
  font-size: 1em;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  left: 0;
  z-index: 1;
  text-align: center;
  line-height: normal;
  top: calc((0% - (100% - 1em)) - 8%);
  border: 1px solid transparent;
  opacity: 0;
}

.pretty.p-svg .state svg {
  margin: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}

.pretty.p-svg input:checked ~ .state .svg {
  opacity: 1;
}

.pretty.p-image .state img {
  opacity: 0;
  position: absolute;
  width: calc(1em + 2px);
  height: calc(1em + 2px);
  top: 0;
  top: calc((0% - (100% - 1em)) - 8%);
  left: 0;
  z-index: 0;
  text-align: center;
  line-height: normal;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-image input:checked ~ .state img {
  opacity: 1;
}

.pretty.p-switch input {
  min-width: 2em;
}

.pretty.p-switch .state {
  position: relative;
}

    .pretty.p-switch .state:before {
        content: '';
        border: 1px solid #9FA2AE;
        border-radius: 60px;
        width: 2em;
        box-sizing: unset;
        height: calc(1em + 2px);
        position: absolute;
        top: 0;
        /*top: calc((0% - (100% - 1em)) - 16%);*/
        z-index: 0;
        transition: all 0.5s ease;
        background: #9FA2AE;
    }

.pretty.p-switch .state label {
  text-indent: 2.5em;
}

.pretty.p-switch .state label:before,
.pretty.p-switch .state label:after {
  transition: all 0.5s ease;
  border-radius: 100%;
  left: 0;
  border-color: transparent;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-switch .state label:after {
  background-color: white !important;
}

.pretty.p-switch input:checked ~ .state:before {
    border-color: #9FA2AE;
}

.pretty.p-switch input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch input:checked ~ .state label:after {
  background-color: #5a656b !important;
  left: 1em;
}

.pretty.p-switch.p-fill input:checked ~ .state:before {
    border-color: #0d6efd;
    background-color: #0d6efd !important;
}

.pretty.p-switch.p-fill input:checked ~ .state label:before {
  opacity: 0;
}

.pretty.p-switch.p-fill input:checked ~ .state label:after {
  background-color: #fff !important;
  left: 1em;
}

.pretty.p-switch.p-slim .state:before {
  height: 0.1em;
  background: #bdc3c7 !important;
  top: calc(50% - 0.1em);
}

.pretty.p-switch.p-slim input:checked ~ .state:before {
  border-color: #5a656b;
  background-color: #5a656b !important;
}

.pretty.p-has-hover input:hover ~ .state:not(.p-is-hover) {
  display: none;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover {
  display: block;
}

.pretty.p-has-hover input:hover ~ .state.p-is-hover .icon {
  display: block;
}

.pretty.p-has-focus input:focus ~ .state label:before {
  box-shadow: 0px 0px 3px 0px #bdc3c7;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state:not(.p-is-indeterminate) {
  display: none;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state.p-is-indeterminate {
  display: block;
}

.pretty.p-has-indeterminate input[type='checkbox']:indeterminate ~ .state.p-is-indeterminate .icon {
  display: block;
  opacity: 1;
}

.pretty.p-toggle .state.p-on {
  opacity: 0;
  display: none;
}

.pretty.p-toggle .state.p-off,
.pretty.p-toggle .state .icon,
.pretty.p-toggle .state .svg,
.pretty.p-toggle .state img {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle .state.p-off .icon {
  color: #bdc3c7;
}

.pretty.p-toggle input:checked ~ .state.p-on {
  opacity: 1;
  display: inherit;
}

.pretty.p-toggle input:checked ~ .state.p-off {
  opacity: 0;
  display: none;
}

.pretty.p-plain input:checked ~ .state label:before,
.pretty.p-plain.p-toggle .state label:before {
  content: none;
}

.pretty.p-plain.p-plain .icon {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.pretty.p-round .state label:before,
.pretty.p-round .state label:after {
  border-radius: 100%;
}

.pretty.p-round.p-icon .state .icon {
  border-radius: 100%;
  overflow: hidden;
}

.pretty.p-round.p-icon .state .icon:before {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}

.pretty.p-curve .state label:before,
.pretty.p-curve .state label:after {
  border-radius: 20%;
}

.pretty.p-smooth label:before,
.pretty.p-smooth label:after,
.pretty.p-smooth .icon,
.pretty.p-smooth .svg {
  transition: all 0.5s ease;
}

.pretty.p-smooth input:checked + .state label:after {
  transition: all 0.3s ease;
}

.pretty.p-smooth input:checked + .state .icon,
.pretty.p-smooth input:checked + .state .svg,
.pretty.p-smooth input:checked + .state img {
  -webkit-animation: zoom 0.2s ease;
  animation: zoom 0.2s ease;
}

.pretty.p-smooth.p-default input:checked + .state label:after {
  -webkit-animation: zoom 0.2s ease;
  animation: zoom 0.2s ease;
}

.pretty.p-smooth.p-plain input:checked + .state label:before {
  content: '';
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  transition: all 0.5s ease;
}

.pretty.p-tada:not(.p-default) input:checked + .state .icon,
.pretty.p-tada:not(.p-default) input:checked + .state .svg,
.pretty.p-tada:not(.p-default) input:checked + .state img,
.pretty.p-tada:not(.p-default) input:checked + .state label:before,
.pretty.p-tada:not(.p-default) input:checked + .state label:after {
  -webkit-animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  animation: tada 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1 alternate;
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state .icon,
.pretty.p-jelly:not(.p-default) input:checked + .state .svg,
.pretty.p-jelly:not(.p-default) input:checked + .state img,
.pretty.p-jelly:not(.p-default) input:checked + .state label:before,
.pretty.p-jelly:not(.p-default) input:checked + .state label:after {
  -webkit-animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: jelly 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-jelly:not(.p-default) input:checked + .state label:before {
  border-color: transparent;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state .icon,
.pretty.p-rotate:not(.p-default) input:checked ~ .state .svg,
.pretty.p-rotate:not(.p-default) input:checked ~ .state img,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before,
.pretty.p-rotate:not(.p-default) input:checked ~ .state label:after {
  -webkit-animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: rotate 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.pretty.p-rotate:not(.p-default) input:checked ~ .state label:before {
  border-color: transparent;
}

.pretty.p-pulse:not(.p-switch) input:checked ~ .state label:before {
  -webkit-animation: pulse 1s;
  animation: pulse 1s;
}

.pretty input[disabled] {
  cursor: not-allowed;
  display: none;
}

.pretty input[disabled] ~ * {
  opacity: .5;
}

.pretty.p-locked input {
  display: none;
  cursor: not-allowed;
}

.pretty input:checked ~ .state.p-primary label:after,
.pretty.p-toggle .state.p-primary label:after {
  background-color: #428bca !important;
}

.pretty input:checked ~ .state.p-primary .icon,
.pretty input:checked ~ .state.p-primary .svg,
.pretty.p-toggle .state.p-primary .icon,
.pretty.p-toggle .state.p-primary .svg {
  color: #fff;
  stroke: #fff;
}

/*.pretty input:checked ~ .state.p-primary-o label:before,
.pretty.p-toggle .state.p-primary-o label:before {
  border-color: #428bca;
}*/

.pretty input:checked ~ .state.p-primary-o label:after,
.pretty.p-toggle .state.p-primary-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-primary-o .icon,
.pretty input:checked ~ .state.p-primary-o .svg,
.pretty input:checked ~ .state.p-primary-o svg,
.pretty.p-toggle .state.p-primary-o .icon,
.pretty.p-toggle .state.p-primary-o .svg,
.pretty.p-toggle .state.p-primary-o svg {
  color: #428bca;
  stroke: #428bca;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-primary-o label:after {
  background-color: #428bca !important;
}

.pretty.p-switch input:checked ~ .state.p-primary:before {
  border-color: #428bca;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-primary:before {
  background-color: #428bca !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-primary:before {
  border-color: #245682;
  background-color: #245682 !important;
}

.pretty input:checked ~ .state.p-info label:after,
.pretty.p-toggle .state.p-info label:after {
  background-color: #5bc0de !important;
}

.pretty input:checked ~ .state.p-info .icon,
.pretty input:checked ~ .state.p-info .svg,
.pretty.p-toggle .state.p-info .icon,
.pretty.p-toggle .state.p-info .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-info-o label:before,
.pretty.p-toggle .state.p-info-o label:before {
  border-color: #5bc0de;
}

.pretty input:checked ~ .state.p-info-o label:after,
.pretty.p-toggle .state.p-info-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-info-o .icon,
.pretty input:checked ~ .state.p-info-o .svg,
.pretty input:checked ~ .state.p-info-o svg,
.pretty.p-toggle .state.p-info-o .icon,
.pretty.p-toggle .state.p-info-o .svg,
.pretty.p-toggle .state.p-info-o svg {
  color: #5bc0de;
  stroke: #5bc0de;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-info-o label:after {
  background-color: #5bc0de !important;
}

.pretty.p-switch input:checked ~ .state.p-info:before {
  border-color: #5bc0de;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-info:before {
  background-color: #5bc0de !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-info:before {
  border-color: #2390b0;
  background-color: #2390b0 !important;
}

.pretty input:checked ~ .state.p-success label:after,
.pretty.p-toggle .state.p-success label:after {
  background-color: #5cb85c !important;
}

.pretty input:checked ~ .state.p-success .icon,
.pretty input:checked ~ .state.p-success .svg,
.pretty.p-toggle .state.p-success .icon,
.pretty.p-toggle .state.p-success .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-success-o label:before,
.pretty.p-toggle .state.p-success-o label:before {
  border-color: #5cb85c;
}

.pretty input:checked ~ .state.p-success-o label:after,
.pretty.p-toggle .state.p-success-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-success-o .icon,
.pretty input:checked ~ .state.p-success-o .svg,
.pretty input:checked ~ .state.p-success-o svg,
.pretty.p-toggle .state.p-success-o .icon,
.pretty.p-toggle .state.p-success-o .svg,
.pretty.p-toggle .state.p-success-o svg {
  color: #5cb85c;
  stroke: #5cb85c;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-success-o label:after {
  background-color: #5cb85c !important;
}

.pretty.p-switch input:checked ~ .state.p-success:before {
  border-color: #5cb85c;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-success:before {
  background-color: #5cb85c !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-success:before {
  border-color: #357935;
  background-color: #357935 !important;
}

.pretty input:checked ~ .state.p-warning label:after,
.pretty.p-toggle .state.p-warning label:after {
  background-color: #f0ad4e !important;
}

.pretty input:checked ~ .state.p-warning .icon,
.pretty input:checked ~ .state.p-warning .svg,
.pretty.p-toggle .state.p-warning .icon,
.pretty.p-toggle .state.p-warning .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-warning-o label:before,
.pretty.p-toggle .state.p-warning-o label:before {
  border-color: #f0ad4e;
}

.pretty input:checked ~ .state.p-warning-o label:after,
.pretty.p-toggle .state.p-warning-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-warning-o .icon,
.pretty input:checked ~ .state.p-warning-o .svg,
.pretty input:checked ~ .state.p-warning-o svg,
.pretty.p-toggle .state.p-warning-o .icon,
.pretty.p-toggle .state.p-warning-o .svg,
.pretty.p-toggle .state.p-warning-o svg {
  color: #f0ad4e;
  stroke: #f0ad4e;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-warning-o label:after {
  background-color: #f0ad4e !important;
}

.pretty.p-switch input:checked ~ .state.p-warning:before {
  border-color: #f0ad4e;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-warning:before {
  background-color: #f0ad4e !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-warning:before {
  border-color: #c77c11;
  background-color: #c77c11 !important;
}

.pretty input:checked ~ .state.p-danger label:after,
.pretty.p-toggle .state.p-danger label:after {
  background-color: #d9534f !important;
}

.pretty input:checked ~ .state.p-danger .icon,
.pretty input:checked ~ .state.p-danger .svg,
.pretty.p-toggle .state.p-danger .icon,
.pretty.p-toggle .state.p-danger .svg {
  color: #fff;
  stroke: #fff;
}

.pretty input:checked ~ .state.p-danger-o label:before,
.pretty.p-toggle .state.p-danger-o label:before {
  border-color: #d9534f;
}

.pretty input:checked ~ .state.p-danger-o label:after,
.pretty.p-toggle .state.p-danger-o label:after {
  background-color: transparent;
}

.pretty input:checked ~ .state.p-danger-o .icon,
.pretty input:checked ~ .state.p-danger-o .svg,
.pretty input:checked ~ .state.p-danger-o svg,
.pretty.p-toggle .state.p-danger-o .icon,
.pretty.p-toggle .state.p-danger-o .svg,
.pretty.p-toggle .state.p-danger-o svg {
  color: #d9534f;
  stroke: #d9534f;
}

.pretty.p-default:not(.p-fill) input:checked ~ .state.p-danger-o label:after {
  background-color: #d9534f !important;
}

.pretty.p-switch input:checked ~ .state.p-danger:before {
  border-color: #d9534f;
}

.pretty.p-switch.p-fill input:checked ~ .state.p-danger:before {
  background-color: #d9534f !important;
}

.pretty.p-switch.p-slim input:checked ~ .state.p-danger:before {
  border-color: #a02622;
  background-color: #a02622 !important;
}

.pretty.p-bigger label:before,
.pretty.p-bigger label:after,
.pretty.p-bigger .icon,
.pretty.p-bigger .svg,
.pretty.p-bigger .img {
  font-size: 1.2em !important;
  top: calc((0% - (100% - 1em)) - 35%) !important;
}

.pretty.p-bigger label {
  text-indent: 1.7em;
}

@media print {
  .pretty .state:before,
  .pretty .state label:before,
  .pretty .state label:after,
  .pretty .state .icon {
    color-adjust: exact;
    /* stylelint-disable */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

body {
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0.15px;
  color: #383E5C;
  background-image: url("/images/BG.png");
  background-color: #F5F5F5;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}
.content {
  padding: calc(1.5625rem + 3.75vw) 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media (min-width: 1200px) {
  .content {
    padding: 4.375rem 0;
  }
}
h1 {
  font-weight: bold;
  font-size: calc(1.325rem + 0.9vw);
  line-height: 133%;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  font-weight: bold;
  font-size: calc(1.275rem + 0.3vw);
  line-height: 133%;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
  }
}
h3 {
  font-weight: bold;
  font-size: 1rem;
  line-height: 200%;
  margin-bottom: 15px;
}
.small {
  display: block;
  font-size: 0.85rem;
  line-height: 17px;
  color: black;
  margin-bottom: 15px;
}
a.link {
  color: #1978D4;
}
a,
a:hover {
  text-decoration: none;
  color: #383E5C;
}
.row:not(:last-child) {
  margin-bottom: 15px;
}
footer {
  background: #383E5C;
}
footer ul li,
footer ul,
footer li,
footer a,
footer p {
  color: white;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 2px 0;
}
footer a:hover {
  color: #dedede;
}
.infobar {
  padding: 2px 0;
}
.infobar.warning {
  background: #D41919;
  color: white;
}
@media screen and (max-width: 1199px) {
  .infobar {
    padding: 10px 0;
    font-size: 14px;
  }
  .infobar img {
    float: left;
  }
}
.popup {
  position: fixed;
  top: 200px;
  right: 0;
  background: white;
  padding: 10px 10px 0px 44px;
  max-width: 50%;
  border: 1px solid #9FA2AE;
  border-radius: 4px 0px 0px 4px;
  max-width: 450px;
  background-image: url(/images/Info.png);
  background-position: 15px 26px;
  background-repeat: no-repeat;
  display: none;
}
@media screen and (max-width: 767px) {
  .popup {
    bottom: 0;
    right: 0;
    left: 0 !important;
    top: unset !important;
    z-index: 3;
  }
}
.popup p {
  margin-bottom: 0px;
}
.btn-small {
  padding: 6px 20px !important;
}
/*Benjamin storyboard herfra og ned*/
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-text {
  color: red;
}
.map {
  box-shadow: 0 0 8px 8px white inset;
  max-width: 100%;
}
#image-container {
  background: url("https://via.placeholder.com/800x500?text=Google+map") left top no-repeat;
  box-shadow: 0px 0px 100px 100px #F5F5F5 inset;
  max-width: 100%;
  width: 800px;
  height: 500px;
}
.progress-item-wrap {
  justify-content: center;
  width: 100%;
  bottom: 0;
}
.progress-item-wrap .progress-item {
  width: 24.5%;
  border: 1px solid;
}
.progress-item-wrap span {
  margin-bottom: 0 !important;
}
.btn-arrow-right,
.btn-arrow-left {
  position: relative;
  padding-left: 18px;
  padding-right: 18px;
}
.btn-arrow-right {
  padding-left: 36px;
}
.btn-arrow-first {
  border-radius: 18px 0 0 18px;
  -webkit-border-radius: 18px 0 0 18px;
}
.btn-arrow-last {
  border-radius: 0 18px 18px 0;
  -webkit-border-radius: 0 18px 18px 0;
}
.btn-arrow-left {
  padding-right: 36px;
}
.btn-arrow-right:after,
.btn-arrow-left:after {
  /* make two squares (before and after), looking similar to the button */
  content: "";
  position: absolute;
  top: 5px;
  /* move it down because of rounded corners */
  width: 26px;
  /* same as height */
  height: 26px;
  /* button_outer_height / sqrt(2) */
  background: inherit;
  /* use parent background */
  border: inherit;
  /* use parent border */
  border-left-color: transparent;
  /* hide left border */
  border-bottom-color: transparent;
  /* hide bottom border */
  border-radius: 0px 0px 0px 0px;
  /* round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
  -webkit-border-radius: 0px 0px 0px 0px;
  -moz-border-radius: 0px 4px 0px 0px;
}
.btn-arrow-right:after {
  transform: rotate(45deg);
  /* rotate right arrow squares 45 deg to point right */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.btn-arrow-right:after {
  /* align the "after" square to the right */
  right: -13px;
}
.btn-arrow-right:after {
  /* bring arrow pointers to front */
  z-index: 1;
}
.white-map-field {
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 5px;
  margin-bottom: 27px;
}
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #383E5C !important;
}
.dropdown-item:focus,
.dropdown-item:hover {
  color: #fff;
  background-color: #383E5C;
}
.gray-text-field {
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  /*        h3 {
            color: black;
        }*/
}
.gray-text-field.grant {
  display: flex;
  flex-direction: column;
}
.gray-text-field.grant .btn-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.gray-text-field label {
  color: black;
}
.gray-text-field .btn {
  margin-bottom: 0;
}
.line-height-1 {
  line-height: 1;
}
b {
  font-weight: bold;
}
.white-space-break-space {
  white-space: initial;
}
.text-align-right {
  text-align: right;
}
.zipcode {
  width: 30% !important;
  display: inline-block;
  margin-right: 10px !important;
}
.city {
  width: 65% !important;
  float: right;
  display: inline-block;
}
.checkbox-text {
  line-height: 21px;
  font-size: 14px;
  text-indent: 0 !important;
  padding-left: 50px;
}
.checkbox-text a {
  text-decoration: underline;
}
.checkbox-text::before,
.checkbox-text::after {
  font-size: 20px;
}
.receipt-time-text {
  font-size: 45px;
}
.receipt-button {
  width: 200px;
}
.cancel-order-button {
  width: 350px;
  max-width: 100%;
}
.create-user-information-button {
  width: 285px;
  float: right;
}
.travel-accept-button {
  width: 230px;
}
.container {
  position: relative;
}
.flowmaster {
  height: 100%;
}
.my-profile-delete-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.dropdown ul {
  border: none;
  background-color: transparent;
}
.dropdown ul li {
  padding: 0 !important;
  border-left: 1px solid #383E5C;
  border-right: 1px solid #383E5C;
  background-color: white;
}
.dropdown ul li:first-child {
  border-top: 1px solid #383E5C;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dropdown ul li:last-child {
  border-bottom: 1px solid #383E5C;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0px;
  font-family: 'Open Sans', sans-serif;
}
.page-container {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}
.progress__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  box-shadow: 0px 14px 18px #0000000d;
  border-radius: 100rem;
}
.progress__item {
  flex-grow: 1;
  border: 2px solid transparent;
  padding: 15px 30px;
  color: #9FA2AE;
  display: flex;
  align-items: center;
  font-weight: bold;
  background-color: white;
  position: relative;
}
.progress__item:not(:last-child) {
  border-right: none;
}
.progress__item:first-child {
  border-top-left-radius: 10rem;
  border-bottom-left-radius: 10rem;
  border-left-color: transparent;
}
.progress__item:last-child {
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
  border-right-color: transparent;
}
.progress__item--active {
  border-top-color: #1978D4;
  border-bottom-color: #1978D4;
  color: #383E5C;
  z-index: 2;
}
.progress__item--active:first-child {
  border-left-color: #1978D4;
}
.progress__item--active:last-child {
  border-right-color: #1978D4;
}
.progress__item--active::after {
  border-left-color: #1978D4 !important;
}
.progress__item--active + .progress__item--active {
  border-left: none;
}
.progress__arrow {
  height: calc(100% + 4px);
  width: 2.3px;
  position: absolute;
  top: 50%;
  left: -3px;
  transform: translateY(-50%);
  z-index: 2;
  background-color: #9FA2AE;
}
.progress__arrow::before,
.progress__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4px;
  transform: translate(100%, -50%);
  z-index: 3;
  border: 10px solid transparent;
}
.progress__arrow::before {
  right: 0px;
  border-left-color: #9FA2AE;
}
.progress__arrow::after {
  border-left-color: white;
}
.progress__item:first-child .progress__arrow {
  display: none;
}
.progress__item--active .progress__arrow,
.progress__item--active + .progress__item .progress__arrow {
  background-color: #1978D4 !important;
}
.progress__item--active .progress__arrow::before,
.progress__item--active + .progress__item .progress__arrow::before {
  border-left-color: #1978D4;
}
.progress__icon {
  width: 20px;
  height: 20px;
  border: 3px solid #383E5C;
  border-radius: 50%;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress__icon svg {
  display: none;
  transform: scale(0.8);
}
.progress__icon--checked svg {
  display: block;
}
.plus-minus {
  max-width: 100%;
  width: 320px;
  /* margin-bottom: 10px;*/
}
.plus-minus .plus-minus-plus {
  margin-left: 5px;
}
.plus-minus div {
  width: 220px;
  height: 40px;
  text-align: center !important;
  line-height: 40px;
  display: inline-block;
  font-size: 20px;
  max-width: 60%;
}
.plus-minus .btn-light {
  max-width: 20%;
  width: 40px;
  border: 1px solid;
}
.plus-minus a {
  font-size: 20px;
  padding-top: 4px;
}
.pretty,
.btn,
p,
a,
textarea,
span {
  margin-bottom: 15px;
}
.pretty,
textarea {
  display: block;
}
.textarea-border {
  border-radius: 4px;
}
.tofromWidth {
  font-weight: bold;
  width: 50px;
  display: inline-block;
}
.text-below {
  margin-bottom: 2px !important;
}
.travel-accept-grayarea p,
.travel-receipt-grayarea p,
.cancel-order-grayarea p,
.travel-accept-grayarea h1,
.travel-receipt-grayarea h1,
.cancel-order-grayarea h1,
.travel-accept-grayarea h2,
.travel-receipt-grayarea h2,
.cancel-order-grayarea h2,
.travel-accept-grayarea h3,
.travel-receipt-grayarea h3,
.cancel-order-grayarea h3 {
  margin-bottom: 0px !important;
}
.my-travels .btn,
.my-travels h2 {
  margin-bottom: 0px !important;
}
.my-profile h3 {
  margin-bottom: 0;
}
.landing-page .gray-text-field p {
  margin-bottom: 0 !important;
}
.landing-page .gray-text-field li {
  margin-left: 25px;
}
.question {
  position: absolute;
  cursor: pointer;
  margin-left: 5px;
}
.receipt-button-wrap,
.cancel-order-wrap {
  text-align: center;
}
.travel-receipt-grayarea,
.cancel-order-grayarea {
  border-radius: 25px;
}
.travel-accept-grayarea .text-muted {
  margin-bottom: 15px !important;
}
.ui-datepicker a,
.ui-datepicker span {
  margin-bottom: 0px !important;
}
.ui-datepicker,
.ui-timepicker-container {
  z-index: 1000 !important;
}
.logo-wrap {
  min-height: 50px;
}
.pretty.p-switch .state label {
  padding-left: 50px;
  text-indent: 0 !important;
  white-space: pre-wrap;
}
.pretty .state label {
  padding-left: 12px;
  text-indent: 0;
  white-space: pre-wrap;
}
.pretty input {
  max-width: 45px;
}
.BottomLink {
  margin: 0 !important;
  padding: 0 !important;
  color: #9FA2AE !important;
}
.progress-wrap {
  height: 60px;
}
.dropdown-item {
  margin-bottom: 0;
}
.grid-element {
  width: 100%;
}
.accordion {
  width: 70%;
  margin: 0 auto;
}
.accordion .accordion-item {
  background-color: white;
}
.accordion .accordion-item .accordion-button {
  color: #383E5C;
  text-align: left;
}
.accordion .accordion-item .accordion-button:after {
  content: unset;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: white;
  background-color: #383E5C;
}
.trip-info {
  padding: 0.5rem 0.5rem;
}
.mobile-table label {
  width: 100%;
}
.desktop-table td {
  white-space: nowrap;
}
.desktop-table .my-travels-button-coming-td,
.desktop-table .my-travels-button-complete-td {
  width: 99%;
  white-space: normal;
  font-size: 14px;
}
header {
  height: 100px;
  min-height: 100px;
  width: 100%;
  background: white;
  border-bottom: 1px solid #9FA2AE;
}
header .header-content,
header .header-content .btn {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  header .header-content,
  header .header-content .btn {
    font-size: 1rem;
  }
}
header .navbar {
  height: 100%;
}
header .navbar .navbar-brand {
  margin-right: 50px;
}
header .navbar li a {
  color: #383E5C;
  font-weight: 600;
}
header .navbar li:not(:last-child) {
  padding-right: 2.5rem;
}
.flowheader .navbar .navbar-brand {
  font-size: 22px;
  font-weight: bold;
}
.flowheader .navbar .navbar-brand .logo {
  margin-left: 10px;
  height: 20px;
  margin-bottom: -19px;
}
.flowheader .navbar .navbar-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  header {
    height: auto;
  }
  .flowheader .navbar .navbar-brand {
    margin: 0;
    margin-bottom: 10px;
  }
  .flowheader .navbar .navbar-text {
    position: relative;
    left: 0;
    transform: none;
  }
}
.btn-outline {
  border: 2px solid #1978D4;
  border-radius: 25px;
  color: #1978D4;
  white-space: nowrap;
  font-weight: 600;
  padding: 0.625rem calc(1.4375rem + 2.25vw);
  font-size: 18px;
}
@media (min-width: 1200px) {
  .btn-outline {
    padding: 0.625rem 3.125rem;
  }
}
.btn-outline:hover {
  background: #1978D4;
  color: white;
}
.btn-primary-color {
  background: #1978D4;
  border-radius: 25px;
  color: white;
  white-space: nowrap;
  font-size: 16px;
  border: 0;
  padding: 1rem calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .btn-primary-color {
    padding: 1rem 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .btn-primary-color {
    padding: 1rem calc(1.5375rem + 3.45vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .btn-primary-color {
    padding: 1rem 4.125rem;
  }
}
.btn-primary-color.alternate {
  opacity: 0.7;
}
.btn-primary-color[disabled] {
  opacity: 0.4;
}
.btn-primary-color:hover {
  opacity: 0.7;
  color: white;
}
.btn-primary-color.alternate:hover {
  opacity: 1;
  color: white;
}
.btn-primary-color[disabled]:hover {
  opacity: 0.4;
  color: white;
  cursor: default;
}
.btn-back-color {
  background: white;
  border-radius: 25px;
  color: black;
  white-space: nowrap;
  font-size: 16px;
  border: 1px solid black;
  padding: 1rem calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .btn-back-color {
    padding: 1rem 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .btn-back-color {
    padding: 1rem calc(1.5375rem + 3.45vw);
  }
}
@media screen and (min-width: 1200px) and (min-width: 1200px) {
  .btn-back-color {
    padding: 1rem 4.125rem;
  }
}
.btn-back-color.alternate {
  opacity: 0.7;
}
.btn-back-color[disabled] {
  opacity: 0.4;
}
.btn-back-color:hover {
  opacity: 0.7;
  color: black;
}
.btn-back-color.alternate:hover {
  opacity: 1;
  color: black;
}
.btn-back-color[disabled]:hover {
  opacity: 0.4;
  color: black;
  cursor: default;
}
.col-almost-6 {
  flex: 0 0 auto;
  width: 48%;
}
.input-wrap {
  position: relative;
  max-width: 100%;
  width: 100%;
}
.input-wrap .question {
  float: right;
  cursor: pointer;
}
input[type=text],
input[type=date] {
  padding: 16px;
  max-width: 100%;
  width: 100%;
  background-color: white;
  border: 1px solid #383E5C;
  border-radius: 4px;
  margin-top: 0;
  margin-bottom: 15px;
  color: #1978D4;
}
input[type=text].icon-a,
input[type=date].icon-a {
  padding-right: 45px;
  background-image: url(/images/a.png);
  background-repeat: no-repeat;
  background-position: right -29px center;
  background-origin: content-box;
}
input[type=text].icon-b,
input[type=date].icon-b {
  padding-right: 45px;
  background-image: url(/images/b.png);
  background-repeat: no-repeat;
  background-position: right -29px center;
  background-origin: content-box;
}
input[type=text]::placeholder,
input[type=date]::placeholder {
  color: #9FA2AE;
}
input[type=password] {
  padding: 16px;
  max-width: 100%;
  width: 100%;
  background-color: white;
  border: 1px solid #383E5C;
  border-radius: 4px;
  margin-bottom: 15px;
  margin-top: 0;
  color: #1978D4;
}
input[type=password].icon-a {
  background-image: url(/images/a.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-origin: content-box;
}
input[type=password].icon-b {
  background-image: url(/images/b.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-origin: content-box;
}
input[type=password]::placeholder {
  color: #9FA2AE;
}
.icon-wrap {
  position: relative;
}
.icon-wrap i {
  position: absolute;
  right: 14px;
  top: 13px;
}
.pretty {
  display: flex;
  width: 100%;
}
input[type="radio"] {
  position: absolute;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0;
  order: 1;
}
.pretty span {
  margin-bottom: 0px;
}
.pretty span:before {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-left: 2px;
  content: "";
  background-color: #fff;
  border: 2px solid #597183;
  border-radius: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease;
}
input[type="radio"]:checked ~ span:before {
  border: 5px solid var(--blue);
}
input[type="radio"]:hover ~ span:before {
  border-color: var(--blue);
}
input[type="radio"]:focus ~ span:before {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.8);
}
pretty input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 30px;
  vertical-align: middle;
  cursor: pointer;
  opacity: 0;
}
.p-switch span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.p-switch span:before {
  display: block;
  position: absolute;
  width: 39px;
  height: 22px;
  margin-top: 1px;
  content: "";
  background-color: #8296a4;
  border-radius: 28px;
  transition: background-color 0.3s ease;
}
.p-switch span:after {
  position: absolute;
  top: 1px;
  left: 1px;
  display: block;
  width: 0px;
  height: 0px;
  visibility: visible;
  content: "";
  background-color: #fff;
  border-radius: 28px;
  transition: left 0.3s ease;
}
input[type="checkbox"]:checked ~ span:before {
  background-color: var(--blue);
}
input[type="checkbox"]:checked ~ span:after {
  top: 1px;
  left: 21px;
}
input[type="checkbox"]:hover ~ span:before {
  background-color: #3db5eb;
}
input[type="checkbox"]:not(:checked):hover ~ span:before {
  background-color: #afbec9;
}
input[type="checkbox"]:focus ~ span:before {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.8);
}
@media print {
  body {
    font-size: 8px;
  }
}
.truncateHeader {
  height: 31px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}
.form-control:focus {
  box-shadow: 0 0 0 0.25rem #000000;
}
input[type=text]::placeholder {
  color: #595959;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: black;
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 2px solid black;
  box-shadow: 0 0 0 0.25rem rgb(0 0 0%);
}
.form-check-input:focus {
  border-color: #000000;
  outline: 2px solid black;
  box-shadow: 0 0 0 0.25rem rgb(0 0 0%);
}
.rte {
  width: 70%;
  margin: 0 auto;
}
.rte ul,
.rte ol {
  list-style: initial !important;
}
:focus-visible {
  outline: 2px solid black;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  line-height: normal;
  overflow: visible;
}
.side-text {
  font-weight: bold;
  margin: 0;
  line-height: 1;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.pw-list {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 20px;
}
.pw-col {
  width: 500px;
}

