/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 200;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-ExtraLight.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-ExtraLight.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-ExtraLight.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-ExtraLight.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-ExtraLight.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 200;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-ExtraLightIt.eot)
            format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-ExtraLightIt.ttf.woff2)
            format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-ExtraLightIt.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-ExtraLightIt.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-ExtraLightIt.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-Light.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-Light.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-Light.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-Light.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-Light.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 300;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-LightIt.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-LightIt.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-LightIt.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-LightIt.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-LightIt.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-Regular.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-Regular.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-Regular.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-Regular.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-Regular.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 400;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-It.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-It.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-It.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-It.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-It.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-Semibold.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-Semibold.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-Semibold.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-Semibold.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-Semibold.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 600;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-SemiboldIt.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-SemiboldIt.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-SemiboldIt.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-SemiboldIt.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-SemiboldIt.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-Semibold.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-Semibold.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-Semibold.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-Semibold.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-Semibold.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 700;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-BoldIt.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-BoldIt.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-BoldIt.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-BoldIt.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-BoldIt.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-Black.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-Black.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-Black.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-Black.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-Black.ttf) format("truetype");
}
@font-face {
    font-family: Source Sans Pro;
    font-weight: 900;
    font-style: italic;
    font-stretch: normal;
    src:
        url(/fonts/EOT/SourceSansPro-BlackIt.eot) format("embedded-opentype"),
        url(/fonts/WOFF2/TTF/SourceSansPro-BlackIt.ttf.woff2) format("woff2"),
        url(/fonts/WOFF/OTF/SourceSansPro-BlackIt.otf.woff) format("woff"),
        url(/fonts/OTF/SourceSansPro-BlackIt.otf) format("opentype"),
        url(/fonts/TTF/SourceSansPro-BlackIt.ttf) format("truetype");
}

/*!
 * Font Awesome Pro 5.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fab,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}
.fa-3x {
    font-size: 3em;
}
.fa-5x {
    font-size: 5em;
}
.fa-fw {
    text-align: center;
    width: 1.25em;
}
.fa-spin {
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite;
}
@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.fa-arrow-down:before {
    content: "\F063";
}
.fa-arrow-up:before {
    content: "\F062";
}
.fa-arrows-alt:before {
    content: "\F0B2";
}
.fa-ban:before {
    content: "\F05E";
}
.fa-bars:before {
    content: "\F0C9";
}
.fa-bell:before {
    content: "\F0F3";
}
.fa-bold:before {
    content: "\F032";
}
.fa-bomb:before {
    content: "\F1E2";
}
.fa-book:before {
    content: "\F02D";
}
.fa-calendar:before {
    content: "\F133";
}
.fa-cart-plus:before {
    content: "\F217";
}
.fa-check:before {
    content: "\F00C";
}
.fa-check-circle:before {
    content: "\F058";
}
.fa-chevron-down:before {
    content: "\F078";
}
.fa-chevron-left:before {
    content: "\F053";
}
.fa-chevron-right:before {
    content: "\F054";
}
.fa-chevron-up:before {
    content: "\F077";
}
.fa-child:before {
    content: "\F1AE";
}
.fa-circle-notch:before {
    content: "\F1CE";
}
.fa-clock:before {
    content: "\F017";
}
.fa-code:before {
    content: "\F121";
}
.fa-cog:before {
    content: "\F013";
}
.fa-columns:before {
    content: "\F0DB";
}
.fa-discord:before {
    content: "\F392";
}
.fa-do-not-enter:before {
    content: "\F5EC";
}
.fa-donate:before {
    content: "\F4B9";
}
.fa-download:before {
    content: "\F019";
}
.fa-envelope:before {
    content: "\F0E0";
}
.fa-eraser:before {
    content: "\F12D";
}
.fa-exchange-alt:before {
    content: "\F362";
}
.fa-exclamation-triangle:before {
    content: "\F071";
}
.fa-eye:before {
    content: "\F06E";
}
.fa-folder:before {
    content: "\F07B";
}
.fa-gamepad:before {
    content: "\F11B";
}
.fa-gavel:before {
    content: "\F0E3";
}
.fa-globe:before {
    content: "\F0AC";
}
.fa-inbox:before {
    content: "\F01C";
}
.fa-info-circle:before {
    content: "\F05A";
}
.fa-italic:before {
    content: "\F033";
}
.fa-layer-plus:before {
    content: "\F5FF";
}
.fa-link:before {
    content: "\F0C1";
}
.fa-list-ol:before {
    content: "\F0CB";
}
.fa-list-ul:before {
    content: "\F0CA";
}
.fa-lock:before {
    content: "\F023";
}
.fa-mars:before {
    content: "\F222";
}
.fa-minus:before {
    content: "\F068";
}
.fa-minus-octagon:before {
    content: "\F308";
}
.fa-money-bill:before {
    content: "\F0D6";
}
.fa-pencil:before {
    content: "\F040";
}
.fa-play:before {
    content: "\F04B";
}
.fa-plus:before {
    content: "\F067";
}
.fa-plus-octagon:before {
    content: "\F301";
}
.fa-question:before {
    content: "\F128";
}
.fa-question-circle:before {
    content: "\F059";
}
.fa-quote-left:before {
    content: "\F10D";
}
.fa-repeat:before {
    content: "\F363";
}
.fa-reply:before {
    content: "\F3E5";
}
.fa-search:before {
    content: "\F002";
}
.fa-share-square:before {
    content: "\F14D";
}
.fa-shield:before {
    content: "\F132";
}
.fa-shopping-cart:before {
    content: "\F07A";
}
.fa-sign-out:before {
    content: "\F08B";
}
.fa-spinner-third:before {
    content: "\F3F4";
}
.fa-strikethrough:before {
    content: "\F0CC";
}
.fa-sync:before {
    content: "\F021";
}
.fa-table:before {
    content: "\F0CE";
}
.fa-thumbtack:before {
    content: "\F08D";
}
.fa-times:before {
    content: "\F00D";
}
.fa-trash:before {
    content: "\F1F8";
}
.fa-trash-alt:before {
    content: "\F2ED";
}
.fa-trophy:before {
    content: "\F091";
}
.fa-tshirt:before {
    content: "\F553";
}
.fa-twitter:before {
    content: "\F099";
}
.fa-undo:before {
    content: "\F0E2";
}
.fa-user:before {
    content: "\F007";
}
.fa-users:before {
    content: "\F0C0";
}
.fa-venus:before {
    content: "\F221";
}
.fa-wrench:before {
    content: "\F0AD";
}
.fa-youtube:before {
    content: "\F167";
}

/*!
 * Font Awesome Pro 5.2.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
    font-family: Font Awesome\5 Pro;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/fa/fa-regular-400.eot);
    src:
        url(/fonts/fa/fa-regular-400.eot?#iefix) format("embedded-opentype"),
        url(/fonts/fa/fa-regular-400.woff2) format("woff2"),
        url(/fonts/fa/fa-regular-400.woff) format("woff"),
        url(/fonts/fa/fa-regular-400.ttf) format("truetype"),
        url(/fonts/fa/fa-regular-400.svg#fontawesome) format("svg");
}
.far {
    font-family: Font Awesome\5 Pro;
    font-weight: 400;
}
:root {
    --blue: #039be5;
    --indigo: #6610f2;
    --purple: #ba68c8;
    --pink: #eb5286;
    --red: #e3342f;
    --orange: #fd7e14;
    --yellow: #ffb300;
    --green: #00b857;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #60686f;
    --gray-dark: #343a40;
    --primary: #039be5;
    --secondary: #60686f;
    --success: #00b857;
    --info: #ba68c8;
    --warning: #ffb300;
    --danger: #e3342f;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
    --font-family-monospace:
        SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
        "Courier New", monospace;
}
*,
:after,
:before {
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
figcaption,
figure,
footer,
header,
main,
nav,
section {
    display: block;
}
body {
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus {
    outline: 0 !important;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    font-style: normal;
    line-height: inherit;
}
address,
ol,
ul {
    margin-bottom: 1rem;
}
ol,
ul {
    margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #039be5;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #026899;
    text-decoration: underline;
}
a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
    outline: 0;
}
code,
kbd,
pre,
samp {
    font-family:
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        Liberation Mono,
        Courier New,
        monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}
figure {
    margin: 0 0 1rem;
}
img {
    border-style: none;
}
img,
svg {
    vertical-align: middle;
}
svg {
    overflow: hidden;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #60686f;
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
button {
    border-radius: 0;
}
button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
select {
    word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"] {
    -webkit-appearance: listbox;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
.h1,
h1 {
    font-size: 2.1875rem;
}
.h2,
h2 {
    font-size: 1.75rem;
}
.h3,
h3 {
    font-size: 1.53125rem;
}
.h4,
h4 {
    font-size: 1.3125rem;
}
.h5,
h5 {
    font-size: 1.09375rem;
}
.h6,
h6 {
    font-size: 0.875rem;
}
.lead {
    font-size: 1.09375rem;
    font-weight: 300;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.small,
small {
    font-size: 80%;
    font-weight: 400;
}
.mark,
mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.09375rem;
}
.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #60686f;
}
.blockquote-footer:before {
    content: "\2014\A0";
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.figure {
    display: inline-block;
}
code {
    font-size: 87.5%;
    color: #eb5286;
    word-break: break-word;
}
a > code {
    color: inherit;
}
kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}
kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}
pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col,
.col-3,
.col-4,
.col-6,
.col-8,
.col-9,
.col-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-12,
.col-sm,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
}
.col-3 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}
.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}
.col-9 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.order-1 {
    order: 1;
}
.order-2 {
    order: 2;
}
.offset-2 {
    margin-left: 16.6666666667%;
}
@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .offset-sm-4 {
        margin-left: 33.3333333333%;
    }
}
@media (min-width: 768px) {
    .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-1 {
        order: 1;
    }
    .order-md-2 {
        order: 2;
    }
    .offset-md-1 {
        margin-left: 8.3333333333%;
    }
    .offset-md-2 {
        margin-left: 16.6666666667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
}
@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }
    .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }
    .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }
    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    background-color: transparent;
}
.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}
.table-bordered,
.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}
.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
.table-active,
.table-active > td,
.table-active > th {
    background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e;
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
    border: 0;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(2.0625rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #6acdfd;
    outline: 0;
    box-shadow: 0 0 2px 1px rgba(3, 155, 229, 0.1);
}
.form-control::-webkit-input-placeholder {
    color: #60686f;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #60686f;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #60686f;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #60686f;
    opacity: 1;
}
.form-control::placeholder {
    color: #60686f;
    opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.form-control-sm {
    height: calc(1.64844rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 1rem;
}
.form-text {
    display: block;
    margin-top: 0.25rem;
}
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
    color: #60686f;
}
.form-check-label {
    margin-bottom: 0;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #e3342f;
}
.form-control.is-invalid {
    border-color: #e3342f;
    padding-right: 2.0625rem;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E3342F' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23E3342F' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 100% calc(0.375em + 0.1875rem);
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus {
    border-color: #e3342f;
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.25);
}
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}
textarea.form-control.is-invalid {
    padding-right: 2.0625rem;
    background-position: top calc(0.375em + 0.1875rem) right
        calc(0.375em + 0.1875rem);
}
.custom-select.is-invalid {
    border-color: #e3342f;
    padding-right: calc((3em + 2.25rem) / 4 + 1.75rem);
    background:
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
            no-repeat right 0.75rem center/8px 10px,
        url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23E3342F' viewBox='-2 -2 7 7'%3E%3Cpath stroke='%23E3342F' d='M0 0l3 3m0-3L0 3'/%3E%3Ccircle r='.5'/%3E%3Ccircle cx='3' r='.5'/%3E%3Ccircle cy='3' r='.5'/%3E%3Ccircle cx='3' cy='3' r='.5'/%3E%3C/svg%3E")
            #fff no-repeat center right 1.75rem / calc(0.75em + 0.375rem)
            calc(0.75em + 0.375rem);
}
.custom-select.is-invalid:focus {
    border-color: #e3342f;
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.25);
}
.custom-select.is-invalid ~ .invalid-feedback {
    display: block;
}
.form-check-input.is-invalid ~ .form-check-label {
    color: #e3342f;
}
.form-check-input.is-invalid ~ .invalid-feedback {
    display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label {
    color: #e3342f;
}
.custom-control-input.is-invalid ~ .custom-control-label:before {
    border-color: #e3342f;
}
.custom-control-input.is-invalid ~ .invalid-feedback {
    display: block;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label:before {
    border-color: #e9605c;
    background-color: #e9605c;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label:before {
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.25);
}
.custom-control-input.is-invalid:focus:not(:checked)
    ~ .custom-control-label:before,
.custom-file-input.is-invalid ~ .custom-file-label {
    border-color: #e3342f;
}
.custom-file-input.is-invalid ~ .invalid-feedback {
    display: block;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label {
    border-color: #e3342f;
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.25);
}
.form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
.form-inline .form-check {
    width: 100%;
}
@media (min-width: 576px) {
    .form-inline label {
        justify-content: center;
    }
    .form-inline .form-group,
    .form-inline label {
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        flex: 0 0 auto;
        flex-flow: row wrap;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        align-items: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}
.btn {
    display: inline-block;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
.btn:hover {
    color: #212529;
    text-decoration: none;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow:
        0 1px 2px 0 rgba(3, 155, 229, 0.1),
        0 2px 4px 2px rgba(3, 155, 229, 0.1);
}
.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}
a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}
.btn-primary {
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0381bf;
    border-color: #0279b3;
}
.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 1px rgba(41, 170, 233, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0279b3;
    border-color: #0270a6;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(41, 170, 233, 0.5);
}
.btn-secondary {
    color: #fff;
    background-color: #60686f;
    border-color: #60686f;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #4e555b;
    border-color: #494f54;
}
.btn-secondary.focus,
.btn-secondary:focus {
    box-shadow: 0 0 0 1px rgba(120, 127, 133, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #60686f;
    border-color: #60686f;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #494f54;
    border-color: #43484d;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(120, 127, 133, 0.5);
}
.btn-success {
    color: #fff;
    background-color: #00b857;
    border-color: #00b857;
}
.btn-success:hover {
    color: #fff;
    background-color: #009245;
    border-color: #00853f;
}
.btn-success.focus,
.btn-success:focus {
    box-shadow: 0 0 0 1px rgba(38, 195, 112, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #00b857;
    border-color: #00b857;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #00853f;
    border-color: #007839;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(38, 195, 112, 0.5);
}
.btn-info {
    color: #fff;
    background-color: #ba68c8;
    border-color: #ba68c8;
}
.btn-info:hover {
    color: #fff;
    background-color: #ad4cbe;
    border-color: #a844b9;
}
.btn-info.focus,
.btn-info:focus {
    box-shadow: 0 0 0 1px rgba(196, 127, 208, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #ba68c8;
    border-color: #ba68c8;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #a844b9;
    border-color: #a040b0;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(196, 127, 208, 0.5);
}
.btn-warning {
    color: #212529;
    background-color: #ffb300;
    border-color: #ffb300;
}
.btn-warning:hover {
    color: #212529;
    background-color: #d99800;
    border-color: #cc8f00;
}
.btn-warning.focus,
.btn-warning:focus {
    box-shadow: 0 0 0 1px rgba(222, 158, 6, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffb300;
    border-color: #ffb300;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #cc8f00;
    border-color: #bf8600;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(222, 158, 6, 0.5);
}
.btn-danger {
    color: #fff;
    background-color: #e3342f;
    border-color: #e3342f;
}
.btn-danger:hover {
    color: #fff;
    background-color: #d0211c;
    border-color: #c51f1a;
}
.btn-danger.focus,
.btn-danger:focus {
    box-shadow: 0 0 0 1px rgba(231, 82, 78, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #e3342f;
    border-color: #e3342f;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c51f1a;
    border-color: #b91d19;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(231, 82, 78, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.btn-light.focus,
.btn-light:focus {
    box-shadow: 0 0 0 1px rgba(216, 217, 219, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(216, 217, 219, 0.5);
}
.btn-outline-primary {
    color: #039be5;
    border-color: #039be5;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 1px rgba(3, 155, 229, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #039be5;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(3, 155, 229, 0.5);
}
.btn-outline-secondary {
    color: #60686f;
    border-color: #60686f;
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #60686f;
    border-color: #60686f;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 1px rgba(96, 104, 111, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #60686f;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #60686f;
    border-color: #60686f;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(96, 104, 111, 0.5);
}
.btn-outline-danger {
    color: #e3342f;
    border-color: #e3342f;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: #e3342f;
    border-color: #e3342f;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #e3342f;
    background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #e3342f;
    border-color: #e3342f;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.5);
}
.btn-link {
    font-weight: 400;
    color: #039be5;
    text-decoration: none;
}
.btn-link:hover {
    color: #026899;
    text-decoration: underline;
}
.btn-link.focus,
.btn-link:focus {
    text-decoration: underline;
    box-shadow: none;
}
.btn-link.disabled,
.btn-link:disabled {
    color: #60686f;
    pointer-events: none;
}
.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.09375rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.765625rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-block + .btn-block {
    margin-top: 0.5rem;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}
.fade {
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.dropdown {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 0.875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-menu-right {
    right: 0;
    left: auto;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
    right: auto;
    bottom: auto;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #039be5;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #60686f;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.765625rem;
    color: #60686f;
    white-space: nowrap;
}
.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}
.btn-group > .btn {
    position: relative;
    flex: 1 1 auto;
}
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 1;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control {
    margin-left: -1px;
}
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
    z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
    z-index: 4;
}
.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .custom-file {
    display: flex;
    align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label:after {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-append {
    display: flex;
}
.input-group-append .btn {
    position: relative;
    z-index: 2;
}
.input-group-append .btn:focus {
    z-index: 3;
}
.input-group-append,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text {
    margin-left: -1px;
}
.input-group-text {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
    margin-top: 0;
}
.input-group
    > .input-group-append:last-child
    > .btn:not(:last-child):not(.dropdown-toggle),
.input-group
    > .input-group-append:last-child
    > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.custom-control {
    position: relative;
    display: block;
    min-height: 1.3125rem;
    padding-left: 1.5rem;
}
.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
    border-color: #039be5;
    background-color: #039be5;
}
.custom-control-input:focus ~ .custom-control-label:before {
    box-shadow: 0 0 2px 1px rgba(3, 155, 229, 0.1);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #6acdfd;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
    color: #fff;
    background-color: #9ddefe;
    border-color: #9ddefe;
}
.custom-control-input:disabled ~ .custom-control-label {
    color: #60686f;
}
.custom-control-input:disabled ~ .custom-control-label:before {
    background-color: #e9ecef;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-control-label:before {
    pointer-events: none;
    background-color: #fff;
    border: 1px solid #adb5bd;
}
.custom-control-label:after,
.custom-control-label:before {
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}
.custom-control-label:after {
    background: no-repeat 50%/50% 50%;
}
.custom-checkbox .custom-control-label:before {
    border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox
    .custom-control-input:indeterminate
    ~ .custom-control-label:before {
    border-color: #039be5;
    background-color: #039be5;
}
.custom-checkbox
    .custom-control-input:indeterminate
    ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox
    .custom-control-input:disabled:checked
    ~ .custom-control-label:before {
    background-color: rgba(3, 155, 229, 0.5);
}
.custom-checkbox
    .custom-control-input:disabled:indeterminate
    ~ .custom-control-label:before {
    background-color: rgba(3, 155, 229, 0.5);
}
.custom-radio .custom-control-label:before {
    border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio
    .custom-control-input:disabled:checked
    ~ .custom-control-label:before {
    background-color: rgba(3, 155, 229, 0.5);
}
.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.0625rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E")
        no-repeat right 0.75rem center/8px 10px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select:focus {
    border-color: #6acdfd;
    outline: 0;
    box-shadow: 0 0 0 1px rgba(3, 155, 229, 0.25);
}
.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}
.custom-select:disabled {
    color: #60686f;
    background-color: #e9ecef;
}
.custom-select::-ms-expand {
    display: none;
}
.custom-file {
    display: inline-block;
    margin-bottom: 0;
}
.custom-file,
.custom-file-input {
    position: relative;
    width: 100%;
    height: calc(2.0625rem + 2px);
}
.custom-file-input {
    z-index: 2;
    margin: 0;
    opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
    border-color: #6acdfd;
    box-shadow: 0 0 2px 1px rgba(3, 155, 229, 0.1);
}
.custom-file-input:disabled ~ .custom-file-label {
    background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label:after {
    content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]:after {
    content: attr(data-browse);
}
.custom-file-label {
    left: 0;
    z-index: 1;
    height: calc(2.0625rem + 2px);
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.custom-file-label,
.custom-file-label:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
}
.custom-file-label:after {
    bottom: 0;
    z-index: 3;
    display: block;
    height: 2.0625rem;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}
.custom-control-label:before,
.custom-file-label,
.custom-select {
    transition:
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .custom-control-label:before,
    .custom-file-label,
    .custom-select {
        transition: none;
    }
}
.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}
.nav-link.disabled {
    color: #60686f;
    pointer-events: none;
    cursor: default;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
    margin-bottom: -1px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
    color: #60686f;
    background-color: transparent;
    border-color: transparent;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link {
    border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #039be5;
}
.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.navbar {
    position: relative;
    padding: 0.5rem 1rem;
}
.navbar,
.navbar > .container,
.navbar > .container-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: inline-block;
    padding-top: 0.3359375rem;
    padding-bottom: 0.3359375rem;
    margin-right: 1rem;
    font-size: 1.09375rem;
    line-height: inherit;
    white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}
.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.09375rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat 50%;
    background-size: 100% 100%;
}
@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
    color: hsla(0, 0%, 100%, 0.5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: hsla(0, 0%, 100%, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
    color: hsla(0, 0%, 100%, 0.25);
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #fff;
}
.navbar-dark .navbar-toggler {
    color: hsla(0, 0%, 100%, 0.5);
    border-color: hsla(0, 0%, 100%, 0.1);
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.card {
    position: relative;
    display: flex;
    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-body {
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-header,
.card-text:last-child {
    margin-bottom: 0;
}
.card-header {
    padding: 0.75rem 1.25rem;
    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;
}
.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-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item:before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #60686f;
    content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover:before {
    text-decoration: underline;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: #60686f;
}
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #039be5;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover {
    z-index: 2;
    color: #026899;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 2px 1px rgba(3, 155, 229, 0.1);
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #039be5;
    border-color: #039be5;
}
.page-item.disabled .page-link {
    color: #60686f;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}
a.badge:focus,
a.badge:hover {
    text-decoration: none;
}
.badge:empty {
    display: none;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.badge-primary {
    color: #fff;
    background-color: #039be5;
}
a.badge-primary:focus,
a.badge-primary:hover {
    color: #fff;
    background-color: #0279b3;
}
a.badge-primary.focus,
a.badge-primary:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(3, 155, 229, 0.5);
}
.badge-secondary {
    color: #fff;
    background-color: #60686f;
}
a.badge-secondary:focus,
a.badge-secondary:hover {
    color: #fff;
    background-color: #494f54;
}
a.badge-secondary.focus,
a.badge-secondary:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(96, 104, 111, 0.5);
}
.badge-success {
    color: #fff;
    background-color: #00b857;
}
a.badge-success:focus,
a.badge-success:hover {
    color: #fff;
    background-color: #00853f;
}
a.badge-success.focus,
a.badge-success:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(0, 184, 87, 0.5);
}
.badge-info {
    color: #fff;
    background-color: #ba68c8;
}
a.badge-info:focus,
a.badge-info:hover {
    color: #fff;
    background-color: #a844b9;
}
a.badge-info.focus,
a.badge-info:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(186, 104, 200, 0.5);
}
.badge-warning {
    color: #212529;
    background-color: #ffb300;
}
a.badge-warning:focus,
a.badge-warning:hover {
    color: #212529;
    background-color: #cc8f00;
}
a.badge-warning.focus,
a.badge-warning:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(255, 179, 0, 0.5);
}
.badge-danger {
    color: #fff;
    background-color: #e3342f;
}
a.badge-danger:focus,
a.badge-danger:hover {
    color: #fff;
    background-color: #c51f1a;
}
a.badge-danger.focus,
a.badge-danger:focus {
    outline: 0;
    box-shadow: 0 0 0 1px rgba(227, 52, 47, 0.5);
}
.alert {
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-primary {
    color: #025177;
    background-color: #cdebfa;
    border-color: #b8e3f8;
}
.alert-primary hr {
    border-top-color: #a1daf6;
}
.alert-secondary {
    color: #32363a;
    background-color: #dfe1e2;
    border-color: #d2d5d7;
}
.alert-secondary hr {
    border-top-color: #c5c8cb;
}
.alert-success {
    color: #00602d;
    background-color: #ccf1dd;
    border-color: #b8ebd0;
}
.alert-success hr {
    border-top-color: #a4e5c3;
}
.alert-info {
    color: #613668;
    background-color: #f1e1f4;
    border-color: #ecd5f0;
}
.alert-info hr {
    border-top-color: #e4c2e9;
}
.alert-warning {
    color: #855d00;
    background-color: #fff0cc;
    border-color: #ffeab8;
}
.alert-warning hr {
    border-top-color: #ffe29f;
}
.alert-danger {
    color: #761b18;
    background-color: #f9d6d5;
    border-color: #f7c6c5;
}
.alert-danger hr {
    border-top-color: #f4b0af;
}
@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.65625rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #039be5;
    transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}
.progress-bar-striped {
    background-image: linear-gradient(
        45deg,
        hsla(0, 0%, 100%, 0.15) 25%,
        transparent 0,
        transparent 50%,
        hsla(0, 0%, 100%, 0.15) 0,
        hsla(0, 0%, 100%, 0.15) 75%,
        transparent 0,
        transparent
    );
    background-size: 1rem 1rem;
}
.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}
.media {
    display: flex;
    align-items: flex-start;
}
.close {
    float: right;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}
.close:hover {
    color: #000;
    text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 0.75;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a.close.disabled {
    pointer-events: none;
}
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition:
        transform 0.3s ease-out,
        -webkit-transform 0.3s ease-out;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none;
    }
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - 1rem);
    content: "";
}
.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
}
.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}
.modal-footer > :not(:first-child) {
    margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
    margin-right: 0.25rem;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered:before {
        height: calc(100vh - 3.5rem);
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.765625rem;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: 0.9;
}
.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}
.tooltip .arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-tooltip-top {
    padding: 0.4rem 0;
}
.bs-tooltip-top .arrow {
    bottom: 0;
}
.bs-tooltip-top .arrow:before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}
.bs-tooltip-right {
    padding: 0 0.4rem;
}
.bs-tooltip-right .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-right .arrow:before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}
.bs-tooltip-bottom {
    padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow {
    top: 0;
}
.bs-tooltip-bottom .arrow:before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}
.bs-tooltip-left {
    padding: 0 0.4rem;
}
.bs-tooltip-left .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-left .arrow:before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}
.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}
.popover {
    top: 0;
    left: 0;
    z-index: 1060;
    max-width: 276px;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        Segoe UI,
        Roboto,
        Helvetica Neue,
        Arial,
        sans-serif,
        Apple Color Emoji,
        Segoe UI Emoji,
        Segoe UI Symbol;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.765625rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}
.popover,
.popover .arrow {
    position: absolute;
    display: block;
}
.popover .arrow {
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}
.popover .arrow:after,
.popover .arrow:before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.align-baseline {
    vertical-align: baseline !important;
}
.align-top {
    vertical-align: top !important;
}
.align-middle {
    vertical-align: middle !important;
}
.bg-primary {
    background-color: #039be5 !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0279b3 !important;
}
.bg-success {
    background-color: #00b857 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #00853f !important;
}
.bg-info {
    background-color: #ba68c8 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #a844b9 !important;
}
.bg-danger {
    background-color: #e3342f !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #c51f1a !important;
}
.bg-dark {
    background-color: #343a40 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important;
}
.bg-white {
    background-color: #fff !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.border-0 {
    border: 0 !important;
}
.border-right-0 {
    border-right: 0 !important;
}
.border-left-0 {
    border-left: 0 !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.clearfix:after {
    display: block;
    clear: both;
    content: "";
}
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-block {
        display: block !important;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-block {
        display: block !important;
    }
    .d-md-flex {
        display: flex !important;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-block {
        display: block !important;
    }
    .d-lg-flex {
        display: flex !important;
    }
}
.flex-row {
    flex-direction: row !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.flex-grow-1 {
    flex-grow: 1 !important;
}
.justify-content-end {
    justify-content: flex-end !important;
}
.justify-content-center {
    justify-content: center !important;
}
.justify-content-between {
    justify-content: space-between !important;
}
.justify-content-around {
    justify-content: space-around !important;
}
.align-items-start {
    align-items: flex-start !important;
}
.align-items-center {
    align-items: center !important;
}
@media (min-width: 992px) {
    .flex-lg-column {
        flex-direction: column !important;
    }
}
.float-left {
    float: left !important;
}
.float-right {
    float: right !important;
}
@media (min-width: 768px) {
    .float-md-right {
        float: right !important;
    }
}
@media (min-width: 992px) {
    .float-lg-right {
        float: right !important;
    }
}
.position-absolute {
    position: absolute !important;
}
.w-75 {
    width: 75% !important;
}
.w-100 {
    width: 100% !important;
}
.h-50 {
    height: 50% !important;
}
.h-100 {
    height: 100% !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0,
.my-0 {
    margin-top: 0 !important;
}
.mr-0,
.mx-0 {
    margin-right: 0 !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
    margin-left: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}
.mr-1 {
    margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1 {
    margin-left: 0.25rem !important;
}
.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}
.ml-2 {
    margin-left: 0.5rem !important;
}
.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
.mx-3 {
    margin-right: 1rem !important;
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}
.mx-3 {
    margin-left: 1rem !important;
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}
.ml-4 {
    margin-left: 1.5rem !important;
}
.mt-5,
.my-5 {
    margin-top: 3rem !important;
}
.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}
.p-0 {
    padding: 0 !important;
}
.py-0 {
    padding-top: 0 !important;
}
.px-0 {
    padding-right: 0 !important;
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}
.py-1 {
    padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}
.py-2 {
    padding-top: 0.5rem !important;
}
.px-2 {
    padding-right: 0.5rem !important;
}
.py-2 {
    padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.py-3 {
    padding-top: 1rem !important;
}
.pr-3,
.px-3 {
    padding-right: 1rem !important;
}
.py-3 {
    padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
    padding-left: 1rem !important;
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}
.px-4 {
    padding-right: 1.5rem !important;
}
.py-4 {
    padding-bottom: 1.5rem !important;
}
.px-4 {
    padding-left: 1.5rem !important;
}
.py-5 {
    padding-top: 3rem !important;
}
.px-5 {
    padding-right: 3rem !important;
}
.py-5 {
    padding-bottom: 3rem !important;
}
.px-5 {
    padding-left: 3rem !important;
}
.mr-auto {
    margin-right: auto !important;
}
.ml-auto {
    margin-left: auto !important;
}
@media (min-width: 576px) {
    .mb-sm-0 {
        margin-bottom: 0 !important;
    }
    .mr-sm-2 {
        margin-right: 0.5rem !important;
    }
}
@media (min-width: 768px) {
    .mb-md-5 {
        margin-bottom: 3rem !important;
    }
}
@media (min-width: 992px) {
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .pl-lg-5 {
        padding-left: 3rem !important;
    }
}
@media (min-width: 1200px) {
    .pl-xl-2 {
        padding-left: 0.5rem !important;
    }
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
@media (min-width: 768px) {
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
.font-weight-light {
    font-weight: 300 !important;
}
.text-white {
    color: #fff !important;
}
.text-primary {
    color: #039be5 !important;
}
a.text-primary:focus,
a.text-primary:hover {
    color: #026899 !important;
}
.text-success {
    color: #00b857 !important;
}
a.text-success:focus,
a.text-success:hover {
    color: #006c33 !important;
}
.text-info {
    color: #ba68c8 !important;
}
a.text-info:focus,
a.text-info:hover {
    color: #973da7 !important;
}
.text-warning {
    color: #ffb300 !important;
}
a.text-warning:focus,
a.text-warning:hover {
    color: #b37d00 !important;
}
.text-danger {
    color: #e3342f !important;
}
a.text-danger:focus,
a.text-danger:hover {
    color: #ae1c17 !important;
}
.text-light {
    color: #f8f9fa !important;
}
a.text-light:focus,
a.text-light:hover {
    color: #cbd3da !important;
}
.text-muted {
    color: #60686f !important;
}
.visible {
    visibility: visible !important;
}
@media print {
    *,
    :after,
    :before {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    .container,
    body {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #dee2e6 !important;
    }
    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }
}
body,
html {
    position: relative;
    min-height: 100%;
    height: 100%;
    width: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    background: #eceef2;
}
.container {
    height: auto;
}
.footer {
    margin-top: 20px;
    margin-bottom: 0;
    width: 100%;
    height: 80px;
    line-height: 20px;
}
.footer > .container {
    border: 1px solid #444;
    border-radius: 0;
    padding: 20px 0 20px 20px;
    background: #303030;
    border: 1px solid #e6e6e6;
    background: #fff;
}
.full-width {
    width: 100%;
}
.d-block {
    display: block;
}
.no-tb-margin {
    margin-top: 0;
    margin-bottom: 0;
}
.link-active {
    font-weight: 700;
}
.clearfix {
    clear: both;
}
#fillIP {
    margin-left: 8px;
}
.alert {
    border: 0;
    border-radius: 0;
    padding: 0.75rem 1.25rem;
}
.alert-skinny {
    padding: 0.2rem !important;
}
.alert-danger a,
.alert-danger a:link,
.alert-info a,
.alert-info a:link,
.alert-primary a,
.alert-primary a:link,
.alert-success a,
.alert-success a:link,
.alert-warning a,
.alert-warning a:link {
    color: #fff;
    text-decoration: underline;
}
.alert-success {
    background: #00b857;
    color: #fff;
}
.alert-danger {
    background: #e3342f;
    color: #fff;
}
.alert-warning {
    background: #ffb300;
    color: #fff;
}
.alert-info {
    background: #ba68c8;
    color: #fff;
}
.alert-primary {
    background: #039be5;
    color: #fff;
}
.dropdown-header {
    font-size: 0.875rem;
}
.text-white > a {
    color: #ececec;
}
.text-white > a:link {
    color: #ececec;
    text-decoration: none;
}
.text-white > a:hover {
    color: #fff;
    text-decoration: underline;
}
.navbar-light.bg-faded {
    background-color: #fff;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
}
@media (max-width: 576px) {
    .container {
        width: 100%;
        max-width: 100%;
    }
}
.badge {
    font-size: 80%;
}
.badge.disabled {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none;
}
@media (max-width: 768px) {
    .n-h3-small {
        margin-top: 6px;
    }
}
@media (min-width: 768px) {
    .n-btn-games-small {
        display: block;
        width: 100%;
        margin: 4px 1px;
    }
    .n-center-small {
        text-align: center;
    }
}
.n-icon-center {
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    font-size: 40px;
    line-height: 50px;
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: bottom;
}
.n-icon-center,
.n-loading-center {
    position: absolute;
    overflow: hidden;
}
.n-loading-center {
    width: 100%;
    height: 100%;
    min-height: 190px;
    margin: -15px 0 -15px -15px;
    padding: -15px 0;
    clear: both;
}
.n-loading-bg {
    background-color: rgba(0, 0, 0, 0.05);
}
.n-checkbox-small {
    margin-top: 10px;
    margin-bottom: 0;
}
.item-paragraph {
    margin: 10px 0 0;
}
.pad {
    padding: 10px;
}
.marg {
    margin: 10px;
}
@media (min-width: 992px) {
    .full-height {
        height: 100%;
        padding: 15% 0;
    }
    .fnheight {
        height: 49%;
        padding: 5% 0;
    }
}
.gameleft p {
    margin: 2px 0 0;
}
.push-down {
    padding-top: 6px;
}
.table-responsive {
    display: table;
}
.form-inline.text-center {
    display: table;
    margin: auto;
}
@media (min-width: 991px) {
    .row.flex-override {
        display: flex;
        justify-content: space-around;
    }
}
.row.flex-override > .vertical-align-center {
    display: flex;
}
.row.flex-override .vertical-align-center .valign-center {
    align-self: center;
}
.n-fa-large {
    font-size: 26px;
}
.navbar {
    font-size: 14px;
}
.navbar-brand {
    padding-top: 0.5rem;
    font-size: 1rem;
}
.blockquote {
    text-align: left;
    word-break: break-all;
    font-size: 12px;
}
.navbar-brandimg {
    height: 30px;
}
.invisible-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 37, 37, 0.59);
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    margin: 0;
    color: #fff;
    font-size: 20px;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.dropdown-notifications > .dropdown-menu {
    width: 100%;
    min-width: 250px;
    max-width: 450px;
}
@media (min-width: 768px) {
    .b-right {
        border-bottom: 0;
        border-right: 1px solid #000;
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .b-right {
        border-bottom: 1px solid #000;
        border-right: 0;
        margin-bottom: 10px;
    }
}
.thumbnail-user-forum {
    width: 45%;
    margin-bottom: 16px;
    max-width: 90px;
}
.notification-link.dropdown-item {
    white-space: normal;
}
.post-title {
    display: block;
    line-height: 1.5;
}
.forum-right {
    text-align: right;
}
.forum-title {
    width: 70%;
}
.greentext:before {
    content: ">";
    float: left;
}
.greentext {
    color: #00b857;
}
.trustedText {
    color: #0086ff;
}
.blurb-quote-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blurb-quote {
    max-height: 100px;
    white-space: pre-wrap;
    overflow-y: auto;
    word-break: break-word;
}
.navbar-notification-list {
    display: block;
    max-height: 60vh;
    overflow-y: auto;
}
.forum-post {
    width: 100%;
    padding: 1rem;
    background-color: #fcfcfc;
    display: block;
    transition: all 0.2s linear;
}
.forum-post:hover {
    background-color: #fafafa;
    box-shadow: inset 0 0 9px -7px #000;
}
.forum-post:active {
    box-shadow: inset 0 0 11px -6px #000;
}
a.forum-post,
a.forum-post:hover {
    text-decoration: none;
    color: inherit;
}
.forum-section-info {
    width: 100%;
    background-color: #fafafa;
}
.font-light {
    font-weight: 300;
}
.pills-no-border > .nav-item:first-child > a {
    border-top-left-radius: 0.25rem;
}
.pills-no-border > .nav-item > a {
    border-radius: 0;
}
.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
}
.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    width: 100%;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.nav-underline .nav-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
}
.nav-scroller-inner > a.nav-link {
    color: rgba(0, 0, 0, 0.5);
}
.nav-scroller-inner > a.nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}
span.message-read {
    color: #6c757d;
}
span.message-not-read {
    color: #000;
}
@media (min-width: 768px) {
    .w-md-0 {
        width: 0 !important;
    }
}
.card-header {
    border-bottom: 0;
}
.text-primary {
    color: #039be5;
}
@-webkit-keyframes finobe__spinning {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.home-main-content {
    background: url(/img/xmas_small.jpg) no-repeat 50%;
    background:
        url(/img/xmas_small.jpg) no-repeat 50%,
        linear-gradient(to right bottom, #312a6c, #852d91);
    background:
        url(/img/xmas_small.jpg) no-repeat 50%,
        -moz-linear-gradient(top left, #312a6c, #852d91);
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 300px;
    color: hsla(0, 0%, 100%, 0.92);
    display: flex;
}
.home-main-content > .container {
    display: flex;
    flex-direction: column;
    align-self: center;
}
.fa-play {
    content: "uf04b";
}
.login__logo-img {
    max-width: 150px;
}
.btn {
    text-transform: lowercase;
    cursor: pointer !important;
    font-size: 14px;
}
.btn-sm {
    font-size: 12px !important;
}
.btn-md {
    font-size: 14px !important;
}
.btn-lg {
    font-size: 16px !important;
}
.btn-longer {
    padding-left: 32px;
    padding-right: 32px;
}
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    text-decoration: none;
}
.btn-danger:focus,
.btn-info:focus,
.btn-outline-danger:focus,
.btn-outline-primary:focus,
.btn-primary:focus,
.btn-success:focus,
.btn-warning:focus,
.btn:focus {
    box-shadow: none;
}
.btn:hover {
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.1),
        0 1px 4px 2px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
    box-shadow:
        0 1px 2px 0 rgba(3, 155, 229, 0.1),
        0 1px 4px 2px rgba(3, 155, 229, 0.3);
}
.btn-success:hover {
    box-shadow:
        0 1px 2px 0 rgba(0, 184, 87, 0.1),
        0 1px 4px 2px rgba(0, 184, 87, 0.3);
}
.btn-info:hover {
    box-shadow:
        0 1px 2px 0 rgba(186, 104, 200, 0.1),
        0 1px 4px 2px rgba(186, 104, 200, 0.3);
}
.btn-warning:hover {
    box-shadow:
        0 1px 2px 0 rgba(255, 179, 0, 0.1),
        0 1px 4px 2px rgba(255, 179, 0, 0.3);
}
.btn-danger:hover {
    box-shadow:
        0 1px 2px 0 rgba(227, 52, 47, 0.1),
        0 1px 4px 2px rgba(227, 52, 47, 0.3);
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow:
        0 1px 2px 0 rgba(3, 155, 229, 0.3),
        0 2px 6px 2px rgba(3, 155, 229, 0.4);
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow:
        0 1px 2px 0 rgba(0, 184, 87, 0.3),
        0 2px 6px 2px rgba(0, 184, 87, 0.4);
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow:
        0 1px 2px 0 rgba(186, 104, 200, 0.3),
        0 2px 6px 2px rgba(186, 104, 200, 0.4);
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow:
        0 1px 2px 0 rgba(255, 179, 0, 0.3),
        0 2px 6px 2px rgba(255, 179, 0, 0.4);
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow:
        0 1px 2px 0 rgba(227, 52, 47, 0.3),
        0 2px 6px 2px rgba(227, 52, 47, 0.4);
}
.btn-outline-danger:hover,
.btn-outline-primary:hover {
    background-color: #fff;
    border-color: #fff;
}
.btn-outline-primary:hover {
    color: #039be5;
}
.btn-outline-danger:hover {
    color: #e3342f;
}
.navbar-nobelium-dropdown.dropdown-menu.dropdown-menu-right > a {
    padding-left: 18px;
}
@media (max-width: 576px) {
    nav .container {
        width: 100%;
    }
}
.btn {
    transition: all 0.2s linear;
    font-weight: 400;
    font-size: 12px;
}
.btn-primary:focus {
    color: #fff;
}
.btn-normal-case {
    text-transform: none;
}
.game-card-link:active,
.game-card-link:hover,
.game-card-link:link,
.game-card-link:visited {
    text-decoration: none;
}
.game-card {
    width: 150px;
    display: inline-block;
    background: #fff;
    color: #000;
    border-radius: 3px;
    transition: box-shadow 0.2s linear;
    box-shadow: 0 1px 4px 0 rgba(25, 25, 25, 0.1);
}
.game-card:hover {
    box-shadow: 0 1px 4px 0 rgba(25, 25, 25, 0.5);
}
.game-card > .thumbnail > .card-img-top,
.game-card > .thumbnail > .vue-load-image > .card-img-top {
    width: 150px;
    height: 84px;
    background-color: #999;
}
.game-card > .thumbnail > .card-img-top {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTI4IiBoZWlnaHQ9IjEyOCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48c3R5bGU+LnN0MntmaWxsOiMyZjJmMmZ9PC9zdHlsZT48cGF0aCBkPSJNNjQgOC43QzcuMyA4LjcgNiA3Mi4yIDYgODQuOGMwIDEyLjYgMjYgMjIuOCA1OCAyMi44czU4LTEwLjIgNTgtMjIuOGMwLTEyLjYtMS4zLTc2LjEtNTgtNzYuMXoiIGZpbGw9IiNmY2MyMWIiLz48cGF0aCBkPSJNNDUuOSA2Ni41czIwLjEtNy43IDM0LjYgNy43IiBmaWxsPSJub25lIiBzdHJva2U9IiMyZjJmMmYiIHN0cm9rZS13aWR0aD0iNiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz48cGF0aCBjbGFzcz0ic3QyIiBkPSJNNDUuOCA0NS41Yy0zLjYtLjUtNi00LjMtNS41LTguNnMzLjktNy40IDcuNS02LjkgNiA0LjMgNS41IDguNmMtLjYgNC4zLTMuOSA3LjQtNy41IDYuOXpNODcuOCA0Mi45YzAtLjYtLjEtMS4xLS4yLTEuNi0uMS0uMy0uMy0uNi0uNi0uNy0xLjktLjktNi42LTIuOC05LjMtMy42LS40LS4xLS44IDAtMSAuMy0xLjMgMS41LTIuMSAzLjYtMiA1LjkuMSA0LjMgMy4yIDcuOCA2LjggNy43IDMuNSAwIDYuNC0zLjYgNi4zLTh6Ii8+PGc+PHBhdGggZD0iTTM3LjIgMTIxYy03LjUgMC0xMi42LTIuMS0xNi43LTYuNy01LTUuOC00LjMtMTMuMS0zLjctMTkuNi4zLTMuNiAxLjMtNS43IDIuMS03LjYuOS0yIDEuNi0zLjcgMS43LTcuMiAwLS44LS4yLTIuMS0uNC0zLjQtLjYtMy42LTEuNC03LjcgMS4yLTkuNi45LS43IDIuMS0xIDMuNS0xIDIuNSAwIDUuMSAxLjIgNi40IDMuMSAyLjEgMi45IDIuOCA1LjcgMi44IDExLjggMCAyLjUuNyAzLjQgMS44IDQuMi4zLjIuNy40IDIuMS40IDEuMyAwIDIuOS0uMiA1LjMtLjQuOC0uMSAxLjYtLjIgMi41LS4yIDIuNS0uMiAxMC0xIDE0LjgtMS43IDEuMi0uMiAyLjUtLjQgMy43LS42IDIuOS0uNSA1LjgtMSA4LTEgMS4xIDAgMiAuMSAyLjcuNCAyIC43IDMuMyAyLjUgMy40IDQuOC4yIDIuNi0xLjIgNS0zLjMgNi4xLTIuMSAxLjEtMTEuMSAyLjktMTYuNCAzLjUuMS4yLjIuMy4yLjUuNyAyIC40IDQuNy0uNyA2LjUtLjIuNC0uNS43LS43LjkgMSAxLjkuMyA0LjUtLjQgNi0uMi40LS41IDEtMS4xIDEuNS4zLjguNSAxLjguMSAzLjMtLjggMy40LTYuNCA1LjMtMTYuNCA1LjktLjkuMS0xLjcuMS0yLjUuMXoiIGZpbGw9IiNmYWMwMzYiLz48cGF0aCBjbGFzcz0ic3QyIiBkPSJNMjQuOCA2Ny45YzEuOCAwIDMuOC44IDQuOCAyLjMgMS44IDIuNiAyLjQgNC45IDIuNSAxMC43IDAgMy4xIDEgNC42IDIuNyA1LjguOC41IDEuOC43IDMuMi43IDEuOCAwIDQuMy0uMyA3LjktLjcgMi44LS4zIDEwLjItMSAxNC45LTEuNyAzLjctLjUgOC41LTEuNiAxMS41LTEuNi44IDAgMS41LjEgMiAuMyAzIDEuMSAyLjYgNS45LS4xIDcuMi0xLjkuOS0xMS43IDMtMTYuOSAzLjQtMy43LjMtNC41LjYtNC41LjgtLjIuNiAxLjYuNCAzIC45IDEuOS42IDEuOSA0LjIuNyA2LjEtLjggMS4zLTEuNy45LTEuNyAxLjcgMCAuMy41LjcuNyAxIC43IDEgLjQgMy4xLS4zIDQuNC0uMy41LS41IDEtMS4xIDEuMi0uNi4yLS43LjYtLjUgMS4yLjQuNy44IDEuNC40IDIuOS0uNiAyLjMtNi40IDMuOS0xNC42IDQuNC0uOCAwLTEuNi4xLTIuMy4xLTYuOCAwLTExLjUtMS44LTE1LjItNi00LjMtNC45LTMuOS0xMS0zLjItMTguMS43LTcgMy43LTcuNiAzLjctMTUgMC0zLjEtMi40LTkuNy0uMS0xMS40LjgtLjQgMS42LS42IDIuNS0uNm0wLTRjLTEuOCAwLTMuNC41LTQuNyAxLjQtMy41IDIuNi0yLjcgNy42LTIgMTEuNS4yIDEuMS40IDIuNC40IDMgMCAzLjEtLjYgNC41LTEuNSA2LjQtLjggMS45LTEuOSA0LjMtMi4yIDguMi0uNiA2LjktMS40IDE0LjYgNC4yIDIxLjEgNC40IDUuMSAxMC4yIDcuNCAxOC4yIDcuNC44IDAgMS43IDAgMi42LS4xIDE0LjktLjggMTcuNS00LjYgMTguMi03LjQuMy0xLjMuMy0yLjQuMi0zLjMuMy0uNS42LS45LjctMS4yLjctMS40IDEuNS00LjEuOS02LjUuMS0uMS4xLS4yLjItLjMgMS4xLTEuOCAxLjYtNC4yIDEuMy02LjQgNS4zLS44IDEyLjYtMi4zIDE0LjgtMy40IDIuOC0xLjQgNC42LTQuNiA0LjQtOC0uMi0zLjEtMi01LjYtNC43LTYuNi0uOS0uMy0yLS41LTMuMy0uNS0yLjQgMC01LjQuNS04LjQgMS0xLjMuMi0yLjYuNC0zLjcuNi00LjguNy0xMi4yIDEuNC0xNC43IDEuNy0uOS4xLTEuNy4yLTIuNS4yLTIuMi4yLTMuOS40LTUuMS40LS43IDAtLjktLjEtMS0uMS0uNS0uNC0uOS0uNy0uOS0yLjUtLjEtNS44LS42LTkuMi0zLjItMTIuOS0xLjktMi4xLTUtMy43LTguMi0zLjd6Ii8+PC9nPjwvc3ZnPg==");
}
.game-card > .thumbnail > .card-img-top-model {
    width: 100px;
    height: 100px;
    margin-top: 12px;
    margin-left: 25px;
    margin-right: 25px;
}
.game-card > .data {
    display: inline-block;
    padding: 0.65rem;
    width: 100%;
}
.game-card > .data > p {
    margin-top: 0;
    margin-bottom: 0;
}
.game-card > .data > p:first-child {
    font-size: 16px;
}
.game-card > .data > .author {
    color: #a2a9ad;
}
.game-card-link {
    padding: 4px;
    display: inline-block;
}
#user-tab-places > div:last-child {
    margin-bottom: 0 !important;
}
.place-description {
    max-height: 100px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-word;
}
.server-list-player {
    position: relative;
    min-width: 60px;
}
.server-list-player > .kick-btn {
    position: absolute;
    background: #000;
    border: 1px solid #ececec;
    color: #ececec;
    font-size: 10px;
    padding: 1px 4px;
    border-radius: 40px;
    vertical-align: middle;
    text-align: center;
    top: 0;
    left: 0;
}
.server-list-player > .kick-btn:hover {
    background: #ececec;
    border: 1px solid #000;
    color: #000;
}
.place-thumbnail {
    width: 100%;
    max-width: 432px;
    max-height: 250px;
}
.place-thumbnail-small {
    width: 50%;
    max-width: 200px;
    max-height: 120px;
}
.place-admin-logo {
    position: absolute;
    top: 0;
    right: 0;
}
.finobe__blob_openmouth,
.finobe__blob_opensmile,
.finobe__blob_thinking {
    width: 8rem;
    height: 8rem;
    background-size: 100% 100% !important;
    display: inline-block;
    vertical-align: middle;
}
.finobe__blob_smaller {
    width: 2rem !important;
    height: 2rem !important;
}
.finobe__blob_opensmile {
    background: url(/img/blobs/opensmile.svg) no-repeat;
}
.finobe__blob_openmouth {
    background: url(/img/blobs/openmouth.svg) no-repeat;
}
.finobe__blob_thinking {
    background: url(/img/blobs/thinking.svg) no-repeat;
}
@keyframes finobe__spinning {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.finobe__spinning_blob {
    -webkit-animation: finobe__spinning 1.2s ease-in-out infinite;
    animation: finobe__spinning 1.2s ease-in-out infinite;
}
.modal.fade {
    opacity: 0;
    transition: all 0.2s ease;
}
.modal.fade.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.modal.fade .modal-dialog {
    opacity: 0;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    transition: all 0.2s ease;
}
.modal.fade.show > .modal-dialog {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.modal-content {
    border: none;
    border-radius: 2px;
    box-shadow:
        0 40px 77px rgba(0, 0, 0, 0.22),
        0 27px 24px rgba(0, 0, 0, 0.2);
}
.nav-finobe-pills > .nav-item {
    cursor: pointer;
}
.nav-finobe-pills > .nav-item > .nav-link {
    color: #696969;
    background-color: none;
    transition: all 0.2s linear;
}
.nav-finobe-pills > .nav-item > .nav-link.active {
    color: #000;
    cursor: default;
    font-weight: 700;
    background-color: #fff;
}
.nav-finobe-pills > .nav-item > .nav-link:not(.active):hover {
    background-color: #fff;
}
.finobe__message-item {
    width: 100%;
    display: inline-block;
    float: left;
    min-height: 40px;
    padding: 10px 16px;
    background: #fdfdfd;
    border-bottom: 1px solid #ececec;
    cursor: pointer;
}
.finobe__message-item:hover {
    box-shadow: inset 4px 0 0 0 #039be5;
}
.finobe__message-checkbox {
    margin-top: 10px;
}
.finobe__message-outside {
    float: left;
    width: 2.2rem;
}
.finobe__message-inside {
    float: left;
    width: calc(100% - 2.2rem);
    text-decoration: none;
}
a.finobe__message-inside:active,
a.finobe__message-inside:hover,
a.finobe__message-inside:link {
    text-decoration: none;
}
.finobe__message-lower-area {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.finobe__message-preview-text:before {
    content: "- ";
}
.finobe__message-title {
    font-weight: 700;
}
.voodoo-form > * .form-control[readonly] {
    background-color: #fff;
    opacity: 1;
}
.voodoo-form > .form-group {
    width: 100%;
    vertical-align: middle;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
.voodoo-form > .form-group > .form-label {
    float: left;
    margin-right: 0;
    line-height: 2.4;
    margin-left: 10px;
}
.voodoo-form > .form-group > .form-label:after {
    content: ":";
}
.voodoo-form > .form-group > .form-input {
    overflow: hidden;
}
.voodoo-form > .form-group > .form-input > .form-control {
    float: left;
    border: none;
    border-radius: 0;
    transition: none;
    padding: 0.5rem 0.4rem;
    font-family:
        Source Sans Pro,
        sans-serif;
    font-size: 14px;
    line-height: 1;
}
.finobe__message-empty {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.finobe__message-listing {
    display: block;
    width: 100%;
    border-top: 1px solid #ececec;
}
.catalog-card,
.catalog-card:link {
    color: #636c72;
    text-decoration: none;
    font-size: 14px;
}
.catalog-card > .card {
    border-radius: 0.2rem;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.catalog-card:not(.no-hover-catalog-card) > .card:active,
.catalog-card:not(.no-hover-catalog-card) > .card:hover {
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.1),
        0 1px 4px 2px rgba(0, 0, 0, 0.1);
}
.catalog-card-name {
    color: #000;
    font-size: 16px;
}
.catalog-no-overflow-plz {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.badge.finobe__card-ribbon {
    position: absolute;
    right: -1px;
    top: 0;
    border: 0;
    border-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    font-size: 12px;
}
.badge.card__ribbon-left {
    position: absolute;
    left: -1px;
    top: 0;
    border: 0;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 12px;
}
.catalog__item-audio {
    width: 100%;
    height: 30px;
    border: 1px solid #e6e6e6;
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 6px;
    line-height: 30px;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 0.2rem;
}
.catalog__item-audio:hover {
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.1),
        0 1px 4px 2px rgba(0, 0, 0, 0.1);
    color: #000;
    text-decoration: none;
}
.dropdown-menu {
    padding: 8px;
}
.dropdown-item {
    padding: 5px 10px;
    border-radius: 4px;
}
.dropdown-menu > .dropdown-item:not(:last-of-type) {
    margin-bottom: 5px;
}
.dropdown-header {
    padding: 5px 10px;
}
.navbar-nobelium-dropdown.dropdown-menu.dropdown-menu-right > a {
    padding-left: 10px;
}
nav.finobe-basic-nav,
nav.settings-nav {
    width: 100%;
    height: auto;
}
nav.finobe-basic-nav > .header,
nav.settings-nav > .header {
    width: 100%;
    font-weight: 700;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
nav.finobe-basic-nav > .link,
nav.settings-nav > .link {
    display: block;
    font-weight: 500;
    width: 100%;
    text-transform: none;
    color: #60686f;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}
nav.finobe-basic-nav > .link.active,
nav.settings-nav > .link.active {
    color: #794acf;
    font-weight: 600;
}
.forum-alert {
    margin: 0;
    padding: 8px 12px;
}
.forum-alert > h5 {
    font-size: 0.9rem;
    font-weight: 700;
    vertical-align: middle;
}
.forum-alert > p {
    margin-bottom: 0;
}
.forum-alert.primary {
    border-left: 6px solid #025780;
    background: rgba(3, 155, 229, 0.075);
    color: #025780;
}
.forum-alert.primary > h5 > .far {
    color: #039de8;
}
.forum-alert.warning {
    border-left: 6px solid #996b00;
    background: rgba(255, 179, 0, 0.075);
    color: #996b00;
}
.forum-alert.warning > h5 > .far {
    color: #ffb403;
}
.forum-alert.success {
    border-left: 6px solid #005227;
    background: rgba(0, 184, 87, 0.05);
    color: #005227;
}
.forum-alert.success > h5 > .far {
    color: #00bb58;
}
.forum-new-main-area > .textarea-container {
    border-radius: 0.25rem;
    border: 1px solid #ced4da;
    width: 100%;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}
.forum-new-main-area > .textarea-container.active {
    width: 100%;
    box-shadow: 0 0 2px 1px rgba(3, 155, 229, 0.1);
    border-color: #6acdfd;
}
.forum-new-main-area > .textarea-container > textarea.verse {
    display: block;
    width: 100%;
    border: none;
    border-radius: 0;
    min-height: 200px;
    max-width: 100%;
    margin-bottom: 0;
    outline: none;
    padding: 8px 10px;
}
.forum-new-main-area > .textarea-container > textarea.verse:active,
.forum-new-main-area > .textarea-container > textarea.verse:focus {
    box-shadow: none;
}
.forum-new-main-area > .textarea-container .bottom,
.forum-new-main-area > .textarea-container > .top {
    background-color: hsla(0, 0%, 100%, 0.3);
}
.forum-new-main-area > .textarea-container > .top {
    padding: 8px 10px;
    margin: 0;
    border-bottom: 1px solid #ced4da;
    font-size: 0.75rem;
}
.forum-new-main-area > .textarea-container > .bottom {
    border-top: 1px solid #ced4da;
    padding: 6px 8px;
    font-size: 0.7rem;
}
.forum-new-main-area > .textarea-container > .bottom > ul {
    padding: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-around;
}
.forum-new-main-area > .textarea-container > .bottom > ul,
.forum-new-main-area > .textarea-container > .bottom li {
    list-style-type: none;
}
.forum-new-main-area > .textarea-container > .bottom > li {
    display: inline-flex;
}
.forum-vote-total {
    display: inline-block;
    padding: 0 6px;
    margin-right: 6px;
    min-width: 30px;
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}
.post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.forum__color-ball {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 4px;
    border-radius: 100%;
    vertical-align: middle;
}
.forum-badge {
    padding-left: 10px;
    position: relative;
}
.forum-badge__color-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}
.group-description {
    width: 100%;
    max-height: 150px;
    overflow-y: auto;
}
img.emojione {
    display: inline-block;
    vertical-align: middle;
    width: 1.25em;
    height: 1.25em;
    background-repeat: no-repeat;
    text-indent: -9999px;
    background-position: 50%, 50%;
    background-size: contain;
    line-height: 0.81em;
    font-size: 1.25em;
    margin: -2px 0;
}
@font-face {
    font-family: Aller;
    src: url(/fonts/Aller.eot);
    src:
        url(/fonts/Aller.eot?#iefix) format("embedded-opentype"),
        url(/fonts/Aller.woff2) format("woff2"),
        url(/fonts/Aller.woff) format("woff"),
        url(/fonts/Aller.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: Aller;
    src: url(/fonts/Aller-Bold.eot);
    src:
        url(/fonts/Aller-Bold.eot?#iefix) format("embedded-opentype"),
        url(/fonts/Aller-Bold.woff2) format("woff2"),
        url(/fonts/Aller-Bold.woff) format("woff"),
        url(/fonts/Aller-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}
.navbar-light.bg-faded {
    background: #7474bf;
    background: linear-gradient(90deg, #348ac7, #7474bf);
    border-bottom: 0;
}
.nav-scroller.navbar-light.bg-faded {
    background: #7474bf;
    background: linear-gradient(90deg, #2c72a3, #6262a3);
}
nav.navbar.navbar-light.bg-faded.navbar-static-top {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
.nav-scroller-inner > a.nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: hsla(0, 0%, 100%, 0.75);
}
.nav-scroller-inner > a.nav-link:hover,
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: hsla(0, 0%, 100%, 0.85);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-toggler {
    border-color: hsla(0, 0%, 100%, 0.25);
}
.btn-theme {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-theme:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.btn-theme:not(:disabled):not(.disabled).active,
.btn-theme:not(:disabled):not(.disabled):active,
.show > .btn-theme.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}
.btn-theme:not(:disabled):not(.disabled).active:focus,
.btn-theme:not(:disabled):not(.disabled):active:focus,
.show > .btn-theme.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
body.finobe-modern-style * > .form-control:focus {
    box-shadow:
        0 1px 2px 0 rgba(0, 0, 0, 0.1),
        0 2px 6px 2px rgba(0, 0, 0, 0.1);
}
