@charset "UTF-8"; /*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
    animation-duration: 1.25s;
    animation-fill-mode: both
}

    .animated.infinite {
        animation-iteration-count: infinite
    }

    .animated.hinge {
        animation-duration: 2s
    }

    .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
        animation-duration: .75s
    }

@keyframes bounce {
    0%,20%,53%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0)
    }

    90% {
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(-10px,0,0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(6px) rotateY(9deg)
    }

    18.5% {
        transform: translateX(-5px) rotateY(-7deg)
    }

    31.5% {
        transform: translateX(3px) rotateY(5deg)
    }

    43.5% {
        transform: translateX(-2px) rotateY(-3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(-15deg)
    }

    40% {
        transform: rotate(10deg)
    }

    60% {
        transform: rotate(-5deg)
    }

    80% {
        transform: rotate(5deg)
    }

    to {
        transform: rotate(0)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(25%,0,0) rotate(5deg)
    }

    30% {
        transform: translate3d(-20%,0,0) rotate(-3deg)
    }

    45% {
        transform: translate3d(15%,0,0) rotate(3deg)
    }

    60% {
        transform: translate3d(-10%,0,0) rotate(-2deg)
    }

    75% {
        transform: translate3d(5%,0,0) rotate(1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: none
    }

    22.2% {
        transform: skewX(12.5deg) skewY(12.5deg)
    }

    33.3% {
        transform: skewX(-6.25deg) skewY(-6.25deg)
    }

    44.4% {
        transform: skewX(3.125deg) skewY(3.125deg)
    }

    55.5% {
        transform: skewX(-1.5625deg) skewY(-1.5625deg)
    }

    66.6% {
        transform: skewX(0.78125deg) skewY(0.78125deg)
    }

    77.7% {
        transform: skewX(-0.390625deg) skewY(-0.390625deg)
    }

    88.8% {
        transform: skewX(0.1953125deg) skewY(0.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(100px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(-100px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100px,0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100px,0,0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100px,0,0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100px,0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(-90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(-10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(-90deg);
        opacity: 0
    }
}

.flipOutY {
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(-100px,0,0) skewX(30deg);
        opacity: 0
    }

    60% {
        transform: skewX(-20deg);
        opacity: 1
    }

    80% {
        transform: skewX(5deg);
        opacity: 1
    }

    to {
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(-100px,0,0) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }

    to {
        transform-origin: center;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0
    }

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    to {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    to {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    to {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top right;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(-80deg);
        transform-origin: top right;
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(-60deg);
        transform-origin: top right;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(-30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(10deg)
    }

    70% {
        transform: rotate(-3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(100px,0,0) rotate(120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100px,0,0) rotate(-120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0);
        transform-origin: right center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0);
        transform-origin: left center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100px,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(100px,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(-100px,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100px,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100px,0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100px,0,0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100px,0,0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100px,0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2021 Animate.css
*/

:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    animation-duration: 1s;
    animation-duration: var(--animate-duration);
    animation-fill-mode: both
}

    .animate__animated.animate__infinite {
        animation-iteration-count: infinite
    }

    .animate__animated.animate__repeat-1 {
        animation-iteration-count: 1;
        animation-iteration-count: var(--animate-repeat)
    }

    .animate__animated.animate__repeat-2 {
        animation-iteration-count: 2;
        animation-iteration-count: calc(var(--animate-repeat) * 2)
    }

    .animate__animated.animate__repeat-3 {
        animation-iteration-count: 3;
        animation-iteration-count: calc(var(--animate-repeat) * 3)
    }

    .animate__animated.animate__delay-1s {
        animation-delay: 1s;
        animation-delay: var(--animate-delay)
    }

    .animate__animated.animate__delay-2s {
        animation-delay: 2s;
        animation-delay: calc(var(--animate-delay) * 2)
    }

    .animate__animated.animate__delay-3s {
        animation-delay: 3s;
        animation-delay: calc(var(--animate-delay) * 3)
    }

    .animate__animated.animate__delay-4s {
        animation-delay: 4s;
        animation-delay: calc(var(--animate-delay) * 4)
    }

    .animate__animated.animate__delay-5s {
        animation-delay: 5s;
        animation-delay: calc(var(--animate-delay) * 5)
    }

    .animate__animated.animate__faster {
        animation-duration: .5s;
        animation-duration: calc(var(--animate-duration)/ 2)
    }

    .animate__animated.animate__fast {
        animation-duration: .8s;
        animation-duration: calc(var(--animate-duration) * .8)
    }

    .animate__animated.animate__slow {
        animation-duration: 2s;
        animation-duration: calc(var(--animate-duration) * 2)
    }

    .animate__animated.animate__slower {
        animation-duration: 3s;
        animation-duration: calc(var(--animate-duration) * 3)
    }

@media (prefers-reduced-motion:reduce),print {
    .animate__animated {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
        animation-iteration-count: 1 !important
    }

        .animate__animated[class*=Out] {
            opacity: 0
        }
}

@keyframes bounce {
    0%,20%,53%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0)
    }

    40%,43% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-30px,0) scaleY(1.1)
    }

    70% {
        animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        transform: translate3d(0,-15px,0) scaleY(1.05)
    }

    80% {
        transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transform: translateZ(0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,-4px,0) scaleY(1.02)
    }
}

.animate__bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.animate__flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__pulse {
    animation-name: pulse;
    animation-timing-function: ease-in-out
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25,.75,1)
    }

    40% {
        transform: scale3d(.75,1.25,1)
    }

    50% {
        transform: scale3d(1.15,.85,1)
    }

    65% {
        transform: scale3d(.95,1.05,1)
    }

    75% {
        transform: scale3d(1.05,.95,1)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    animation-name: rubberBand
}

@keyframes shakeX {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(10px,0,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(-10px,0,0)
    }
}

.animate__shakeX {
    animation-name: shakeX
}

@keyframes shakeY {
    0%,to {
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        transform: translate3d(0,-10px,0)
    }

    20%,40%,60%,80% {
        transform: translate3d(0,10px,0)
    }
}

.animate__shakeY {
    animation-name: shakeY
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }

    6.5% {
        transform: translateX(6px) rotateY(9deg)
    }

    18.5% {
        transform: translateX(-5px) rotateY(-7deg)
    }

    31.5% {
        transform: translateX(3px) rotateY(5deg)
    }

    43.5% {
        transform: translateX(-2px) rotateY(-3deg)
    }

    50% {
        transform: translateX(0)
    }
}

.animate__headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(-15deg)
    }

    40% {
        transform: rotate(10deg)
    }

    60% {
        transform: rotate(-5deg)
    }

    80% {
        transform: rotate(5deg)
    }

    to {
        transform: rotate(0)
    }
}

.animate__swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,20% {
        transform: scale3d(.9,.9,.9) rotate(3deg)
    }

    30%,50%,70%,90% {
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    40%,60%,80% {
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.animate__tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }

    15% {
        transform: translate3d(25%,0,0) rotate(5deg)
    }

    30% {
        transform: translate3d(-20%,0,0) rotate(-3deg)
    }

    45% {
        transform: translate3d(15%,0,0) rotate(3deg)
    }

    60% {
        transform: translate3d(-10%,0,0) rotate(-2deg)
    }

    75% {
        transform: translate3d(5%,0,0) rotate(1deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,11.1%,to {
        transform: translateZ(0)
    }

    22.2% {
        transform: skewX(12.5deg) skewY(12.5deg)
    }

    33.3% {
        transform: skewX(-6.25deg) skewY(-6.25deg)
    }

    44.4% {
        transform: skewX(3.125deg) skewY(3.125deg)
    }

    55.5% {
        transform: skewX(-1.5625deg) skewY(-1.5625deg)
    }

    66.6% {
        transform: skewX(0.78125deg) skewY(0.78125deg)
    }

    77.7% {
        transform: skewX(-0.390625deg) skewY(-0.390625deg)
    }

    88.8% {
        transform: skewX(0.1953125deg) skewY(0.1953125deg)
    }
}

.animate__jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }

    14% {
        transform: scale(1.3)
    }

    28% {
        transform: scale(1)
    }

    42% {
        transform: scale(1.3)
    }

    70% {
        transform: scale(1)
    }
}

.animate__heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-duration: calc(var(--animate-duration) * 1.3);
    animation-timing-function: ease-in-out
}

@keyframes backInDown {
    0% {
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInDown {
    animation-name: backInDown
}

@keyframes backInLeft {
    0% {
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInLeft {
    animation-name: backInLeft
}

@keyframes backInRight {
    0% {
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInRight {
    animation-name: backInRight
}

@keyframes backInUp {
    0% {
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }

    80% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInUp {
    animation-name: backInUp
}

@keyframes backOutDown {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutDown {
    animation-name: backOutDown
}

@keyframes backOutLeft {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutLeft {
    animation-name: backOutLeft
}

@keyframes backOutRight {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateX(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutRight {
    animation-name: backOutRight
}

@keyframes backOutUp {
    0% {
        transform: scale(1);
        opacity: 1
    }

    20% {
        transform: translateY(0) scale(.7);
        opacity: .7
    }

    to {
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutUp {
    animation-name: backOutUp
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    20% {
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0) scaleY(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0) scaleY(.9)
    }

    75% {
        transform: translate3d(0,-10px,0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,5px,0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0) scaleX(1)
    }

    75% {
        transform: translate3d(10px,0,0) scaleX(.98)
    }

    90% {
        transform: translate3d(-5px,0,0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0) scaleX(3)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0) scaleX(1)
    }

    75% {
        transform: translate3d(-10px,0,0) scaleX(.98)
    }

    90% {
        transform: translate3d(5px,0,0) scaleX(.995)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0) scaleY(5)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    75% {
        transform: translate3d(0,10px,0) scaleY(.95)
    }

    90% {
        transform: translate3d(0,-5px,0) scaleY(.985)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }
}

.animate__bounceOut {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0,10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,-20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0) scaleY(3)
    }
}

.animate__bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(-20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(20px,0,0) scaleX(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0) scaleX(2)
    }
}

.animate__bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0,-10px,0) scaleY(.985)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,20px,0) scaleY(.9)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0) scaleY(3)
    }
}

.animate__bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate__fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        transform: translate3d(100%,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    animation-name: fadeInTopLeft
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        transform: translate3d(-100%,-100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    animation-name: fadeInTopRight
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        transform: translate3d(100%,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    animation-name: fadeInBottomLeft
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        transform: translate3d(-100%,100%,0)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    animation-name: fadeInBottomRight
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.animate__fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }
}

.animate__fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.animate__fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%,0,0)
    }
}

.animate__fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,0,0)
    }
}

.animate__fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0)
    }
}

.animate__fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,0,0)
    }
}

.animate__fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-100%,0)
    }
}

.animate__fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

.animate__fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%,-100%,0)
    }
}

.animate__fadeOutTopLeft {
    animation-name: fadeOutTopLeft
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,-100%,0)
    }
}

.animate__fadeOutTopRight {
    animation-name: fadeOutTopRight
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,100%,0)
    }
}

.animate__fadeOutBottomRight {
    animation-name: fadeOutBottomRight
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        transform: translateZ(0)
    }

    to {
        opacity: 0;
        transform: translate3d(100%,100%,0)
    }
}

.animate__fadeOutBottomLeft {
    animation-name: fadeOutBottomLeft
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(1turn);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(190deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) scale3d(.95,.95,.95) translateZ(0) rotateY(0);
        animation-timing-function: ease-in
    }

    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
        animation-timing-function: ease-in
    }
}

.animate__animated.animate__flip {
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInX {
    backface-visibility: visible !important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(-90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        transform: perspective(400px) rotateY(20deg);
        animation-timing-function: ease-in
    }

    60% {
        transform: perspective(400px) rotateY(-10deg);
        opacity: 1
    }

    80% {
        transform: perspective(400px) rotateY(5deg)
    }

    to {
        transform: perspective(400px)
    }
}

.animate__flipInY {
    backface-visibility: visible !important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.animate__flipOutX {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    animation-name: flipOutX;
    backface-visibility: visible !important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        transform: perspective(400px) rotateY(15deg);
        opacity: 1
    }

    to {
        transform: perspective(400px) rotateY(-90deg);
        opacity: 0
    }
}

.animate__flipOutY {
    animation-duration: .75s;
    animation-duration: calc(var(--animate-duration) * .75);
    backface-visibility: visible !important;
    animation-name: flipOutY
}

@keyframes lightSpeedInRight {
    0% {
        transform: translate3d(-100%,0,0) skewX(30deg);
        opacity: 0
    }

    60% {
        transform: skewX(-20deg);
        opacity: 1
    }

    80% {
        transform: skewX(5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    animation-name: lightSpeedInRight;
    animation-timing-function: ease-out
}

@keyframes lightSpeedInLeft {
    0% {
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        transform: skewX(20deg);
        opacity: 1
    }

    80% {
        transform: skewX(-5deg)
    }

    to {
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    animation-name: lightSpeedInLeft;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(-100%,0,0) skewX(-30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutRight {
    animation-name: lightSpeedOutRight;
    animation-timing-function: ease-in
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }

    to {
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutLeft {
    animation-name: lightSpeedOutLeft;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform: rotate(200deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateIn {
    animation-name: rotateIn;
    transform-origin: center
}

@keyframes rotateInDownLeft {
    0% {
        transform: rotate(45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownLeft {
    animation-name: rotateInDownLeft;
    transform-origin: right bottom
}

@keyframes rotateInDownRight {
    0% {
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownRight {
    animation-name: rotateInDownRight;
    transform-origin: left bottom
}

@keyframes rotateInUpLeft {
    0% {
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpLeft {
    animation-name: rotateInUpLeft;
    transform-origin: right bottom
}

@keyframes rotateInUpRight {
    0% {
        transform: rotate(90deg);
        opacity: 0
    }

    to {
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpRight {
    animation-name: rotateInUpRight;
    transform-origin: left bottom
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }

    to {
        transform: rotate(-200deg);
        opacity: 0
    }
}

.animate__rotateOut {
    animation-name: rotateOut;
    transform-origin: center
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }

    to {
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
    transform-origin: right bottom
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }

    to {
        transform: rotate(45deg);
        opacity: 0
    }
}

.animate__rotateOutDownRight {
    animation-name: rotateOutDownRight;
    transform-origin: left bottom
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        transform: rotate(45deg);
        opacity: 0
    }
}

.animate__rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
    transform-origin: right bottom
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        transform: rotate(-90deg);
        opacity: 0
    }
}

.animate__rotateOutUpRight {
    animation-name: rotateOutUpRight;
    transform-origin: left bottom
}

@keyframes hinge {
    0% {
        animation-timing-function: ease-in-out
    }

    20%,60% {
        transform: rotate(-80deg);
        animation-timing-function: ease-in-out
    }

    40%,80% {
        transform: rotate(-60deg);
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.animate__hinge {
    animation-duration: 2s;
    animation-duration: calc(var(--animate-duration) * 2);
    animation-name: hinge;
    transform-origin: top right
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(-30deg);
        transform-origin: center bottom
    }

    50% {
        transform: rotate(10deg)
    }

    70% {
        transform: rotate(-3deg)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate__jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0) rotate(120deg)
    }

    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.animate__rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }
}

.animate__rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.animate__zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutDown {
    animation-name: zoomOutDown;
    transform-origin: center bottom
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px,0,0)
    }
}

.animate__zoomOutLeft {
    animation-name: zoomOutLeft;
    transform-origin: right center
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px,0,0)
    }
}

.animate__zoomOutRight {
    animation-name: zoomOutRight;
    transform-origin: left center
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.animate__zoomOutUp {
    animation-name: zoomOutUp;
    transform-origin: center bottom
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,100%,0)
    }
}

.animate__slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(100%,0,0)
    }
}

.animate__slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%,0,0)
    }
}

.animate__slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        transform: translate3d(0,-100%,0)
    }
}

.animate__slideOutUp {
    animation-name: slideOutUp
}
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))
}

*, ::after, ::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25
}

    hr:not([size]) {
        height: 1px
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    .h1, h1 {
        font-size: 2.5rem
    }
}

.h2, h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    .h2, h2 {
        font-size: 2rem
    }
}

.h3, h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    .h3, h3 {
        font-size: 1.75rem
    }
}

.h4, h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    .h4, h4 {
        font-size: 1.5rem
    }
}

.h5, h5 {
    font-size: 1.25rem
}

.h6, h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[data-bs-original-title], abbr[title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol, ul {
    padding-right: 2rem
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-right: 0
}

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

.small, small {
    font-size: .875em
}

.mark, mark {
    padding: .2em;
    background-color: #fcf8e3
}

sub, sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

    a:hover {
        color: #0a58ca
    }

    a:not([href]):not([class]), a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none
    }

code, kbd, pre, samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: rtl;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: .875em;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
        font-weight: 700
    }

figure {
    margin: 0 0 1rem
}

img, svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: right
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

    button:focus:not(:focus-visible) {
        outline: 0
    }

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

    select:disabled {
        opacity: 1
    }

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[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
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: right;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit
}

@media (min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend + * {
    clear: right
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-unstyled {
    padding-right: 0;
    list-style: none
}

.list-inline {
    padding-right: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-left: .5rem
    }

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

    .blockquote > :last-child {
        margin-bottom: 0
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

    .blockquote-footer::before {
        content: "— "
    }

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: .875em;
    color: #6c757d
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-left: var(--bs-gutter-x,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
    margin-left: auto;
    margin-right: auto
}

@media (min-width:576px) {
    .container, .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container, .container-md, .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5)
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-left: calc(var(--bs-gutter-x) * .5);
        padding-right: calc(var(--bs-gutter-x) * .5);
        margin-top: var(--bs-gutter-y)
    }

.col {
    flex: 1 0 0%
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width:1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-right: 8.33333333%
}

.offset-2 {
    margin-right: 16.66666667%
}

.offset-3 {
    margin-right: 25%
}

.offset-4 {
    margin-right: 33.33333333%
}

.offset-5 {
    margin-right: 41.66666667%
}

.offset-6 {
    margin-right: 50%
}

.offset-7 {
    margin-right: 58.33333333%
}

.offset-8 {
    margin-right: 66.66666667%
}

.offset-9 {
    margin-right: 75%
}

.offset-10 {
    margin-right: 83.33333333%
}

.offset-11 {
    margin-right: 91.66666667%
}

.g-0, .gx-0 {
    --bs-gutter-x: 0
}

.g-0, .gy-0 {
    --bs-gutter-y: 0
}

.g-1, .gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1, .gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2, .gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2, .gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem
}

.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5, .gx-5 {
    --bs-gutter-x: 3rem
}

.g-5, .gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-right: 0
    }

    .offset-sm-1 {
        margin-right: 8.33333333%
    }

    .offset-sm-2 {
        margin-right: 16.66666667%
    }

    .offset-sm-3 {
        margin-right: 25%
    }

    .offset-sm-4 {
        margin-right: 33.33333333%
    }

    .offset-sm-5 {
        margin-right: 41.66666667%
    }

    .offset-sm-6 {
        margin-right: 50%
    }

    .offset-sm-7 {
        margin-right: 58.33333333%
    }

    .offset-sm-8 {
        margin-right: 66.66666667%
    }

    .offset-sm-9 {
        margin-right: 75%
    }

    .offset-sm-10 {
        margin-right: 83.33333333%
    }

    .offset-sm-11 {
        margin-right: 91.66666667%
    }

    .g-sm-0, .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0, .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1, .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1, .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2, .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2, .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3, .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3, .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4, .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4, .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5, .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5, .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-right: 0
    }

    .offset-md-1 {
        margin-right: 8.33333333%
    }

    .offset-md-2 {
        margin-right: 16.66666667%
    }

    .offset-md-3 {
        margin-right: 25%
    }

    .offset-md-4 {
        margin-right: 33.33333333%
    }

    .offset-md-5 {
        margin-right: 41.66666667%
    }

    .offset-md-6 {
        margin-right: 50%
    }

    .offset-md-7 {
        margin-right: 58.33333333%
    }

    .offset-md-8 {
        margin-right: 66.66666667%
    }

    .offset-md-9 {
        margin-right: 75%
    }

    .offset-md-10 {
        margin-right: 83.33333333%
    }

    .offset-md-11 {
        margin-right: 91.66666667%
    }

    .g-md-0, .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0, .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1, .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1, .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2, .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2, .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3, .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3, .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4, .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4, .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5, .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5, .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-right: 0
    }

    .offset-lg-1 {
        margin-right: 8.33333333%
    }

    .offset-lg-2 {
        margin-right: 16.66666667%
    }

    .offset-lg-3 {
        margin-right: 25%
    }

    .offset-lg-4 {
        margin-right: 33.33333333%
    }

    .offset-lg-5 {
        margin-right: 41.66666667%
    }

    .offset-lg-6 {
        margin-right: 50%
    }

    .offset-lg-7 {
        margin-right: 58.33333333%
    }

    .offset-lg-8 {
        margin-right: 66.66666667%
    }

    .offset-lg-9 {
        margin-right: 75%
    }

    .offset-lg-10 {
        margin-right: 83.33333333%
    }

    .offset-lg-11 {
        margin-right: 91.66666667%
    }

    .g-lg-0, .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0, .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1, .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1, .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2, .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2, .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3, .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3, .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4, .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4, .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5, .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5, .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-right: 0
    }

    .offset-xl-1 {
        margin-right: 8.33333333%
    }

    .offset-xl-2 {
        margin-right: 16.66666667%
    }

    .offset-xl-3 {
        margin-right: 25%
    }

    .offset-xl-4 {
        margin-right: 33.33333333%
    }

    .offset-xl-5 {
        margin-right: 41.66666667%
    }

    .offset-xl-6 {
        margin-right: 50%
    }

    .offset-xl-7 {
        margin-right: 58.33333333%
    }

    .offset-xl-8 {
        margin-right: 66.66666667%
    }

    .offset-xl-9 {
        margin-right: 75%
    }

    .offset-xl-10 {
        margin-right: 83.33333333%
    }

    .offset-xl-11 {
        margin-right: 91.66666667%
    }

    .g-xl-0, .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0, .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1, .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1, .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2, .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2, .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3, .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3, .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4, .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4, .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5, .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5, .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-right: 0
    }

    .offset-xxl-1 {
        margin-right: 8.33333333%
    }

    .offset-xxl-2 {
        margin-right: 16.66666667%
    }

    .offset-xxl-3 {
        margin-right: 25%
    }

    .offset-xxl-4 {
        margin-right: 33.33333333%
    }

    .offset-xxl-5 {
        margin-right: 41.66666667%
    }

    .offset-xxl-6 {
        margin-right: 50%
    }

    .offset-xxl-7 {
        margin-right: 58.33333333%
    }

    .offset-xxl-8 {
        margin-right: 66.66666667%
    }

    .offset-xxl-9 {
        margin-right: 75%
    }

    .offset-xxl-10 {
        margin-right: 83.33333333%
    }

    .offset-xxl-11 {
        margin-right: 91.66666667%
    }

    .g-xxl-0, .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0, .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1, .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1, .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2, .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2, .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3, .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3, .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4, .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4, .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5, .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5, .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6
}

    .table > :not(caption) > * > * {
        padding: .5rem .5rem;
        background-color: var(--bs-table-bg);
        border-bottom-width: 1px;
        box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
    }

    .table > tbody {
        vertical-align: inherit
    }

    .table > thead {
        vertical-align: bottom
    }

    .table > :not(:last-child) > :last-child > * {
        border-bottom-color: currentColor
    }

.caption-top {
    caption-side: top
}

.table-sm > :not(caption) > * > * {
    padding: .25rem .25rem
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 1px
    }

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0
}

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e6dbb9
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4
}

.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfe0e1
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

    .form-control[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer
    }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

    .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
        padding-left: 0;
        padding-right: 0
    }

.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

    .form-control-sm::file-selector-button {
        padding: .25rem .5rem;
        margin: -.25rem -.5rem;
        margin-inline-end: .5rem
    }

    .form-control-sm::-webkit-file-upload-button {
        padding: .25rem .5rem;
        margin: -.25rem -.5rem;
        margin-inline-end: .5rem
    }

.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

    .form-control-lg::file-selector-button {
        padding: .5rem 1rem;
        margin: -.5rem -1rem;
        margin-inline-end: 1rem
    }

    .form-control-lg::-webkit-file-upload-button {
        padding: .5rem 1rem;
        margin: -.5rem -1rem;
        margin-inline-end: 1rem
    }

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: .375rem
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer
    }

    .form-control-color::-moz-color-swatch {
        height: 1.5em;
        border-radius: .25rem
    }

    .form-control-color::-webkit-color-swatch {
        height: 1.5em;
        border-radius: .25rem
    }

.form-select {
    display: block;
    width: 100%;
    padding: .375rem .75rem .375rem 2.25rem;
    -moz-padding-start: calc(.75rem - 3px);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-select {
        transition: none
    }
}

.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-left: .75rem;
    background-image: none
}

.form-select:disabled {
    background-color: #e9ecef
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #212529
}

.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .5rem;
    font-size: .875rem
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    font-size: 1.25rem
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5em;
    margin-bottom: .125rem
}

    .form-check .form-check-input {
        float: right;
        margin-right: -1.5em
    }

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

    .form-check-input[type=checkbox] {
        border-radius: .25em
    }

    .form-check-input[type=radio] {
        border-radius: 50%
    }

    .form-check-input:active {
        filter: brightness(90%)
    }

    .form-check-input:focus {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
    }

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd
    }

        .form-check-input:checked[type=checkbox] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
        }

        .form-check-input:checked[type=radio] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
        }

    .form-check-input[type=checkbox]:indeterminate {
        background-color: #0d6efd;
        border-color: #0d6efd;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
    }

    .form-check-input:disabled {
        pointer-events: none;
        filter: none;
        opacity: .5
    }

        .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
            opacity: .5
        }

.form-switch {
    padding-right: 2.5em
}

    .form-switch .form-check-input {
        width: 2em;
        margin-right: -2.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
        background-position: right center;
        border-radius: 2em;
        transition: background-position .15s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
    background-position: left center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-inline {
    display: inline-block;
    margin-left: 1rem
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none
}

    .btn-check:disabled + .btn, .btn-check[disabled] + .btn {
        pointer-events: none;
        filter: none;
        opacity: .65
    }

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .form-range:focus {
        outline: 0
    }

        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
        }

        .form-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
        }

    .form-range::-moz-focus-outer {
        border: 0
    }

    .form-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -.25rem;
        background-color: #0d6efd;
        border: 0;
        border-radius: 1rem;
        -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        -webkit-appearance: none;
        appearance: none
    }

@media (prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe
}

.form-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range:disabled {
    pointer-events: none
}

    .form-range:disabled::-webkit-slider-thumb {
        background-color: #adb5bd
    }

    .form-range:disabled::-moz-range-thumb {
        background-color: #adb5bd
    }

.form-floating {
    position: relative
}

    .form-floating > .form-control, .form-floating > .form-select {
        height: calc(3.5rem + 2px);
        line-height: 1.25
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 1rem .75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 100% 0;
        transition: opacity .1s ease-in-out,transform .1s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .form-floating > label {
        transition: none
    }
}

.form-floating > .form-control {
    padding: 1rem .75rem
}

    .form-floating > .form-control::-moz-placeholder {
        color: transparent
    }

    .form-floating > .form-control::placeholder {
        color: transparent
    }

    .form-floating > .form-control:not(:-moz-placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

    .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

    .form-floating > .form-control:-webkit-autofill {
        padding-top: 1.625rem;
        padding-bottom: .625rem
    }

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

    .input-group > .form-control, .input-group > .form-select {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0
    }

        .input-group > .form-control:focus, .input-group > .form-select:focus {
            z-index: 3
        }

    .input-group .btn {
        position: relative;
        z-index: 2
    }

        .input-group .btn:focus {
            z-index: 3
        }

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
    padding-left: 3rem
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #198754
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(25,135,84,.9);
    border-radius: .25rem
}

.is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
    display: block
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #198754;
    padding-left: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-left: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem)
}

.form-select.is-valid, .was-validated .form-select:valid {
    border-color: #198754
}

    .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
        padding-left: 4.125rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
        background-position: left .75rem center,center left 2.25rem;
        background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
    }

    .form-select.is-valid:focus, .was-validated .form-select:valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

.form-check-input.is-valid, .was-validated .form-check-input:valid {
    border-color: #198754
}

    .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
        background-color: #198754
    }

    .form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

    .form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
        color: #198754
    }

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-right: .5em
}

.input-group .form-control.is-valid, .input-group .form-select.is-valid, .was-validated .input-group .form-control:valid, .was-validated .input-group .form-select:valid {
    z-index: 1
}

    .input-group .form-control.is-valid:focus, .input-group .form-select.is-valid:focus, .was-validated .input-group .form-control:valid:focus, .was-validated .input-group .form-select:valid:focus {
        z-index: 3
    }

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
    display: block
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-left: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-left: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem)
}

.form-select.is-invalid, .was-validated .form-select:invalid {
    border-color: #dc3545
}

    .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"] {
        padding-left: 4.125rem;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
        background-position: left .75rem center,center left 2.25rem;
        background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
    }

    .form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
    border-color: #dc3545
}

    .form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
        background-color: #dc3545
    }

    .form-check-input.is-invalid:focus, .was-validated .form-check-input:invalid:focus {
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

    .form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
        color: #dc3545
    }

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-right: .5em
}

.input-group .form-control.is-invalid, .input-group .form-select.is-invalid, .was-validated .input-group .form-control:invalid, .was-validated .input-group .form-select:invalid {
    z-index: 2
}

    .input-group .form-control.is-invalid:focus, .input-group .form-select.is-invalid:focus, .was-validated .input-group .form-control:invalid:focus, .was-validated .input-group .form-select:invalid:focus {
        z-index: 3
    }

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
        box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
    }

    .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0a58ca;
        border-color: #0a53be
    }

        .btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
        }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64
    }

    .btn-check:focus + .btn-secondary, .btn-secondary:focus {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
        box-shadow: 0 0 0 .25rem rgba(130,138,145,.5)
    }

    .btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #565e64;
        border-color: #51585e
    }

        .btn-check:active + .btn-secondary:focus, .btn-check:checked + .btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(130,138,145,.5)
        }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

    .btn-success:hover {
        color: #fff;
        background-color: #157347;
        border-color: #146c43
    }

    .btn-check:focus + .btn-success, .btn-success:focus {
        color: #fff;
        background-color: #157347;
        border-color: #146c43;
        box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
    }

    .btn-check:active + .btn-success, .btn-check:checked + .btn-success, .btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #146c43;
        border-color: #13653f
    }

        .btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
        }

    .btn-success.disabled, .btn-success:disabled {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

    .btn-info:hover {
        color: #000;
        background-color: #31d2f2;
        border-color: #25cff2
    }

    .btn-check:focus + .btn-info, .btn-info:focus {
        color: #000;
        background-color: #31d2f2;
        border-color: #25cff2;
        box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
    }

    .btn-check:active + .btn-info, .btn-check:checked + .btn-info, .btn-info.active, .btn-info:active, .show > .btn-info.dropdown-toggle {
        color: #000;
        background-color: #3dd5f3;
        border-color: #25cff2
    }

        .btn-check:active + .btn-info:focus, .btn-check:checked + .btn-info:focus, .btn-info.active:focus, .btn-info:active:focus, .show > .btn-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
        }

    .btn-info.disabled, .btn-info:disabled {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

    .btn-warning:hover {
        color: #000;
        background-color: #ffca2c;
        border-color: #ffc720
    }

    .btn-check:focus + .btn-warning, .btn-warning:focus {
        color: #000;
        background-color: #ffca2c;
        border-color: #ffc720;
        box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
    }

    .btn-check:active + .btn-warning, .btn-check:checked + .btn-warning, .btn-warning.active, .btn-warning:active, .show > .btn-warning.dropdown-toggle {
        color: #000;
        background-color: #ffcd39;
        border-color: #ffc720
    }

        .btn-check:active + .btn-warning:focus, .btn-check:checked + .btn-warning:focus, .btn-warning.active:focus, .btn-warning:active:focus, .show > .btn-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
        }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

    .btn-danger:hover {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37
    }

    .btn-check:focus + .btn-danger, .btn-danger:focus {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37;
        box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
    }

    .btn-check:active + .btn-danger, .btn-check:checked + .btn-danger, .btn-danger.active, .btn-danger:active, .show > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #b02a37;
        border-color: #a52834
    }

        .btn-check:active + .btn-danger:focus, .btn-check:checked + .btn-danger:focus, .btn-danger.active:focus, .btn-danger:active:focus, .show > .btn-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
        }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

.btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-light:hover {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb
    }

    .btn-check:focus + .btn-light, .btn-light:focus {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb;
        box-shadow: 0 0 0 .25rem rgba(211,212,213,.5)
    }

    .btn-check:active + .btn-light, .btn-check:checked + .btn-light, .btn-light.active, .btn-light:active, .show > .btn-light.dropdown-toggle {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb
    }

        .btn-check:active + .btn-light:focus, .btn-check:checked + .btn-light:focus, .btn-light.active:focus, .btn-light:active:focus, .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(211,212,213,.5)
        }

    .btn-light.disabled, .btn-light:disabled {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

    .btn-dark:hover {
        color: #fff;
        background-color: #1c1f23;
        border-color: #1a1e21
    }

    .btn-check:focus + .btn-dark, .btn-dark:focus {
        color: #fff;
        background-color: #1c1f23;
        border-color: #1a1e21;
        box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
    }

    .btn-check:active + .btn-dark, .btn-check:checked + .btn-dark, .btn-dark.active, .btn-dark:active, .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: #1a1e21;
        border-color: #191c1f
    }

        .btn-check:active + .btn-dark:focus, .btn-check:checked + .btn-dark:focus, .btn-dark.active:focus, .btn-dark:active:focus, .show > .btn-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
        }

    .btn-dark.disabled, .btn-dark:disabled {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
    }

    .btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

        .btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
            box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
        }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #0d6efd;
        background-color: transparent
    }

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 .25rem rgba(108,117,125,.5)
    }

    .btn-check:active + .btn-outline-secondary, .btn-check:checked + .btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show, .btn-outline-secondary:active {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

        .btn-check:active + .btn-outline-secondary:focus, .btn-check:checked + .btn-outline-secondary:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus, .btn-outline-secondary:active:focus {
            box-shadow: 0 0 0 .25rem rgba(108,117,125,.5)
        }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: #6c757d;
        background-color: transparent
    }

.btn-outline-success {
    color: #198754;
    border-color: #198754
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

    .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
    }

    .btn-check:active + .btn-outline-success, .btn-check:checked + .btn-outline-success, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show, .btn-outline-success:active {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

        .btn-check:active + .btn-outline-success:focus, .btn-check:checked + .btn-outline-success:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus, .btn-outline-success:active:focus {
            box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
        }

    .btn-outline-success.disabled, .btn-outline-success:disabled {
        color: #198754;
        background-color: transparent
    }

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0
}

    .btn-outline-info:hover {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

    .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
        box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
    }

    .btn-check:active + .btn-outline-info, .btn-check:checked + .btn-outline-info, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show, .btn-outline-info:active {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

        .btn-check:active + .btn-outline-info:focus, .btn-check:checked + .btn-outline-info:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus, .btn-outline-info:active:focus {
            box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
        }

    .btn-outline-info.disabled, .btn-outline-info:disabled {
        color: #0dcaf0;
        background-color: transparent
    }

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

    .btn-outline-warning:hover {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
        box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
    }

    .btn-check:active + .btn-outline-warning, .btn-check:checked + .btn-outline-warning, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show, .btn-outline-warning:active {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

        .btn-check:active + .btn-outline-warning:focus, .btn-check:checked + .btn-outline-warning:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus, .btn-outline-warning:active:focus {
            box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
        }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        color: #ffc107;
        background-color: transparent
    }

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
    }

    .btn-check:active + .btn-outline-danger, .btn-check:checked + .btn-outline-danger, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show, .btn-outline-danger:active {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

        .btn-check:active + .btn-outline-danger:focus, .btn-check:checked + .btn-outline-danger:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus, .btn-outline-danger:active:focus {
            box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
        }

    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
        color: #dc3545;
        background-color: transparent
    }

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-outline-light:hover {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
        box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
    }

    .btn-check:active + .btn-outline-light, .btn-check:checked + .btn-outline-light, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show, .btn-outline-light:active {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

        .btn-check:active + .btn-outline-light:focus, .btn-check:checked + .btn-outline-light:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus, .btn-outline-light:active:focus {
            box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
        }

    .btn-outline-light.disabled, .btn-outline-light:disabled {
        color: #f8f9fa;
        background-color: transparent
    }

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

    .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
        box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
    }

    .btn-check:active + .btn-outline-dark, .btn-check:checked + .btn-outline-dark, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show, .btn-outline-dark:active {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

        .btn-check:active + .btn-outline-dark:focus, .btn-check:checked + .btn-outline-dark:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus, .btn-outline-dark:active:focus {
            box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
        }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #212529;
        background-color: transparent
    }

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline
}

    .btn-link:hover {
        color: #0a58ca
    }

    .btn-link.disabled, .btn-link:disabled {
        color: #6c757d
    }

.btn-group-lg > .btn, .btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.btn-group-sm > .btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown, .dropend, .dropstart, .dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-right: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-left: .3em solid transparent;
        border-bottom: 0;
        border-right: .3em solid transparent
    }

    .dropdown-toggle:empty::after {
        margin-right: 0
    }

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem
}

    .dropdown-menu[data-bs-popper] {
        top: 100%;
        right: 0;
        margin-top: .125rem
    }

.dropdown-menu-start {
    --bs-position: start
}

    .dropdown-menu-start[data-bs-popper] {
        left: auto;
        right: 0
    }

.dropdown-menu-end {
    --bs-position: end
}

    .dropdown-menu-end[data-bs-popper] {
        left: 0;
        right: auto
    }

@media (min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

        .dropdown-menu-md-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-md-end {
        --bs-position: end
    }

        .dropdown-menu-md-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-left: .3em solid transparent;
    border-bottom: .3em solid;
    border-right: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    left: auto;
    right: 100%;
    margin-top: 0;
    margin-right: .125rem
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-left: 0;
    border-bottom: .3em solid transparent;
    border-right: .3em solid
}

.dropend .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropend .dropdown-toggle::after {
    vertical-align: 0
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    left: 100%;
    right: auto;
    margin-top: 0;
    margin-left: .125rem
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: ""
}

.dropstart .dropdown-toggle::after {
    display: none
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-left: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.15)
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

    .dropdown-item:focus, .dropdown-item:hover {
        color: #1e2125;
        background-color: #e9ecef
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #0d6efd
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #adb5bd;
        pointer-events: none;
        background-color: transparent
    }

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1rem;
    color: #212529
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0,0,0,.15)
}

    .dropdown-menu-dark .dropdown-item {
        color: #dee2e6
    }

        .dropdown-menu-dark .dropdown-item:focus, .dropdown-menu-dark .dropdown-item:hover {
            color: #fff;
            background-color: rgba(255,255,255,.15)
        }

        .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
            color: #fff;
            background-color: #0d6efd
        }

        .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
            color: #adb5bd
        }

    .dropdown-menu-dark .dropdown-divider {
        border-color: rgba(0,0,0,.15)
    }

    .dropdown-menu-dark .dropdown-item-text {
        color: #dee2e6
    }

    .dropdown-menu-dark .dropdown-header {
        color: #adb5bd
    }

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        flex: 1 1 auto
    }

        .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
            z-index: 1
        }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

    .btn-toolbar .input-group {
        width: auto
    }

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
    margin-right: -1px
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dropdown-toggle-split {
    padding-left: .5625rem;
    padding-right: .5625rem
}

    .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
        margin-right: 0
    }

.dropstart .dropdown-toggle-split::before {
    margin-left: 0
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-left: .375rem;
    padding-right: .375rem
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
    padding-left: .75rem;
    padding-right: .75rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

    .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
        width: 100%
    }

        .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
            margin-top: -1px
        }

        .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0
        }

        .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
            border-top-right-radius: 0;
            border-top-left-radius: 0
        }

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus, .nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

    .nav-tabs .nav-link {
        margin-bottom: -1px;
        background: 100% 0;
        border: 1px solid transparent;
        border-top-right-radius: .25rem;
        border-top-left-radius: .25rem
    }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            border-color: #e9ecef #e9ecef #dee2e6;
            isolation: isolate
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            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-right-radius: 0;
        border-top-left-radius: 0
    }

.nav-pills .nav-link {
    background: 100% 0;
    border: 0;
    border-radius: .25rem
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #0d6efd
    }

.nav-fill .nav-item, .nav-fill > .nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item, .nav-justified > .nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

    .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
        width: 100%
    }

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

    .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between
    }

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-left: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

    .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0
    }

    .navbar-nav .dropdown-menu {
        position: static
    }

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height,75vh);
    overflow-y: auto
}

@media (min-width:576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-sm .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-sm .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-sm .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-sm .navbar-toggler {
            display: none
        }
}

@media (min-width:768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-md .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-md .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-md .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-md .navbar-toggler {
            display: none
        }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: 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-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-lg .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-lg .navbar-toggler {
            display: none
        }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-xl .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-xl .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-xl .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-xl .navbar-toggler {
            display: none
        }
}

@media (min-width:1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-xxl .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-xxl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xxl .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-xxl .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-xxl .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-xxl .navbar-toggler {
            display: none
        }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

    .navbar-expand .navbar-nav {
        flex-direction: row
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-left: .5rem;
            padding-right: .5rem
        }

    .navbar-expand .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand .navbar-toggler {
        display: none
    }

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9)
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.55)
}

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(0,0,0,.7)
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0,0,0,.3)
    }

    .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgba(0,0,0,.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.55)
}

    .navbar-light .navbar-text a, .navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
        color: rgba(0,0,0,.9)
    }

.navbar-dark .navbar-brand {
    color: #fff
}

    .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
        color: #fff
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.55)
}

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255,255,255,.75)
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255,255,255,.25)
    }

    .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show > .nav-link {
        color: #fff
    }

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255,255,255,.55)
}

    .navbar-dark .navbar-text a, .navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
        color: #fff
    }

.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,.125);
    border-radius: .25rem
}

    .card > hr {
        margin-left: 0;
        margin-right: 0
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-right-radius: calc(.25rem - 1px);
            border-top-left-radius: calc(.25rem - 1px)
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-left-radius: calc(.25rem - 1px);
            border-bottom-right-radius: calc(.25rem - 1px)
        }

        .card > .card-header + .list-group, .card > .list-group + .card-footer {
            border-top: 0
        }

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link + .card-link {
    margin-right: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
    }

.card-footer {
    padding: .5rem 1rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125)
}

    .card-footer:last-child {
        border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
    }

.card-header-tabs {
    margin-left: -.5rem;
    margin-bottom: -.5rem;
    margin-right: -.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-left: -.5rem;
    margin-right: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem;
    border-radius: calc(.25rem - 1px)
}

.card-img, .card-img-bottom, .card-img-top {
    width: 100%
}

.card-img, .card-img-top {
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px)
}

.card-img, .card-img-bottom {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px)
}

.card-group > .card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0
        }

            .card-group > .card + .card {
                margin-right: 0;
                border-right: 0
            }

            .card-group > .card:not(:last-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0
            }

                .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
                    border-top-left-radius: 0
                }

                .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
                    border-bottom-left-radius: 0
                }

            .card-group > .card:not(:first-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0
            }

                .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
                    border-top-right-radius: 0
                }

                .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
                    border-bottom-right-radius: 0
                }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125)
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(180deg)
    }

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

    .accordion-item:first-of-type {
        border-top-right-radius: .25rem;
        border-top-left-radius: .25rem
    }

        .accordion-item:first-of-type .accordion-button {
            border-top-right-radius: calc(.25rem - 1px);
            border-top-left-radius: calc(.25rem - 1px)
        }

    .accordion-item:not(:first-of-type) {
        border-top: 0
    }

    .accordion-item:last-of-type {
        border-bottom-left-radius: .25rem;
        border-bottom-right-radius: .25rem
    }

        .accordion-item:last-of-type .accordion-button.collapsed {
            border-bottom-left-radius: calc(.25rem - 1px);
            border-bottom-right-radius: calc(.25rem - 1px)
        }

        .accordion-item:last-of-type .accordion-collapse {
            border-bottom-left-radius: .25rem;
            border-bottom-right-radius: .25rem
        }

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0
}

    .accordion-flush .accordion-item:first-child {
        border-top: 0
    }

    .accordion-flush .accordion-item:last-child {
        border-bottom: 0
    }

    .accordion-flush .accordion-item .accordion-button {
        border-radius: 0
    }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: .5rem
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: right;
        padding-left: .5rem;
        color: #6c757d;
        content: var(--bs-breadcrumb-divider, "/")
    }

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    padding-right: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.page-item:not(:first-child) .page-link {
    margin-right: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.pagination-lg .page-item:first-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem
}

.pagination-sm .page-item:first-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

    .badge:empty {
        display: none
    }

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-left: 3rem
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        padding: 1.25rem 1rem
    }

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

    .alert-primary .alert-link {
        color: #06357a
    }

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

    .alert-secondary .alert-link {
        color: #34383c
    }

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

    .alert-success .alert-link {
        color: #0c4128
    }

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

    .alert-info .alert-link {
        color: #04414d
    }

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5
}

    .alert-warning .alert-link {
        color: #523e02
    }

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

    .alert-danger .alert-link {
        color: #6a1a21
    }

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe
}

    .alert-light .alert-link {
        color: #4f5050
    }

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

    .alert-dark .alert-link {
        color: #101214
    }

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section
}

    .list-group-numbered > li::before {
        content: counters(section, ".") ". ";
        counter-increment: section
    }

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

    .list-group-item-action:focus, .list-group-item-action:hover {
        z-index: 1;
        color: #495057;
        text-decoration: none;
        background-color: #f8f9fa
    }

    .list-group-item-action:active {
        color: #212529;
        background-color: #e9ecef
    }

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    color: #212529;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

    .list-group-item:first-child {
        border-top-right-radius: inherit;
        border-top-left-radius: inherit
    }

    .list-group-item:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: #fff
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

    .list-group-item + .list-group-item {
        border-top-width: 0
    }

        .list-group-item + .list-group-item.active {
            margin-top: -1px;
            border-top-width: 1px
        }

.list-group-horizontal {
    flex-direction: row
}

    .list-group-horizontal > .list-group-item:first-child {
        border-bottom-right-radius: .25rem;
        border-top-left-radius: 0
    }

    .list-group-horizontal > .list-group-item:last-child {
        border-top-left-radius: .25rem;
        border-bottom-right-radius: 0
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-right: -1px;
            border-right-width: 1px
        }

@media (min-width:576px) {
    .list-group-horizontal-sm {
        flex-direction: row
    }

        .list-group-horizontal-sm > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-sm > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:768px) {
    .list-group-horizontal-md {
        flex-direction: row
    }

        .list-group-horizontal-md > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-md > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-md > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-md > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:992px) {
    .list-group-horizontal-lg {
        flex-direction: row
    }

        .list-group-horizontal-lg > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-lg > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl {
        flex-direction: row
    }

        .list-group-horizontal-xl > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-xl > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row
    }

        .list-group-horizontal-xxl > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-xxl > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-xxl > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-xxl > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

.list-group-flush {
    border-radius: 0
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 1px
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0
        }

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff
}

    .list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
        color: #084298;
        background-color: #bacbe6
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #084298;
        border-color: #084298
    }

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5
}

    .list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {
        color: #41464b;
        background-color: #cbccce
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #41464b;
        border-color: #41464b
    }

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd
}

    .list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {
        color: #0f5132;
        background-color: #bcd0c7
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #0f5132;
        border-color: #0f5132
    }

.list-group-item-info {
    color: #055160;
    background-color: #cff4fc
}

    .list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {
        color: #055160;
        background-color: #badce3
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #055160;
        border-color: #055160
    }

.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd
}

    .list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {
        color: #664d03;
        background-color: #e6dbb9
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #664d03;
        border-color: #664d03
    }

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da
}

    .list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {
        color: #842029;
        background-color: #dfc2c4
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #842029;
        border-color: #842029
    }

.list-group-item-light {
    color: #636464;
    background-color: #fefefe
}

    .list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {
        color: #636464;
        background-color: #e5e5e5
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #636464;
        border-color: #636464
    }

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4
}

    .list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {
        color: #141619;
        background-color: #bebebf
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #141619;
        border-color: #141619
    }

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: .75
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
        opacity: 1
    }

    .btn-close.disabled, .btn-close:disabled {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        opacity: .25
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .25rem
}

    .toast:not(.showing):not(.show) {
        opacity: 0
    }

    .toast.hide {
        display: none
    }

.toast-container {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

    .toast-container > :not(:last-child) {
        margin-bottom: .75rem
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px)
}

    .toast-header .btn-close {
        margin-left: -.375rem;
        margin-right: .75rem
    }

.toast-body {
    padding: .75rem;
    word-wrap: break-word
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.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,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-right-radius: calc(.3rem - 1px);
    border-top-left-radius: calc(.3rem - 1px)
}

    .modal-header .btn-close {
        padding: .5rem .5rem;
        margin: -.5rem auto -.5rem -.5rem
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: calc(.3rem - 1px);
    border-bottom-right-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: .25rem
    }

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen .modal-header {
        border-radius: 0
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen .modal-footer {
        border-radius: 0
    }

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0
        }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    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: .875rem;
    word-wrap: break-word;
    opacity: 0
}

    .tooltip.show {
        opacity: .9
    }

    .tooltip .tooltip-arrow {
        position: absolute;
        display: block;
        width: .8rem;
        height: .4rem
    }

        .tooltip .tooltip-arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-tooltip-auto[data-popper-placement^=top], .bs-tooltip-top {
    padding: .4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
        bottom: 0
    }

        .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
            top: -1px;
            border-width: .4rem .4rem 0;
            border-top-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=right], .bs-tooltip-end {
    padding: 0 .4rem
}

    .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
        right: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
            left: -1px;
            border-width: .4rem 0 .4rem .4rem;
            border-left-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=bottom], .bs-tooltip-bottom {
    padding: .4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
        top: 0
    }

        .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
            bottom: -1px;
            border-width: 0 .4rem .4rem;
            border-bottom-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=left], .bs-tooltip-start {
    padding: 0 .4rem
}

    .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
        left: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
            right: -1px;
            border-width: .4rem .4rem .4rem 0;
            border-right-color: #000
        }

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    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: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem
}

    .popover .popover-arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: .5rem
    }

        .popover .popover-arrow::after, .popover .popover-arrow::before {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-top > .popover-arrow {
    bottom: calc(-.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
        bottom: 0;
        border-width: .5rem .5rem 0;
        border-top-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
        bottom: 1px;
        border-width: .5rem .5rem 0;
        border-top-color: #fff
    }

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
        right: 0;
        border-width: .5rem 0 .5rem .5rem;
        border-left-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
        right: 1px;
        border-width: .5rem 0 .5rem .5rem;
        border-left-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
    top: calc(-.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
        top: 0;
        border-width: 0 .5rem .5rem .5rem;
        border-bottom-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::after {
        top: 1px;
        border-width: 0 .5rem .5rem .5rem;
        border-bottom-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: 1rem;
    margin-right: -.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
        left: 0;
        border-width: .5rem .5rem .5rem 0;
        border-right-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
        left: 1px;
        border-width: .5rem .5rem .5rem 0;
        border-right-color: #fff
    }

.popover-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0,0,0,.2);
    border-top-right-radius: calc(.3rem - 1px);
    border-top-left-radius: calc(.3rem - 1px)
}

    .popover-header:empty {
        display: none
    }

.popover-body {
    padding: 1rem 1rem;
    color: #212529
}

.carousel {
    position: relative
}

    .carousel.pointer-event {
        touch-action: pan-y
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: ""
    }

.carousel-item {
    position: relative;
    display: none;
    float: right;
    width: 100%;
    margin-left: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: block
}

    .active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(-100%)
    }

    .active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(100%)
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 100% 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next, .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    right: 0
}

.carousel-control-next {
    left: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-left: 15%;
    margin-bottom: 1rem;
    margin-right: 15%;
    list-style: none
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-left: 3px;
        margin-right: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease
    }

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    left: 15%;
    bottom: 1.25rem;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@keyframes spinner-border {
    to {
        transform: rotate(-360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    border: .25em solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .spinner-border, .spinner-grow {
        animation-duration: 1.5s
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    transition: transform .3s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .offcanvas {
        transition: none
    }
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem
}

    .offcanvas-header .btn-close {
        padding: .5rem .5rem;
        margin-top: -.5rem;
        margin-left: -.5rem;
        margin-bottom: -.5rem
    }

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5
}

.offcanvas-body {
    flex-grow: 1;
    padding: 1rem 1rem;
    overflow-y: auto
}

.offcanvas-start {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(0,0,0,.2);
    transform: translateX(100%)
}

.offcanvas-end {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(0,0,0,.2);
    transform: translateX(-100%)
}

.offcanvas-top {
    top: 0;
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(0,0,0,.2);
    transform: translateY(-100%)
}

.offcanvas-bottom {
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(0,0,0,.2);
    transform: translateY(100%)
}

.offcanvas.show {
    transform: none
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.link-primary {
    color: #0d6efd
}

    .link-primary:focus, .link-primary:hover {
        color: #0a58ca
    }

.link-secondary {
    color: #6c757d
}

    .link-secondary:focus, .link-secondary:hover {
        color: #565e64
    }

.link-success {
    color: #198754
}

    .link-success:focus, .link-success:hover {
        color: #146c43
    }

.link-info {
    color: #0dcaf0
}

    .link-info:focus, .link-info:hover {
        color: #3dd5f3
    }

.link-warning {
    color: #ffc107
}

    .link-warning:focus, .link-warning:hover {
        color: #ffcd39
    }

.link-danger {
    color: #dc3545
}

    .link-danger:focus, .link-danger:hover {
        color: #b02a37
    }

.link-light {
    color: #f8f9fa
}

    .link-light:focus, .link-light:hover {
        color: #f9fafb
    }

.link-dark {
    color: #212529
}

    .link-dark:focus, .link-dark:hover {
        color: #1a1e21
    }

.ratio {
    position: relative;
    width: 100%
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: ""
    }

    .ratio > * {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%)
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1030
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020
}

@media (min-width:576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: right !important
}

.float-end {
    float: left !important
}

.float-none {
    float: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    right: 0 !important
}

.start-50 {
    right: 50% !important
}

.start-100 {
    right: 100% !important
}

.end-0 {
    left: 0 !important
}

.end-50 {
    left: 50% !important
}

.end-100 {
    left: 100% !important
}

.translate-middle {
    transform: translate(50%,-50%) !important
}

.translate-middle-x {
    transform: translateX(50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-left: 1px solid #dee2e6 !important
}

.border-end-0 {
    border-left: 0 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-right: 1px solid #dee2e6 !important
}

.border-start-0 {
    border-right: 0 !important
}

.border-primary {
    border-color: #0d6efd !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #212529 !important
}

.border-white {
    border-color: #fff !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.justify-content-start {
    justify-content: flex-start !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
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
}

.mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-left: 0 !important
}

.me-1 {
    margin-left: .25rem !important
}

.me-2 {
    margin-left: .5rem !important
}

.me-3 {
    margin-left: 1rem !important
}

.me-4 {
    margin-left: 1.5rem !important
}

.me-5 {
    margin-left: 3rem !important
}

.me-auto {
    margin-left: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-right: 0 !important
}

.ms-1 {
    margin-right: .25rem !important
}

.ms-2 {
    margin-right: .5rem !important
}

.ms-3 {
    margin-right: 1rem !important
}

.ms-4 {
    margin-right: 1.5rem !important
}

.ms-5 {
    margin-right: 3rem !important
}

.ms-auto {
    margin-right: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
}

.px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-left: 0 !important
}

.pe-1 {
    padding-left: .25rem !important
}

.pe-2 {
    padding-left: .5rem !important
}

.pe-3 {
    padding-left: 1rem !important
}

.pe-4 {
    padding-left: 1.5rem !important
}

.pe-5 {
    padding-left: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-right: 0 !important
}

.ps-1 {
    padding-right: .25rem !important
}

.ps-2 {
    padding-right: .5rem !important
}

.ps-3 {
    padding-right: 1rem !important
}

.ps-4 {
    padding-right: 1.5rem !important
}

.ps-5 {
    padding-right: 3rem !important
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.text-start {
    text-align: right !important
}

.text-end {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.text-primary {
    color: #0d6efd !important
}

.text-secondary {
    color: #6c757d !important
}

.text-success {
    color: #198754 !important
}

.text-info {
    color: #0dcaf0 !important
}

.text-warning {
    color: #ffc107 !important
}

.text-danger {
    color: #dc3545 !important
}

.text-light {
    color: #f8f9fa !important
}

.text-dark {
    color: #212529 !important
}

.text-white {
    color: #fff !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important
}

.text-reset {
    color: inherit !important
}

.bg-primary {
    background-color: #0d6efd !important
}

.bg-secondary {
    background-color: #6c757d !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #212529 !important
}

.bg-body {
    background-color: #fff !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-right-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

.rounded-end {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-left-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-start {
    border-bottom-right-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width:576px) {
    .float-sm-start {
        float: right !important
    }

    .float-sm-end {
        float: left !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-sm-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-sm-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-left: 0 !important
    }

    .me-sm-1 {
        margin-left: .25rem !important
    }

    .me-sm-2 {
        margin-left: .5rem !important
    }

    .me-sm-3 {
        margin-left: 1rem !important
    }

    .me-sm-4 {
        margin-left: 1.5rem !important
    }

    .me-sm-5 {
        margin-left: 3rem !important
    }

    .me-sm-auto {
        margin-left: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-right: 0 !important
    }

    .ms-sm-1 {
        margin-right: .25rem !important
    }

    .ms-sm-2 {
        margin-right: .5rem !important
    }

    .ms-sm-3 {
        margin-right: 1rem !important
    }

    .ms-sm-4 {
        margin-right: 1.5rem !important
    }

    .ms-sm-5 {
        margin-right: 3rem !important
    }

    .ms-sm-auto {
        margin-right: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-sm-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-sm-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-left: 0 !important
    }

    .pe-sm-1 {
        padding-left: .25rem !important
    }

    .pe-sm-2 {
        padding-left: .5rem !important
    }

    .pe-sm-3 {
        padding-left: 1rem !important
    }

    .pe-sm-4 {
        padding-left: 1.5rem !important
    }

    .pe-sm-5 {
        padding-left: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-right: 0 !important
    }

    .ps-sm-1 {
        padding-right: .25rem !important
    }

    .ps-sm-2 {
        padding-right: .5rem !important
    }

    .ps-sm-3 {
        padding-right: 1rem !important
    }

    .ps-sm-4 {
        padding-right: 1.5rem !important
    }

    .ps-sm-5 {
        padding-right: 3rem !important
    }

    .text-sm-start {
        text-align: right !important
    }

    .text-sm-end {
        text-align: left !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .float-md-start {
        float: right !important
    }

    .float-md-end {
        float: left !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-md-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-md-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-md-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-left: 0 !important
    }

    .me-md-1 {
        margin-left: .25rem !important
    }

    .me-md-2 {
        margin-left: .5rem !important
    }

    .me-md-3 {
        margin-left: 1rem !important
    }

    .me-md-4 {
        margin-left: 1.5rem !important
    }

    .me-md-5 {
        margin-left: 3rem !important
    }

    .me-md-auto {
        margin-left: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-right: 0 !important
    }

    .ms-md-1 {
        margin-right: .25rem !important
    }

    .ms-md-2 {
        margin-right: .5rem !important
    }

    .ms-md-3 {
        margin-right: 1rem !important
    }

    .ms-md-4 {
        margin-right: 1.5rem !important
    }

    .ms-md-5 {
        margin-right: 3rem !important
    }

    .ms-md-auto {
        margin-right: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-md-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-md-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-left: 0 !important
    }

    .pe-md-1 {
        padding-left: .25rem !important
    }

    .pe-md-2 {
        padding-left: .5rem !important
    }

    .pe-md-3 {
        padding-left: 1rem !important
    }

    .pe-md-4 {
        padding-left: 1.5rem !important
    }

    .pe-md-5 {
        padding-left: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-right: 0 !important
    }

    .ps-md-1 {
        padding-right: .25rem !important
    }

    .ps-md-2 {
        padding-right: .5rem !important
    }

    .ps-md-3 {
        padding-right: 1rem !important
    }

    .ps-md-4 {
        padding-right: 1.5rem !important
    }

    .ps-md-5 {
        padding-right: 3rem !important
    }

    .text-md-start {
        text-align: right !important
    }

    .text-md-end {
        text-align: left !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .float-lg-start {
        float: right !important
    }

    .float-lg-end {
        float: left !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-lg-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-lg-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-left: 0 !important
    }

    .me-lg-1 {
        margin-left: .25rem !important
    }

    .me-lg-2 {
        margin-left: .5rem !important
    }

    .me-lg-3 {
        margin-left: 1rem !important
    }

    .me-lg-4 {
        margin-left: 1.5rem !important
    }

    .me-lg-5 {
        margin-left: 3rem !important
    }

    .me-lg-auto {
        margin-left: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-right: 0 !important
    }

    .ms-lg-1 {
        margin-right: .25rem !important
    }

    .ms-lg-2 {
        margin-right: .5rem !important
    }

    .ms-lg-3 {
        margin-right: 1rem !important
    }

    .ms-lg-4 {
        margin-right: 1.5rem !important
    }

    .ms-lg-5 {
        margin-right: 3rem !important
    }

    .ms-lg-auto {
        margin-right: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-lg-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-left: 0 !important
    }

    .pe-lg-1 {
        padding-left: .25rem !important
    }

    .pe-lg-2 {
        padding-left: .5rem !important
    }

    .pe-lg-3 {
        padding-left: 1rem !important
    }

    .pe-lg-4 {
        padding-left: 1.5rem !important
    }

    .pe-lg-5 {
        padding-left: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-right: 0 !important
    }

    .ps-lg-1 {
        padding-right: .25rem !important
    }

    .ps-lg-2 {
        padding-right: .5rem !important
    }

    .ps-lg-3 {
        padding-right: 1rem !important
    }

    .ps-lg-4 {
        padding-right: 1.5rem !important
    }

    .ps-lg-5 {
        padding-right: 3rem !important
    }

    .text-lg-start {
        text-align: right !important
    }

    .text-lg-end {
        text-align: left !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .float-xl-start {
        float: right !important
    }

    .float-xl-end {
        float: left !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-left: 0 !important
    }

    .me-xl-1 {
        margin-left: .25rem !important
    }

    .me-xl-2 {
        margin-left: .5rem !important
    }

    .me-xl-3 {
        margin-left: 1rem !important
    }

    .me-xl-4 {
        margin-left: 1.5rem !important
    }

    .me-xl-5 {
        margin-left: 3rem !important
    }

    .me-xl-auto {
        margin-left: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-right: 0 !important
    }

    .ms-xl-1 {
        margin-right: .25rem !important
    }

    .ms-xl-2 {
        margin-right: .5rem !important
    }

    .ms-xl-3 {
        margin-right: 1rem !important
    }

    .ms-xl-4 {
        margin-right: 1.5rem !important
    }

    .ms-xl-5 {
        margin-right: 3rem !important
    }

    .ms-xl-auto {
        margin-right: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-left: 0 !important
    }

    .pe-xl-1 {
        padding-left: .25rem !important
    }

    .pe-xl-2 {
        padding-left: .5rem !important
    }

    .pe-xl-3 {
        padding-left: 1rem !important
    }

    .pe-xl-4 {
        padding-left: 1.5rem !important
    }

    .pe-xl-5 {
        padding-left: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-right: 0 !important
    }

    .ps-xl-1 {
        padding-right: .25rem !important
    }

    .ps-xl-2 {
        padding-right: .5rem !important
    }

    .ps-xl-3 {
        padding-right: 1rem !important
    }

    .ps-xl-4 {
        padding-right: 1.5rem !important
    }

    .ps-xl-5 {
        padding-right: 3rem !important
    }

    .text-xl-start {
        text-align: right !important
    }

    .text-xl-end {
        text-align: left !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media (min-width:1400px) {
    .float-xxl-start {
        float: right !important
    }

    .float-xxl-end {
        float: left !important
    }

    .float-xxl-none {
        float: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xxl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xxl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-left: 0 !important
    }

    .me-xxl-1 {
        margin-left: .25rem !important
    }

    .me-xxl-2 {
        margin-left: .5rem !important
    }

    .me-xxl-3 {
        margin-left: 1rem !important
    }

    .me-xxl-4 {
        margin-left: 1.5rem !important
    }

    .me-xxl-5 {
        margin-left: 3rem !important
    }

    .me-xxl-auto {
        margin-left: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-right: 0 !important
    }

    .ms-xxl-1 {
        margin-right: .25rem !important
    }

    .ms-xxl-2 {
        margin-right: .5rem !important
    }

    .ms-xxl-3 {
        margin-right: 1rem !important
    }

    .ms-xxl-4 {
        margin-right: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-right: 3rem !important
    }

    .ms-xxl-auto {
        margin-right: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xxl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xxl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xxl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-left: 0 !important
    }

    .pe-xxl-1 {
        padding-left: .25rem !important
    }

    .pe-xxl-2 {
        padding-left: .5rem !important
    }

    .pe-xxl-3 {
        padding-left: 1rem !important
    }

    .pe-xxl-4 {
        padding-left: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-left: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-right: 0 !important
    }

    .ps-xxl-1 {
        padding-right: .25rem !important
    }

    .ps-xxl-2 {
        padding-right: .5rem !important
    }

    .ps-xxl-3 {
        padding-right: 1rem !important
    }

    .ps-xxl-4 {
        padding-right: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-right: 3rem !important
    }

    .text-xxl-start {
        text-align: right !important
    }

    .text-xxl-end {
        text-align: left !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}
/*!
* Bootstrap v5.0.0-beta2 (https://getbootstrap.com/)
* Copyright 2011-2021 The Bootstrap Authors
* Copyright 2011-2021 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))
}

*, ::after, ::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

hr {
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .25
}

    hr:not([size]) {
        height: 1px
    }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1, h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width:1200px) {
    .h1, h1 {
        font-size: 2.5rem
    }
}

.h2, h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width:1200px) {
    .h2, h2 {
        font-size: 2rem
    }
}

.h3, h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width:1200px) {
    .h3, h3 {
        font-size: 1.75rem
    }
}

.h4, h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width:1200px) {
    .h4, h4 {
        font-size: 1.5rem
    }
}

.h5, h5 {
    font-size: 1.25rem
}

.h6, h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

abbr[data-bs-original-title], abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ol, ul {
    padding-right: 2rem
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem
}

    ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0
    }

dt {
    font-weight: 700
}

dd {
    margin-bottom: .5rem;
    margin-right: 0
}

blockquote {
    margin: 0 0 1rem
}

b, strong {
    font-weight: bolder
}

.small, small {
    font-size: .875em
}

.mark, mark {
    padding: .2em;
    background-color: #fcf8e3
}

sub, sup {
    position: relative;
    font-size: .75em;
    line-height: 0;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #0d6efd;
    text-decoration: underline
}

    a:hover {
        color: #0a58ca
    }

    a:not([href]):not([class]), a:not([href]):not([class]):hover {
        color: inherit;
        text-decoration: none
    }

code, kbd, pre, samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: rtl;
    unicode-bidi: bidi-override
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: .875em
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal
    }

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a > code {
    color: inherit
}

kbd {
    padding: .2rem .4rem;
    font-size: .875em;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

    kbd kbd {
        padding: 0;
        font-size: 1em;
        font-weight: 700
    }

figure {
    margin: 0 0 1rem
}

img, svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: right
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

    button:focus:not(:focus-visible) {
        outline: 0
    }

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, select {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

select {
    word-wrap: normal
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[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
    }

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    float: right;
    width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: calc(1.275rem + .3vw);
    line-height: inherit
}

@media (min-width:1200px) {
    legend {
        font-size: 1.5rem
    }
}

legend + * {
    clear: right
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

output {
    display: inline-block
}

iframe {
    border: 0
}

summary {
    display: list-item;
    cursor: pointer
}

progress {
    vertical-align: baseline
}

[hidden] {
    display: none !important
}

.lead {
    font-size: 1.25rem;
    font-weight: 300
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width:1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-unstyled {
    padding-right: 0;
    list-style: none
}

.list-inline {
    padding-right: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

    .list-inline-item:not(:last-child) {
        margin-left: .5rem
    }

.initialism {
    font-size: .875em;
    text-transform: uppercase
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

    .blockquote > :last-child {
        margin-bottom: 0
    }

.blockquote-footer {
    margin-top: -1rem;
    margin-bottom: 1rem;
    font-size: .875em;
    color: #6c757d
}

    .blockquote-footer::before {
        content: "— "
    }

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: .875em;
    color: #6c757d
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    width: 100%;
    padding-left: var(--bs-gutter-x,.75rem);
    padding-right: var(--bs-gutter-x,.75rem);
    margin-left: auto;
    margin-right: auto
}

@media (min-width:576px) {
    .container, .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {
    .container, .container-md, .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-left: calc(var(--bs-gutter-x)/ -2);
    margin-right: calc(var(--bs-gutter-x)/ -2)
}

    .row > * {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-left: calc(var(--bs-gutter-x)/ 2);
        padding-right: calc(var(--bs-gutter-x)/ 2);
        margin-top: var(--bs-gutter-y)
    }

.col {
    flex: 1 0 0%
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.3333333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.6666666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.6666666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.3333333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.6666666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.3333333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.6666666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-right: 8.3333333333%
}

.offset-2 {
    margin-right: 16.6666666667%
}

.offset-3 {
    margin-right: 25%
}

.offset-4 {
    margin-right: 33.3333333333%
}

.offset-5 {
    margin-right: 41.6666666667%
}

.offset-6 {
    margin-right: 50%
}

.offset-7 {
    margin-right: 58.3333333333%
}

.offset-8 {
    margin-right: 66.6666666667%
}

.offset-9 {
    margin-right: 75%
}

.offset-10 {
    margin-right: 83.3333333333%
}

.offset-11 {
    margin-right: 91.6666666667%
}

.g-0, .gx-0 {
    --bs-gutter-x: 0
}

.g-0, .gy-0 {
    --bs-gutter-y: 0
}

.g-1, .gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1, .gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2, .gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2, .gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem
}

.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5, .gx-5 {
    --bs-gutter-x: 3rem
}

.g-5, .gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-right: 0
    }

    .offset-sm-1 {
        margin-right: 8.3333333333%
    }

    .offset-sm-2 {
        margin-right: 16.6666666667%
    }

    .offset-sm-3 {
        margin-right: 25%
    }

    .offset-sm-4 {
        margin-right: 33.3333333333%
    }

    .offset-sm-5 {
        margin-right: 41.6666666667%
    }

    .offset-sm-6 {
        margin-right: 50%
    }

    .offset-sm-7 {
        margin-right: 58.3333333333%
    }

    .offset-sm-8 {
        margin-right: 66.6666666667%
    }

    .offset-sm-9 {
        margin-right: 75%
    }

    .offset-sm-10 {
        margin-right: 83.3333333333%
    }

    .offset-sm-11 {
        margin-right: 91.6666666667%
    }

    .g-sm-0, .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0, .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1, .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1, .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2, .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2, .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3, .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3, .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4, .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4, .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5, .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5, .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-right: 0
    }

    .offset-md-1 {
        margin-right: 8.3333333333%
    }

    .offset-md-2 {
        margin-right: 16.6666666667%
    }

    .offset-md-3 {
        margin-right: 25%
    }

    .offset-md-4 {
        margin-right: 33.3333333333%
    }

    .offset-md-5 {
        margin-right: 41.6666666667%
    }

    .offset-md-6 {
        margin-right: 50%
    }

    .offset-md-7 {
        margin-right: 58.3333333333%
    }

    .offset-md-8 {
        margin-right: 66.6666666667%
    }

    .offset-md-9 {
        margin-right: 75%
    }

    .offset-md-10 {
        margin-right: 83.3333333333%
    }

    .offset-md-11 {
        margin-right: 91.6666666667%
    }

    .g-md-0, .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0, .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1, .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1, .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2, .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2, .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3, .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3, .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4, .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4, .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5, .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5, .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-right: 0
    }

    .offset-lg-1 {
        margin-right: 8.3333333333%
    }

    .offset-lg-2 {
        margin-right: 16.6666666667%
    }

    .offset-lg-3 {
        margin-right: 25%
    }

    .offset-lg-4 {
        margin-right: 33.3333333333%
    }

    .offset-lg-5 {
        margin-right: 41.6666666667%
    }

    .offset-lg-6 {
        margin-right: 50%
    }

    .offset-lg-7 {
        margin-right: 58.3333333333%
    }

    .offset-lg-8 {
        margin-right: 66.6666666667%
    }

    .offset-lg-9 {
        margin-right: 75%
    }

    .offset-lg-10 {
        margin-right: 83.3333333333%
    }

    .offset-lg-11 {
        margin-right: 91.6666666667%
    }

    .g-lg-0, .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0, .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1, .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1, .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2, .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2, .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3, .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3, .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4, .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4, .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5, .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5, .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-right: 0
    }

    .offset-xl-1 {
        margin-right: 8.3333333333%
    }

    .offset-xl-2 {
        margin-right: 16.6666666667%
    }

    .offset-xl-3 {
        margin-right: 25%
    }

    .offset-xl-4 {
        margin-right: 33.3333333333%
    }

    .offset-xl-5 {
        margin-right: 41.6666666667%
    }

    .offset-xl-6 {
        margin-right: 50%
    }

    .offset-xl-7 {
        margin-right: 58.3333333333%
    }

    .offset-xl-8 {
        margin-right: 66.6666666667%
    }

    .offset-xl-9 {
        margin-right: 75%
    }

    .offset-xl-10 {
        margin-right: 83.3333333333%
    }

    .offset-xl-11 {
        margin-right: 91.6666666667%
    }

    .g-xl-0, .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0, .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1, .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1, .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2, .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2, .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3, .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3, .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4, .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4, .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5, .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5, .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width:1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.3333333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.6666666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.6666666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.3333333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.6666666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.3333333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.6666666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-right: 0
    }

    .offset-xxl-1 {
        margin-right: 8.3333333333%
    }

    .offset-xxl-2 {
        margin-right: 16.6666666667%
    }

    .offset-xxl-3 {
        margin-right: 25%
    }

    .offset-xxl-4 {
        margin-right: 33.3333333333%
    }

    .offset-xxl-5 {
        margin-right: 41.6666666667%
    }

    .offset-xxl-6 {
        margin-right: 50%
    }

    .offset-xxl-7 {
        margin-right: 58.3333333333%
    }

    .offset-xxl-8 {
        margin-right: 66.6666666667%
    }

    .offset-xxl-9 {
        margin-right: 75%
    }

    .offset-xxl-10 {
        margin-right: 83.3333333333%
    }

    .offset-xxl-11 {
        margin-right: 91.6666666667%
    }

    .g-xxl-0, .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0, .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1, .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1, .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2, .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2, .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3, .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3, .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4, .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4, .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5, .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5, .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6
}

    .table > :not(caption) > * > * {
        padding: .5rem .5rem;
        background-color: var(--bs-table-bg);
        border-bottom-width: 1px;
        box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
    }

    .table > tbody {
        vertical-align: inherit
    }

    .table > thead {
        vertical-align: bottom
    }

    .table > :not(:last-child) > :last-child > * {
        border-bottom-color: currentColor
    }

.caption-top {
    caption-side: top
}

.table-sm > :not(caption) > * > * {
    padding: .25rem .25rem
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0
}

    .table-bordered > :not(caption) > * > * {
        border-width: 0 1px
    }

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0
}

.table-striped > tbody > tr:nth-of-type(odd) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #e6dbb9
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4
}

.table-light {
    --bs-table-bg: #f8f9fa;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfe0e1
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

    .form-control[type=file]:not(:disabled):not([readonly]) {
        cursor: pointer
    }

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled, .form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: .375rem 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

    .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
        padding-left: 0;
        padding-right: 0
    }

.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

    .form-control-sm::file-selector-button {
        padding: .25rem .5rem;
        margin: -.25rem -.5rem;
        margin-inline-end: .5rem
    }

    .form-control-sm::-webkit-file-upload-button {
        padding: .25rem .5rem;
        margin: -.25rem -.5rem;
        margin-inline-end: .5rem
    }

.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

    .form-control-lg::file-selector-button {
        padding: .5rem 1rem;
        margin: -.5rem -1rem;
        margin-inline-end: 1rem
    }

    .form-control-lg::-webkit-file-upload-button {
        padding: .5rem 1rem;
        margin: -.5rem -1rem;
        margin-inline-end: 1rem
    }

textarea.form-control {
    min-height: calc(1.5em + .75rem + 2px)
}

textarea.form-control-sm {
    min-height: calc(1.5em + .5rem + 2px)
}

textarea.form-control-lg {
    min-height: calc(1.5em + 1rem + 2px)
}

.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: .375rem
}

    .form-control-color:not(:disabled):not([readonly]) {
        cursor: pointer
    }

    .form-control-color::-moz-color-swatch {
        height: 1.5em;
        border-radius: .25rem
    }

    .form-control-color::-webkit-color-swatch {
        height: 1.5em;
        border-radius: .25rem
    }

.form-select {
    display: block;
    width: 100%;
    padding: .375rem .75rem .375rem 2.25rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .form-select:focus {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
    }

    .form-select[multiple], .form-select[size]:not([size="1"]) {
        padding-left: .75rem;
        background-image: none
    }

    .form-select:disabled {
        color: #6c757d;
        background-color: #e9ecef
    }

    .form-select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #212529
    }

.form-select-sm {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-right: .5rem;
    font-size: .875rem
}

.form-select-lg {
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-right: 1rem;
    font-size: 1.25rem
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5em;
    margin-bottom: .125rem
}

    .form-check .form-check-input {
        float: right;
        margin-right: -1.5em
    }

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0,0,0,.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

    .form-check-input[type=checkbox] {
        border-radius: .25em
    }

    .form-check-input[type=radio] {
        border-radius: 50%
    }

    .form-check-input:active {
        filter: brightness(90%)
    }

    .form-check-input:focus {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
    }

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd
    }

        .form-check-input:checked[type=checkbox] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
        }

        .form-check-input:checked[type=radio] {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
        }

    .form-check-input[type=checkbox]:indeterminate {
        background-color: #0d6efd;
        border-color: #0d6efd;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
    }

    .form-check-input:disabled {
        pointer-events: none;
        filter: none;
        opacity: .5
    }

        .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
            opacity: .5
        }

.form-switch {
    padding-right: 2.5em
}

    .form-switch .form-check-input {
        width: 2em;
        margin-right: -2.5em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
        background-position: right center;
        border-radius: 2em;
        transition: background-position .15s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .form-switch .form-check-input {
        transition: none
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
}

.form-switch .form-check-input:checked {
    background-position: left center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-inline {
    display: inline-block;
    margin-left: 1rem
}

.btn-check {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none
}

    .btn-check:disabled + .btn, .btn-check[disabled] + .btn {
        pointer-events: none;
        filter: none;
        opacity: .65
    }

.form-range {
    width: 100%;
    height: 1.5rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

    .form-range:focus {
        outline: 0
    }

        .form-range:focus::-webkit-slider-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
        }

        .form-range:focus::-moz-range-thumb {
            box-shadow: 0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)
        }

    .form-range::-moz-focus-outer {
        border: 0
    }

    .form-range::-webkit-slider-thumb {
        width: 1rem;
        height: 1rem;
        margin-top: -.25rem;
        background-color: #0d6efd;
        border: 0;
        border-radius: 1rem;
        -webkit-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        -webkit-appearance: none;
        appearance: none
    }

@media (prefers-reduced-motion:reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    -moz-appearance: none;
    appearance: none
}

@media (prefers-reduced-motion:reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe
}

.form-range::-moz-range-track {
    width: 100%;
    height: .5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem
}

.form-range:disabled {
    pointer-events: none
}

    .form-range:disabled::-webkit-slider-thumb {
        background-color: #adb5bd
    }

    .form-range:disabled::-moz-range-thumb {
        background-color: #adb5bd
    }

.form-floating {
    position: relative
}

    .form-floating > .form-control, .form-floating > .form-select {
        height: calc(3.5rem + 2px);
        padding: 1rem .75rem
    }

    .form-floating > label {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        padding: 1rem .75rem;
        pointer-events: none;
        border: 1px solid transparent;
        transform-origin: 100% 0;
        transition: opacity .1s ease-in-out,transform .1s ease-in-out
    }

@media (prefers-reduced-motion:reduce) {
    .form-floating > label {
        transition: none
    }
}

.form-floating > .form-control::-moz-placeholder {
    color: transparent
}

.form-floating > .form-control::placeholder {
    color: transparent
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(-0.15rem)
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

    .input-group > .form-control, .input-group > .form-select {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0
    }

        .input-group > .form-control:focus, .input-group > .form-select:focus {
            z-index: 3
        }

    .input-group .btn {
        position: relative;
        z-index: 2
    }

        .input-group .btn:focus {
            z-index: 3
        }

.input-group-text {
    display: flex;
    align-items: center;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
    padding-left: 3rem
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #198754
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(25,135,84,.9);
    border-radius: .25rem
}

.is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
    display: block
}

.form-control.is-valid, .was-validated .form-control:valid {
    border-color: #198754;
    padding-left: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
    padding-left: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem)
}

.form-select.is-valid, .was-validated .form-select:valid {
    border-color: #198754;
    padding-left: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: left .75rem center,center left 2.25rem;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-select.is-valid:focus, .was-validated .form-select:valid:focus {
        border-color: #198754;
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

.form-check-input.is-valid, .was-validated .form-check-input:valid {
    border-color: #198754
}

    .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
        background-color: #198754
    }

    .form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25)
    }

    .form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
        color: #198754
    }

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-right: .5em
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    color: #fff;
    background-color: rgba(220,53,69,.9);
    border-radius: .25rem
}

.is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
    display: block
}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    padding-left: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
    padding-left: calc(1.5em + .75rem);
    background-position: top calc(.375em + .1875rem) left calc(.375em + .1875rem)
}

.form-select.is-invalid, .was-validated .form-select:invalid {
    border-color: #dc3545;
    padding-left: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: left .75rem center,center left 2.25rem;
    background-size: 16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)
}

    .form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
        border-color: #dc3545;
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
    border-color: #dc3545
}

    .form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
        background-color: #dc3545
    }

    .form-check-input.is-invalid:focus, .was-validated .form-check-input:invalid:focus {
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.25)
    }

    .form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
        color: #dc3545
    }

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-right: .5em
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus + .btn, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca
    }

    .btn-check:focus + .btn-primary, .btn-primary:focus {
        color: #fff;
        background-color: #0b5ed7;
        border-color: #0a58ca;
        box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
    }

    .btn-check:active + .btn-primary, .btn-check:checked + .btn-primary, .btn-primary.active, .btn-primary:active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #0a58ca;
        border-color: #0a53be
    }

        .btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(49,132,253,.5)
        }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

    .btn-secondary:hover {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64
    }

    .btn-check:focus + .btn-secondary, .btn-secondary:focus {
        color: #fff;
        background-color: #5c636a;
        border-color: #565e64;
        box-shadow: 0 0 0 .25rem rgba(130,138,145,.5)
    }

    .btn-check:active + .btn-secondary, .btn-check:checked + .btn-secondary, .btn-secondary.active, .btn-secondary:active, .show > .btn-secondary.dropdown-toggle {
        color: #fff;
        background-color: #565e64;
        border-color: #51585e
    }

        .btn-check:active + .btn-secondary:focus, .btn-check:checked + .btn-secondary:focus, .btn-secondary.active:focus, .btn-secondary:active:focus, .show > .btn-secondary.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(130,138,145,.5)
        }

    .btn-secondary.disabled, .btn-secondary:disabled {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

    .btn-success:hover {
        color: #fff;
        background-color: #157347;
        border-color: #146c43
    }

    .btn-check:focus + .btn-success, .btn-success:focus {
        color: #fff;
        background-color: #157347;
        border-color: #146c43;
        box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
    }

    .btn-check:active + .btn-success, .btn-check:checked + .btn-success, .btn-success.active, .btn-success:active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #146c43;
        border-color: #13653f
    }

        .btn-check:active + .btn-success:focus, .btn-check:checked + .btn-success:focus, .btn-success.active:focus, .btn-success:active:focus, .show > .btn-success.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(60,153,110,.5)
        }

    .btn-success.disabled, .btn-success:disabled {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

    .btn-info:hover {
        color: #000;
        background-color: #31d2f2;
        border-color: #25cff2
    }

    .btn-check:focus + .btn-info, .btn-info:focus {
        color: #000;
        background-color: #31d2f2;
        border-color: #25cff2;
        box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
    }

    .btn-check:active + .btn-info, .btn-check:checked + .btn-info, .btn-info.active, .btn-info:active, .show > .btn-info.dropdown-toggle {
        color: #000;
        background-color: #3dd5f3;
        border-color: #25cff2
    }

        .btn-check:active + .btn-info:focus, .btn-check:checked + .btn-info:focus, .btn-info.active:focus, .btn-info:active:focus, .show > .btn-info.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(11,172,204,.5)
        }

    .btn-info.disabled, .btn-info:disabled {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

.btn-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

    .btn-warning:hover {
        color: #000;
        background-color: #ffca2c;
        border-color: #ffc720
    }

    .btn-check:focus + .btn-warning, .btn-warning:focus {
        color: #000;
        background-color: #ffca2c;
        border-color: #ffc720;
        box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
    }

    .btn-check:active + .btn-warning, .btn-check:checked + .btn-warning, .btn-warning.active, .btn-warning:active, .show > .btn-warning.dropdown-toggle {
        color: #000;
        background-color: #ffcd39;
        border-color: #ffc720
    }

        .btn-check:active + .btn-warning:focus, .btn-check:checked + .btn-warning:focus, .btn-warning.active:focus, .btn-warning:active:focus, .show > .btn-warning.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(217,164,6,.5)
        }

    .btn-warning.disabled, .btn-warning:disabled {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

    .btn-danger:hover {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37
    }

    .btn-check:focus + .btn-danger, .btn-danger:focus {
        color: #fff;
        background-color: #bb2d3b;
        border-color: #b02a37;
        box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
    }

    .btn-check:active + .btn-danger, .btn-check:checked + .btn-danger, .btn-danger.active, .btn-danger:active, .show > .btn-danger.dropdown-toggle {
        color: #fff;
        background-color: #b02a37;
        border-color: #a52834
    }

        .btn-check:active + .btn-danger:focus, .btn-check:checked + .btn-danger:focus, .btn-danger.active:focus, .btn-danger:active:focus, .show > .btn-danger.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(225,83,97,.5)
        }

    .btn-danger.disabled, .btn-danger:disabled {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

.btn-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-light:hover {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb
    }

    .btn-check:focus + .btn-light, .btn-light:focus {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb;
        box-shadow: 0 0 0 .25rem rgba(211,212,213,.5)
    }

    .btn-check:active + .btn-light, .btn-check:checked + .btn-light, .btn-light.active, .btn-light:active, .show > .btn-light.dropdown-toggle {
        color: #000;
        background-color: #f9fafb;
        border-color: #f9fafb
    }

        .btn-check:active + .btn-light:focus, .btn-check:checked + .btn-light:focus, .btn-light.active:focus, .btn-light:active:focus, .show > .btn-light.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(211,212,213,.5)
        }

    .btn-light.disabled, .btn-light:disabled {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

    .btn-dark:hover {
        color: #fff;
        background-color: #1c1f23;
        border-color: #1a1e21
    }

    .btn-check:focus + .btn-dark, .btn-dark:focus {
        color: #fff;
        background-color: #1c1f23;
        border-color: #1a1e21;
        box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
    }

    .btn-check:active + .btn-dark, .btn-check:checked + .btn-dark, .btn-dark.active, .btn-dark:active, .show > .btn-dark.dropdown-toggle {
        color: #fff;
        background-color: #1a1e21;
        border-color: #191c1f
    }

        .btn-check:active + .btn-dark:focus, .btn-check:checked + .btn-dark:focus, .btn-dark.active:focus, .btn-dark:active:focus, .show > .btn-dark.dropdown-toggle:focus {
            box-shadow: 0 0 0 .25rem rgba(66,70,73,.5)
        }

    .btn-dark.disabled, .btn-dark:disabled {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

    .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
    }

    .btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

        .btn-check:active + .btn-outline-primary:focus, .btn-check:checked + .btn-outline-primary:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus, .btn-outline-primary:active:focus {
            box-shadow: 0 0 0 .25rem rgba(13,110,253,.5)
        }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #0d6efd;
        background-color: transparent
    }

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

    .btn-outline-secondary:hover {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

    .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
        box-shadow: 0 0 0 .25rem rgba(108,117,125,.5)
    }

    .btn-check:active + .btn-outline-secondary, .btn-check:checked + .btn-outline-secondary, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show, .btn-outline-secondary:active {
        color: #fff;
        background-color: #6c757d;
        border-color: #6c757d
    }

        .btn-check:active + .btn-outline-secondary:focus, .btn-check:checked + .btn-outline-secondary:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus, .btn-outline-secondary:active:focus {
            box-shadow: 0 0 0 .25rem rgba(108,117,125,.5)
        }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: #6c757d;
        background-color: transparent
    }

.btn-outline-success {
    color: #198754;
    border-color: #198754
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

    .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
    }

    .btn-check:active + .btn-outline-success, .btn-check:checked + .btn-outline-success, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show, .btn-outline-success:active {
        color: #fff;
        background-color: #198754;
        border-color: #198754
    }

        .btn-check:active + .btn-outline-success:focus, .btn-check:checked + .btn-outline-success:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus, .btn-outline-success:active:focus {
            box-shadow: 0 0 0 .25rem rgba(25,135,84,.5)
        }

    .btn-outline-success.disabled, .btn-outline-success:disabled {
        color: #198754;
        background-color: transparent
    }

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0
}

    .btn-outline-info:hover {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

    .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
        box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
    }

    .btn-check:active + .btn-outline-info, .btn-check:checked + .btn-outline-info, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show, .btn-outline-info:active {
        color: #000;
        background-color: #0dcaf0;
        border-color: #0dcaf0
    }

        .btn-check:active + .btn-outline-info:focus, .btn-check:checked + .btn-outline-info:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus, .btn-outline-info:active:focus {
            box-shadow: 0 0 0 .25rem rgba(13,202,240,.5)
        }

    .btn-outline-info.disabled, .btn-outline-info:disabled {
        color: #0dcaf0;
        background-color: transparent
    }

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107
}

    .btn-outline-warning:hover {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

    .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
        box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
    }

    .btn-check:active + .btn-outline-warning, .btn-check:checked + .btn-outline-warning, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show, .btn-outline-warning:active {
        color: #000;
        background-color: #ffc107;
        border-color: #ffc107
    }

        .btn-check:active + .btn-outline-warning:focus, .btn-check:checked + .btn-outline-warning:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus, .btn-outline-warning:active:focus {
            box-shadow: 0 0 0 .25rem rgba(255,193,7,.5)
        }

    .btn-outline-warning.disabled, .btn-outline-warning:disabled {
        color: #ffc107;
        background-color: transparent
    }

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

    .btn-outline-danger:hover {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

    .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
        box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
    }

    .btn-check:active + .btn-outline-danger, .btn-check:checked + .btn-outline-danger, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show, .btn-outline-danger:active {
        color: #fff;
        background-color: #dc3545;
        border-color: #dc3545
    }

        .btn-check:active + .btn-outline-danger:focus, .btn-check:checked + .btn-outline-danger:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus, .btn-outline-danger:active:focus {
            box-shadow: 0 0 0 .25rem rgba(220,53,69,.5)
        }

    .btn-outline-danger.disabled, .btn-outline-danger:disabled {
        color: #dc3545;
        background-color: transparent
    }

.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa
}

    .btn-outline-light:hover {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

    .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
        box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
    }

    .btn-check:active + .btn-outline-light, .btn-check:checked + .btn-outline-light, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show, .btn-outline-light:active {
        color: #000;
        background-color: #f8f9fa;
        border-color: #f8f9fa
    }

        .btn-check:active + .btn-outline-light:focus, .btn-check:checked + .btn-outline-light:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus, .btn-outline-light:active:focus {
            box-shadow: 0 0 0 .25rem rgba(248,249,250,.5)
        }

    .btn-outline-light.disabled, .btn-outline-light:disabled {
        color: #f8f9fa;
        background-color: transparent
    }

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

    .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
        box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
    }

    .btn-check:active + .btn-outline-dark, .btn-check:checked + .btn-outline-dark, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show, .btn-outline-dark:active {
        color: #fff;
        background-color: #212529;
        border-color: #212529
    }

        .btn-check:active + .btn-outline-dark:focus, .btn-check:checked + .btn-outline-dark:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus, .btn-outline-dark:active:focus {
            box-shadow: 0 0 0 .25rem rgba(33,37,41,.5)
        }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #212529;
        background-color: transparent
    }

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline
}

    .btn-link:hover {
        color: #0a58ca
    }

    .btn-link.disabled, .btn-link:disabled {
        color: #6c757d
    }

.btn-group-lg > .btn, .btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.btn-group-sm > .btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown, .dropend, .dropstart, .dropup {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-right: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-left: .3em solid transparent;
        border-bottom: 0;
        border-right: .3em solid transparent
    }

    .dropdown-toggle:empty::after {
        margin-right: 0
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem
}

    .dropdown-menu[data-bs-popper] {
        right: 0;
        margin-top: .125rem
    }

.dropdown-menu-start {
    --bs-position: start
}

    .dropdown-menu-start[data-bs-popper] {
        left: auto;
        right: 0
    }

.dropdown-menu-end {
    --bs-position: end
}

    .dropdown-menu-end[data-bs-popper] {
        left: 0;
        right: auto
    }

@media (min-width:576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

        .dropdown-menu-sm-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

        .dropdown-menu-sm-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

        .dropdown-menu-md-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-md-end {
        --bs-position: end
    }

        .dropdown-menu-md-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

        .dropdown-menu-lg-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

        .dropdown-menu-lg-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start
    }

        .dropdown-menu-xl-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-xl-end {
        --bs-position: end
    }

        .dropdown-menu-xl-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

@media (min-width:1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start
    }

        .dropdown-menu-xxl-start[data-bs-popper] {
            left: auto;
            right: 0
        }

    .dropdown-menu-xxl-end {
        --bs-position: end
    }

        .dropdown-menu-xxl-end[data-bs-popper] {
            left: 0;
            right: auto
        }
}

.dropup .dropdown-menu {
    top: auto;
    bottom: 100%
}

    .dropup .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        margin-bottom: .125rem
    }

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-left: .3em solid transparent;
    border-bottom: .3em solid;
    border-right: .3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropend .dropdown-menu {
    top: 0;
    left: auto;
    right: 100%
}

    .dropend .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        margin-right: .125rem
    }

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-left: 0;
    border-bottom: .3em solid transparent;
    border-right: .3em solid
}

.dropend .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropend .dropdown-toggle::after {
    vertical-align: 0
}

.dropstart .dropdown-menu {
    top: 0;
    left: 100%;
    right: auto
}

    .dropstart .dropdown-menu[data-bs-popper] {
        margin-top: 0;
        margin-left: .125rem
    }

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-right: .255em;
    vertical-align: .255em;
    content: ""
}

.dropstart .dropdown-toggle::after {
    display: none
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid transparent;
    border-left: .3em solid;
    border-bottom: .3em solid transparent
}

.dropstart .dropdown-toggle:empty::after {
    margin-right: 0
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.15)
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

    .dropdown-item:focus, .dropdown-item:hover {
        color: #1e2125;
        background-color: #e9ecef
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #0d6efd
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #adb5bd;
        pointer-events: none;
        background-color: transparent
    }

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1rem;
    color: #212529
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0,0,0,.15)
}

    .dropdown-menu-dark .dropdown-item {
        color: #dee2e6
    }

        .dropdown-menu-dark .dropdown-item:focus, .dropdown-menu-dark .dropdown-item:hover {
            color: #fff;
            background-color: rgba(255,255,255,.15)
        }

        .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
            color: #fff;
            background-color: #0d6efd
        }

        .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
            color: #adb5bd
        }

    .dropdown-menu-dark .dropdown-divider {
        border-color: rgba(0,0,0,.15)
    }

    .dropdown-menu-dark .dropdown-item-text {
        color: #dee2e6
    }

    .dropdown-menu-dark .dropdown-header {
        color: #adb5bd
    }

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        flex: 1 1 auto
    }

        .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
            z-index: 1
        }

.btn-toolbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start
}

    .btn-toolbar .input-group {
        width: auto
    }

.btn-group > .btn-group:not(:first-child), .btn-group > .btn:not(:first-child) {
    margin-right: -1px
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.dropdown-toggle-split {
    padding-left: .5625rem;
    padding-right: .5625rem
}

    .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
        margin-right: 0
    }

.dropstart .dropdown-toggle-split::before {
    margin-left: 0
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-left: .375rem;
    padding-right: .375rem
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
    padding-left: .75rem;
    padding-right: .75rem
}

.btn-group-vertical {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center
}

    .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
        width: 100%
    }

        .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
            margin-top: -1px
        }

        .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0
        }

        .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
            border-top-right-radius: 0;
            border-top-left-radius: 0
        }

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

    .nav-tabs .nav-link {
        margin-bottom: -1px;
        background: 100% 0;
        border: 1px solid transparent;
        border-top-right-radius: .25rem;
        border-top-left-radius: .25rem
    }

        .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
            border-color: #e9ecef #e9ecef #dee2e6;
            isolation: isolate
        }

        .nav-tabs .nav-link.disabled {
            color: #6c757d;
            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-right-radius: 0;
        border-top-left-radius: 0
    }

.nav-pills .nav-link {
    background: 100% 0;
    border: 0;
    border-radius: .25rem
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #0d6efd
    }

.nav-fill .nav-item, .nav-fill > .nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-justified .nav-item, .nav-justified > .nav-link {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: .5rem;
    padding-bottom: .5rem
}

    .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
        display: flex;
        flex-wrap: inherit;
        align-items: center;
        justify-content: space-between
    }

.navbar-brand {
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-left: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none
}

    .navbar-nav .nav-link {
        padding-left: 0;
        padding-right: 0
    }

    .navbar-nav .dropdown-menu {
        position: static
    }

.navbar-text {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .navbar-toggler {
        transition: none
    }
}

.navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 .25rem
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height,75vh);
    overflow-y: auto
}

@media (min-width:576px) {
    .navbar-expand-sm {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-sm .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-sm .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-sm .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-sm .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-sm .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-sm .navbar-toggler {
            display: none
        }
}

@media (min-width:768px) {
    .navbar-expand-md {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-md .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-md .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-md .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-md .navbar-toggler {
            display: none
        }
}

@media (min-width:992px) {
    .navbar-expand-lg {
        flex-wrap: 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-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-lg .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-lg .navbar-toggler {
            display: none
        }
}

@media (min-width:1200px) {
    .navbar-expand-xl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-xl .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-xl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xl .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-xl .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-xl .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-xl .navbar-toggler {
            display: none
        }
}

@media (min-width:1400px) {
    .navbar-expand-xxl {
        flex-wrap: nowrap;
        justify-content: flex-start
    }

        .navbar-expand-xxl .navbar-nav {
            flex-direction: row
        }

            .navbar-expand-xxl .navbar-nav .dropdown-menu {
                position: absolute
            }

            .navbar-expand-xxl .navbar-nav .nav-link {
                padding-left: .5rem;
                padding-right: .5rem
            }

        .navbar-expand-xxl .navbar-nav-scroll {
            overflow: visible
        }

        .navbar-expand-xxl .navbar-collapse {
            display: flex !important;
            flex-basis: auto
        }

        .navbar-expand-xxl .navbar-toggler {
            display: none
        }
}

.navbar-expand {
    flex-wrap: nowrap;
    justify-content: flex-start
}

    .navbar-expand .navbar-nav {
        flex-direction: row
    }

        .navbar-expand .navbar-nav .dropdown-menu {
            position: absolute
        }

        .navbar-expand .navbar-nav .nav-link {
            padding-left: .5rem;
            padding-right: .5rem
        }

    .navbar-expand .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand .navbar-collapse {
        display: flex !important;
        flex-basis: auto
    }

    .navbar-expand .navbar-toggler {
        display: none
    }

.navbar-light .navbar-brand {
    color: rgba(0,0,0,.9)
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.55)
}

    .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
        color: rgba(0,0,0,.7)
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0,0,0,.3)
    }

    .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
        color: rgba(0,0,0,.9)
    }

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.55);
    border-color: rgba(0,0,0,.1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-light .navbar-text {
    color: rgba(0,0,0,.55)
}

    .navbar-light .navbar-text a, .navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
        color: rgba(0,0,0,.9)
    }

.navbar-dark .navbar-brand {
    color: #fff
}

    .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
        color: #fff
    }

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,.55)
}

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
        color: rgba(255,255,255,.75)
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255,255,255,.25)
    }

    .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show > .nav-link {
        color: #fff
    }

.navbar-dark .navbar-toggler {
    color: rgba(255,255,255,.55);
    border-color: rgba(255,255,255,.1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-text {
    color: rgba(255,255,255,.55)
}

    .navbar-dark .navbar-text a, .navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
        color: #fff
    }

.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,.125);
    border-radius: .25rem
}

    .card > hr {
        margin-left: 0;
        margin-right: 0
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-right-radius: calc(.25rem - 1px);
            border-top-left-radius: calc(.25rem - 1px)
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-left-radius: calc(.25rem - 1px);
            border-bottom-right-radius: calc(.25rem - 1px)
        }

        .card > .card-header + .list-group, .card > .list-group + .card-footer {
            border-top: 0
        }

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-subtitle {
    margin-top: -.25rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link + .card-link {
    margin-right: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125)
}

    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
    }

.card-footer {
    padding: .5rem 1rem;
    background-color: rgba(0,0,0,.03);
    border-top: 1px solid rgba(0,0,0,.125)
}

    .card-footer:last-child {
        border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
    }

.card-header-tabs {
    margin-left: -.5rem;
    margin-bottom: -.5rem;
    margin-right: -.5rem;
    border-bottom: 0
}

.card-header-pills {
    margin-left: -.5rem;
    margin-right: -.5rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1rem;
    border-radius: calc(.25rem - 1px)
}

.card-img, .card-img-bottom, .card-img-top {
    width: 100%
}

.card-img, .card-img-top {
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px)
}

.card-img, .card-img-bottom {
    border-bottom-left-radius: calc(.25rem - 1px);
    border-bottom-right-radius: calc(.25rem - 1px)
}

.card-group > .card {
    margin-bottom: .75rem
}

@media (min-width:576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0
        }

            .card-group > .card + .card {
                margin-right: 0;
                border-right: 0
            }

            .card-group > .card:not(:last-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0
            }

                .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
                    border-top-left-radius: 0
                }

                .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
                    border-bottom-left-radius: 0
                }

            .card-group > .card:not(:first-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0
            }

                .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
                    border-top-right-radius: 0
                }

                .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
                    border-bottom-right-radius: 0
                }
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    background-color: transparent;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button {
        transition: none
    }
}

.accordion-button.collapsed {
    border-bottom-width: 0
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: #e7f1ff
}

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        transform: rotate(-180deg)
    }

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .accordion-button::after {
        transition: none
    }
}

.accordion-button:hover {
    z-index: 2
}

.accordion-button:focus {
    z-index: 3;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.accordion-header {
    margin-bottom: 0
}

.accordion-item:first-of-type .accordion-button {
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-width: 1px;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-width: 1px;
    border-bottom-left-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.accordion-collapse {
    border: solid rgba(0,0,0,.125);
    border-width: 0 1px
}

.accordion-body {
    padding: 1rem 1.25rem
}

.accordion-flush .accordion-button {
    border-left: 0;
    border-right: 0;
    border-radius: 0
}

.accordion-flush .accordion-collapse {
    border-width: 0
}

.accordion-flush .accordion-item:first-of-type .accordion-button {
    border-top-width: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.accordion-flush .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-width: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: .5rem
}

    .breadcrumb-item + .breadcrumb-item::before {
        float: right;
        padding-left: .5rem;
        color: #6c757d;
        content: var(--bs-breadcrumb-divider, "/")
    }

.breadcrumb-item.active {
    color: #6c757d
}

.pagination {
    display: flex;
    padding-right: 0;
    list-style: none
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13,110,253,.25)
}

.page-item:not(:first-child) .page-link {
    margin-right: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem
}

.pagination-lg .page-item:first-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem
}

.pagination-sm .page-item:first-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

    .badge:empty {
        display: none
    }

.btn .badge {
    position: relative;
    top: -1px
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-left: 3rem
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        padding: 1.25rem 1rem
    }

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

    .alert-primary .alert-link {
        color: #06357a
    }

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

    .alert-secondary .alert-link {
        color: #34383c
    }

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

    .alert-success .alert-link {
        color: #0c4128
    }

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

    .alert-info .alert-link {
        color: #04414d
    }

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5
}

    .alert-warning .alert-link {
        color: #523e02
    }

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

    .alert-danger .alert-link {
        color: #6a1a21
    }

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe
}

    .alert-light .alert-link {
        color: #4f5050
    }

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

    .alert-dark .alert-link {
        color: #101214
    }

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    transition: width .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar {
        transition: none
    }
}

.progress-bar-striped {
    background-image: linear-gradient(-45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    animation: 1s linear infinite progress-bar-stripes
}

@media (prefers-reduced-motion:reduce) {
    .progress-bar-animated {
        animation: none
    }
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

    .list-group-item-action:focus, .list-group-item-action:hover {
        z-index: 1;
        color: #495057;
        text-decoration: none;
        background-color: #f8f9fa
    }

    .list-group-item-action:active {
        color: #212529;
        background-color: #e9ecef
    }

.list-group-item {
    position: relative;
    display: block;
    padding: .5rem 1rem;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125)
}

    .list-group-item:first-child {
        border-top-right-radius: inherit;
        border-top-left-radius: inherit
    }

    .list-group-item:last-child {
        border-bottom-left-radius: inherit;
        border-bottom-right-radius: inherit
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #6c757d;
        pointer-events: none;
        background-color: #fff
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #0d6efd;
        border-color: #0d6efd
    }

    .list-group-item + .list-group-item {
        border-top-width: 0
    }

        .list-group-item + .list-group-item.active {
            margin-top: -1px;
            border-top-width: 1px
        }

.list-group-horizontal {
    flex-direction: row
}

    .list-group-horizontal > .list-group-item:first-child {
        border-bottom-right-radius: .25rem;
        border-top-left-radius: 0
    }

    .list-group-horizontal > .list-group-item:last-child {
        border-top-left-radius: .25rem;
        border-bottom-right-radius: 0
    }

    .list-group-horizontal > .list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0
    }

        .list-group-horizontal > .list-group-item + .list-group-item.active {
            margin-right: -1px;
            border-right-width: 1px
        }

@media (min-width:576px) {
    .list-group-horizontal-sm {
        flex-direction: row
    }

        .list-group-horizontal-sm > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-sm > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-sm > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:768px) {
    .list-group-horizontal-md {
        flex-direction: row
    }

        .list-group-horizontal-md > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-md > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-md > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-md > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-md > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:992px) {
    .list-group-horizontal-lg {
        flex-direction: row
    }

        .list-group-horizontal-lg > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-lg > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-lg > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:1200px) {
    .list-group-horizontal-xl {
        flex-direction: row
    }

        .list-group-horizontal-xl > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-xl > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-xl > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

@media (min-width:1400px) {
    .list-group-horizontal-xxl {
        flex-direction: row
    }

        .list-group-horizontal-xxl > .list-group-item:first-child {
            border-bottom-right-radius: .25rem;
            border-top-left-radius: 0
        }

        .list-group-horizontal-xxl > .list-group-item:last-child {
            border-top-left-radius: .25rem;
            border-bottom-right-radius: 0
        }

        .list-group-horizontal-xxl > .list-group-item.active {
            margin-top: 0
        }

        .list-group-horizontal-xxl > .list-group-item + .list-group-item {
            border-top-width: 1px;
            border-right-width: 0
        }

            .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
                margin-right: -1px;
                border-right-width: 1px
            }
}

.list-group-flush {
    border-radius: 0
}

    .list-group-flush > .list-group-item {
        border-width: 0 0 1px
    }

        .list-group-flush > .list-group-item:last-child {
            border-bottom-width: 0
        }

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff
}

    .list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
        color: #084298;
        background-color: #bacbe6
    }

    .list-group-item-primary.list-group-item-action.active {
        color: #fff;
        background-color: #084298;
        border-color: #084298
    }

.list-group-item-secondary {
    color: #41464b;
    background-color: #e2e3e5
}

    .list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {
        color: #41464b;
        background-color: #cbccce
    }

    .list-group-item-secondary.list-group-item-action.active {
        color: #fff;
        background-color: #41464b;
        border-color: #41464b
    }

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd
}

    .list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {
        color: #0f5132;
        background-color: #bcd0c7
    }

    .list-group-item-success.list-group-item-action.active {
        color: #fff;
        background-color: #0f5132;
        border-color: #0f5132
    }

.list-group-item-info {
    color: #055160;
    background-color: #cff4fc
}

    .list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {
        color: #055160;
        background-color: #badce3
    }

    .list-group-item-info.list-group-item-action.active {
        color: #fff;
        background-color: #055160;
        border-color: #055160
    }

.list-group-item-warning {
    color: #664d03;
    background-color: #fff3cd
}

    .list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {
        color: #664d03;
        background-color: #e6dbb9
    }

    .list-group-item-warning.list-group-item-action.active {
        color: #fff;
        background-color: #664d03;
        border-color: #664d03
    }

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da
}

    .list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {
        color: #842029;
        background-color: #dfc2c4
    }

    .list-group-item-danger.list-group-item-action.active {
        color: #fff;
        background-color: #842029;
        border-color: #842029
    }

.list-group-item-light {
    color: #636464;
    background-color: #fefefe
}

    .list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {
        color: #636464;
        background-color: #e5e5e5
    }

    .list-group-item-light.list-group-item-action.active {
        color: #fff;
        background-color: #636464;
        border-color: #636464
    }

.list-group-item-dark {
    color: #141619;
    background-color: #d3d3d4
}

    .list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {
        color: #141619;
        background-color: #bebebf
    }

    .list-group-item-dark.list-group-item-action.active {
        color: #fff;
        background-color: #141619;
        border-color: #141619
    }

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

    .btn-close:hover {
        color: #000;
        text-decoration: none;
        opacity: .75
    }

    .btn-close:focus {
        outline: 0;
        box-shadow: 0 0 0 .25rem rgba(13,110,253,.25);
        opacity: 1
    }

    .btn-close.disabled, .btn-close:disabled {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        opacity: .25
    }

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: .875rem;
    pointer-events: auto;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    border-radius: .25rem
}

    .toast:not(.showing):not(.show) {
        opacity: 0
    }

    .toast.hide {
        display: none
    }

.toast-container {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none
}

    .toast-container > :not(:last-child) {
        margin-bottom: .75rem
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: .5rem .75rem;
    color: #6c757d;
    background-color: rgba(255,255,255,.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,.05);
    border-top-right-radius: calc(.25rem - 1px);
    border-top-left-radius: calc(.25rem - 1px)
}

    .toast-header .btn-close {
        margin-left: -.375rem;
        margin-right: .75rem
    }

.toast-body {
    padding: .75rem;
    word-wrap: break-word
}

.modal-open {
    overflow: hidden
}

    .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto
    }

.modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal.modal-static .modal-dialog {
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.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,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: .5
    }

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-right-radius: calc(.3rem - 1px);
    border-top-left-radius: calc(.3rem - 1px)
}

    .modal-header .btn-close {
        padding: .5rem .5rem;
        margin: -.5rem auto -.5rem -.5rem
    }

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: calc(.3rem - 1px);
    border-bottom-right-radius: calc(.3rem - 1px)
}

    .modal-footer > * {
        margin: .25rem
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width:992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width:1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen .modal-header {
        border-radius: 0
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen .modal-footer {
        border-radius: 0
    }

@media (max-width:575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width:1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0
        }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    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: .875rem;
    word-wrap: break-word;
    opacity: 0
}

    .tooltip.show {
        opacity: .9
    }

    .tooltip .tooltip-arrow {
        position: absolute;
        display: block;
        width: .8rem;
        height: .4rem
    }

        .tooltip .tooltip-arrow::before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-tooltip-auto[data-popper-placement^=top], .bs-tooltip-top {
    padding: .4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
        bottom: 0
    }

        .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
            top: -1px;
            border-width: .4rem .4rem 0;
            border-top-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=right], .bs-tooltip-end {
    padding: 0 .4rem
}

    .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
        right: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
            left: -1px;
            border-width: .4rem 0 .4rem .4rem;
            border-left-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=bottom], .bs-tooltip-bottom {
    padding: .4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
        top: 0
    }

        .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
            bottom: -1px;
            border-width: 0 .4rem .4rem;
            border-bottom-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=left], .bs-tooltip-start {
    padding: 0 .4rem
}

    .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
        left: 0;
        width: .4rem;
        height: .8rem
    }

        .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
            right: -1px;
            border-width: .4rem .4rem .4rem 0;
            border-right-color: #000
        }

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.popover {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    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: .875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem
}

    .popover .popover-arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: .5rem
    }

        .popover .popover-arrow::after, .popover .popover-arrow::before {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-top > .popover-arrow {
    bottom: calc(-.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
        bottom: 0;
        border-width: .5rem .5rem 0;
        border-top-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
        bottom: 1px;
        border-width: .5rem .5rem 0;
        border-top-color: #fff
    }

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
    right: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
        right: 0;
        border-width: .5rem 0 .5rem .5rem;
        border-left-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
        right: 1px;
        border-width: .5rem 0 .5rem .5rem;
        border-left-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
    top: calc(-.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
        top: 0;
        border-width: 0 .5rem .5rem .5rem;
        border-bottom-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::after {
        top: 1px;
        border-width: 0 .5rem .5rem .5rem;
        border-bottom-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: 1rem;
    margin-right: -.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
    left: calc(-.5rem - 1px);
    width: .5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
        left: 0;
        border-width: .5rem .5rem .5rem 0;
        border-right-color: rgba(0,0,0,.25)
    }

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
        left: 1px;
        border-width: .5rem .5rem .5rem 0;
        border-right-color: #fff
    }

.popover-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid #d8d8d8;
    border-top-right-radius: calc(.3rem - 1px);
    border-top-left-radius: calc(.3rem - 1px)
}

    .popover-header:empty {
        display: none
    }

.popover-body {
    padding: 1rem 1rem;
    color: #212529
}

.carousel {
    position: relative
}

    .carousel.pointer-event {
        touch-action: pan-y
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner::after {
        display: block;
        clear: both;
        content: ""
    }

.carousel-item {
    position: relative;
    display: none;
    float: right;
    width: 100%;
    margin-left: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: block
}

    .active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
        transform: translateX(-100%)
    }

    .active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
        transform: translateX(100%)
    }

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 100% 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next, .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    right: 0
}

.carousel-control-next {
    left: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-left: 15%;
    margin-bottom: 1rem;
    margin-right: 15%;
    list-style: none
}

    .carousel-indicators [data-bs-target] {
        box-sizing: content-box;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-left: 3px;
        margin-right: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: .5;
        transition: opacity .6s ease
    }

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    left: 15%;
    bottom: 1.25rem;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@keyframes spinner-border {
    to {
        transform: rotate(-360deg)
    }
}

.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: .25em solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: .2em
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem
}

@media (prefers-reduced-motion:reduce) {
    .spinner-border, .spinner-grow {
        animation-duration: 1.5s
    }
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

.link-primary {
    color: #0d6efd
}

    .link-primary:focus, .link-primary:hover {
        color: #0a58ca
    }

.link-secondary {
    color: #6c757d
}

    .link-secondary:focus, .link-secondary:hover {
        color: #565e64
    }

.link-success {
    color: #198754
}

    .link-success:focus, .link-success:hover {
        color: #146c43
    }

.link-info {
    color: #0dcaf0
}

    .link-info:focus, .link-info:hover {
        color: #3dd5f3
    }

.link-warning {
    color: #ffc107
}

    .link-warning:focus, .link-warning:hover {
        color: #ffcd39
    }

.link-danger {
    color: #dc3545
}

    .link-danger:focus, .link-danger:hover {
        color: #b02a37
    }

.link-light {
    color: #f8f9fa
}

    .link-light:focus, .link-light:hover {
        color: #f9fafb
    }

.link-dark {
    color: #212529
}

    .link-dark:focus, .link-dark:hover {
        color: #1a1e21
    }

.ratio {
    position: relative;
    width: 100%
}

    .ratio::before {
        display: block;
        padding-top: var(--bs-aspect-ratio);
        content: ""
    }

    .ratio > * {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%
    }

.ratio-1x1 {
    --bs-aspect-ratio: 100%
}

.ratio-4x3 {
    --bs-aspect-ratio: calc(3 / 4 * 100%)
}

.ratio-16x9 {
    --bs-aspect-ratio: calc(9 / 16 * 100%)
}

.ratio-21x9 {
    --bs-aspect-ratio: calc(9 / 21 * 100%)
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1030
}

.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020
}

@media (min-width:576px) {
    .sticky-sm-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:768px) {
    .sticky-md-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:992px) {
    .sticky-lg-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1200px) {
    .sticky-xl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

@media (min-width:1400px) {
    .sticky-xxl-top {
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.stretched-link::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    content: ""
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: right !important
}

.float-end {
    float: left !important
}

.float-none {
    float: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.overflow-visible {
    overflow: visible !important
}

.overflow-scroll {
    overflow: scroll !important
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: sticky !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    right: 0 !important
}

.start-50 {
    right: 50% !important
}

.start-100 {
    right: 100% !important
}

.end-0 {
    left: 0 !important
}

.end-50 {
    left: 50% !important
}

.end-100 {
    left: 100% !important
}

.translate-middle {
    transform: translate(50%,-50%) !important
}

.translate-middle-x {
    transform: translateX(50%) !important
}

.translate-middle-y {
    transform: translateY(-50%) !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-left: 1px solid #dee2e6 !important
}

.border-end-0 {
    border-left: 0 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-right: 1px solid #dee2e6 !important
}

.border-start-0 {
    border-right: 0 !important
}

.border-primary {
    border-color: #0d6efd !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #212529 !important
}

.border-white {
    border-color: #fff !important
}

.border-0 {
    border-width: 0 !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mh-100 {
    max-height: 100% !important
}

.vh-100 {
    height: 100vh !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-row-reverse {
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    flex-direction: column-reverse !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.justify-content-start {
    justify-content: flex-start !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
}

.justify-content-evenly {
    justify-content: space-evenly !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-items-baseline {
    align-items: baseline !important
}

.align-items-stretch {
    align-items: stretch !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.align-content-between {
    align-content: space-between !important
}

.align-content-around {
    align-content: space-around !important
}

.align-content-stretch {
    align-content: stretch !important
}

.align-self-auto {
    align-self: auto !important
}

.align-self-start {
    align-self: flex-start !important
}

.align-self-end {
    align-self: flex-end !important
}

.align-self-center {
    align-self: center !important
}

.align-self-baseline {
    align-self: baseline !important
}

.align-self-stretch {
    align-self: stretch !important
}

.order-first {
    order: -1 !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.order-last {
    order: 6 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.mx-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important
}

.mx-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important
}

.mx-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-left: 0 !important
}

.me-1 {
    margin-left: .25rem !important
}

.me-2 {
    margin-left: .5rem !important
}

.me-3 {
    margin-left: 1rem !important
}

.me-4 {
    margin-left: 1.5rem !important
}

.me-5 {
    margin-left: 3rem !important
}

.me-auto {
    margin-left: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.ms-0 {
    margin-right: 0 !important
}

.ms-1 {
    margin-right: .25rem !important
}

.ms-2 {
    margin-right: .5rem !important
}

.ms-3 {
    margin-right: 1rem !important
}

.ms-4 {
    margin-right: 1.5rem !important
}

.ms-5 {
    margin-right: 3rem !important
}

.ms-auto {
    margin-right: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.px-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important
}

.px-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important
}

.px-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important
}

.py-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important
}

.py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pe-0 {
    padding-left: 0 !important
}

.pe-1 {
    padding-left: .25rem !important
}

.pe-2 {
    padding-left: .5rem !important
}

.pe-3 {
    padding-left: 1rem !important
}

.pe-4 {
    padding-left: 1.5rem !important
}

.pe-5 {
    padding-left: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.ps-0 {
    padding-right: 0 !important
}

.ps-1 {
    padding-right: .25rem !important
}

.ps-2 {
    padding-right: .5rem !important
}

.ps-3 {
    padding-right: 1rem !important
}

.ps-4 {
    padding-right: 1.5rem !important
}

.ps-5 {
    padding-right: 3rem !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fst-italic {
    font-style: italic !important
}

.fst-normal {
    font-style: normal !important
}

.fw-light {
    font-weight: 300 !important
}

.fw-lighter {
    font-weight: lighter !important
}

.fw-normal {
    font-weight: 400 !important
}

.fw-bold {
    font-weight: 700 !important
}

.fw-bolder {
    font-weight: bolder !important
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.text-start {
    text-align: right !important
}

.text-end {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-primary {
    color: #0d6efd !important
}

.text-secondary {
    color: #6c757d !important
}

.text-success {
    color: #198754 !important
}

.text-info {
    color: #0dcaf0 !important
}

.text-warning {
    color: #ffc107 !important
}

.text-danger {
    color: #dc3545 !important
}

.text-light {
    color: #f8f9fa !important
}

.text-dark {
    color: #212529 !important
}

.text-white {
    color: #fff !important
}

.text-body {
    color: #212529 !important
}

.text-muted {
    color: #6c757d !important
}

.text-black-50 {
    color: rgba(0,0,0,.5) !important
}

.text-white-50 {
    color: rgba(255,255,255,.5) !important
}

.text-reset {
    color: inherit !important
}

.lh-1 {
    line-height: 1 !important
}

.lh-sm {
    line-height: 1.25 !important
}

.lh-base {
    line-height: 1.5 !important
}

.lh-lg {
    line-height: 2 !important
}

.bg-primary {
    background-color: #0d6efd !important
}

.bg-secondary {
    background-color: #6c757d !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-warning {
    background-color: #ffc107 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

.bg-dark {
    background-color: #212529 !important
}

.bg-body {
    background-color: #fff !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-decoration-underline {
    text-decoration: underline !important
}

.text-decoration-line-through {
    text-decoration: line-through !important
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    user-select: none !important
}

.pe-none {
    pointer-events: none !important
}

.pe-auto {
    pointer-events: auto !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-right-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

.rounded-end {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-left-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-start {
    border-bottom-right-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media (min-width:576px) {
    .float-sm-start {
        float: right !important
    }

    .float-sm-end {
        float: left !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-grid {
        display: grid !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .justify-content-sm-between {
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        justify-content: space-around !important
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-items-sm-baseline {
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        align-items: stretch !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .align-content-sm-between {
        align-content: space-between !important
    }

    .align-content-sm-around {
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        align-content: stretch !important
    }

    .align-self-sm-auto {
        align-self: auto !important
    }

    .align-self-sm-start {
        align-self: flex-start !important
    }

    .align-self-sm-end {
        align-self: flex-end !important
    }

    .align-self-sm-center {
        align-self: center !important
    }

    .align-self-sm-baseline {
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        align-self: stretch !important
    }

    .order-sm-first {
        order: -1 !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .order-sm-last {
        order: 6 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-sm-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-sm-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-sm-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-left: 0 !important
    }

    .me-sm-1 {
        margin-left: .25rem !important
    }

    .me-sm-2 {
        margin-left: .5rem !important
    }

    .me-sm-3 {
        margin-left: 1rem !important
    }

    .me-sm-4 {
        margin-left: 1.5rem !important
    }

    .me-sm-5 {
        margin-left: 3rem !important
    }

    .me-sm-auto {
        margin-left: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .ms-sm-0 {
        margin-right: 0 !important
    }

    .ms-sm-1 {
        margin-right: .25rem !important
    }

    .ms-sm-2 {
        margin-right: .5rem !important
    }

    .ms-sm-3 {
        margin-right: 1rem !important
    }

    .ms-sm-4 {
        margin-right: 1.5rem !important
    }

    .ms-sm-5 {
        margin-right: 3rem !important
    }

    .ms-sm-auto {
        margin-right: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-sm-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-sm-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-sm-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-sm-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-sm-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-sm-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .pe-sm-0 {
        padding-left: 0 !important
    }

    .pe-sm-1 {
        padding-left: .25rem !important
    }

    .pe-sm-2 {
        padding-left: .5rem !important
    }

    .pe-sm-3 {
        padding-left: 1rem !important
    }

    .pe-sm-4 {
        padding-left: 1.5rem !important
    }

    .pe-sm-5 {
        padding-left: 3rem !important
    }

    .pb-sm-0 {
        padding-bottom: 0 !important
    }

    .pb-sm-1 {
        padding-bottom: .25rem !important
    }

    .pb-sm-2 {
        padding-bottom: .5rem !important
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-sm-5 {
        padding-bottom: 3rem !important
    }

    .ps-sm-0 {
        padding-right: 0 !important
    }

    .ps-sm-1 {
        padding-right: .25rem !important
    }

    .ps-sm-2 {
        padding-right: .5rem !important
    }

    .ps-sm-3 {
        padding-right: 1rem !important
    }

    .ps-sm-4 {
        padding-right: 1.5rem !important
    }

    .ps-sm-5 {
        padding-right: 3rem !important
    }

    .text-sm-start {
        text-align: right !important
    }

    .text-sm-end {
        text-align: left !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {
    .float-md-start {
        float: right !important
    }

    .float-md-end {
        float: left !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-grid {
        display: grid !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .justify-content-md-between {
        justify-content: space-between !important
    }

    .justify-content-md-around {
        justify-content: space-around !important
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-items-md-baseline {
        align-items: baseline !important
    }

    .align-items-md-stretch {
        align-items: stretch !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .align-content-md-between {
        align-content: space-between !important
    }

    .align-content-md-around {
        align-content: space-around !important
    }

    .align-content-md-stretch {
        align-content: stretch !important
    }

    .align-self-md-auto {
        align-self: auto !important
    }

    .align-self-md-start {
        align-self: flex-start !important
    }

    .align-self-md-end {
        align-self: flex-end !important
    }

    .align-self-md-center {
        align-self: center !important
    }

    .align-self-md-baseline {
        align-self: baseline !important
    }

    .align-self-md-stretch {
        align-self: stretch !important
    }

    .order-md-first {
        order: -1 !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .order-md-last {
        order: 6 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-md-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-md-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-md-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-left: 0 !important
    }

    .me-md-1 {
        margin-left: .25rem !important
    }

    .me-md-2 {
        margin-left: .5rem !important
    }

    .me-md-3 {
        margin-left: 1rem !important
    }

    .me-md-4 {
        margin-left: 1.5rem !important
    }

    .me-md-5 {
        margin-left: 3rem !important
    }

    .me-md-auto {
        margin-left: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .ms-md-0 {
        margin-right: 0 !important
    }

    .ms-md-1 {
        margin-right: .25rem !important
    }

    .ms-md-2 {
        margin-right: .5rem !important
    }

    .ms-md-3 {
        margin-right: 1rem !important
    }

    .ms-md-4 {
        margin-right: 1.5rem !important
    }

    .ms-md-5 {
        margin-right: 3rem !important
    }

    .ms-md-auto {
        margin-right: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-md-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-md-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-md-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-md-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-md-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-md-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .pe-md-0 {
        padding-left: 0 !important
    }

    .pe-md-1 {
        padding-left: .25rem !important
    }

    .pe-md-2 {
        padding-left: .5rem !important
    }

    .pe-md-3 {
        padding-left: 1rem !important
    }

    .pe-md-4 {
        padding-left: 1.5rem !important
    }

    .pe-md-5 {
        padding-left: 3rem !important
    }

    .pb-md-0 {
        padding-bottom: 0 !important
    }

    .pb-md-1 {
        padding-bottom: .25rem !important
    }

    .pb-md-2 {
        padding-bottom: .5rem !important
    }

    .pb-md-3 {
        padding-bottom: 1rem !important
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-md-5 {
        padding-bottom: 3rem !important
    }

    .ps-md-0 {
        padding-right: 0 !important
    }

    .ps-md-1 {
        padding-right: .25rem !important
    }

    .ps-md-2 {
        padding-right: .5rem !important
    }

    .ps-md-3 {
        padding-right: 1rem !important
    }

    .ps-md-4 {
        padding-right: 1.5rem !important
    }

    .ps-md-5 {
        padding-right: 3rem !important
    }

    .text-md-start {
        text-align: right !important
    }

    .text-md-end {
        text-align: left !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {
    .float-lg-start {
        float: right !important
    }

    .float-lg-end {
        float: left !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-grid {
        display: grid !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .justify-content-lg-between {
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        justify-content: space-around !important
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-items-lg-baseline {
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        align-items: stretch !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .align-content-lg-between {
        align-content: space-between !important
    }

    .align-content-lg-around {
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        align-content: stretch !important
    }

    .align-self-lg-auto {
        align-self: auto !important
    }

    .align-self-lg-start {
        align-self: flex-start !important
    }

    .align-self-lg-end {
        align-self: flex-end !important
    }

    .align-self-lg-center {
        align-self: center !important
    }

    .align-self-lg-baseline {
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        align-self: stretch !important
    }

    .order-lg-first {
        order: -1 !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .order-lg-last {
        order: 6 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-lg-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-lg-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-lg-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-left: 0 !important
    }

    .me-lg-1 {
        margin-left: .25rem !important
    }

    .me-lg-2 {
        margin-left: .5rem !important
    }

    .me-lg-3 {
        margin-left: 1rem !important
    }

    .me-lg-4 {
        margin-left: 1.5rem !important
    }

    .me-lg-5 {
        margin-left: 3rem !important
    }

    .me-lg-auto {
        margin-left: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .ms-lg-0 {
        margin-right: 0 !important
    }

    .ms-lg-1 {
        margin-right: .25rem !important
    }

    .ms-lg-2 {
        margin-right: .5rem !important
    }

    .ms-lg-3 {
        margin-right: 1rem !important
    }

    .ms-lg-4 {
        margin-right: 1.5rem !important
    }

    .ms-lg-5 {
        margin-right: 3rem !important
    }

    .ms-lg-auto {
        margin-right: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-lg-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-lg-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-lg-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-lg-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-lg-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-lg-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .pe-lg-0 {
        padding-left: 0 !important
    }

    .pe-lg-1 {
        padding-left: .25rem !important
    }

    .pe-lg-2 {
        padding-left: .5rem !important
    }

    .pe-lg-3 {
        padding-left: 1rem !important
    }

    .pe-lg-4 {
        padding-left: 1.5rem !important
    }

    .pe-lg-5 {
        padding-left: 3rem !important
    }

    .pb-lg-0 {
        padding-bottom: 0 !important
    }

    .pb-lg-1 {
        padding-bottom: .25rem !important
    }

    .pb-lg-2 {
        padding-bottom: .5rem !important
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-lg-5 {
        padding-bottom: 3rem !important
    }

    .ps-lg-0 {
        padding-right: 0 !important
    }

    .ps-lg-1 {
        padding-right: .25rem !important
    }

    .ps-lg-2 {
        padding-right: .5rem !important
    }

    .ps-lg-3 {
        padding-right: 1rem !important
    }

    .ps-lg-4 {
        padding-right: 1.5rem !important
    }

    .ps-lg-5 {
        padding-right: 3rem !important
    }

    .text-lg-start {
        text-align: right !important
    }

    .text-lg-end {
        text-align: left !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .float-xl-start {
        float: right !important
    }

    .float-xl-end {
        float: left !important
    }

    .float-xl-none {
        float: none !important
    }

    .d-xl-inline {
        display: inline !important
    }

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-grid {
        display: grid !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: flex !important
    }

    .d-xl-inline-flex {
        display: inline-flex !important
    }

    .d-xl-none {
        display: none !important
    }

    .flex-xl-fill {
        flex: 1 1 auto !important
    }

    .flex-xl-row {
        flex-direction: row !important
    }

    .flex-xl-column {
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xl-0 {
        gap: 0 !important
    }

    .gap-xl-1 {
        gap: .25rem !important
    }

    .gap-xl-2 {
        gap: .5rem !important
    }

    .gap-xl-3 {
        gap: 1rem !important
    }

    .gap-xl-4 {
        gap: 1.5rem !important
    }

    .gap-xl-5 {
        gap: 3rem !important
    }

    .justify-content-xl-start {
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        justify-content: center !important
    }

    .justify-content-xl-between {
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        justify-content: space-around !important
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xl-start {
        align-items: flex-start !important
    }

    .align-items-xl-end {
        align-items: flex-end !important
    }

    .align-items-xl-center {
        align-items: center !important
    }

    .align-items-xl-baseline {
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        align-items: stretch !important
    }

    .align-content-xl-start {
        align-content: flex-start !important
    }

    .align-content-xl-end {
        align-content: flex-end !important
    }

    .align-content-xl-center {
        align-content: center !important
    }

    .align-content-xl-between {
        align-content: space-between !important
    }

    .align-content-xl-around {
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        align-content: stretch !important
    }

    .align-self-xl-auto {
        align-self: auto !important
    }

    .align-self-xl-start {
        align-self: flex-start !important
    }

    .align-self-xl-end {
        align-self: flex-end !important
    }

    .align-self-xl-center {
        align-self: center !important
    }

    .align-self-xl-baseline {
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        align-self: stretch !important
    }

    .order-xl-first {
        order: -1 !important
    }

    .order-xl-0 {
        order: 0 !important
    }

    .order-xl-1 {
        order: 1 !important
    }

    .order-xl-2 {
        order: 2 !important
    }

    .order-xl-3 {
        order: 3 !important
    }

    .order-xl-4 {
        order: 4 !important
    }

    .order-xl-5 {
        order: 5 !important
    }

    .order-xl-last {
        order: 6 !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xl-0 {
        margin-top: 0 !important
    }

    .mt-xl-1 {
        margin-top: .25rem !important
    }

    .mt-xl-2 {
        margin-top: .5rem !important
    }

    .mt-xl-3 {
        margin-top: 1rem !important
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xl-5 {
        margin-top: 3rem !important
    }

    .mt-xl-auto {
        margin-top: auto !important
    }

    .me-xl-0 {
        margin-left: 0 !important
    }

    .me-xl-1 {
        margin-left: .25rem !important
    }

    .me-xl-2 {
        margin-left: .5rem !important
    }

    .me-xl-3 {
        margin-left: 1rem !important
    }

    .me-xl-4 {
        margin-left: 1.5rem !important
    }

    .me-xl-5 {
        margin-left: 3rem !important
    }

    .me-xl-auto {
        margin-left: auto !important
    }

    .mb-xl-0 {
        margin-bottom: 0 !important
    }

    .mb-xl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xl-auto {
        margin-bottom: auto !important
    }

    .ms-xl-0 {
        margin-right: 0 !important
    }

    .ms-xl-1 {
        margin-right: .25rem !important
    }

    .ms-xl-2 {
        margin-right: .5rem !important
    }

    .ms-xl-3 {
        margin-right: 1rem !important
    }

    .ms-xl-4 {
        margin-right: 1.5rem !important
    }

    .ms-xl-5 {
        margin-right: 3rem !important
    }

    .ms-xl-auto {
        margin-right: auto !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xl-0 {
        padding-top: 0 !important
    }

    .pt-xl-1 {
        padding-top: .25rem !important
    }

    .pt-xl-2 {
        padding-top: .5rem !important
    }

    .pt-xl-3 {
        padding-top: 1rem !important
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xl-5 {
        padding-top: 3rem !important
    }

    .pe-xl-0 {
        padding-left: 0 !important
    }

    .pe-xl-1 {
        padding-left: .25rem !important
    }

    .pe-xl-2 {
        padding-left: .5rem !important
    }

    .pe-xl-3 {
        padding-left: 1rem !important
    }

    .pe-xl-4 {
        padding-left: 1.5rem !important
    }

    .pe-xl-5 {
        padding-left: 3rem !important
    }

    .pb-xl-0 {
        padding-bottom: 0 !important
    }

    .pb-xl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xl-0 {
        padding-right: 0 !important
    }

    .ps-xl-1 {
        padding-right: .25rem !important
    }

    .ps-xl-2 {
        padding-right: .5rem !important
    }

    .ps-xl-3 {
        padding-right: 1rem !important
    }

    .ps-xl-4 {
        padding-right: 1.5rem !important
    }

    .ps-xl-5 {
        padding-right: 3rem !important
    }

    .text-xl-start {
        text-align: right !important
    }

    .text-xl-end {
        text-align: left !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

@media (min-width:1400px) {
    .float-xxl-start {
        float: right !important
    }

    .float-xxl-end {
        float: left !important
    }

    .float-xxl-none {
        float: none !important
    }

    .d-xxl-inline {
        display: inline !important
    }

    .d-xxl-inline-block {
        display: inline-block !important
    }

    .d-xxl-block {
        display: block !important
    }

    .d-xxl-grid {
        display: grid !important
    }

    .d-xxl-table {
        display: table !important
    }

    .d-xxl-table-row {
        display: table-row !important
    }

    .d-xxl-table-cell {
        display: table-cell !important
    }

    .d-xxl-flex {
        display: flex !important
    }

    .d-xxl-inline-flex {
        display: inline-flex !important
    }

    .d-xxl-none {
        display: none !important
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important
    }

    .flex-xxl-row {
        flex-direction: row !important
    }

    .flex-xxl-column {
        flex-direction: column !important
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important
    }

    .gap-xxl-0 {
        gap: 0 !important
    }

    .gap-xxl-1 {
        gap: .25rem !important
    }

    .gap-xxl-2 {
        gap: .5rem !important
    }

    .gap-xxl-3 {
        gap: 1rem !important
    }

    .gap-xxl-4 {
        gap: 1.5rem !important
    }

    .gap-xxl-5 {
        gap: 3rem !important
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important
    }

    .justify-content-xxl-center {
        justify-content: center !important
    }

    .justify-content-xxl-between {
        justify-content: space-between !important
    }

    .justify-content-xxl-around {
        justify-content: space-around !important
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important
    }

    .align-items-xxl-start {
        align-items: flex-start !important
    }

    .align-items-xxl-end {
        align-items: flex-end !important
    }

    .align-items-xxl-center {
        align-items: center !important
    }

    .align-items-xxl-baseline {
        align-items: baseline !important
    }

    .align-items-xxl-stretch {
        align-items: stretch !important
    }

    .align-content-xxl-start {
        align-content: flex-start !important
    }

    .align-content-xxl-end {
        align-content: flex-end !important
    }

    .align-content-xxl-center {
        align-content: center !important
    }

    .align-content-xxl-between {
        align-content: space-between !important
    }

    .align-content-xxl-around {
        align-content: space-around !important
    }

    .align-content-xxl-stretch {
        align-content: stretch !important
    }

    .align-self-xxl-auto {
        align-self: auto !important
    }

    .align-self-xxl-start {
        align-self: flex-start !important
    }

    .align-self-xxl-end {
        align-self: flex-end !important
    }

    .align-self-xxl-center {
        align-self: center !important
    }

    .align-self-xxl-baseline {
        align-self: baseline !important
    }

    .align-self-xxl-stretch {
        align-self: stretch !important
    }

    .order-xxl-first {
        order: -1 !important
    }

    .order-xxl-0 {
        order: 0 !important
    }

    .order-xxl-1 {
        order: 1 !important
    }

    .order-xxl-2 {
        order: 2 !important
    }

    .order-xxl-3 {
        order: 3 !important
    }

    .order-xxl-4 {
        order: 4 !important
    }

    .order-xxl-5 {
        order: 5 !important
    }

    .order-xxl-last {
        order: 6 !important
    }

    .m-xxl-0 {
        margin: 0 !important
    }

    .m-xxl-1 {
        margin: .25rem !important
    }

    .m-xxl-2 {
        margin: .5rem !important
    }

    .m-xxl-3 {
        margin: 1rem !important
    }

    .m-xxl-4 {
        margin: 1.5rem !important
    }

    .m-xxl-5 {
        margin: 3rem !important
    }

    .m-xxl-auto {
        margin: auto !important
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .mx-xxl-1 {
        margin-left: .25rem !important;
        margin-right: .25rem !important
    }

    .mx-xxl-2 {
        margin-left: .5rem !important;
        margin-right: .5rem !important
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important
    }

    .mx-xxl-5 {
        margin-left: 3rem !important;
        margin-right: 3rem !important
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-xxl-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-xxl-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-xxl-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-xxl-0 {
        margin-top: 0 !important
    }

    .mt-xxl-1 {
        margin-top: .25rem !important
    }

    .mt-xxl-2 {
        margin-top: .5rem !important
    }

    .mt-xxl-3 {
        margin-top: 1rem !important
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important
    }

    .mt-xxl-5 {
        margin-top: 3rem !important
    }

    .mt-xxl-auto {
        margin-top: auto !important
    }

    .me-xxl-0 {
        margin-left: 0 !important
    }

    .me-xxl-1 {
        margin-left: .25rem !important
    }

    .me-xxl-2 {
        margin-left: .5rem !important
    }

    .me-xxl-3 {
        margin-left: 1rem !important
    }

    .me-xxl-4 {
        margin-left: 1.5rem !important
    }

    .me-xxl-5 {
        margin-left: 3rem !important
    }

    .me-xxl-auto {
        margin-left: auto !important
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important
    }

    .mb-xxl-1 {
        margin-bottom: .25rem !important
    }

    .mb-xxl-2 {
        margin-bottom: .5rem !important
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-xxl-5 {
        margin-bottom: 3rem !important
    }

    .mb-xxl-auto {
        margin-bottom: auto !important
    }

    .ms-xxl-0 {
        margin-right: 0 !important
    }

    .ms-xxl-1 {
        margin-right: .25rem !important
    }

    .ms-xxl-2 {
        margin-right: .5rem !important
    }

    .ms-xxl-3 {
        margin-right: 1rem !important
    }

    .ms-xxl-4 {
        margin-right: 1.5rem !important
    }

    .ms-xxl-5 {
        margin-right: 3rem !important
    }

    .ms-xxl-auto {
        margin-right: auto !important
    }

    .p-xxl-0 {
        padding: 0 !important
    }

    .p-xxl-1 {
        padding: .25rem !important
    }

    .p-xxl-2 {
        padding: .5rem !important
    }

    .p-xxl-3 {
        padding: 1rem !important
    }

    .p-xxl-4 {
        padding: 1.5rem !important
    }

    .p-xxl-5 {
        padding: 3rem !important
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .px-xxl-1 {
        padding-left: .25rem !important;
        padding-right: .25rem !important
    }

    .px-xxl-2 {
        padding-left: .5rem !important;
        padding-right: .5rem !important
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important
    }

    .px-xxl-5 {
        padding-left: 3rem !important;
        padding-right: 3rem !important
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important
    }

    .py-xxl-1 {
        padding-top: .25rem !important;
        padding-bottom: .25rem !important
    }

    .py-xxl-2 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important
    }

    .py-xxl-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important
    }

    .pt-xxl-0 {
        padding-top: 0 !important
    }

    .pt-xxl-1 {
        padding-top: .25rem !important
    }

    .pt-xxl-2 {
        padding-top: .5rem !important
    }

    .pt-xxl-3 {
        padding-top: 1rem !important
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important
    }

    .pt-xxl-5 {
        padding-top: 3rem !important
    }

    .pe-xxl-0 {
        padding-left: 0 !important
    }

    .pe-xxl-1 {
        padding-left: .25rem !important
    }

    .pe-xxl-2 {
        padding-left: .5rem !important
    }

    .pe-xxl-3 {
        padding-left: 1rem !important
    }

    .pe-xxl-4 {
        padding-left: 1.5rem !important
    }

    .pe-xxl-5 {
        padding-left: 3rem !important
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important
    }

    .pb-xxl-1 {
        padding-bottom: .25rem !important
    }

    .pb-xxl-2 {
        padding-bottom: .5rem !important
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important
    }

    .pb-xxl-5 {
        padding-bottom: 3rem !important
    }

    .ps-xxl-0 {
        padding-right: 0 !important
    }

    .ps-xxl-1 {
        padding-right: .25rem !important
    }

    .ps-xxl-2 {
        padding-right: .5rem !important
    }

    .ps-xxl-3 {
        padding-right: 1rem !important
    }

    .ps-xxl-4 {
        padding-right: 1.5rem !important
    }

    .ps-xxl-5 {
        padding-right: 3rem !important
    }

    .text-xxl-start {
        text-align: right !important
    }

    .text-xxl-end {
        text-align: left !important
    }

    .text-xxl-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-grid {
        display: grid !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

.carousel {
    position: relative;
    box-sizing: border-box
}

    .carousel *, .carousel :after, .carousel :before {
        box-sizing: inherit
    }

    .carousel.is-draggable {
        cursor: move;
        cursor: grab
    }

    .carousel.is-dragging {
        cursor: move;
        cursor: grabbing
    }

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width,60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

    .carousel__dots .carousel__dot {
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        width: 22px;
        height: 22px;
        cursor: pointer
    }

        .carousel__dots .carousel__dot:after {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%,-50%);
            background-color: currentColor;
            opacity: .25;
            transition: opacity .15s ease-in-out
        }

        .carousel__dots .carousel__dot.is-selected:after {
            opacity: 1
        }

.carousel__button {
    width: var(--carousel-button-width,48px);
    height: var(--carousel-button-height,48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color,currentColor);
    background: var(--carousel-button-bg,transparent);
    border-radius: var(--carousel-button-border-radius,50%);
    box-shadow: var(--carousel-button-shadow,none);
    transition: opacity .15s ease
}

    .carousel__button.is-next, .carousel__button.is-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }

    .carousel__button.is-prev {
        right: 10px
    }

    .carousel__button.is-next {
        left: 10px
    }

    .carousel__button[disabled] {
        cursor: default;
        opacity: .3
    }

    .carousel__button svg {
        width: var(--carousel-button-svg-width,50%);
        height: var(--carousel-button-svg-height,50%);
        fill: none;
        stroke: currentColor;
        stroke-width: var(--carousel-button-svg-stroke-width,1.5);
        stroke-linejoin: bevel;
        stroke-linecap: round;
        filter: var(--carousel-button-svg-filter, none);
        pointer-events: none
    }

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    direction: rtl;
    margin: 0;
    padding: env(safe-area-inset-top,0) env(safe-area-inset-right,0) env(safe-area-inset-bottom,0) env(safe-area-inset-left,0);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color,#fff);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: 0;
    transform-origin: top right;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

    .fancybox__container *, .fancybox__container ::after, .fancybox__container ::before {
        box-sizing: inherit
    }

    .fancybox__container :focus {
        outline: 0
    }

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94))
}

@media all and (min-width:1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: var(--fancybox-bg,rgba(24,24,27,.92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

    .fancybox__carousel.has-dots {
        margin-bottom: calc(.5rem + 22px)
    }

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

    .fancybox__slide::after, .fancybox__slide::before {
        content: "";
        flex: 0 0 0;
        margin: auto
    }

@media all and (min-width:1024px) {
    .fancybox__slide {
        padding: 64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right,0) 0 env(safe-area-inset-left,0);
    padding: 36px;
    color: var(--fancybox-content-color,#374151);
    background: var(--fancybox-content-bg,#fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

    .fancybox__content :focus:not(.carousel__button.is-close) {
        outline: thin dotted;
        box-shadow: none
    }

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color,currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container > .carousel__dots {
    top: 100%;
    color: var(--fancybox-color,#fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

    .fancybox__nav .carousel__button.is-next {
        left: 8px
    }

@media all and (min-width:1024px) {
    .fancybox__nav .carousel__button.is-next {
        left: 40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    right: 8px
}

@media all and (min-width:1024px) {
    .fancybox__nav .carousel__button.is-prev {
        right: 40px
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    left: 8px;
    top: calc(env(safe-area-inset-top,0px) + 8px);
    left: calc(env(safe-area-inset-left,0px) + 8px);
    z-index: 40
}

@media all and (min-width:1024px) {
    .carousel__button.is-close {
        left: 40px
    }
}

.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    left: 0;
    color: var(--fancybox-color,#fff)
}

.fancybox__no-click, .fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color,currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

    .fancybox__spinner svg circle {
        fill: none;
        stroke-width: 2.75;
        stroke-miterlimit: 10;
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
        animation: fancybox-dash 1.5s ease-in-out infinite;
        stroke-linecap: round;
        stroke: currentColor
    }

@keyframes fancybox-rotate {
    100% {
        transform: rotate(-360deg)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

.carousel__button.is-close, .carousel__dots, .fancybox__backdrop, .fancybox__caption, .fancybox__nav {
    opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
    animation: .15s ease backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav {
    animation: .15s ease both fancybox-fadeOut
}

.fancybox-fadeIn {
    animation: .15s ease both fancybox-fadeIn
}

.fancybox-fadeOut {
    animation: .1s ease both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s ease both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
    animation: .15s ease both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
    animation: .15s ease both fancybox-throwOutUp
}

.fancybox-throwOutDown {
    animation: .15s ease both fancybox-throwOutDown
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(.97) translate3d(0,16px,0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0,0,0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(.97) translate3d(0,16px,0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0,-30%,0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0,30%,0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255,255,255,.1)
}

    .fancybox__carousel .carousel__slide::-webkit-scrollbar {
        width: 8px;
        height: 8px
    }

    .fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
        background-color: rgba(255,255,255,.1)
    }

    .fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 2px;
        box-shadow: inset 0 0 4px rgba(0,0,0,.2)
    }

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 100% 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: rgba(0,0,0,0);
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

    .has-image[data-image-fit=contain] .fancybox__content {
        flex-direction: row;
        flex-wrap: wrap
    }

    .has-image[data-image-fit=contain] .fancybox__image {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

    .has-image[data-image-fit=contain-w] .fancybox__content {
        min-height: auto
    }

    .has-image[data-image-fit=contain-w] .fancybox__image {
        max-width: 100%;
        height: auto
    }

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

    .has-image[data-image-fit=cover] .fancybox__content {
        width: 100%;
        height: 100%
    }

    .has-image[data-image-fit=cover] .fancybox__image {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content, .fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    padding: 0;
    background: rgba(24,24,27,.9);
    color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video, .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0)
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0 3px;
    opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width,96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

    .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        border-width: 5px;
        border-style: solid;
        border-color: var(--fancybox-accent-color,rgba(34,213,233,.96));
        opacity: 0;
        transition: opacity .15s ease;
        border-radius: var(--fancybox-thumbs-border-radius,4px)
    }

    .fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
        opacity: .92
    }

    .fancybox__thumbs .carousel__slide > * {
        pointer-events: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none
    }

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100% / (var(--fancybox-thumbs-ratio,1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255,255,255,.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius,4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(to top,hsla(0,0%,0%,0) 0,hsla(0,0%,0%,.006) 8.1%,hsla(0,0%,0%,.021) 15.5%,hsla(0,0%,0%,.046) 22.5%,hsla(0,0%,0%,.077) 29%,hsla(0,0%,0%,.114) 35.3%,hsla(0,0%,0%,.155) 41.2%,hsla(0,0%,0%,.198) 47.1%,hsla(0,0%,0%,.242) 52.9%,hsla(0,0%,0%,.285) 58.8%,hsla(0,0%,0%,.326) 64.7%,hsla(0,0%,0%,.363) 71%,hsla(0,0%,0%,.394) 77.5%,hsla(0,0%,0%,.419) 84.5%,hsla(0,0%,0%,.434) 91.9%,hsla(0,0%,0%,.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity,1);
    text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.4))
}

@media all and (min-width:1024px) {
    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-left: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    right: 50%;
    transform: translateX(50%)
}

.fancybox__toolbar__items--right {
    margin-right: auto
}

@media (max-width:640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height,48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color,rgba(34,213,233,.96));
    height: 3px;
    right: 0;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 100%;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

.fc-icon, .fc-unselectable {
    -moz-user-select: none;
    -ms-user-select: none
}

.fc .fc-button, .fc-icon {
    text-transform: none;
    font-weight: 400
}

.fc-not-allowed, .fc-not-allowed .fc-event {
    cursor: not-allowed
}

.fc .fc-button:not(:disabled), .fc a[data-navlink], .fc-event.fc-event-draggable, .fc-event[href] {
    cursor: pointer
}

.fc-unselectable {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent
}

.fc {
    display: flex;
    flex-direction: column;
    font-size: 1em
}

    .fc .fc-button, .fc-icon {
        display: inline-block;
        text-align: center
    }

    .fc, .fc *, .fc :after, .fc :before {
        box-sizing: border-box
    }

        .fc table {
            border-collapse: collapse;
            border-spacing: 0;
            font-size: 1em
        }

        .fc th {
            text-align: center
        }

        .fc td, .fc th {
            vertical-align: top;
            padding: 0
        }

        .fc .fc-button, .fc .fc-button .fc-icon, .fc .fc-button-group, .fc .fc-timegrid-slot-label {
            vertical-align: middle
        }

        .fc a[data-navlink]:hover {
            text-decoration: underline
        }

        .fc .fc-button:hover, .fc .fc-list-event-title a, a.fc-event, a.fc-event:hover {
            text-decoration: none
        }

.fc-direction-ltr {
    direction: rtl;
    text-align: right
}

.fc-direction-rtl {
    direction: ltr;
    text-align: left
}

.fc-theme-standard td, .fc-theme-standard th {
    border: 1px solid #ddd;
    border: 1px solid var(--fc-border-color,#ddd)
}

.fc-liquid-hack td, .fc-liquid-hack th {
    position: relative
}

@font-face {
    font-family: fcicons;
    src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
    font-weight: 400;
    font-style: normal
}

.fc-icon {
    width: 1em;
    height: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-family: fcicons !important;
    speak: none;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fc-icon-chevron-left:before {
    content: "\e900"
}

.fc-icon-chevron-right:before {
    content: "\e901"
}

.fc-icon-chevrons-left:before {
    content: "\e902"
}

.fc-icon-chevrons-right:before {
    content: "\e903"
}

.fc-icon-minus-square:before {
    content: "\e904"
}

.fc-icon-plus-square:before {
    content: "\e905"
}

.fc-icon-x:before {
    content: "\e906"
}

.fc .fc-button {
    overflow: visible;
    text-transform: none;
    margin: 0;
    font-family: inherit
}

    .fc .fc-button::-moz-focus-inner {
        padding: 0;
        border-style: none
    }

.fc .fc-button {
    -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .4em .65em;
    font-size: 1em;
    line-height: 1.5;
    border-radius: .25em
}

    .fc .fc-button:focus {
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(44,62,80,.25)
    }

.fc .fc-button-primary:focus, .fc .fc-button-primary:not(:disabled).fc-button-active:focus, .fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: 0 0 0 .2rem rgba(76,91,106,.5)
}

.fc .fc-button:disabled {
    opacity: .65
}

.fc .fc-button-primary {
    color: #fff;
    color: var(--fc-button-text-color,#fff);
    background-color: #2c3e50;
    background-color: var(--fc-button-bg-color,#2c3e50);
    border-color: #2c3e50;
    border-color: var(--fc-button-border-color,#2c3e50)
}

    .fc .fc-button-primary:hover {
        color: #fff;
        color: var(--fc-button-text-color,#fff);
        background-color: #1e2b37;
        background-color: var(--fc-button-hover-bg-color,#1e2b37);
        border-color: #1a252f;
        border-color: var(--fc-button-hover-border-color,#1a252f)
    }

    .fc .fc-button-primary:disabled {
        color: #fff;
        color: var(--fc-button-text-color,#fff);
        background-color: #2c3e50;
        background-color: var(--fc-button-bg-color,#2c3e50);
        border-color: #2c3e50;
        border-color: var(--fc-button-border-color,#2c3e50)
    }

    .fc .fc-button-primary:not(:disabled).fc-button-active, .fc .fc-button-primary:not(:disabled):active {
        color: #fff;
        color: var(--fc-button-text-color,#fff);
        background-color: #1a252f;
        background-color: var(--fc-button-active-bg-color,#1a252f);
        border-color: #151e27;
        border-color: var(--fc-button-active-border-color,#151e27)
    }

.fc .fc-button .fc-icon {
    font-size: 1.5em
}

.fc .fc-button-group {
    position: relative;
    display: inline-flex
}

    .fc .fc-button-group > .fc-button {
        position: relative;
        flex: 1 1 auto
    }

        .fc .fc-button-group > .fc-button.fc-button-active, .fc .fc-button-group > .fc-button:active, .fc .fc-button-group > .fc-button:focus, .fc .fc-button-group > .fc-button:hover {
            z-index: 1
        }

.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
    margin-left: -1px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.fc .fc-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .fc .fc-toolbar.fc-header-toolbar {
        margin-bottom: 1.5em
    }

    .fc .fc-toolbar.fc-footer-toolbar {
        margin-top: 1.5em
    }

.fc .fc-toolbar-title {
    font-size: 1.75em;
    margin: 0
}

.fc-direction-ltr .fc-toolbar > * > :not(:first-child) {
    margin-right: .75em
}

.fc-direction-rtl .fc-toolbar > * > :not(:first-child) {
    margin-left: .75em
}

.fc-direction-rtl .fc-toolbar-ltr {
    flex-direction: row-reverse
}

.fc .fc-scroller {
    -webkit-overflow-scrolling: touch;
    position: relative
}

.fc .fc-scroller-liquid {
    height: 100%
}

.fc .fc-scroller-liquid-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.fc .fc-scroller-harness {
    position: relative;
    overflow: hidden;
    direction: rtl
}

.fc .fc-scroller-harness-liquid {
    height: 100%
}

.fc-direction-rtl .fc-scroller-harness > .fc-scroller {
    direction: ltr
}

.fc-theme-standard .fc-scrollgrid {
    border: 1px solid #ddd;
    border: 1px solid var(--fc-border-color,#ddd)
}

.fc .fc-scrollgrid, .fc .fc-scrollgrid-section-footer > *, .fc .fc-scrollgrid-section-header > * {
    border-bottom-width: 0
}

    .fc .fc-scrollgrid, .fc .fc-scrollgrid table {
        width: 100%;
        table-layout: fixed
    }

        .fc .fc-scrollgrid table {
            border-top-style: hidden;
            border-right-style: hidden;
            border-left-style: hidden
        }

.fc .fc-scrollgrid {
    border-collapse: separate;
    border-left-width: 0
}

.fc .fc-scrollgrid-liquid {
    height: 100%
}

.fc .fc-scrollgrid-section, .fc .fc-scrollgrid-section table, .fc .fc-scrollgrid-section > td {
    height: 1px
}

.fc .fc-scrollgrid-section-liquid > td {
    height: 100%
}

.fc .fc-scrollgrid-section > * {
    border-top-width: 0;
    border-right-width: 0
}

.fc .fc-scrollgrid-section-body table, .fc .fc-scrollgrid-section-footer table {
    border-bottom-style: hidden
}

.fc .fc-scrollgrid-section-sticky > * {
    background: var(--fc-page-bg-color,#fff);
    position: sticky;
    z-index: 3
}

.fc .fc-scrollgrid-section-header.fc-scrollgrid-section-sticky > * {
    top: 0
}

.fc .fc-scrollgrid-section-footer.fc-scrollgrid-section-sticky > * {
    bottom: 0
}

.fc .fc-scrollgrid-sticky-shim {
    height: 1px;
    margin-bottom: -1px
}

.fc-sticky {
    position: sticky
}

.fc .fc-view-harness {
    flex-grow: 1;
    position: relative
}

.fc .fc-bg-event, .fc .fc-highlight, .fc .fc-non-business, .fc .fc-view-harness-active > .fc-view {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

.fc .fc-col-header-cell-cushion {
    display: inline-block;
    padding: 2px 4px
}

.fc .fc-non-business {
    background: rgba(215,215,215,.3);
    background: var(--fc-non-business-color,rgba(215,215,215,.3))
}

.fc .fc-bg-event {
    background: var(--fc-bg-event-color,#8fdf82);
    opacity: .3;
    opacity: var(--fc-bg-event-opacity,.3)
}

    .fc .fc-bg-event .fc-event-title {
        margin: .5em;
        font-size: .85em;
        font-size: var(--fc-small-font-size,.85em);
        font-style: italic
    }

.fc .fc-highlight {
    background: rgba(188,232,241,.3);
    background: var(--fc-highlight-color,rgba(188,232,241,.3))
}

.fc .fc-cell-shaded, .fc .fc-day-disabled {
    background: rgba(208,208,208,.3);
    background: var(--fc-neutral-bg-color,rgba(208,208,208,.3))
}

.fc-event .fc-event-main {
    position: relative;
    z-index: 2
}

.fc-event-dragging:not(.fc-event-selected) {
    opacity: .75
}

.fc-event-dragging.fc-event-selected {
    box-shadow: 0 2px 7px rgba(0,0,0,.3)
}

.fc-event .fc-event-resizer {
    display: none;
    position: absolute;
    z-index: 4
}

.fc-event-selected .fc-event-resizer, .fc-event:hover .fc-event-resizer, .fc-h-event, .fc-v-event {
    display: block
}

.fc-event-selected .fc-event-resizer {
    border-radius: 4px;
    border-radius: calc(var(--fc-event-resizer-dot-total-width,8px)/ 2);
    border-width: 1px;
    border-width: var(--fc-event-resizer-dot-border-width,1px);
    width: 8px;
    width: var(--fc-event-resizer-dot-total-width,8px);
    height: 8px;
    height: var(--fc-event-resizer-dot-total-width,8px);
    border-style: solid;
    border-color: inherit;
    background: var(--fc-page-bg-color,#fff)
}

    .fc-event-selected .fc-event-resizer:before {
        content: "";
        position: absolute;
        top: -20px;
        right: -20px;
        left: -20px;
        bottom: -20px
    }

.fc-event-selected, .fc-event:focus {
    box-shadow: 0 2px 5px rgba(0,0,0,.2)
}

    .fc-event-selected:before, .fc-event:focus:before {
        content: "";
        position: absolute;
        z-index: 3;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0
    }

    .fc-event-selected:after, .fc-event:focus:after {
        content: "";
        background: rgba(0,0,0,.25);
        background: var(--fc-event-selected-overlay-color,rgba(0,0,0,.25));
        position: absolute;
        z-index: 1;
        top: -1px;
        right: -1px;
        left: -1px;
        bottom: -1px
    }

.fc-h-event {
    border: 1px solid #3788d8;
    border: 1px solid var(--fc-event-border-color,#3788d8);
    background-color: #3788d8;
    background-color: var(--fc-event-bg-color,#3788d8)
}

    .fc-h-event .fc-event-main {
        color: #fff;
        color: var(--fc-event-text-color,#fff)
    }

    .fc-h-event .fc-event-main-frame {
        display: flex
    }

    .fc-h-event .fc-event-time {
        max-width: 100%;
        overflow: hidden
    }

    .fc-h-event .fc-event-title-container {
        flex-grow: 1;
        flex-shrink: 1;
        min-width: 0
    }

    .fc-h-event .fc-event-title {
        display: inline-block;
        vertical-align: top;
        right: 0;
        left: 0;
        max-width: 100%;
        overflow: hidden
    }

    .fc-h-event.fc-event-selected:before {
        top: -10px;
        bottom: -10px
    }

.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-start), .fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-end) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right-width: 0
}

.fc-direction-ltr .fc-daygrid-block-event:not(.fc-event-end), .fc-direction-rtl .fc-daygrid-block-event:not(.fc-event-start) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left-width: 0
}

.fc-h-event:not(.fc-event-selected) .fc-event-resizer {
    top: 0;
    bottom: 0;
    width: 8px;
    width: var(--fc-event-resizer-thickness,8px)
}

.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start, .fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end {
    cursor: w-resize;
    right: -4px;
    right: calc(-.5 * var(--fc-event-resizer-thickness,8px))
}

.fc-direction-ltr .fc-h-event:not(.fc-event-selected) .fc-event-resizer-end, .fc-direction-rtl .fc-h-event:not(.fc-event-selected) .fc-event-resizer-start {
    cursor: e-resize;
    left: -4px;
    left: calc(-.5 * var(--fc-event-resizer-thickness,8px))
}

.fc-h-event.fc-event-selected .fc-event-resizer {
    top: 50%;
    margin-top: -4px;
    margin-top: calc(-.5 * var(--fc-event-resizer-dot-total-width,8px))
}

.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-start, .fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-end {
    right: -4px;
    right: calc(-.5 * var(--fc-event-resizer-dot-total-width,8px))
}

.fc-direction-ltr .fc-h-event.fc-event-selected .fc-event-resizer-end, .fc-direction-rtl .fc-h-event.fc-event-selected .fc-event-resizer-start {
    left: -4px;
    left: calc(-.5 * var(--fc-event-resizer-dot-total-width,8px))
}

.fc .fc-popover {
    position: absolute;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,.15)
}

.fc .fc-popover-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 3px 4px
}

.fc .fc-popover-title {
    margin: 0 2px
}

.fc .fc-popover-close {
    cursor: pointer;
    opacity: .65;
    font-size: 1.1em
}

.fc-theme-standard .fc-popover {
    border: 1px solid #ddd;
    border: 1px solid var(--fc-border-color,#ddd);
    background: var(--fc-page-bg-color,#fff)
}

.fc-theme-standard .fc-popover-header {
    background: rgba(208,208,208,.3);
    background: var(--fc-neutral-bg-color,rgba(208,208,208,.3))
}

:root {
    --fc-daygrid-event-dot-width: 8px;
    --fc-list-event-dot-width: 10px;
    --fc-list-event-hover-bg-color: #f5f5f5
}

.fc-daygrid-day-events:after, .fc-daygrid-day-events:before, .fc-daygrid-day-frame:after, .fc-daygrid-day-frame:before, .fc-daygrid-event-harness:after, .fc-daygrid-event-harness:before {
    content: "";
    clear: both;
    display: table
}

.fc .fc-daygrid-body {
    position: relative;
    z-index: 1
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: rgba(255,220,40,.15);
    background-color: var(--fc-today-bg-color,rgba(255,220,40,.15))
}

.fc .fc-daygrid-day-frame {
    position: relative;
    min-height: 100%
}

.fc .fc-daygrid-day-top {
    display: flex;
    flex-direction: row-reverse
}

.fc .fc-day-other .fc-daygrid-day-top {
    opacity: .3
}

.fc .fc-daygrid-day-number {
    position: relative;
    z-index: 4;
    padding: 4px
}

.fc .fc-daygrid-day-events {
    margin-top: 1px
}

.fc .fc-daygrid-body-balanced .fc-daygrid-day-events {
    position: absolute;
    right: 0;
    left: 0
}

.fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    position: relative;
    min-height: 2em
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
    margin-bottom: 1em
}

.fc .fc-daygrid-event-harness {
    position: relative
}

.fc .fc-daygrid-event-harness-abs {
    position: absolute;
    top: 0;
    right: 0;
    left: 0
}

.fc .fc-daygrid-bg-harness {
    position: absolute;
    top: 0;
    bottom: 0
}

.fc .fc-daygrid-day-bg .fc-non-business {
    z-index: 1
}

.fc .fc-daygrid-day-bg .fc-bg-event {
    z-index: 2
}

.fc .fc-daygrid-day-bg .fc-highlight {
    z-index: 3
}

.fc .fc-daygrid-event {
    z-index: 6;
    margin-top: 1px
}

    .fc .fc-daygrid-event.fc-event-mirror {
        z-index: 7
    }

.fc .fc-daygrid-day-bottom {
    font-size: .85em;
    padding: 2px 3px 0
}

    .fc .fc-daygrid-day-bottom:before {
        content: "";
        clear: both;
        display: table
    }

.fc .fc-daygrid-more-link {
    position: relative;
    z-index: 4;
    cursor: pointer
}

.fc .fc-daygrid-week-number {
    position: absolute;
    z-index: 5;
    top: 0;
    padding: 2px;
    min-width: 1.5em;
    text-align: center;
    background-color: rgba(208,208,208,.3);
    background-color: var(--fc-neutral-bg-color,rgba(208,208,208,.3));
    color: grey;
    color: var(--fc-neutral-text-color,grey)
}

.fc .fc-more-popover .fc-popover-body {
    min-width: 220px;
    padding: 10px
}

.fc-direction-ltr .fc-daygrid-event.fc-event-start, .fc-direction-rtl .fc-daygrid-event.fc-event-end {
    margin-right: 2px
}

.fc-direction-ltr .fc-daygrid-event.fc-event-end, .fc-direction-rtl .fc-daygrid-event.fc-event-start {
    margin-left: 2px
}

.fc-direction-ltr .fc-daygrid-week-number {
    right: 0;
    border-radius: 0 0 0 3px
}

.fc-direction-rtl .fc-daygrid-week-number {
    left: 0;
    border-radius: 0 0 3px 0
}

.fc-liquid-hack .fc-daygrid-day-frame {
    position: static
}

.fc-daygrid-event {
    position: relative;
    white-space: nowrap;
    border-radius: 3px;
    font-size: .85em;
    font-size: var(--fc-small-font-size,.85em)
}

.fc-daygrid-block-event .fc-event-time {
    font-weight: 700
}

.fc-daygrid-block-event .fc-event-time, .fc-daygrid-block-event .fc-event-title {
    padding: 1px
}

.fc-daygrid-dot-event {
    display: flex;
    align-items: center;
    padding: 2px 0
}

    .fc-daygrid-dot-event .fc-event-title {
        flex-grow: 1;
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        font-weight: 700
    }

    .fc-daygrid-dot-event.fc-event-mirror, .fc-daygrid-dot-event:hover {
        background: rgba(0,0,0,.1)
    }

    .fc-daygrid-dot-event.fc-event-selected:before {
        top: -10px;
        bottom: -10px
    }

.fc-daygrid-event-dot {
    margin: 0 4px;
    box-sizing: content-box;
    width: 0;
    height: 0;
    border: 4px solid #3788d8;
    border: calc(var(--fc-daygrid-event-dot-width,8px)/ 2) solid var(--fc-event-border-color,#3788d8);
    border-radius: 4px;
    border-radius: calc(var(--fc-daygrid-event-dot-width,8px)/ 2)
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    margin-left: 3px
}

.fc-direction-rtl .fc-daygrid-event .fc-event-time {
    margin-right: 3px
}

.fc-v-event {
    border: 1px solid #3788d8;
    border: 1px solid var(--fc-event-border-color,#3788d8);
    background-color: #3788d8;
    background-color: var(--fc-event-bg-color,#3788d8)
}

    .fc-v-event .fc-event-main {
        color: #fff;
        color: var(--fc-event-text-color,#fff);
        height: 100%
    }

    .fc-v-event .fc-event-main-frame {
        height: 100%;
        display: flex;
        flex-direction: column
    }

    .fc-v-event .fc-event-time {
        flex-grow: 0;
        flex-shrink: 0;
        max-height: 100%;
        overflow: hidden
    }

    .fc-v-event .fc-event-title-container {
        flex-grow: 1;
        flex-shrink: 1;
        min-height: 0
    }

    .fc-v-event .fc-event-title {
        top: 0;
        bottom: 0;
        max-height: 100%;
        overflow: hidden
    }

    .fc-v-event:not(.fc-event-start) {
        border-top-width: 0;
        border-top-right-radius: 0;
        border-top-left-radius: 0
    }

    .fc-v-event:not(.fc-event-end) {
        border-bottom-width: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0
    }

    .fc-v-event.fc-event-selected:before {
        right: -10px;
        left: -10px
    }

    .fc-v-event .fc-event-resizer-start {
        cursor: n-resize
    }

    .fc-v-event .fc-event-resizer-end {
        cursor: s-resize
    }

    .fc-v-event:not(.fc-event-selected) .fc-event-resizer {
        height: 8px;
        height: var(--fc-event-resizer-thickness,8px);
        right: 0;
        left: 0
    }

    .fc-v-event:not(.fc-event-selected) .fc-event-resizer-start {
        top: -4px;
        top: calc(var(--fc-event-resizer-thickness,8px)/ -2)
    }

    .fc-v-event:not(.fc-event-selected) .fc-event-resizer-end {
        bottom: -4px;
        bottom: calc(var(--fc-event-resizer-thickness,8px)/ -2)
    }

    .fc-v-event.fc-event-selected .fc-event-resizer {
        right: 50%;
        margin-right: -4px;
        margin-right: calc(var(--fc-event-resizer-dot-total-width,8px)/ -2)
    }

    .fc-v-event.fc-event-selected .fc-event-resizer-start {
        top: -4px;
        top: calc(var(--fc-event-resizer-dot-total-width,8px)/ -2)
    }

    .fc-v-event.fc-event-selected .fc-event-resizer-end {
        bottom: -4px;
        bottom: calc(var(--fc-event-resizer-dot-total-width,8px)/ -2)
    }

.fc .fc-timegrid .fc-daygrid-body {
    z-index: 2
}

.fc .fc-timegrid-axis-chunk > table, .fc .fc-timegrid-body, .fc .fc-timegrid-slots {
    position: relative;
    z-index: 1
}

.fc .fc-timegrid-divider {
    padding: 0 0 2px
}

.fc .fc-timegrid-body {
    min-height: 100%
}

.fc .fc-timegrid-axis-chunk {
    position: relative
}

.fc .fc-timegrid-slot {
    height: 1.5em;
    border-bottom: 0
}

    .fc .fc-timegrid-slot:empty:before {
        content: " "
    }

.fc .fc-timegrid-slot-minor {
    border-top-style: dotted
}

.fc .fc-timegrid-slot-label-cushion {
    display: inline-block;
    white-space: nowrap
}

.fc .fc-timegrid-axis-cushion, .fc .fc-timegrid-slot-label-cushion {
    padding: 0 4px
}

.fc .fc-timegrid-axis-frame-liquid {
    height: 100%
}

.fc .fc-timegrid-axis-frame {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.fc .fc-timegrid-axis-cushion {
    max-width: 60px;
    flex-shrink: 0
}

.fc-direction-ltr .fc-timegrid-slot-label-frame {
    text-align: left
}

.fc-direction-rtl .fc-timegrid-slot-label-frame {
    text-align: right
}

.fc-liquid-hack .fc-timegrid-axis-frame-liquid {
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.fc .fc-timegrid-col.fc-day-today {
    background-color: rgba(255,220,40,.15);
    background-color: var(--fc-today-bg-color,rgba(255,220,40,.15))
}

.fc .fc-timegrid-col-frame {
    min-height: 100%;
    position: relative
}

.fc-media-screen.fc-liquid-hack .fc-timegrid-col-frame {
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.fc-media-screen .fc-timegrid-cols {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}

    .fc-media-screen .fc-timegrid-cols > table {
        height: 100%
    }

.fc-media-screen .fc-timegrid-col-bg, .fc-media-screen .fc-timegrid-col-events, .fc-media-screen .fc-timegrid-now-indicator-container {
    position: absolute;
    top: 0;
    right: 0;
    left: 0
}

.fc .fc-timegrid-col-bg {
    z-index: 2
}

    .fc .fc-timegrid-col-bg .fc-non-business {
        z-index: 1
    }

    .fc .fc-timegrid-col-bg .fc-bg-event {
        z-index: 2
    }

    .fc .fc-timegrid-col-bg .fc-highlight, .fc .fc-timegrid-col-events {
        z-index: 3
    }

.fc .fc-timegrid-bg-harness {
    position: absolute;
    right: 0;
    left: 0
}

.fc .fc-timegrid-now-indicator-container {
    bottom: 0;
    overflow: hidden
}

.fc-direction-ltr .fc-timegrid-col-events {
    margin: 0 2px 0 2.5%
}

.fc-direction-rtl .fc-timegrid-col-events {
    margin: 0 2.5% 0 2px
}

.fc-timegrid-event-harness {
    position: absolute
}

    .fc-timegrid-event-harness > .fc-timegrid-event {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0
    }

.fc-timegrid-event-harness-inset .fc-timegrid-event, .fc-timegrid-event.fc-event-mirror, .fc-timegrid-more-link {
    box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px var(--fc-page-bg-color,#fff)
}

.fc-timegrid-event, .fc-timegrid-more-link {
    font-size: .85em;
    font-size: var(--fc-small-font-size,.85em);
    border-radius: 3px
}

.fc-timegrid-event {
    margin-bottom: 1px
}

    .fc-timegrid-event .fc-event-main {
        padding: 1px 1px 0
    }

    .fc-timegrid-event .fc-event-time {
        white-space: nowrap;
        font-size: .85em;
        font-size: var(--fc-small-font-size,.85em);
        margin-bottom: 1px
    }

.fc-timegrid-event-short .fc-event-main-frame {
    flex-direction: row;
    overflow: hidden
}

.fc-timegrid-event-short .fc-event-time:after {
    content: " - "
}

.fc-timegrid-event-short .fc-event-title {
    font-size: .85em;
    font-size: var(--fc-small-font-size,.85em)
}

.fc-timegrid-more-link {
    position: absolute;
    z-index: 9999;
    color: inherit;
    color: var(--fc-more-link-text-color,inherit);
    background: var(--fc-more-link-bg-color,#d0d0d0);
    cursor: pointer;
    margin-bottom: 1px
}

.fc-timegrid-more-link-inner {
    padding: 3px 2px;
    top: 0
}

.fc-direction-ltr .fc-timegrid-more-link {
    left: 0
}

.fc-direction-rtl .fc-timegrid-more-link {
    right: 0
}

.fc .fc-timegrid-now-indicator-line {
    position: absolute;
    z-index: 4;
    right: 0;
    left: 0;
    border-style: solid;
    border-color: red;
    border-color: var(--fc-now-indicator-color,red);
    border-width: 1px 0 0
}

.fc .fc-timegrid-now-indicator-arrow {
    position: absolute;
    z-index: 4;
    margin-top: -5px;
    border-style: solid;
    border-color: red;
    border-color: var(--fc-now-indicator-color,red)
}

.fc-direction-ltr .fc-timegrid-now-indicator-arrow {
    right: 0;
    border-width: 5px 6px 5px 0;
    border-top-color: transparent;
    border-bottom-color: transparent
}

.fc-direction-rtl .fc-timegrid-now-indicator-arrow {
    left: 0;
    border-width: 5px 0 5px 6px;
    border-top-color: transparent;
    border-bottom-color: transparent
}

.fc-theme-standard .fc-list {
    border: 1px solid #ddd;
    border: 1px solid var(--fc-border-color,#ddd)
}

.fc .fc-list-empty {
    background-color: rgba(208,208,208,.3);
    background-color: var(--fc-neutral-bg-color,rgba(208,208,208,.3));
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.fc .fc-list-empty-cushion {
    margin: 5em 0
}

.fc .fc-list-table {
    width: 100%;
    border-style: hidden
}

    .fc .fc-list-table tr > * {
        border-right: 0;
        border-left: 0
    }

.fc .fc-list-sticky .fc-list-day > * {
    position: sticky;
    top: 0;
    background: var(--fc-page-bg-color,#fff)
}

.fc .fc-list-table thead {
    position: absolute;
    right: -10000px
}

.fc .fc-list-table tbody > tr:first-child th {
    border-top: 0
}

.fc .fc-list-table th {
    padding: 0
}

.fc .fc-list-day-cushion, .fc .fc-list-table td {
    padding: 8px 14px
}

    .fc .fc-list-day-cushion:after {
        content: "";
        clear: both;
        display: table
    }

.fc-theme-standard .fc-list-day-cushion {
    background-color: rgba(208,208,208,.3);
    background-color: var(--fc-neutral-bg-color,rgba(208,208,208,.3))
}

.fc-direction-ltr .fc-list-day-text, .fc-direction-rtl .fc-list-day-side-text {
    float: right
}

.fc-direction-ltr .fc-list-day-side-text, .fc-direction-rtl .fc-list-day-text {
    float: left
}

.fc-direction-ltr .fc-list-table .fc-list-event-graphic {
    padding-left: 0
}

.fc-direction-rtl .fc-list-table .fc-list-event-graphic {
    padding-right: 0
}

.fc .fc-list-event.fc-event-forced-url {
    cursor: pointer
}

.fc .fc-list-event:hover td {
    background-color: #f5f5f5;
    background-color: var(--fc-list-event-hover-bg-color,#f5f5f5)
}

.fc .fc-list-event-graphic, .fc .fc-list-event-time {
    white-space: nowrap;
    width: 1px
}

.fc .fc-list-event-dot {
    display: inline-block;
    box-sizing: content-box;
    width: 0;
    height: 0;
    border: 5px solid #3788d8;
    border: calc(var(--fc-list-event-dot-width,10px)/ 2) solid var(--fc-event-border-color,#3788d8);
    border-radius: 5px;
    border-radius: calc(var(--fc-list-event-dot-width,10px)/ 2)
}

.fc .fc-list-event-title a {
    color: inherit
}

.fc .fc-list-event.fc-event-forced-url:hover a {
    text-decoration: underline
}

.fc-theme-bootstrap a:not([href]) {
    color: inherit
}

.fc-theme-bootstrap5 a:not([href]) {
    color: inherit;
    text-decoration: inherit
}

.fc-theme-bootstrap5 .fc-list, .fc-theme-bootstrap5 .fc-scrollgrid, .fc-theme-bootstrap5 td, .fc-theme-bootstrap5 th {
    border: 1px solid var(--bs-gray-400)
}

.fc-theme-bootstrap5 .fc-scrollgrid {
    border-left-width: 0;
    border-bottom-width: 0
}

.fc-theme-bootstrap5-shaded {
    background-color: var(--bs-gray-200)
}
/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden {
    display: none
}

.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none
}

.ui-helper-clearfix:after, .ui-helper-clearfix:before {
    content: "";
    display: table;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0)
}

.ui-front {
    z-index: 100
}

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none
}

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.ui-widget-icon-block {
    right: 50%;
    margin-right: -8px;
    display: block
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: .5em .7em .5em .5em;
    font-size: 100%
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto
}

.ui-autocomplete {
    position: absolute;
    top: 0;
    right: 0;
    cursor: default
}

.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: 0
}

    .ui-menu .ui-menu {
        position: absolute
    }

    .ui-menu .ui-menu-item {
        margin: 0;
        cursor: pointer;
        list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
    }

    .ui-menu .ui-menu-item-wrapper {
        position: relative;
        padding: 3px .4em 3px 1em
    }

    .ui-menu .ui-menu-divider {
        margin: 5px 0;
        height: 0;
        font-size: 0;
        line-height: 0;
        border-width: 1px 0 0 0
    }

    .ui-menu .ui-state-active, .ui-menu .ui-state-focus {
        margin: -1px
    }

.ui-menu-icons {
    position: relative
}

    .ui-menu-icons .ui-menu-item-wrapper {
        padding-right: 2em
    }

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    right: .2em;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    right: auto;
    left: 0
}

.ui-button {
    padding: .4em 1em;
    display: inline-block;
    position: relative;
    line-height: normal;
    margin-left: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: visible
}

    .ui-button, .ui-button:active, .ui-button:hover, .ui-button:link, .ui-button:visited {
        text-decoration: none
    }

.ui-button-icon-only {
    width: 2em;
    box-sizing: border-box;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -8px;
    margin-right: -8px
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: .4em 1em
}

button.ui-button::-moz-focus-inner, input.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.ui-controlgroup {
    vertical-align: middle;
    display: inline-block
}

    .ui-controlgroup > .ui-controlgroup-item {
        float: right;
        margin-right: 0;
        margin-left: 0
    }

        .ui-controlgroup > .ui-controlgroup-item.ui-visual-focus, .ui-controlgroup > .ui-controlgroup-item:focus {
            z-index: 9999
        }

.ui-controlgroup-vertical > .ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: right
}

.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

    .ui-controlgroup .ui-controlgroup-label span {
        font-size: 80%
    }

.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
    border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
    border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset -1px 1px 1px #ccc;
    border-radius: .12em;
    border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid
}

.ui-checkboxradio-disabled {
    pointer-events: none
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

    .ui-datepicker .ui-datepicker-header {
        position: relative;
        padding: .2em 0
    }

    .ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
        position: absolute;
        top: 2px;
        width: 1.8em;
        height: 1.8em
    }

    .ui-datepicker .ui-datepicker-next-hover, .ui-datepicker .ui-datepicker-prev-hover {
        top: 1px
    }

    .ui-datepicker .ui-datepicker-prev {
        right: 2px
    }

    .ui-datepicker .ui-datepicker-next {
        left: 2px
    }

    .ui-datepicker .ui-datepicker-prev-hover {
        right: 1px
    }

    .ui-datepicker .ui-datepicker-next-hover {
        left: 1px
    }

    .ui-datepicker .ui-datepicker-next span, .ui-datepicker .ui-datepicker-prev span {
        display: block;
        position: absolute;
        right: 50%;
        margin-right: -8px;
        top: 50%;
        margin-top: -8px
    }

    .ui-datepicker .ui-datepicker-title {
        margin: 0 2.3em;
        line-height: 1.8em;
        text-align: center
    }

        .ui-datepicker .ui-datepicker-title select {
            font-size: 1em;
            margin: 1px 0
        }

    .ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
        width: 45%
    }

    .ui-datepicker table {
        width: 100%;
        font-size: .9em;
        border-collapse: collapse;
        margin: 0 0 .4em
    }

    .ui-datepicker th {
        padding: .7em .3em;
        text-align: center;
        font-weight: 700;
        border: 0
    }

    .ui-datepicker td {
        border: 0;
        padding: 1px
    }

        .ui-datepicker td a, .ui-datepicker td span {
            display: block;
            padding: .2em;
            text-align: left;
            text-decoration: none
        }

    .ui-datepicker .ui-datepicker-buttonpane {
        background-image: none;
        margin: .7em 0 0 0;
        padding: 0 .2em;
        border-right: 0;
        border-left: 0;
        border-bottom: 0
    }

        .ui-datepicker .ui-datepicker-buttonpane button {
            float: left;
            margin: .5em .2em .4em;
            cursor: pointer;
            padding: .2em .6em .3em .6em;
            width: auto;
            overflow: visible
        }

            .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
                float: right
            }

    .ui-datepicker.ui-datepicker-multi {
        width: auto
    }

.ui-datepicker-multi .ui-datepicker-group {
    float: right
}

    .ui-datepicker-multi .ui-datepicker-group table {
        width: 95%;
        margin: 0 auto .4em
    }

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: ltr
}

    .ui-datepicker-rtl .ui-datepicker-prev {
        left: 2px;
        right: auto
    }

    .ui-datepicker-rtl .ui-datepicker-next {
        right: 2px;
        left: auto
    }

    .ui-datepicker-rtl .ui-datepicker-prev:hover {
        left: 1px;
        right: auto
    }

    .ui-datepicker-rtl .ui-datepicker-next:hover {
        right: 1px;
        left: auto
    }

    .ui-datepicker-rtl .ui-datepicker-buttonpane {
        clear: left
    }

        .ui-datepicker-rtl .ui-datepicker-buttonpane button {
            float: right
        }

            .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
                float: left
            }

    .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
        border-left-width: 0;
        border-right-width: 1px
    }

.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    right: .5em;
    top: .3em
}

.ui-dialog {
    position: absolute;
    top: 0;
    right: 0;
    padding: .2em;
    outline: 0
}

    .ui-dialog .ui-dialog-titlebar {
        padding: .4em 1em;
        position: relative
    }

    .ui-dialog .ui-dialog-title {
        float: right;
        margin: .1em 0;
        white-space: nowrap;
        width: 90%;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .ui-dialog .ui-dialog-titlebar-close {
        position: absolute;
        left: .3em;
        top: 50%;
        width: 20px;
        margin: -10px 0 0 0;
        padding: 1px;
        height: 20px
    }

    .ui-dialog .ui-dialog-content {
        position: relative;
        border: 0;
        padding: .5em 1em;
        background: 100% 0;
        overflow: auto
    }

    .ui-dialog .ui-dialog-buttonpane {
        text-align: right;
        border-width: 1px 0 0 0;
        background-image: none;
        margin-top: .5em;
        padding: .3em .4em .5em 1em
    }

        .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
            float: left
        }

        .ui-dialog .ui-dialog-buttonpane button {
            margin: .5em 0 .5em .4em;
            cursor: pointer
        }

    .ui-dialog .ui-resizable-n {
        height: 2px;
        top: 0
    }

    .ui-dialog .ui-resizable-e {
        width: 2px;
        left: 0
    }

    .ui-dialog .ui-resizable-s {
        height: 2px;
        bottom: 0
    }

    .ui-dialog .ui-resizable-w {
        width: 2px;
        right: 0
    }

    .ui-dialog .ui-resizable-ne, .ui-dialog .ui-resizable-nw, .ui-dialog .ui-resizable-se, .ui-dialog .ui-resizable-sw {
        width: 7px;
        height: 7px
    }

    .ui-dialog .ui-resizable-se {
        left: 0;
        bottom: 0
    }

    .ui-dialog .ui-resizable-sw {
        right: 0;
        bottom: 0
    }

    .ui-dialog .ui-resizable-ne {
        left: 0;
        top: 0
    }

    .ui-dialog .ui-resizable-nw {
        right: 0;
        top: 0
    }

.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-draggable-handle {
    touch-action: none
}

.ui-resizable {
    position: relative
}

.ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    display: block;
    touch-action: none
}

.ui-resizable-autohide .ui-resizable-handle, .ui-resizable-disabled .ui-resizable-handle {
    display: none
}

.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    right: 0
}

.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    right: 0
}

.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%
}

.ui-resizable-se {
    cursor: sw-resize;
    width: 12px;
    height: 12px;
    left: 1px;
    bottom: 1px
}

.ui-resizable-sw {
    cursor: se-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    bottom: -5px
}

.ui-resizable-nw {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px
}

.ui-resizable-ne {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px
}

.ui-progressbar {
    height: 2em;
    text-align: right;
    overflow: hidden
}

    .ui-progressbar .ui-progressbar-value {
        margin: -1px;
        height: 100%
    }

    .ui-progressbar .ui-progressbar-overlay {
        background: url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);
        height: 100%;
        opacity: .25
    }

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectable {
    touch-action: none
}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted #000
}

.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    display: none
}

    .ui-selectmenu-menu .ui-menu {
        overflow: auto;
        overflow-x: hidden;
        padding-bottom: 1px
    }

        .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
            font-size: 1em;
            font-weight: 700;
            line-height: 1.5;
            padding: 2px .4em;
            margin: .5em 0 0 0;
            height: auto;
            border: 0
        }

.ui-selectmenu-open {
    display: block
}

.ui-selectmenu-text {
    display: block;
    margin-left: 20px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: right;
    white-space: nowrap;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: left;
    margin-top: 0
}

.ui-slider {
    position: relative;
    text-align: right
}

    .ui-slider .ui-slider-handle {
        position: absolute;
        z-index: 2;
        width: 1.2em;
        height: 1.2em;
        cursor: default;
        touch-action: none
    }

    .ui-slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        font-size: .7em;
        display: block;
        border: 0;
        background-position: 100% 0
    }

    .ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
        filter: inherit
    }

.ui-slider-horizontal {
    height: .8em
}

    .ui-slider-horizontal .ui-slider-handle {
        top: -.3em;
        margin-right: -.6em
    }

    .ui-slider-horizontal .ui-slider-range {
        top: 0;
        height: 100%
    }

    .ui-slider-horizontal .ui-slider-range-min {
        right: 0
    }

    .ui-slider-horizontal .ui-slider-range-max {
        left: 0
    }

.ui-slider-vertical {
    width: .8em;
    height: 100px
}

    .ui-slider-vertical .ui-slider-handle {
        right: -.3em;
        margin-right: 0;
        margin-bottom: -.6em
    }

    .ui-slider-vertical .ui-slider-range {
        right: 0;
        width: 100%
    }

    .ui-slider-vertical .ui-slider-range-min {
        bottom: 0
    }

    .ui-slider-vertical .ui-slider-range-max {
        top: 0
    }

.ui-sortable-handle {
    touch-action: none
}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle
}

.ui-spinner-input {
    border: none;
    background: 100% 0;
    color: inherit;
    padding: .222em 0;
    margin: .2em 0;
    vertical-align: middle;
    margin-right: .4em;
    margin-left: 2em
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    left: 0
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-left-style: none
}

.ui-spinner-up {
    top: 0
}

.ui-spinner-down {
    bottom: 0
}

.ui-tabs {
    position: relative;
    padding: .2em
}

    .ui-tabs .ui-tabs-nav {
        margin: 0;
        padding: .2em .2em 0
    }

        .ui-tabs .ui-tabs-nav li {
            list-style: none;
            float: right;
            position: relative;
            top: 0;
            margin: 1px 0 0 .2em;
            border-bottom-width: 0;
            padding: 0;
            white-space: nowrap
        }

        .ui-tabs .ui-tabs-nav .ui-tabs-anchor {
            float: right;
            padding: .5em 1em;
            text-decoration: none
        }

        .ui-tabs .ui-tabs-nav li.ui-tabs-active {
            margin-bottom: -1px;
            padding-bottom: 1px
        }

            .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
                cursor: text
            }

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer
}

.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: 100% 0
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget {
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em
}

    .ui-widget .ui-widget {
        font-size: 1em
    }

    .ui-widget button, .ui-widget input, .ui-widget select, .ui-widget textarea {
        font-family: Arial,Helvetica,sans-serif;
        font-size: 1em
    }

    .ui-widget.ui-widget-content {
        border: 1px solid #c5c5c5
    }

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333
}

    .ui-widget-content a {
        color: #333
    }

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    color: #333;
    font-weight: 700
}

    .ui-widget-header a {
        color: #333
    }

    .ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
        border: 1px solid #c5c5c5;
        background: #f6f6f6;
        font-weight: 400;
        color: #454545
    }

        .ui-button, .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button {
            color: #454545;
            text-decoration: none
        }

            .ui-button:focus, .ui-button:hover, .ui-state-focus, .ui-state-hover, .ui-widget-content .ui-state-focus, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-focus, .ui-widget-header .ui-state-hover {
                border: 1px solid #ccc;
                background: #ededed;
                font-weight: 400;
                color: #2b2b2b
            }

                .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited, .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, a.ui-button:focus, a.ui-button:hover {
                    color: #2b2b2b;
                    text-decoration: none
                }

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-button.ui-state-active:hover, .ui-button:active, .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: 400;
    color: #fff
}

    .ui-icon-background, .ui-state-active .ui-icon-background {
        border: #003eff;
        background-color: #fff
    }

    .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
        color: #fff;
        text-decoration: none
    }

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f
}

    .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
        color: #5f3f3f
    }

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
    color: #5f3f3f
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
    font-weight: 700
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: 400
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
    opacity: .35;
    filter: Alpha(Opacity=35);
    background-image: none
}

    .ui-state-disabled .ui-icon {
        filter: Alpha(Opacity=35)
    }

.ui-icon {
    width: 16px;
    height: 16px
}

.ui-icon, .ui-widget-content .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.html)
}

.ui-widget-header .ui-icon {
    background-image: url(images/ui-icons_444444_256x240.html)
}

.ui-button:focus .ui-icon, .ui-button:hover .ui-icon, .ui-state-focus .ui-icon, .ui-state-hover .ui-icon {
    background-image: url(images/ui-icons_555555_256x240.html)
}

.ui-button:active .ui-icon, .ui-state-active .ui-icon {
    background-image: url(images/ui-icons_ffffff_256x240.html)
}

.ui-button .ui-state-highlight.ui-icon, .ui-state-highlight .ui-icon {
    background-image: url(images/ui-icons_777620_256x240.html)
}

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
    background-image: url(images/ui-icons_cc0000_256x240.html)
}

.ui-button .ui-icon {
    background-image: url(images/ui-icons_777777_256x240.html)
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-n {
    background-position: 100% 0
}

.ui-icon-caret-1-ne {
    background-position: -16px 0
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-caret-1-se {
    background-position: -48px 0
}

.ui-icon-caret-1-s {
    background-position: -65px 0
}

.ui-icon-caret-1-sw {
    background-position: -80px 0
}

.ui-icon-caret-1-w {
    background-position: -96px 0
}

.ui-icon-caret-1-nw {
    background-position: -112px 0
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0
}

.ui-icon-triangle-1-n {
    background-position: 100% -16px
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px
}

.ui-icon-arrow-1-n {
    background-position: 100% -32px
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 100% -64px
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px
}

.ui-icon-arrow-4 {
    background-position: 100% -80px
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px
}

.ui-icon-extlink {
    background-position: -32px -80px
}

.ui-icon-newwin {
    background-position: -48px -80px
}

.ui-icon-refresh {
    background-position: -64px -80px
}

.ui-icon-shuffle {
    background-position: -80px -80px
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px
}

.ui-icon-folder-collapsed {
    background-position: 100% -96px
}

.ui-icon-folder-open {
    background-position: -16px -96px
}

.ui-icon-document {
    background-position: -32px -96px
}

.ui-icon-document-b {
    background-position: -48px -96px
}

.ui-icon-note {
    background-position: -64px -96px
}

.ui-icon-mail-closed {
    background-position: -80px -96px
}

.ui-icon-mail-open {
    background-position: -96px -96px
}

.ui-icon-suitcase {
    background-position: -112px -96px
}

.ui-icon-comment {
    background-position: -128px -96px
}

.ui-icon-person {
    background-position: -144px -96px
}

.ui-icon-print {
    background-position: -160px -96px
}

.ui-icon-trash {
    background-position: -176px -96px
}

.ui-icon-locked {
    background-position: -192px -96px
}

.ui-icon-unlocked {
    background-position: -208px -96px
}

.ui-icon-bookmark {
    background-position: -224px -96px
}

.ui-icon-tag {
    background-position: -240px -96px
}

.ui-icon-home {
    background-position: 100% -112px
}

.ui-icon-flag {
    background-position: -16px -112px
}

.ui-icon-calendar {
    background-position: -32px -112px
}

.ui-icon-cart {
    background-position: -48px -112px
}

.ui-icon-pencil {
    background-position: -64px -112px
}

.ui-icon-clock {
    background-position: -80px -112px
}

.ui-icon-disk {
    background-position: -96px -112px
}

.ui-icon-calculator {
    background-position: -112px -112px
}

.ui-icon-zoomin {
    background-position: -128px -112px
}

.ui-icon-zoomout {
    background-position: -144px -112px
}

.ui-icon-search {
    background-position: -160px -112px
}

.ui-icon-wrench {
    background-position: -176px -112px
}

.ui-icon-gear {
    background-position: -192px -112px
}

.ui-icon-heart {
    background-position: -208px -112px
}

.ui-icon-star {
    background-position: -224px -112px
}

.ui-icon-link {
    background-position: -240px -112px
}

.ui-icon-cancel {
    background-position: 100% -128px
}

.ui-icon-plus {
    background-position: -16px -128px
}

.ui-icon-plusthick {
    background-position: -32px -128px
}

.ui-icon-minus {
    background-position: -48px -128px
}

.ui-icon-minusthick {
    background-position: -64px -128px
}

.ui-icon-close {
    background-position: -80px -128px
}

.ui-icon-closethick {
    background-position: -96px -128px
}

.ui-icon-key {
    background-position: -112px -128px
}

.ui-icon-lightbulb {
    background-position: -128px -128px
}

.ui-icon-scissors {
    background-position: -144px -128px
}

.ui-icon-clipboard {
    background-position: -160px -128px
}

.ui-icon-copy {
    background-position: -176px -128px
}

.ui-icon-contact {
    background-position: -192px -128px
}

.ui-icon-image {
    background-position: -208px -128px
}

.ui-icon-video {
    background-position: -224px -128px
}

.ui-icon-script {
    background-position: -240px -128px
}

.ui-icon-alert {
    background-position: 100% -144px
}

.ui-icon-info {
    background-position: -16px -144px
}

.ui-icon-notice {
    background-position: -32px -144px
}

.ui-icon-help {
    background-position: -48px -144px
}

.ui-icon-check {
    background-position: -64px -144px
}

.ui-icon-bullet {
    background-position: -80px -144px
}

.ui-icon-radio-on {
    background-position: -96px -144px
}

.ui-icon-radio-off {
    background-position: -112px -144px
}

.ui-icon-pin-w {
    background-position: -128px -144px
}

.ui-icon-pin-s {
    background-position: -144px -144px
}

.ui-icon-play {
    background-position: 100% -160px
}

.ui-icon-pause {
    background-position: -16px -160px
}

.ui-icon-seek-next {
    background-position: -32px -160px
}

.ui-icon-seek-prev {
    background-position: -48px -160px
}

.ui-icon-seek-end {
    background-position: -64px -160px
}

.ui-icon-seek-start {
    background-position: -80px -160px
}

.ui-icon-seek-first {
    background-position: -80px -160px
}

.ui-icon-stop {
    background-position: -96px -160px
}

.ui-icon-eject {
    background-position: -112px -160px
}

.ui-icon-volume-off {
    background-position: -128px -160px
}

.ui-icon-volume-on {
    background-position: -144px -160px
}

.ui-icon-power {
    background-position: 100% -176px
}

.ui-icon-signal-diag {
    background-position: -16px -176px
}

.ui-icon-signal {
    background-position: -32px -176px
}

.ui-icon-battery-0 {
    background-position: -48px -176px
}

.ui-icon-battery-1 {
    background-position: -64px -176px
}

.ui-icon-battery-2 {
    background-position: -80px -176px
}

.ui-icon-battery-3 {
    background-position: -96px -176px
}

.ui-icon-circle-plus {
    background-position: 100% -192px
}

.ui-icon-circle-minus {
    background-position: -16px -192px
}

.ui-icon-circle-close {
    background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px
}

.ui-icon-circle-check {
    background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
    background-position: 100% -208px
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
    background-position: 100% -224px
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px
}

.ui-corner-all, .ui-corner-left, .ui-corner-tl, .ui-corner-top {
    border-top-right-radius: 3px
}

.ui-corner-all, .ui-corner-right, .ui-corner-top, .ui-corner-tr {
    border-top-left-radius: 3px
}

.ui-corner-all, .ui-corner-bl, .ui-corner-bottom, .ui-corner-left {
    border-bottom-right-radius: 3px
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right {
    border-bottom-left-radius: 3px
}

.ui-widget-overlay {
    background: #aaa;
    opacity: .003;
    filter: Alpha(Opacity=.3)
}

.ui-widget-shadow {
    box-shadow: 0 0 5px #666
}

.lb-loader, .lightbox {
    text-align: center;
    line-height: 0
}

body.lb-disable-scrolling {
    overflow: hidden
}

.lightboxOverlay {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    background-color: #000;
    opacity: .8;
    display: none
}

.lightbox {
    position: absolute;
    right: 0;
    width: 100%;
    z-index: 10000;
    font-weight: 400;
    outline: 0
}

    .lightbox .lb-image {
        display: block;
        height: auto;
        max-width: inherit;
        max-height: none;
        border-radius: 3px;
        border: 4px solid #fff
    }

    .lightbox a img {
        border: none
    }

.lb-outerContainer {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff
}

.lb-loader, .lb-nav {
    position: absolute;
    right: 0
}

.lb-outerContainer:after {
    content: "";
    display: table;
    clear: both
}

.lb-loader {
    top: 43%;
    height: 25%;
    width: 100%
}

.lb-cancel {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto;
    background: url(/images/loading.gif) no-repeat
}

.lb-nav {
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 10
}

.lb-container > .nav {
    right: 0
}

.lb-nav a {
    outline: 0;
    background-image: url(data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)
}

.lb-next, .lb-prev {
    height: 100%;
    cursor: pointer;
    display: block
}

.lb-nav a.lb-prev {
    width: 34%;
    right: 0;
    float: right;
    background: url(/images/prev.webp) right 48% no-repeat;
    opacity: 0;
    transition: opacity .6s
}

    .lb-nav a.lb-prev:hover {
        opacity: 1
    }

.lb-nav a.lb-next {
    width: 64%;
    left: 0;
    float: left;
    background: url(/images/next.webp) left 48% no-repeat;
    opacity: 0;
    transition: opacity .6s
}

    .lb-nav a.lb-next:hover {
        opacity: 1
    }

.lb-dataContainer {
    margin: 0 auto;
    padding-top: 5px;
    width: 100%;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

    .lb-dataContainer:after {
        content: "";
        display: table;
        clear: both
    }

.lb-data {
    padding: 0 4px;
    color: #ccc
}

    .lb-data .lb-details {
        width: 85%;
        float: right;
        text-align: right;
        line-height: 1.1em
    }

    .lb-data .lb-caption {
        font-size: 13px;
        font-weight: 700;
        line-height: 1em
    }

        .lb-data .lb-caption a {
            color: #4ae
        }

    .lb-data .lb-number {
        display: block;
        clear: right;
        padding-bottom: 1em;
        font-size: 12px;
        color: #999
    }

    .lb-data .lb-close {
        display: block;
        float: left;
        width: 30px;
        height: 30px;
        background: url(/images/close.webp) top left no-repeat;
        text-align: left;
        outline: 0;
        opacity: .7;
        transition: opacity .2s
    }

        .lb-data .lb-close:hover {
            cursor: pointer;
            opacity: 1
        }

@font-face {
    font-family: lg;
    src: url(../fonts/lg.woff2?io9a6k) format("woff2"),url(../fonts/lg.ttf?io9a6k) format("truetype"),url(../fonts/lg.woff?io9a6k) format("woff"),url(../fonts/lg.svg?io9a6k#lg) format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: block
}

.lg-icon {
    font-family: lg !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.lg-container {
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"
}

.lg-next, .lg-prev {
    background-color: rgba(0,0,0,.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1084;
    outline: 0;
    border: none
}

    .lg-next.disabled, .lg-prev.disabled {
        opacity: 0 !important;
        cursor: default
    }

    .lg-next:hover:not(.disabled), .lg-prev:hover:not(.disabled) {
        color: #fff
    }

.lg-single-item .lg-next, .lg-single-item .lg-prev {
    display: none
}

.lg-next {
    left: 20px
}

    .lg-next:before {
        content: "\e095"
    }

.lg-prev {
    right: 20px
}

    .lg-prev:after {
        content: "\e094"
    }

@keyframes lg-right-end {
    0% {
        right: 0
    }

    50% {
        right: -30px
    }

    100% {
        right: 0
    }
}

@keyframes lg-left-end {
    0% {
        right: 0
    }

    50% {
        right: 30px
    }

    100% {
        right: 0
    }
}

.lg-outer.lg-right-end .lg-object {
    animation: lg-right-end .3s;
    position: relative
}

.lg-outer.lg-left-end .lg-object {
    animation: lg-left-end .3s;
    position: relative
}

.lg-toolbar {
    z-index: 1082;
    right: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.lg-media-overlap .lg-toolbar {
    background-image: linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))
}

.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: left;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: medium none;
    will-change: color;
    transition: color .2s linear;
    background: 100% 0;
    border: none;
    box-shadow: none
}

    .lg-toolbar .lg-icon.lg-icon-18 {
        font-size: 18px
    }

    .lg-toolbar .lg-icon:hover {
        color: #fff
    }

.lg-toolbar .lg-close:after {
    content: "\e070"
}

.lg-toolbar .lg-maximize {
    font-size: 22px
}

    .lg-toolbar .lg-maximize:after {
        content: "\e90a"
    }

.lg-toolbar .lg-download:after {
    content: "\e0f2"
}

.lg-sub-html {
    color: #eee;
    font-size: 16px;
    padding: 10px 40px;
    text-align: center;
    z-index: 1080;
    opacity: 0;
    transition: opacity .2s ease-out 0s
}

    .lg-sub-html h4 {
        margin: 0;
        font-size: 13px;
        font-weight: 700
    }

    .lg-sub-html p {
        font-size: 12px;
        margin: 5px 0 0
    }

    .lg-sub-html a {
        color: inherit
    }

        .lg-sub-html a:hover {
            text-decoration: underline
        }

.lg-media-overlap .lg-sub-html {
    background-image: linear-gradient(-180deg,rgba(0,0,0,0),rgba(0,0,0,.6))
}

.lg-item .lg-sub-html {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}

.lg-error-msg {
    font-size: 14px;
    color: #999
}

.lg-counter {
    color: #999;
    display: inline-block;
    font-size: 16px;
    padding-right: 20px;
    padding-top: 12px;
    height: 47px;
    vertical-align: middle
}

.lg-closing .lg-next, .lg-closing .lg-prev, .lg-closing .lg-sub-html, .lg-closing .lg-toolbar {
    opacity: 0;
    transition: transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap, body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont {
    opacity: 0;
    transform: scale3d(.5,.5,.5);
    will-change: transform,opacity;
    transition: transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1) !important
}

body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap, body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont {
    opacity: 1;
    transform: scale3d(1,1,1)
}

.lg-icon:focus-visible {
    color: #fff;
    border-radius: 3px;
    outline: 1px dashed rgba(255,255,255,.6)
}

.lg-toolbar .lg-icon:focus-visible {
    border-radius: 8px;
    outline-offset: -5px
}

.lg-outer .lg-thumb-outer {
    background-color: #0d0a0a;
    width: 100%;
    max-height: 350px;
    overflow: hidden;
    float: right
}

    .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
        cursor: -o-grab;
        cursor: -ms-grab;
        cursor: grab
    }

    .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
        cursor: move;
        cursor: -o-grabbing;
        cursor: -ms-grabbing;
        cursor: grabbing
    }

    .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
        transition-duration: 0s !important
    }

    .lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
        transition-duration: 0s !important
    }

    .lg-outer .lg-thumb-outer.lg-thumb-align-middle {
        text-align: center
    }

    .lg-outer .lg-thumb-outer.lg-thumb-align-left {
        text-align: right
    }

    .lg-outer .lg-thumb-outer.lg-thumb-align-right {
        text-align: left
    }

.lg-outer.lg-single-item .lg-thumb-outer {
    display: none
}

.lg-outer .lg-thumb {
    padding: 5px 0;
    height: 100%;
    margin-bottom: -5px;
    display: inline-block;
    vertical-align: middle
}

@media (min-width:768px) {
    .lg-outer .lg-thumb {
        padding: 10px 0
    }
}

.lg-outer .lg-thumb-item {
    cursor: pointer;
    float: right;
    overflow: hidden;
    height: 100%;
    border-radius: 2px;
    margin-bottom: 5px;
    will-change: border-color
}

@media (min-width:768px) {
    .lg-outer .lg-thumb-item {
        border-radius: 4px;
        border: 2px solid #fff;
        transition: border-color .25s ease
    }
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: #a90707
}

.lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.lg-outer.lg-can-toggle .lg-item {
    padding-bottom: 0
}

.lg-outer .lg-toggle-thumb:after {
    content: "\e1ff"
}

.lg-outer.lg-animate-thumb .lg-thumb {
    transition-timing-function: cubic-bezier(.215,.61,.355,1)
}

.lg-outer .lg-video-cont {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    position: relative
}

    .lg-outer .lg-video-cont .lg-object {
        width: 100% !important;
        height: 100% !important
    }

.lg-outer .lg-has-iframe .lg-video-cont {
    -webkit-overflow-scrolling: touch;
    overflow: auto
}

.lg-outer .lg-video-object {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    z-index: 3
}

.lg-outer .lg-video-poster {
    z-index: 1
}

.lg-outer .lg-has-video .lg-video-object {
    opacity: 0;
    will-change: opacity;
    transition: opacity .3s ease-in
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-play-button, .lg-outer .lg-has-video.lg-video-loaded .lg-video-poster {
    opacity: 0 !important
}

.lg-outer .lg-has-video.lg-video-loaded .lg-video-object {
    opacity: 1
}

@keyframes lg-play-stroke {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

@keyframes lg-play-rotate {
    100% {
        transform: rotate(-360deg)
    }
}

.lg-video-play-button {
    width: 18%;
    max-width: 140px;
    position: absolute;
    top: 50%;
    right: 50%;
    z-index: 2;
    cursor: pointer;
    transform: translate(50%,-50%) scale(1);
    will-change: opacity,transform;
    transition: transform .25s cubic-bezier(.17,.88,.32,1.28),opacity .1s
}

    .lg-video-play-button:hover .lg-video-play-icon, .lg-video-play-button:hover .lg-video-play-icon-bg {
        opacity: 1
    }

.lg-video-play-icon-bg {
    fill: none;
    stroke-width: 3%;
    stroke: #fcfcfc;
    opacity: .6;
    will-change: opacity;
    transition: opacity .12s ease-in
}

.lg-video-play-icon-circle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    fill: none;
    stroke-width: 3%;
    stroke: rgba(30,30,30,.9);
    stroke-opacity: 1;
    stroke-linecap: round;
    stroke-dasharray: 200;
    stroke-dashoffset: 200
}

.lg-video-play-icon {
    position: absolute;
    width: 25%;
    max-width: 120px;
    right: 50%;
    top: 50%;
    transform: translate3d(50%,-50%,0);
    opacity: .6;
    will-change: opacity;
    transition: opacity .12s ease-in
}

    .lg-video-play-icon .lg-video-play-icon-inner {
        fill: #fcfcfc
    }

.lg-video-loading .lg-video-play-icon-circle {
    animation: lg-play-rotate 2s linear .25s infinite,lg-play-stroke 1.5s ease-in-out .25s infinite
}

.lg-video-loaded .lg-video-play-button {
    opacity: 0;
    transform: translate(50%,-50%) scale(.7)
}

.lg-progress-bar {
    background-color: #333;
    height: 5px;
    right: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1083;
    opacity: 0;
    will-change: opacity;
    transition: opacity 80ms ease 0s
}

    .lg-progress-bar .lg-progress {
        background-color: #a90707;
        height: 5px;
        width: 0
    }

    .lg-progress-bar.lg-start .lg-progress {
        width: 100%
    }

.lg-show-autoplay .lg-progress-bar {
    opacity: 1
}

.lg-autoplay-button:after {
    content: "\e01d"
}

.lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a"
}

.lg-single-item .lg-autoplay-button {
    opacity: .75;
    pointer-events: none
}

.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    transition-duration: 0s !important
}

.lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    will-change: transform;
    transition: transform .5s cubic-bezier(.12,.415,.01,1.19) 0s
}

.lg-outer.lg-use-transition-for-zoom.lg-zoom-drag-transition .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    will-change: transform;
    transition: transform .8s cubic-bezier(0,0,.25,1) 0s
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    transform: translate3d(0,0,0);
    backface-visibility: hidden
}

.lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    transform: scale3d(1,1,1);
    transition: transform .5s cubic-bezier(.12,.415,.01,1.19) 0s,opacity .15s !important;
    backface-visibility: hidden
}

    .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.no-transition, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.no-transition {
        transition: none !important
    }

    .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition {
        transform: scale3d(1,1,1) translate3d(50%,-50%,0) !important;
        max-width: none !important;
        max-height: none !important;
        top: 50% !important;
        right: 50% !important
    }

    .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-x, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-x {
        transform: scale3d(1,1,1) translate3d(50%,0,0) !important;
        top: 0 !important;
        right: 50% !important;
        max-width: none !important;
        max-height: none !important
    }

    .lg-outer .lg-item.lg-complete.lg-zoomable .lg-dummy-img.reset-transition-y, .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image.reset-transition-y {
        transform: scale3d(1,1,1) translate3d(0,-50%,0) !important;
        top: 50% !important;
        right: 0 !important;
        max-width: none !important;
        max-height: none !important
    }

.lg-icon.lg-zoom-in:after {
    content: "\e311"
}

.lg-actual-size .lg-icon.lg-zoom-in {
    opacity: .5;
    pointer-events: none
}

.lg-icon.lg-actual-size {
    font-size: 20px
}

    .lg-icon.lg-actual-size:after {
        content: "\e033"
    }

.lg-icon.lg-zoom-out {
    opacity: .5;
    pointer-events: none
}

    .lg-icon.lg-zoom-out:after {
        content: "\e312"
    }

.lg-zoomed .lg-icon.lg-zoom-out {
    opacity: 1;
    pointer-events: auto
}

.lg-outer.lg-first-slide-loading .lg-actual-size, .lg-outer.lg-first-slide-loading .lg-zoom-in, .lg-outer.lg-first-slide-loading .lg-zoom-out, .lg-outer[data-lg-slide-type=iframe] .lg-actual-size, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-in, .lg-outer[data-lg-slide-type=iframe] .lg-zoom-out, .lg-outer[data-lg-slide-type=video] .lg-actual-size, .lg-outer[data-lg-slide-type=video] .lg-zoom-in, .lg-outer[data-lg-slide-type=video] .lg-zoom-out {
    opacity: .75;
    pointer-events: none
}

.lg-outer .lg-pager-outer {
    text-align: center;
    z-index: 1080;
    height: 10px;
    margin-bottom: 10px
}

    .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
        overflow: visible
    }

.lg-outer.lg-single-item .lg-pager-outer {
    display: none
}

.lg-outer .lg-pager-cont {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    margin: 0 5px
}

    .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
        opacity: 1;
        transform: translate3d(0,0,0)
    }

    .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
        box-shadow: 0 0 0 2px #fff inset
    }

.lg-outer .lg-pager-thumb-cont {
    background-color: #fff;
    color: #fff;
    bottom: 100%;
    height: 83px;
    right: 0;
    margin-bottom: 20px;
    margin-right: -60px;
    opacity: 0;
    padding: 5px;
    position: absolute;
    width: 120px;
    border-radius: 3px;
    will-change: transform,opacity;
    transition: opacity .15s ease 0s,transform .15s ease 0s;
    transform: translate3d(0,5px,0)
}

    .lg-outer .lg-pager-thumb-cont img {
        width: 100%;
        height: 100%
    }

.lg-outer .lg-pager {
    background-color: rgba(255,255,255,.5);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255,255,255,.7) inset;
    display: block;
    height: 12px;
    transition: box-shadow .3s ease 0s;
    width: 12px
}

    .lg-outer .lg-pager:focus, .lg-outer .lg-pager:hover {
        box-shadow: 0 0 0 8px #fff inset
    }

.lg-outer .lg-caret {
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px dashed;
    bottom: -10px;
    display: inline-block;
    height: 0;
    right: 50%;
    margin-right: -5px;
    position: absolute;
    vertical-align: middle;
    width: 0
}

.lg-fullscreen:after {
    content: "\e20c"
}

.lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d"
}

.lg-outer .lg-dropdown-overlay {
    background-color: rgba(0,0,0,.25);
    bottom: 0;
    cursor: default;
    right: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1081;
    opacity: 0;
    visibility: hidden;
    will-change: visibility,opacity;
    transition: visibility 0s linear .18s,opacity .18s linear 0s
}

.lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active .lg-dropdown-overlay {
    transition-delay: 0s;
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible
}

.lg-outer.lg-dropdown-active .lg-share {
    color: #fff
}

.lg-outer .lg-dropdown {
    background-color: #fff;
    border-radius: 2px;
    font-size: 14px;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    left: 0;
    text-align: right;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,5px,0);
    will-change: visibility,opacity,transform;
    transition: transform .18s linear 0s,visibility 0s linear .5s,opacity .18s linear 0s
}

    .lg-outer .lg-dropdown:after {
        content: "";
        display: block;
        height: 0;
        width: 0;
        position: absolute;
        border: 8px solid transparent;
        border-bottom-color: #fff;
        left: 16px;
        top: -16px
    }

    .lg-outer .lg-dropdown > li:last-child {
        margin-bottom: 0
    }

    .lg-outer .lg-dropdown > li:hover a {
        color: #333
    }

    .lg-outer .lg-dropdown a {
        color: #333;
        display: block;
        white-space: pre;
        padding: 4px 12px;
        font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 12px
    }

        .lg-outer .lg-dropdown a:hover {
            background-color: rgba(0,0,0,.07)
        }

    .lg-outer .lg-dropdown .lg-dropdown-text {
        display: inline-block;
        line-height: 1;
        margin-top: -3px;
        vertical-align: middle
    }

    .lg-outer .lg-dropdown .lg-icon {
        color: #333;
        display: inline-block;
        float: none;
        font-size: 20px;
        height: auto;
        line-height: 1;
        margin-left: 8px;
        padding: 0;
        vertical-align: middle;
        width: auto
    }

.lg-outer .lg-share {
    position: relative
}

    .lg-outer .lg-share:after {
        content: "\e80d"
    }

.lg-outer .lg-share-facebook .lg-icon {
    color: #3b5998
}

    .lg-outer .lg-share-facebook .lg-icon:after {
        content: "\e904"
    }

.lg-outer .lg-share-twitter .lg-icon {
    color: #00aced
}

    .lg-outer .lg-share-twitter .lg-icon:after {
        content: "\e907"
    }

.lg-outer .lg-share-pinterest .lg-icon {
    color: #cb2027
}

    .lg-outer .lg-share-pinterest .lg-icon:after {
        content: "\e906"
    }

.lg-comment-box {
    width: 420px;
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background-color: #fff;
    will-change: transform;
    transform: translate3d(-100%,0,0);
    transition: transform .4s cubic-bezier(0,0,.25,1) 0s
}

    .lg-comment-box .lg-comment-title {
        margin: 0;
        color: #fff;
        font-size: 18px
    }

    .lg-comment-box .lg-comment-header {
        background-color: #000;
        padding: 12px 20px;
        position: absolute;
        right: 0;
        left: 0;
        top: 0
    }

    .lg-comment-box .lg-comment-body {
        height: 100% !important;
        padding-top: 43px !important;
        width: 100% !important
    }

    .lg-comment-box .fb-comments {
        height: 100%;
        width: 100%;
        background: url(../images/loading.gif) no-repeat scroll center center #fff;
        overflow-y: auto;
        display: inline-block
    }

        .lg-comment-box .fb-comments[fb-xfbml-state=rendered] {
            background-image: none
        }

        .lg-comment-box .fb-comments > span {
            max-width: 100%
        }

    .lg-comment-box .lg-comment-close {
        position: absolute;
        left: 5px;
        top: 12px;
        cursor: pointer;
        font-size: 20px;
        color: #999;
        will-change: color;
        transition: color .2s linear
    }

        .lg-comment-box .lg-comment-close:hover {
            color: #fff
        }

        .lg-comment-box .lg-comment-close:after {
            content: "\e070"
        }

    .lg-comment-box iframe {
        max-width: 100% !important;
        width: 100% !important
    }

    .lg-comment-box #disqus_thread {
        padding: 0 20px
    }

.lg-outer .lg-comment-overlay {
    background-color: rgba(0,0,0,.25);
    bottom: 0;
    cursor: default;
    right: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1081;
    opacity: 0;
    visibility: hidden;
    will-change: visibility,opacity;
    transition: visibility 0s linear .18s,opacity .18s linear 0s
}

.lg-outer .lg-comment-toggle:after {
    content: "\e908"
}

.lg-outer.lg-comment-active .lg-comment-overlay {
    transition-delay: 0s;
    transform: translate3d(0,0,0);
    opacity: 1;
    visibility: visible
}

.lg-outer.lg-comment-active .lg-comment-toggle {
    color: #fff
}

.lg-outer.lg-comment-active .lg-comment-box {
    transform: translate3d(0,0,0)
}

.lg-outer .lg-img-rotate {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    transition: transform .4s cubic-bezier(0,0,.25,1) 0s
}

.lg-outer[data-lg-slide-type=iframe] .lg-flip-hor, .lg-outer[data-lg-slide-type=iframe] .lg-flip-ver, .lg-outer[data-lg-slide-type=iframe] .lg-rotate-left, .lg-outer[data-lg-slide-type=iframe] .lg-rotate-right, .lg-outer[data-lg-slide-type=video] .lg-flip-hor, .lg-outer[data-lg-slide-type=video] .lg-flip-ver, .lg-outer[data-lg-slide-type=video] .lg-rotate-left, .lg-outer[data-lg-slide-type=video] .lg-rotate-right {
    opacity: .75;
    pointer-events: none
}

.lg-outer .lg-img-rotate:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.lg-rotate-left:after {
    content: "\e900"
}

.lg-rotate-right:after {
    content: "\e901"
}

.lg-icon.lg-flip-hor, .lg-icon.lg-flip-ver {
    font-size: 26px
}

.lg-flip-ver:after {
    content: "\e903"
}

.lg-flip-hor:after {
    content: "\e902"
}

.lg-medium-zoom-item {
    cursor: zoom-in
}

.lg-medium-zoom .lg-outer {
    cursor: zoom-out
}

    .lg-medium-zoom .lg-outer.lg-grab img.lg-object {
        cursor: zoom-out
    }

    .lg-medium-zoom .lg-outer.lg-grabbing img.lg-object {
        cursor: zoom-out
    }

.lg-relative-caption .lg-outer .lg-sub-html {
    white-space: normal;
    bottom: auto;
    padding: 0;
    background-image: none
}

.lg-relative-caption .lg-outer .lg-relative-caption-item {
    opacity: 0;
    padding: 16px 0;
    transition: .5s opacity ease
}

.lg-relative-caption .lg-outer .lg-show-caption .lg-relative-caption-item {
    opacity: 1
}

.lg-group:after {
    content: "";
    display: table;
    clear: both
}

.lg-container {
    display: none;
    outline: 0
}

    .lg-container.lg-show {
        display: block
    }

.lg-on {
    scroll-behavior: unset
}

.lg-overlay-open {
    overflow: hidden
}

.lg-hide-sub-html .lg-sub-html, .lg-next, .lg-pager-outer, .lg-prev, .lg-toolbar {
    opacity: 0;
    will-change: transform,opacity;
    transition: transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s
}

.lg-show-in .lg-next, .lg-show-in .lg-pager-outer, .lg-show-in .lg-prev, .lg-show-in .lg-toolbar {
    opacity: 1
}

.lg-show-in.lg-hide-sub-html .lg-sub-html {
    opacity: 1
}

.lg-show-in .lg-hide-items .lg-prev {
    opacity: 0;
    transform: translate3d(10px,0,0)
}

.lg-show-in .lg-hide-items .lg-next {
    opacity: 0;
    transform: translate3d(-10px,0,0)
}

.lg-show-in .lg-hide-items .lg-toolbar {
    opacity: 0;
    transform: translate3d(0,-10px,0)
}

.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
    opacity: 0;
    transform: translate3d(0,20px,0)
}

.lg-outer {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    text-align: right;
    opacity: .001;
    outline: 0;
    will-change: auto;
    overflow: hidden;
    transition: opacity .15s ease 0s
}

    .lg-outer * {
        box-sizing: border-box
    }

    .lg-outer.lg-zoom-from-image {
        opacity: 1
    }

    .lg-outer.lg-visible {
        opacity: 1
    }

    .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide {
        transition-duration: inherit !important;
        transition-timing-function: inherit !important
    }

    .lg-outer.lg-css3.lg-dragging .lg-item.lg-current, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
        transition-duration: 0s !important;
        opacity: 1
    }

    .lg-outer.lg-grab img.lg-object {
        cursor: -o-grab;
        cursor: -ms-grab;
        cursor: grab
    }

    .lg-outer.lg-grabbing img.lg-object {
        cursor: move;
        cursor: -o-grabbing;
        cursor: -ms-grabbing;
        cursor: grabbing
    }

    .lg-outer .lg-content {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0
    }

    .lg-outer .lg-inner {
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        transition: opacity 0s;
        white-space: nowrap
    }

    .lg-outer .lg-item {
        display: none !important
    }

        .lg-outer .lg-item:not(.lg-start-end-progress) {
            background: url(../images/loading.gif) no-repeat scroll center center transparent
        }

    .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide, .lg-outer.lg-css3 .lg-prev-slide {
        display: inline-block !important
    }

    .lg-outer.lg-css .lg-current {
        display: inline-block !important
    }

    .lg-outer .lg-img-wrap, .lg-outer .lg-item {
        display: inline-block;
        text-align: center;
        position: absolute;
        width: 100%;
        height: 100%
    }

        .lg-outer .lg-img-wrap:before, .lg-outer .lg-item:before {
            content: "";
            display: inline-block;
            height: 100%;
            vertical-align: middle
        }

    .lg-outer .lg-img-wrap {
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        white-space: nowrap;
        font-size: 0
    }

    .lg-outer .lg-item.lg-complete {
        background-image: none
    }

    .lg-outer .lg-item.lg-current {
        z-index: 1060
    }

    .lg-outer .lg-object {
        display: inline-block;
        vertical-align: middle;
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        position: relative
    }

    .lg-outer .lg-empty-html .lg-sub-html, .lg-outer .lg-empty-html.lg-sub-html {
        display: none
    }

    .lg-outer.lg-hide-download .lg-download {
        opacity: .75;
        pointer-events: none
    }

    .lg-outer .lg-first-slide .lg-dummy-img {
        position: absolute;
        top: 50%;
        right: 50%
    }

    .lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
        transform: translate3d(0,0,0);
        opacity: 1
    }

    .lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
        opacity: 1;
        transition: opacity .2s ease-out .15s
    }

.lg-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    will-change: auto;
    transition: opacity 333ms ease-in 0s
}

    .lg-backdrop.in {
        opacity: 1
    }

.lg-css3.lg-no-trans .lg-current, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-prev-slide {
    transition: none 0s ease 0s !important
}

.lg-css3.lg-use-css3 .lg-item {
    backface-visibility: hidden
}

.lg-css3.lg-fade .lg-item {
    opacity: 0
}

    .lg-css3.lg-fade .lg-item.lg-current {
        opacity: 1
    }

    .lg-css3.lg-fade .lg-item.lg-current, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-prev-slide {
        transition: opacity .1s ease 0s
    }

.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
    transition: transform 1s cubic-bezier(.175,.885,.32,1.275) 0s
}

.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
    transition: transform 1s cubic-bezier(0,0,.25,1) 0s
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0
}

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
        transform: translate3d(100%,0,0)
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
        transform: translate3d(-100%,0,0)
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
        transform: translate3d(0,0,0);
        opacity: 1
    }

    .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
        transition: transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s
    }

.lg-container {
    display: none
}

    .lg-container.lg-show {
        display: block
    }

    .lg-container.lg-dragging-vertical .lg-backdrop {
        transition-duration: 0s !important
    }

    .lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
        transition-duration: 0s !important;
        opacity: 1
    }

.lg-inline .lg-backdrop, .lg-inline .lg-outer {
    position: absolute
}

.lg-inline .lg-backdrop {
    z-index: 1
}

.lg-inline .lg-outer {
    z-index: 2
}

.lg-inline .lg-maximize:after {
    content: "\e909"
}

.lg-components {
    transform: translate3d(0,100%,0);
    will-change: transform;
    transition: transform .35s ease-out 0s;
    z-index: 1080;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace,monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b, strong {
    font-weight: bolder
}

code, kbd, samp {
    font-family: monospace,monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button
}

    [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
        border-style: none;
        padding: 0
    }

    [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
        outline: 1px dotted ButtonText
    }

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

    [type=search]::-webkit-search-decoration {
        -webkit-appearance: none
    }

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

.ps {
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto
}

.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear,opacity .2s linear;
    -webkit-transition: background-color .2s linear,opacity .2s linear;
    height: 15px;
    bottom: 0;
    position: absolute
}

.ps__rail-y {
    display: none;
    opacity: 0;
    transition: background-color .2s linear,opacity .2s linear;
    -webkit-transition: background-color .2s linear,opacity .2s linear;
    width: 15px;
    left: 0;
    position: absolute
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
    display: block;
    background-color: transparent
}

.ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y, .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y {
    opacity: .6
}

.ps .ps__rail-x.ps--clicking, .ps .ps__rail-x:focus, .ps .ps__rail-x:hover, .ps .ps__rail-y.ps--clicking, .ps .ps__rail-y:focus, .ps .ps__rail-y:hover {
    background-color: #eee;
    opacity: .9
}

.ps__thumb-x {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear,height .2s ease-in-out;
    -webkit-transition: background-color .2s linear,height .2s ease-in-out;
    height: 6px;
    bottom: 2px;
    position: absolute
}

.ps__thumb-y {
    background-color: #aaa;
    border-radius: 6px;
    transition: background-color .2s linear,width .2s ease-in-out;
    -webkit-transition: background-color .2s linear,width .2s ease-in-out;
    width: 6px;
    left: 2px;
    position: absolute
}

.ps__rail-x.ps--clicking .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x:hover > .ps__thumb-x {
    background-color: #999;
    height: 11px
}

.ps__rail-y.ps--clicking .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y:hover > .ps__thumb-y {
    background-color: #999;
    width: 11px
}

@supports (-ms-overflow-style:none) {
    .ps {
        overflow: auto !important
    }
}

@media screen and (-ms-high-contrast:active),(-ms-high-contrast:none) {
    .ps {
        overflow: auto !important
    }
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle
}

    .select2-container .select2-selection--single {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        height: 28px;
        -moz-user-select: none;
        user-select: none;
        -webkit-user-select: none
    }

        .select2-container .select2-selection--single .select2-selection__rendered {
            display: block;
            padding-right: 8px;
            padding-left: 20px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap
        }

        .select2-container .select2-selection--single .select2-selection__clear {
            position: relative
        }

    .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
        padding-left: 8px;
        padding-right: 20px
    }

    .select2-container .select2-selection--multiple {
        box-sizing: border-box;
        cursor: pointer;
        display: block;
        min-height: 32px;
        -moz-user-select: none;
        user-select: none;
        -webkit-user-select: none
    }

        .select2-container .select2-selection--multiple .select2-selection__rendered {
            display: inline-block;
            overflow: hidden;
            padding-right: 8px;
            text-overflow: ellipsis;
            white-space: nowrap
        }

    .select2-container .select2-search--inline {
        float: right
    }

        .select2-container .select2-search--inline .select2-search__field {
            box-sizing: border-box;
            border: none;
            font-size: 100%;
            margin-top: 5px;
            padding: 0
        }

            .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
                -webkit-appearance: none
            }

.select2-dropdown {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    right: -100000px;
    width: 100%;
    z-index: 1051
}

.select2-results {
    display: block
}

.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0
}

.select2-results__option {
    padding: 6px;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none
}

    .select2-results__option[aria-selected] {
        cursor: pointer
    }

.select2-container--open .select2-dropdown {
    right: 0
}

.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.select2-search--dropdown {
    display: block;
    padding: 4px
}

    .select2-search--dropdown .select2-search__field {
        padding: 4px;
        width: 100%;
        box-sizing: border-box
    }

        .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
            -webkit-appearance: none
        }

    .select2-search--dropdown.select2-search--hide {
        display: none
    }

.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff
}

.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #1f2938;
    line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: left;
    font-weight: 700
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 20px
}

    .select2-container--default .select2-selection--single .select2-selection__arrow b {
        border-color: #bbb transparent transparent transparent;
        border-style: solid;
        border-width: 6px 5px 0 5px;
        height: 0;
        right: 50%;
        margin-right: -4px;
        margin-top: -2px;
        position: absolute;
        top: 50%;
        width: 0
    }

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
    float: right
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
    right: 1px;
    left: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e5e5e5;
    cursor: default
}

    .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
        display: none
    }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #bbb transparent;
    border-width: 0 5px 6px 5px
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        box-sizing: border-box;
        list-style: none;
        margin: 0;
        padding: 0 5px;
        width: 100%
    }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
            list-style: none
        }

    .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
        color: #999;
        margin-top: 5px;
        float: right
    }

    .select2-container--default .select2-selection--multiple .select2-selection__clear {
        cursor: pointer;
        float: left;
        font-weight: 700;
        margin-top: 5px;
        margin-left: 10px
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice {
        background-color: #e4e4e4;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: default;
        float: right;
        margin-left: 5px;
        margin-top: 5px;
        padding: 0 5px
    }

    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
        color: #999;
        cursor: pointer;
        display: inline-block;
        font-weight: 700;
        margin-left: 2px
    }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
            color: #333
        }

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
    float: left
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
    margin-right: 5px;
    margin-left: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
    margin-right: 2px;
    margin-left: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: solid #000 1px;
    outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #e5e5e5;
    cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
    background: 100% 0;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
    padding-right: 1em
}

    .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
        padding-right: 0
    }

    .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
        margin-right: -1em;
        padding-right: 2em
    }

        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-right: -2em;
            padding-right: 3em
        }

            .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                margin-right: -3em;
                padding-right: 4em
            }

                .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                    margin-right: -4em;
                    padding-right: 5em
                }

                    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
                        margin-right: -5em;
                        padding-right: 6em
                    }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #cbbcfb;
    color: #1f2938
}

.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px
}

.select2-container, .select2-dropdown, .select2-results, .select2-search {
    transition: none !important
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

    .slick-list:focus {
        outline: 0
    }

    .slick-list.dragging {
        cursor: pointer;
        cursor: hand
    }

.slick-slider .slick-list, .slick-slider .slick-track {
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    right: 0;
    display: block;
    margin-right: auto;
    margin-left: auto
}

    .slick-track:after, .slick-track:before {
        display: table;
        content: ""
    }

    .slick-track:after {
        clear: both
    }

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: right;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: left
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

@font-face {
    font-family: uicons-regular-rounded;
    src: url(../fonts/uicons-regular-rounded.eot#iefix) format("embedded-opentype"),url(../fonts/uicons-regular-rounded.woff2) format("woff2"),url(../fonts/uicons-regular-rounded.woff) format("woff")
}

i[class^=fi-rr-], span[class^=fi-rr-] {
    line-height: 0 !important
}

    i[class*=" fi-rr-"]:before, i[class^=fi-rr-]:before, span[class*=fi-rr-]:before, span[class^=fi-rr-]:before {
        font-family: uicons-regular-rounded !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

.fi-rr-add:before {
    content: "\f101"
}

.fi-rr-address-book:before {
    content: "\f102"
}

.fi-rr-alarm-clock:before {
    content: "\f103"
}

.fi-rr-align-center:before {
    content: "\f104"
}

.fi-rr-align-justify:before {
    content: "\f105"
}

.fi-rr-align-left:before {
    content: "\f106"
}

.fi-rr-align-right:before {
    content: "\f107"
}

.fi-rr-ambulance:before {
    content: "\f108"
}

.fi-rr-angle-double-left:before {
    content: "\f109"
}

.fi-rr-angle-double-right:before {
    content: "\f10a"
}

.fi-rr-angle-double-small-left:before {
    content: "\f10b"
}

.fi-rr-angle-double-small-right:before {
    content: "\f10c"
}

.fi-rr-angle-down:before {
    content: "\f10d"
}

.fi-rr-angle-left:before {
    content: "\f10e"
}

.fi-rr-angle-right:before {
    content: "\f10f"
}

.fi-rr-angle-small-down:before {
    content: "\f110"
}

.fi-rr-angle-small-left:before {
    content: "\f111"
}

.fi-rr-angle-small-right:before {
    content: "\f112"
}

.fi-rr-angle-small-up:before {
    content: "\f113"
}

.fi-rr-angle-up:before {
    content: "\f114"
}

.fi-rr-apple:before {
    content: "\f115"
}

.fi-rr-apps-add:before {
    content: "\f116"
}

.fi-rr-apps-delete:before {
    content: "\f117"
}

.fi-rr-apps-sort:before {
    content: "\f118"
}

.fi-rr-apps:before {
    content: "\f119"
}

.fi-rr-archive:before {
    content: "\f11a"
}

.fi-rr-arrow-down:before {
    content: "\f11b"
}

.fi-rr-arrow-from-bottom:before {
    content: "\f11c"
}

.fi-rr-arrow-left:before {
    content: "\f11d"
}

.fi-rr-arrow-right:before {
    content: "\f11e"
}

.fi-rr-arrow-small-down:before {
    content: "\f11f"
}

.fi-rr-arrow-small-left:before {
    content: "\f120"
}

.fi-rr-arrow-small-right:before {
    content: "\f121"
}

.fi-rr-arrow-small-up:before {
    content: "\f122"
}

.fi-rr-arrow-up:before {
    content: "\f123"
}

.fi-rr-asterik:before {
    content: "\f124"
}

.fi-rr-at:before {
    content: "\f125"
}

.fi-rr-backpack:before {
    content: "\f126"
}

.fi-rr-badge:before {
    content: "\f127"
}

.fi-rr-balloons:before {
    content: "\f128"
}

.fi-rr-ban:before {
    content: "\f129"
}

.fi-rr-band-aid:before {
    content: "\f12a"
}

.fi-rr-bank:before {
    content: "\f12b"
}

.fi-rr-barber-shop:before {
    content: "\f12c"
}

.fi-rr-baseball:before {
    content: "\f12d"
}

.fi-rr-basketball:before {
    content: "\f12e"
}

.fi-rr-bed:before {
    content: "\f12f"
}

.fi-rr-beer:before {
    content: "\f130"
}

.fi-rr-bell-ring:before {
    content: "\f131"
}

.fi-rr-bell-school:before {
    content: "\f132"
}

.fi-rr-bell:before {
    content: "\f133"
}

.fi-rr-bike:before {
    content: "\f134"
}

.fi-rr-billiard:before {
    content: "\f135"
}

.fi-rr-bold:before {
    content: "\f136"
}

.fi-rr-book-alt:before {
    content: "\f137"
}

.fi-rr-book:before {
    content: "\f138"
}

.fi-rr-bookmark:before {
    content: "\f139"
}

.fi-rr-bowling:before {
    content: "\f13a"
}

.fi-rr-box-alt:before {
    content: "\f13b"
}

.fi-rr-box:before {
    content: "\f13c"
}

.fi-rr-bread-slice:before {
    content: "\f13d"
}

.fi-rr-briefcase:before {
    content: "\f13e"
}

.fi-rr-broom:before {
    content: "\f13f"
}

.fi-rr-browser:before {
    content: "\f140"
}

.fi-rr-brush:before {
    content: "\f141"
}

.fi-rr-bug:before {
    content: "\f142"
}

.fi-rr-building:before {
    content: "\f143"
}

.fi-rr-bulb:before {
    content: "\f144"
}

.fi-rr-butterfly:before {
    content: "\f145"
}

.fi-rr-cake-birthday:before {
    content: "\f146"
}

.fi-rr-cake-wedding:before {
    content: "\f147"
}

.fi-rr-calculator:before {
    content: "\f148"
}

.fi-rr-calendar:before {
    content: "\f149"
}

.fi-rr-call-history:before {
    content: "\f14a"
}

.fi-rr-call-incoming:before {
    content: "\f14b"
}

.fi-rr-call-missed:before {
    content: "\f14c"
}

.fi-rr-call-outgoing:before {
    content: "\f14d"
}

.fi-rr-camera:before {
    content: "\f14e"
}

.fi-rr-camping:before {
    content: "\f14f"
}

.fi-rr-car:before {
    content: "\f150"
}

.fi-rr-caret-down:before {
    content: "\f151"
}

.fi-rr-caret-left:before {
    content: "\f152"
}

.fi-rr-caret-right:before {
    content: "\f153"
}

.fi-rr-caret-up:before {
    content: "\f154"
}

.fi-rr-carrot:before {
    content: "\f155"
}

.fi-rr-chart-connected:before {
    content: "\f156"
}

.fi-rr-chart-histogram:before {
    content: "\f157"
}

.fi-rr-chart-network:before {
    content: "\f158"
}

.fi-rr-chart-pie-alt:before {
    content: "\f159"
}

.fi-rr-chart-pie:before {
    content: "\f15a"
}

.fi-rr-chart-pyramid:before {
    content: "\f15b"
}

.fi-rr-chart-set-theory:before {
    content: "\f15c"
}

.fi-rr-chart-tree:before {
    content: "\f15d"
}

.fi-rr-chat-arrow-down:before {
    content: "\f15e"
}

.fi-rr-chat-arrow-grow:before {
    content: "\f15f"
}

.fi-rr-check:before {
    content: "\f160"
}

.fi-rr-checkbox:before {
    content: "\f161"
}

.fi-rr-cheese:before {
    content: "\f162"
}

.fi-rr-chess-piece:before {
    content: "\f163"
}

.fi-rr-child-head:before {
    content: "\f164"
}

.fi-rr-circle-small:before {
    content: "\f165"
}

.fi-rr-circle:before {
    content: "\f166"
}

.fi-rr-clip:before {
    content: "\f167"
}

.fi-rr-clock:before {
    content: "\f168"
}

.fi-rr-cloud-check:before {
    content: "\f169"
}

.fi-rr-cloud-disabled:before {
    content: "\f16a"
}

.fi-rr-cloud-download:before {
    content: "\f16b"
}

.fi-rr-cloud-share:before {
    content: "\f16c"
}

.fi-rr-cloud-upload:before {
    content: "\f16d"
}

.fi-rr-cloud:before {
    content: "\f16e"
}

.fi-rr-clouds:before {
    content: "\f16f"
}

.fi-rr-cocktail:before {
    content: "\f170"
}

.fi-rr-coffee:before {
    content: "\f171"
}

.fi-rr-comment-alt:before {
    content: "\f172"
}

.fi-rr-comment-check:before {
    content: "\f173"
}

.fi-rr-comment-heart:before {
    content: "\f174"
}

.fi-rr-comment-info:before {
    content: "\f175"
}

.fi-rr-comment-user:before {
    content: "\f176"
}

.fi-rr-comment:before {
    content: "\f177"
}

.fi-rr-comments:before {
    content: "\f178"
}

.fi-rr-compress-alt:before {
    content: "\f179"
}

.fi-rr-compress:before {
    content: "\f17a"
}

.fi-rr-computer:before {
    content: "\f17b"
}

.fi-rr-confetti:before {
    content: "\f17c"
}

.fi-rr-cookie:before {
    content: "\f17d"
}

.fi-rr-copy-alt:before {
    content: "\f17e"
}

.fi-rr-copy:before {
    content: "\f17f"
}

.fi-rr-copyright:before {
    content: "\f180"
}

.fi-rr-cow:before {
    content: "\f181"
}

.fi-rr-cream:before {
    content: "\f182"
}

.fi-rr-credit-card:before {
    content: "\f183"
}

.fi-rr-croissant:before {
    content: "\f184"
}

.fi-rr-cross-circle:before {
    content: "\f185"
}

.fi-rr-cross-small:before {
    content: "\f186"
}

.fi-rr-cross:before {
    content: "\f187"
}

.fi-rr-crown:before {
    content: "\f188"
}

.fi-rr-cube:before {
    content: "\f189"
}

.fi-rr-cupcake:before {
    content: "\f18a"
}

.fi-rr-cursor-finger:before {
    content: "\f18b"
}

.fi-rr-cursor-plus:before {
    content: "\f18c"
}

.fi-rr-cursor-text-alt:before {
    content: "\f18d"
}

.fi-rr-cursor-text:before {
    content: "\f18e"
}

.fi-rr-cursor:before {
    content: "\f18f"
}

.fi-rr-dart:before {
    content: "\f190"
}

.fi-rr-dashboard:before {
    content: "\f191"
}

.fi-rr-data-transfer:before {
    content: "\f192"
}

.fi-rr-database:before {
    content: "\f193"
}

.fi-rr-delete:before {
    content: "\f194"
}

.fi-rr-diamond:before {
    content: "\f195"
}

.fi-rr-dice:before {
    content: "\f196"
}

.fi-rr-diploma:before {
    content: "\f197"
}

.fi-rr-disco-ball:before {
    content: "\f198"
}

.fi-rr-disk:before {
    content: "\f199"
}

.fi-rr-doctor:before {
    content: "\f19a"
}

.fi-rr-document-signed:before {
    content: "\f19b"
}

.fi-rr-document:before {
    content: "\f19c"
}

.fi-rr-dollar:before {
    content: "\f19d"
}

.fi-rr-download:before {
    content: "\f19e"
}

.fi-rr-drink-alt:before {
    content: "\f19f"
}

.fi-rr-drumstick:before {
    content: "\f1a0"
}

.fi-rr-duplicate:before {
    content: "\f1a1"
}

.fi-rr-e-learning:before {
    content: "\f1a2"
}

.fi-rr-earnings:before {
    content: "\f1a3"
}

.fi-rr-edit-alt:before {
    content: "\f1a4"
}

.fi-rr-edit:before {
    content: "\f1a5"
}

.fi-rr-envelope-ban:before {
    content: "\f1a6"
}

.fi-rr-envelope-download:before {
    content: "\f1a7"
}

.fi-rr-envelope-marker:before {
    content: "\f1a8"
}

.fi-rr-envelope-open:before {
    content: "\f1a9"
}

.fi-rr-envelope-plus:before {
    content: "\f1aa"
}

.fi-rr-envelope:before {
    content: "\f1ab"
}

.fi-rr-euro:before {
    content: "\f1ac"
}

.fi-rr-exclamation:before {
    content: "\f1ad"
}

.fi-rr-expand:before {
    content: "\f1ae"
}

.fi-rr-eye-crossed:before {
    content: "\f1af"
}

.fi-rr-eye-dropper:before {
    content: "\f1b0"
}

.fi-rr-eye:before {
    content: "\f1b1"
}

.fi-rr-feather:before {
    content: "\f1b2"
}

.fi-rr-ferris-wheel:before {
    content: "\f1b3"
}

.fi-rr-file-add:before {
    content: "\f1b4"
}

.fi-rr-file-ai:before {
    content: "\f1b5"
}

.fi-rr-file-check:before {
    content: "\f1b6"
}

.fi-rr-file-delete:before {
    content: "\f1b7"
}

.fi-rr-file-eps:before {
    content: "\f1b8"
}

.fi-rr-file-gif:before {
    content: "\f1b9"
}

.fi-rr-file-music:before {
    content: "\f1ba"
}

.fi-rr-file-psd:before {
    content: "\f1bb"
}

.fi-rr-file:before {
    content: "\f1bc"
}

.fi-rr-fill:before {
    content: "\f1bd"
}

.fi-rr-film:before {
    content: "\f1be"
}

.fi-rr-filter:before {
    content: "\f1bf"
}

.fi-rr-fingerprint:before {
    content: "\f1c0"
}

.fi-rr-fish:before {
    content: "\f1c1"
}

.fi-rr-flag:before {
    content: "\f1c2"
}

.fi-rr-flame:before {
    content: "\f1c3"
}

.fi-rr-flip-horizontal:before {
    content: "\f1c4"
}

.fi-rr-flower-bouquet:before {
    content: "\f1c5"
}

.fi-rr-flower-tulip:before {
    content: "\f1c6"
}

.fi-rr-flower:before {
    content: "\f1c7"
}

.fi-rr-folder-add:before {
    content: "\f1c8"
}

.fi-rr-folder:before {
    content: "\f1c9"
}

.fi-rr-following:before {
    content: "\f1ca"
}

.fi-rr-football:before {
    content: "\f1cb"
}

.fi-rr-form:before {
    content: "\f1cc"
}

.fi-rr-forward:before {
    content: "\f1cd"
}

.fi-rr-fox:before {
    content: "\f1ce"
}

.fi-rr-frown:before {
    content: "\f1cf"
}

.fi-rr-ftp:before {
    content: "\f1d0"
}

.fi-rr-gallery:before {
    content: "\f1d1"
}

.fi-rr-gamepad:before {
    content: "\f1d2"
}

.fi-rr-gas-pump:before {
    content: "\f1d3"
}

.fi-rr-gem:before {
    content: "\f1d4"
}

.fi-rr-gift:before {
    content: "\f1d5"
}

.fi-rr-glass-cheers:before {
    content: "\f1d6"
}

.fi-rr-glasses:before {
    content: "\f1d7"
}

.fi-rr-globe-alt:before {
    content: "\f1d8"
}

.fi-rr-globe:before {
    content: "\f1d9"
}

.fi-rr-golf:before {
    content: "\f1da"
}

.fi-rr-graduation-cap:before {
    content: "\f1db"
}

.fi-rr-graphic-tablet:before {
    content: "\f1dc"
}

.fi-rr-grid-alt:before {
    content: "\f1dd"
}

.fi-rr-grid:before {
    content: "\f1de"
}

.fi-rr-guitar:before {
    content: "\f1df"
}

.fi-rr-gym:before {
    content: "\f1e0"
}

.fi-rr-hamburger:before {
    content: "\f1e1"
}

.fi-rr-hand-holding-heart:before {
    content: "\f1e2"
}

.fi-rr-hastag:before {
    content: "\f1e3"
}

.fi-rr-hat-birthday:before {
    content: "\f1e4"
}

.fi-rr-head-side-thinking:before {
    content: "\f1e5"
}

.fi-rr-headphones:before {
    content: "\f1e6"
}

.fi-rr-headset:before {
    content: "\f1e7"
}

.fi-rr-heart-arrow:before {
    content: "\f1e8"
}

.fi-rr-heart:before {
    content: "\f1e9"
}

.fi-rr-home-location-alt:before {
    content: "\f1ea"
}

.fi-rr-home-location:before {
    content: "\f1eb"
}

.fi-rr-home:before {
    content: "\f1ec"
}

.fi-rr-hourglass-end:before {
    content: "\f1ed"
}

.fi-rr-hourglass:before {
    content: "\f1ee"
}

.fi-rr-ice-cream:before {
    content: "\f1ef"
}

.fi-rr-ice-skate:before {
    content: "\f1f0"
}

.fi-rr-id-badge:before {
    content: "\f1f1"
}

.fi-rr-inbox:before {
    content: "\f1f2"
}

.fi-rr-incognito:before {
    content: "\f1f3"
}

.fi-rr-indent:before {
    content: "\f1f4"
}

.fi-rr-infinity:before {
    content: "\f1f5"
}

.fi-rr-info:before {
    content: "\f1f6"
}

.fi-rr-interactive:before {
    content: "\f1f7"
}

.fi-rr-interlining:before {
    content: "\f1f8"
}

.fi-rr-interrogation:before {
    content: "\f1f9"
}

.fi-rr-italic:before {
    content: "\f1fa"
}

.fi-rr-jpg:before {
    content: "\f1fb"
}

.fi-rr-key:before {
    content: "\f1fc"
}

.fi-rr-keyboard:before {
    content: "\f1fd"
}

.fi-rr-kite:before {
    content: "\f1fe"
}

.fi-rr-label:before {
    content: "\f1ff"
}

.fi-rr-laptop:before {
    content: "\f200"
}

.fi-rr-lasso:before {
    content: "\f201"
}

.fi-rr-laugh:before {
    content: "\f202"
}

.fi-rr-layers:before {
    content: "\f203"
}

.fi-rr-layout-fluid:before {
    content: "\f204"
}

.fi-rr-leaf:before {
    content: "\f205"
}

.fi-rr-letter-case:before {
    content: "\f206"
}

.fi-rr-life-ring:before {
    content: "\f207"
}

.fi-rr-line-width:before {
    content: "\f208"
}

.fi-rr-link:before {
    content: "\f209"
}

.fi-rr-lipstick:before {
    content: "\f20a"
}

.fi-rr-list-check:before {
    content: "\f20b"
}

.fi-rr-list:before {
    content: "\f20c"
}

.fi-rr-location-alt:before {
    content: "\f20d"
}

.fi-rr-lock-alt:before {
    content: "\f20e"
}

.fi-rr-lock:before {
    content: "\f20f"
}

.fi-rr-luggage-rolling:before {
    content: "\f210"
}

.fi-rr-magic-wand:before {
    content: "\f211"
}

.fi-rr-makeup-brush:before {
    content: "\f212"
}

.fi-rr-man-head:before {
    content: "\f213"
}

.fi-rr-map-marker-cross:before {
    content: "\f214"
}

.fi-rr-map-marker-home:before {
    content: "\f215"
}

.fi-rr-map-marker-minus:before {
    content: "\f216"
}

.fi-rr-map-marker-plus:before {
    content: "\f217"
}

.fi-rr-map-marker:before {
    content: "\f218"
}

.fi-rr-map:before {
    content: "\f219"
}

.fi-rr-marker-time:before {
    content: "\f21a"
}

.fi-rr-marker:before {
    content: "\f21b"
}

.fi-rr-mars-double:before {
    content: "\f21c"
}

.fi-rr-mars:before {
    content: "\f21d"
}

.fi-rr-mask-carnival:before {
    content: "\f21e"
}

.fi-rr-medicine:before {
    content: "\f21f"
}

.fi-rr-megaphone:before {
    content: "\f220"
}

.fi-rr-meh:before {
    content: "\f221"
}

.fi-rr-menu-burger:before {
    content: "\f222"
}

.fi-rr-menu-dots-vertical:before {
    content: "\f223"
}

.fi-rr-menu-dots:before {
    content: "\f224"
}

.fi-rr-microphone-alt:before {
    content: "\f225"
}

.fi-rr-microphone:before {
    content: "\f226"
}

.fi-rr-minus-small:before {
    content: "\f227"
}

.fi-rr-minus:before {
    content: "\f228"
}

.fi-rr-mobile:before {
    content: "\f229"
}

.fi-rr-mode-landscape:before {
    content: "\f22a"
}

.fi-rr-mode-portrait:before {
    content: "\f22b"
}

.fi-rr-money:before {
    content: "\f22c"
}

.fi-rr-moon:before {
    content: "\f22d"
}

.fi-rr-mountains:before {
    content: "\f22e"
}

.fi-rr-mouse:before {
    content: "\f22f"
}

.fi-rr-mug-alt:before {
    content: "\f230"
}

.fi-rr-music-alt:before {
    content: "\f231"
}

.fi-rr-music:before {
    content: "\f232"
}

.fi-rr-navigation:before {
    content: "\f233"
}

.fi-rr-network-cloud:before {
    content: "\f234"
}

.fi-rr-network:before {
    content: "\f235"
}

.fi-rr-notebook:before {
    content: "\f236"
}

.fi-rr-opacity:before {
    content: "\f237"
}

.fi-rr-package:before {
    content: "\f238"
}

.fi-rr-paint-brush:before {
    content: "\f239"
}

.fi-rr-palette:before {
    content: "\f23a"
}

.fi-rr-paper-plane:before {
    content: "\f23b"
}

.fi-rr-password:before {
    content: "\f23c"
}

.fi-rr-pause:before {
    content: "\f23d"
}

.fi-rr-paw:before {
    content: "\f23e"
}

.fi-rr-pencil:before {
    content: "\f23f"
}

.fi-rr-pharmacy:before {
    content: "\f240"
}

.fi-rr-phone-call:before {
    content: "\f241"
}

.fi-rr-phone-cross:before {
    content: "\f242"
}

.fi-rr-phone-pause:before {
    content: "\f243"
}

.fi-rr-phone-slash:before {
    content: "\f244"
}

.fi-rr-physics:before {
    content: "\f245"
}

.fi-rr-picture:before {
    content: "\f246"
}

.fi-rr-ping-pong:before {
    content: "\f247"
}

.fi-rr-pizza-slice:before {
    content: "\f248"
}

.fi-rr-plane:before {
    content: "\f249"
}

.fi-rr-play-alt:before {
    content: "\f24a"
}

.fi-rr-play:before {
    content: "\f24b"
}

.fi-rr-playing-cards:before {
    content: "\f24c"
}

.fi-rr-plus-small:before {
    content: "\f24d"
}

.fi-rr-plus:before {
    content: "\f24e"
}

.fi-rr-poker-chip:before {
    content: "\f24f"
}

.fi-rr-portrait:before {
    content: "\f250"
}

.fi-rr-pound:before {
    content: "\f251"
}

.fi-rr-power:before {
    content: "\f252"
}

.fi-rr-presentation:before {
    content: "\f253"
}

.fi-rr-print:before {
    content: "\f254"
}

.fi-rr-protractor:before {
    content: "\f255"
}

.fi-rr-pulse:before {
    content: "\f256"
}

.fi-rr-pyramid:before {
    content: "\f257"
}

.fi-rr-quote-right:before {
    content: "\f258"
}

.fi-rr-rainbow:before {
    content: "\f259"
}

.fi-rr-raindrops:before {
    content: "\f25a"
}

.fi-rr-rec:before {
    content: "\f25b"
}

.fi-rr-receipt:before {
    content: "\f25c"
}

.fi-rr-record-vinyl:before {
    content: "\f25d"
}

.fi-rr-rectabgle-vertical:before {
    content: "\f25e"
}

.fi-rr-rectangle-horizontal:before {
    content: "\f25f"
}

.fi-rr-rectangle-panoramic:before {
    content: "\f260"
}

.fi-rr-recycle:before {
    content: "\f261"
}

.fi-rr-redo-alt:before {
    content: "\f262"
}

.fi-rr-redo:before {
    content: "\f263"
}

.fi-rr-reflect:before {
    content: "\f264"
}

.fi-rr-refresh:before {
    content: "\f265"
}

.fi-rr-resize:before {
    content: "\f266"
}

.fi-rr-resources:before {
    content: "\f267"
}

.fi-rr-rewind:before {
    content: "\f268"
}

.fi-rr-rhombus:before {
    content: "\f269"
}

.fi-rr-rings-wedding:before {
    content: "\f26a"
}

.fi-rr-road:before {
    content: "\f26b"
}

.fi-rr-rocket:before {
    content: "\f26c"
}

.fi-rr-room-service:before {
    content: "\f26d"
}

.fi-rr-rotate-right:before {
    content: "\f26e"
}

.fi-rr-rugby:before {
    content: "\f26f"
}

.fi-rr-sad:before {
    content: "\f270"
}

.fi-rr-salad:before {
    content: "\f271"
}

.fi-rr-scale:before {
    content: "\f272"
}

.fi-rr-school-bus:before {
    content: "\f273"
}

.fi-rr-school:before {
    content: "\f274"
}

.fi-rr-scissors:before {
    content: "\f275"
}

.fi-rr-screen:before {
    content: "\f276"
}

.fi-rr-search-alt:before {
    content: "\f277"
}

.fi-rr-search-heart:before {
    content: "\f278"
}

.fi-rr-search:before {
    content: "\f279"
}

.fi-rr-settings-sliders:before {
    content: "\f27a"
}

.fi-rr-settings:before {
    content: "\f27b"
}

.fi-rr-share:before {
    content: "\f27c"
}

.fi-rr-shield-check:before {
    content: "\f27d"
}

.fi-rr-shield-exclamation:before {
    content: "\f27e"
}

.fi-rr-shield-interrogation:before {
    content: "\f27f"
}

.fi-rr-shield-plus:before {
    content: "\f280"
}

.fi-rr-shield:before {
    content: "\f281"
}

.fi-rr-ship-side:before {
    content: "\f282"
}

.fi-rr-ship:before {
    content: "\f283"
}

.fi-rr-shop:before {
    content: "\f284"
}

.fi-rr-shopping-bag-add:before {
    content: "\f285"
}

.fi-rr-shopping-bag:before {
    content: "\f286"
}

.fi-rr-shopping-cart-add:before {
    content: "\f287"
}

.fi-rr-shopping-cart-check:before {
    content: "\f288"
}

.fi-rr-shopping-cart:before {
    content: "\f289"
}

.fi-rr-shuffle:before {
    content: "\f28a"
}

.fi-rr-sign-in-alt:before {
    content: "\f28b"
}

.fi-rr-sign-in:before {
    content: "\f28c"
}

.fi-rr-sign-out-alt:before {
    content: "\f28d"
}

.fi-rr-sign-out:before {
    content: "\f28e"
}

.fi-rr-signal-alt-1:before {
    content: "\f28f"
}

.fi-rr-signal-alt-2:before {
    content: "\f290"
}

.fi-rr-signal-alt:before {
    content: "\f291"
}

.fi-rr-skateboard:before {
    content: "\f292"
}

.fi-rr-smartphone:before {
    content: "\f293"
}

.fi-rr-smile-wink:before {
    content: "\f294"
}

.fi-rr-smile:before {
    content: "\f295"
}

.fi-rr-snowflake:before {
    content: "\f296"
}

.fi-rr-soap:before {
    content: "\f297"
}

.fi-rr-soup:before {
    content: "\f298"
}

.fi-rr-spa:before {
    content: "\f299"
}

.fi-rr-speaker:before {
    content: "\f29a"
}

.fi-rr-sphere:before {
    content: "\f29b"
}

.fi-rr-spinner-alt:before {
    content: "\f29c"
}

.fi-rr-spinner:before {
    content: "\f29d"
}

.fi-rr-square-root:before {
    content: "\f29e"
}

.fi-rr-square:before {
    content: "\f29f"
}

.fi-rr-star-octogram:before {
    content: "\f2a0"
}

.fi-rr-star:before {
    content: "\f2a1"
}

.fi-rr-stats:before {
    content: "\f2a2"
}

.fi-rr-stethoscope:before {
    content: "\f2a3"
}

.fi-rr-sticker:before {
    content: "\f2a4"
}

.fi-rr-stop:before {
    content: "\f2a5"
}

.fi-rr-stopwatch:before {
    content: "\f2a6"
}

.fi-rr-subtitles:before {
    content: "\f2a7"
}

.fi-rr-sun:before {
    content: "\f2a8"
}

.fi-rr-sunrise:before {
    content: "\f2a9"
}

.fi-rr-surfing:before {
    content: "\f2aa"
}

.fi-rr-sword:before {
    content: "\f2ab"
}

.fi-rr-syringe:before {
    content: "\f2ac"
}

.fi-rr-tablet:before {
    content: "\f2ad"
}

.fi-rr-target:before {
    content: "\f2ae"
}

.fi-rr-taxi:before {
    content: "\f2af"
}

.fi-rr-tennis:before {
    content: "\f2b0"
}

.fi-rr-terrace:before {
    content: "\f2b1"
}

.fi-rr-test-tube:before {
    content: "\f2b2"
}

.fi-rr-test:before {
    content: "\f2b3"
}

.fi-rr-text-check:before {
    content: "\f2b4"
}

.fi-rr-text:before {
    content: "\f2b5"
}

.fi-rr-thermometer-half:before {
    content: "\f2b6"
}

.fi-rr-thumbs-down:before {
    content: "\f2b7"
}

.fi-rr-thumbs-up:before {
    content: "\f2b8"
}

.fi-rr-thumbtack:before {
    content: "\f2b9"
}

.fi-rr-ticket:before {
    content: "\f2ba"
}

.fi-rr-time-add:before {
    content: "\f2bb"
}

.fi-rr-time-check:before {
    content: "\f2bc"
}

.fi-rr-time-delete:before {
    content: "\f2bd"
}

.fi-rr-time-fast:before {
    content: "\f2be"
}

.fi-rr-time-forward-sixty:before {
    content: "\f2bf"
}

.fi-rr-time-forward-ten:before {
    content: "\f2c0"
}

.fi-rr-time-forward:before {
    content: "\f2c1"
}

.fi-rr-time-half-past:before {
    content: "\f2c2"
}

.fi-rr-time-oclock:before {
    content: "\f2c3"
}

.fi-rr-time-past:before {
    content: "\f2c4"
}

.fi-rr-time-quarter-past:before {
    content: "\f2c5"
}

.fi-rr-time-quarter-to:before {
    content: "\f2c6"
}

.fi-rr-time-twenty-four:before {
    content: "\f2c7"
}

.fi-rr-tool-crop:before {
    content: "\f2c8"
}

.fi-rr-tool-marquee:before {
    content: "\f2c9"
}

.fi-rr-tooth:before {
    content: "\f2ca"
}

.fi-rr-tornado:before {
    content: "\f2cb"
}

.fi-rr-train-side:before {
    content: "\f2cc"
}

.fi-rr-train:before {
    content: "\f2cd"
}

.fi-rr-transform:before {
    content: "\f2ce"
}

.fi-rr-trash:before {
    content: "\f2cf"
}

.fi-rr-treatment:before {
    content: "\f2d0"
}

.fi-rr-tree-christmas:before {
    content: "\f2d1"
}

.fi-rr-tree:before {
    content: "\f2d2"
}

.fi-rr-triangle:before {
    content: "\f2d3"
}

.fi-rr-trophy:before {
    content: "\f2d4"
}

.fi-rr-truck-side:before {
    content: "\f2d5"
}

.fi-rr-umbrella:before {
    content: "\f2d6"
}

.fi-rr-underline:before {
    content: "\f2d7"
}

.fi-rr-undo-alt:before {
    content: "\f2d8"
}

.fi-rr-undo:before {
    content: "\f2d9"
}

.fi-rr-unlock:before {
    content: "\f2da"
}

.fi-rr-upload:before {
    content: "\f2db"
}

.fi-rr-usb-pendrive:before {
    content: "\f2dc"
}

.fi-rr-user-add:before {
    content: "\f2dd"
}

.fi-rr-user-delete:before {
    content: "\f2de"
}

.fi-rr-user-remove:before {
    content: "\f2df"
}

.fi-rr-user-time:before {
    content: "\f2e0"
}

.fi-rr-user:before {
    content: "\f2e1"
}

.fi-rr-utensils:before {
    content: "\f2e2"
}

.fi-rr-vector-alt:before {
    content: "\f2e3"
}

.fi-rr-vector:before {
    content: "\f2e4"
}

.fi-rr-venus-double:before {
    content: "\f2e5"
}

.fi-rr-venus-mars:before {
    content: "\f2e6"
}

.fi-rr-venus:before {
    content: "\f2e7"
}

.fi-rr-video-camera:before {
    content: "\f2e8"
}

.fi-rr-volleyball:before {
    content: "\f2e9"
}

.fi-rr-volume:before {
    content: "\f2ea"
}

.fi-rr-wheelchair:before {
    content: "\f2eb"
}

.fi-rr-wifi-alt:before {
    content: "\f2ec"
}

.fi-rr-wind:before {
    content: "\f2ed"
}

.fi-rr-woman-head:before {
    content: "\f2ee"
}

.fi-rr-world:before {
    content: "\f2ef"
}

.fi-rr-yen:before {
    content: "\f2f0"
}

.fi-rr-zoom-in:before {
    content: "\f2f1"
}

.fi-rr-zoom-out:before {
    content: "\f2f2"
}

@font-face {
    font-family: uicons-regular-straight;
    src: url(../fonts/uicons/uicons-regular-straight.eot#iefix) format("embedded-opentype"),url(../fonts/uicons/uicons-regular-straight.woff2) format("woff2"),url(../fonts/uicons/uicons-regular-straight.woff) format("woff")
}

i[class^=fi-rs-], span[class^=fi-rs-] {
    line-height: 0 !important
}

    i[class*=" fi-rs-"]:before, i[class^=fi-rs-]:before, span[class*=fi-rs-]:before, span[class^=fi-rs-]:before {
        font-family: uicons-regular-straight !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1 !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }

.fi-rs-add:before {
    content: "\f101"
}

.fi-rs-alarm-clock:before {
    content: "\f102"
}

.fi-rs-align-center:before {
    content: "\f103"
}

.fi-rs-align-justify:before {
    content: "\f104"
}

.fi-rs-align-left:before {
    content: "\f105"
}

.fi-rs-align-right:before {
    content: "\f106"
}

.fi-rs-ambulance:before {
    content: "\f107"
}

.fi-rs-angle-double-left:before {
    content: "\f108"
}

.fi-rs-angle-double-right:before {
    content: "\f109"
}

.fi-rs-angle-double-small-left:before {
    content: "\f10a"
}

.fi-rs-angle-double-small-right:before {
    content: "\f10b"
}

.fi-rs-angle-down:before {
    content: "\f10c"
}

.fi-rs-angle-left:before {
    content: "\f10d"
}

.fi-rs-angle-right:before {
    content: "\f10e"
}

.fi-rs-angle-small-down:before {
    content: "\f10f"
}

.fi-rs-angle-small-left:before {
    content: "\f110"
}

.fi-rs-angle-small-right:before {
    content: "\f111"
}

.fi-rs-angle-small-up:before {
    content: "\f112"
}

.fi-rs-angle-up:before {
    content: "\f113"
}

.fi-rs-apps-add:before {
    content: "\f114"
}

.fi-rs-apps-delete:before {
    content: "\f115"
}

.fi-rs-apps-sort:before {
    content: "\f116"
}

.fi-rs-apps:before {
    content: "\f117"
}

.fi-rs-archive:before {
    content: "\f118"
}

.fi-rs-arrow-down:before {
    content: "\f119"
}

.fi-rs-arrow-left:before {
    content: "\f11a"
}

.fi-rs-arrow-right:before {
    content: "\f11b"
}

.fi-rs-arrow-small-down:before {
    content: "\f11c"
}

.fi-rs-arrow-small-left:before {
    content: "\f11d"
}

.fi-rs-arrow-small-right:before {
    content: "\f11e"
}

.fi-rs-arrow-small-up:before {
    content: "\f11f"
}

.fi-rs-arrow-up:before {
    content: "\f120"
}

.fi-rs-asterisk:before {
    content: "\f121"
}

.fi-rs-backpack:before {
    content: "\f122"
}

.fi-rs-badge:before {
    content: "\f123"
}

.fi-rs-ban:before {
    content: "\f124"
}

.fi-rs-band-aid:before {
    content: "\f125"
}

.fi-rs-bank:before {
    content: "\f126"
}

.fi-rs-barber-shop:before {
    content: "\f127"
}

.fi-rs-baseball:before {
    content: "\f128"
}

.fi-rs-basketball:before {
    content: "\f129"
}

.fi-rs-bell-ring:before {
    content: "\f12a"
}

.fi-rs-bell-school:before {
    content: "\f12b"
}

.fi-rs-bell:before {
    content: "\f12c"
}

.fi-rs-billiard:before {
    content: "\f12d"
}

.fi-rs-bold:before {
    content: "\f12e"
}

.fi-rs-book-alt:before {
    content: "\f12f"
}

.fi-rs-book:before {
    content: "\f130"
}

.fi-rs-bookmark:before {
    content: "\f131"
}

.fi-rs-bowling:before {
    content: "\f132"
}

.fi-rs-box-alt:before {
    content: "\f133"
}

.fi-rs-box:before {
    content: "\f134"
}

.fi-rs-briefcase:before {
    content: "\f135"
}

.fi-rs-broom:before {
    content: "\f136"
}

.fi-rs-browser:before {
    content: "\f137"
}

.fi-rs-brush:before {
    content: "\f138"
}

.fi-rs-bug:before {
    content: "\f139"
}

.fi-rs-building:before {
    content: "\f13a"
}

.fi-rs-bulb:before {
    content: "\f13b"
}

.fi-rs-calculator:before {
    content: "\f13c"
}

.fi-rs-calendar:before {
    content: "\f13d"
}

.fi-rs-camera:before {
    content: "\f13e"
}

.fi-rs-caret-down:before {
    content: "\f13f"
}

.fi-rs-caret-left:before {
    content: "\f140"
}

.fi-rs-caret-right:before {
    content: "\f141"
}

.fi-rs-caret-up:before {
    content: "\f142"
}

.fi-rs-check:before {
    content: "\f143"
}

.fi-rs-checkbox:before {
    content: "\f144"
}

.fi-rs-chess:before {
    content: "\f145"
}

.fi-rs-circle-small:before {
    content: "\f146"
}

.fi-rs-circle:before {
    content: "\f147"
}

.fi-rs-clip:before {
    content: "\f148"
}

.fi-rs-clock:before {
    content: "\f149"
}

.fi-rs-cloud-check:before {
    content: "\f14a"
}

.fi-rs-cloud-disabled:before {
    content: "\f14b"
}

.fi-rs-cloud-download:before {
    content: "\f14c"
}

.fi-rs-cloud-share:before {
    content: "\f14d"
}

.fi-rs-cloud-upload:before {
    content: "\f14e"
}

.fi-rs-cloud:before {
    content: "\f14f"
}

.fi-rs-comment-alt:before {
    content: "\f150"
}

.fi-rs-comment:before {
    content: "\f151"
}

.fi-rs-compress-alt:before {
    content: "\f152"
}

.fi-rs-compress:before {
    content: "\f153"
}

.fi-rs-computer:before {
    content: "\f154"
}

.fi-rs-cookie:before {
    content: "\f155"
}

.fi-rs-copy-alt:before {
    content: "\f156"
}

.fi-rs-copy:before {
    content: "\f157"
}

.fi-rs-copyright:before {
    content: "\f158"
}

.fi-rs-cream:before {
    content: "\f159"
}

.fi-rs-credit-card:before {
    content: "\f15a"
}

.fi-rs-cross-circle:before {
    content: "\f15b"
}

.fi-rs-cross-small:before {
    content: "\f15c"
}

.fi-rs-cross:before {
    content: "\f15d"
}

.fi-rs-crown:before {
    content: "\f15e"
}

.fi-rs-cursor-finger:before {
    content: "\f15f"
}

.fi-rs-cursor-plus:before {
    content: "\f160"
}

.fi-rs-cursor-text-alt:before {
    content: "\f161"
}

.fi-rs-cursor-text:before {
    content: "\f162"
}

.fi-rs-cursor:before {
    content: "\f163"
}

.fi-rs-dart:before {
    content: "\f164"
}

.fi-rs-dashboard:before {
    content: "\f165"
}

.fi-rs-data-transfer:before {
    content: "\f166"
}

.fi-rs-database:before {
    content: "\f167"
}

.fi-rs-delete:before {
    content: "\f168"
}

.fi-rs-diamond:before {
    content: "\f169"
}

.fi-rs-dice:before {
    content: "\f16a"
}

.fi-rs-diploma:before {
    content: "\f16b"
}

.fi-rs-disk:before {
    content: "\f16c"
}

.fi-rs-doctor:before {
    content: "\f16d"
}

.fi-rs-document-signed:before {
    content: "\f16e"
}

.fi-rs-document:before {
    content: "\f16f"
}

.fi-rs-dollar:before {
    content: "\f170"
}

.fi-rs-download:before {
    content: "\f171"
}

.fi-rs-duplicate:before {
    content: "\f172"
}

.fi-rs-e-learning:before {
    content: "\f173"
}

.fi-rs-earnings:before {
    content: "\f174"
}

.fi-rs-edit-alt:before {
    content: "\f175"
}

.fi-rs-edit:before {
    content: "\f176"
}

.fi-rs-envelope:before {
    content: "\f177"
}

.fi-rs-euro:before {
    content: "\f178"
}

.fi-rs-exclamation:before {
    content: "\f179"
}

.fi-rs-expand:before {
    content: "\f17a"
}

.fi-rs-eye-crossed:before {
    content: "\f17b"
}

.fi-rs-eye-dropper:before {
    content: "\f17c"
}

.fi-rs-eye:before {
    content: "\f17d"
}

.fi-rs-feather:before {
    content: "\f17e"
}

.fi-rs-file-add:before {
    content: "\f17f"
}

.fi-rs-file-ai:before {
    content: "\f180"
}

.fi-rs-file-check:before {
    content: "\f181"
}

.fi-rs-file-delete:before {
    content: "\f182"
}

.fi-rs-file-eps:before {
    content: "\f183"
}

.fi-rs-file-gif:before {
    content: "\f184"
}

.fi-rs-file-music:before {
    content: "\f185"
}

.fi-rs-file-psd:before {
    content: "\f186"
}

.fi-rs-file:before {
    content: "\f187"
}

.fi-rs-fill:before {
    content: "\f188"
}

.fi-rs-film:before {
    content: "\f189"
}

.fi-rs-filter:before {
    content: "\f18a"
}

.fi-rs-fingerprint:before {
    content: "\f18b"
}

.fi-rs-flag:before {
    content: "\f18c"
}

.fi-rs-flame:before {
    content: "\f18d"
}

.fi-rs-flip-horizontal:before {
    content: "\f18e"
}

.fi-rs-folder-add:before {
    content: "\f18f"
}

.fi-rs-folder:before {
    content: "\f190"
}

.fi-rs-following:before {
    content: "\f191"
}

.fi-rs-football:before {
    content: "\f192"
}

.fi-rs-form:before {
    content: "\f193"
}

.fi-rs-forward:before {
    content: "\f194"
}

.fi-rs-ftp:before {
    content: "\f195"
}

.fi-rs-gallery:before {
    content: "\f196"
}

.fi-rs-glasses:before {
    content: "\f197"
}

.fi-rs-globe-alt:before {
    content: "\f198"
}

.fi-rs-globe:before {
    content: "\f199"
}

.fi-rs-golf:before {
    content: "\f19a"
}

.fi-rs-graduation-cap:before {
    content: "\f19b"
}

.fi-rs-graphic-tablet:before {
    content: "\f19c"
}

.fi-rs-grid-alt:before {
    content: "\f19d"
}

.fi-rs-grid:before {
    content: "\f19e"
}

.fi-rs-gym:before {
    content: "\f19f"
}

.fi-rs-headphones:before {
    content: "\f1a0"
}

.fi-rs-headset:before {
    content: "\f1a1"
}

.fi-rs-heart:before {
    content: "\f1a2"
}

.fi-rs-home:before {
    content: "\f1a3"
}

.fi-rs-hourglass-end:before {
    content: "\f1a4"
}

.fi-rs-hourglass:before {
    content: "\f1a5"
}

.fi-rs-ice-skate:before {
    content: "\f1a6"
}

.fi-rs-id-badge:before {
    content: "\f1a7"
}

.fi-rs-inbox:before {
    content: "\f1a8"
}

.fi-rs-incognito:before {
    content: "\f1a9"
}

.fi-rs-indent:before {
    content: "\f1aa"
}

.fi-rs-infinity:before {
    content: "\f1ab"
}

.fi-rs-info:before {
    content: "\f1ac"
}

.fi-rs-interactive:before {
    content: "\f1ad"
}

.fi-rs-interlining:before {
    content: "\f1ae"
}

.fi-rs-interrogation:before {
    content: "\f1af"
}

.fi-rs-italic:before {
    content: "\f1b0"
}

.fi-rs-jpg:before {
    content: "\f1b1"
}

.fi-rs-key:before {
    content: "\f1b2"
}

.fi-rs-keyboard:before {
    content: "\f1b3"
}

.fi-rs-label:before {
    content: "\f1b4"
}

.fi-rs-laptop:before {
    content: "\f1b5"
}

.fi-rs-lasso:before {
    content: "\f1b6"
}

.fi-rs-layers:before {
    content: "\f1b7"
}

.fi-rs-layout-fluid:before {
    content: "\f1b8"
}

.fi-rs-letter-case:before {
    content: "\f1b9"
}

.fi-rs-life-ring:before {
    content: "\f1ba"
}

.fi-rs-line-width:before {
    content: "\f1bb"
}

.fi-rs-link:before {
    content: "\f1bc"
}

.fi-rs-lipstick:before {
    content: "\f1bd"
}

.fi-rs-list-check:before {
    content: "\f1be"
}

.fi-rs-list:before {
    content: "\f1bf"
}

.fi-rs-location-alt:before {
    content: "\f1c0"
}

.fi-rs-lock-alt:before {
    content: "\f1c1"
}

.fi-rs-lock:before {
    content: "\f1c2"
}

.fi-rs-magic-wand:before {
    content: "\f1c3"
}

.fi-rs-makeup-brush:before {
    content: "\f1c4"
}

.fi-rs-marker-time:before {
    content: "\f1c5"
}

.fi-rs-marker:before {
    content: "\f1c6"
}

.fi-rs-medicine:before {
    content: "\f1c7"
}

.fi-rs-megaphone:before {
    content: "\f1c8"
}

.fi-rs-menu-burger:before {
    content: "\f1c9"
}

.fi-rs-menu-dots-vertical:before {
    content: "\f1ca"
}

.fi-rs-menu-dots:before {
    content: "\f1cb"
}

.fi-rs-microphone:before {
    content: "\f1cc"
}

.fi-rs-minus-small:before {
    content: "\f1cd"
}

.fi-rs-minus:before {
    content: "\f1ce"
}

.fi-rs-mobile:before {
    content: "\f1cf"
}

.fi-rs-mode-landscape:before {
    content: "\f1d0"
}

.fi-rs-mode-portrait:before {
    content: "\f1d1"
}

.fi-rs-money:before {
    content: "\f1d2"
}

.fi-rs-mouse:before {
    content: "\f1d3"
}

.fi-rs-music-alt:before {
    content: "\f1d4"
}

.fi-rs-music:before {
    content: "\f1d5"
}

.fi-rs-network-cloud:before {
    content: "\f1d6"
}

.fi-rs-network:before {
    content: "\f1d7"
}

.fi-rs-notebook:before {
    content: "\f1d8"
}

.fi-rs-opacity:before {
    content: "\f1d9"
}

.fi-rs-package:before {
    content: "\f1da"
}

.fi-rs-paint-brush:before {
    content: "\f1db"
}

.fi-rs-palette:before {
    content: "\f1dc"
}

.fi-rs-paper-plane:before {
    content: "\f1dd"
}

.fi-rs-password:before {
    content: "\f1de"
}

.fi-rs-pause:before {
    content: "\f1df"
}

.fi-rs-pencil:before {
    content: "\f1e0"
}

.fi-rs-pharmacy:before {
    content: "\f1e1"
}

.fi-rs-physics:before {
    content: "\f1e2"
}

.fi-rs-picture:before {
    content: "\f1e3"
}

.fi-rs-ping-pong:before {
    content: "\f1e4"
}

.fi-rs-play-alt:before {
    content: "\f1e5"
}

.fi-rs-play:before {
    content: "\f1e6"
}

.fi-rs-playing-cards:before {
    content: "\f1e7"
}

.fi-rs-plus-small:before {
    content: "\f1e8"
}

.fi-rs-plus:before {
    content: "\f1e9"
}

.fi-rs-poker-chip:before {
    content: "\f1ea"
}

.fi-rs-portrait:before {
    content: "\f1eb"
}

.fi-rs-pound:before {
    content: "\f1ec"
}

.fi-rs-power:before {
    content: "\f1ed"
}

.fi-rs-presentation:before {
    content: "\f1ee"
}

.fi-rs-print:before {
    content: "\f1ef"
}

.fi-rs-protractor:before {
    content: "\f1f0"
}

.fi-rs-pulse:before {
    content: "\f1f1"
}

.fi-rs-quote-right:before {
    content: "\f1f2"
}

.fi-rs-rec:before {
    content: "\f1f3"
}

.fi-rs-receipt:before {
    content: "\f1f4"
}

.fi-rs-rectangle-horizontal:before {
    content: "\f1f5"
}

.fi-rs-rectangle-panoramic:before {
    content: "\f1f6"
}

.fi-rs-rectangle-vertical:before {
    content: "\f1f7"
}

.fi-rs-redo:before {
    content: "\f1f8"
}

.fi-rs-reflect:before {
    content: "\f1f9"
}

.fi-rs-refresh:before {
    content: "\f1fa"
}

.fi-rs-resize:before {
    content: "\f1fb"
}

.fi-rs-resources:before {
    content: "\f1fc"
}

.fi-rs-rewind:before {
    content: "\f1fd"
}

.fi-rs-rocket:before {
    content: "\f1fe"
}

.fi-rs-rotate-right:before {
    content: "\f1ff"
}

.fi-rs-rugby:before {
    content: "\f200"
}

.fi-rs-scale:before {
    content: "\f201"
}

.fi-rs-school-bus:before {
    content: "\f202"
}

.fi-rs-school:before {
    content: "\f203"
}

.fi-rs-scissors:before {
    content: "\f204"
}

.fi-rs-screen:before {
    content: "\f205"
}

.fi-rs-search-alt:before {
    content: "\f206"
}

.fi-rs-search:before {
    content: "\f207"
}

.fi-rs-settings-sliders:before {
    content: "\f208"
}

.fi-rs-settings:before {
    content: "\f209"
}

.fi-rs-share:before {
    content: "\f20a"
}

.fi-rs-shield-check:before {
    content: "\f20b"
}

.fi-rs-shield-exclamation:before {
    content: "\f20c"
}

.fi-rs-shield-interrogation:before {
    content: "\f20d"
}

.fi-rs-shield-plus:before {
    content: "\f20e"
}

.fi-rs-shield:before {
    content: "\f20f"
}

.fi-rs-shop:before {
    content: "\f210"
}

.fi-rs-shopping-bag-add:before {
    content: "\f211"
}

.fi-rs-shopping-bag:before {
    content: "\f212"
}

.fi-rs-shopping-cart-add:before {
    content: "\f213"
}

.fi-rs-shopping-cart-check:before {
    content: "\f214"
}

.fi-rs-shopping-cart:before {
    content: "\f215"
}

.fi-rs-shuffle:before {
    content: "\f216"
}

.fi-rs-sign-in:before {
    content: "\f217"
}

.fi-rs-sign-out:before {
    content: "\f218"
}

.fi-rs-signal-alt-1:before {
    content: "\f219"
}

.fi-rs-signal-alt-2:before {
    content: "\f21a"
}

.fi-rs-signal-alt:before {
    content: "\f21b"
}

.fi-rs-skateboard:before {
    content: "\f21c"
}

.fi-rs-smartphone:before {
    content: "\f21d"
}

.fi-rs-soap:before {
    content: "\f21e"
}

.fi-rs-spa:before {
    content: "\f21f"
}

.fi-rs-speaker:before {
    content: "\f220"
}

.fi-rs-spinner-alt:before {
    content: "\f221"
}

.fi-rs-spinner:before {
    content: "\f222"
}

.fi-rs-square-root:before {
    content: "\f223"
}

.fi-rs-square:before {
    content: "\f224"
}

.fi-rs-star:before {
    content: "\f225"
}

.fi-rs-stats:before {
    content: "\f226"
}

.fi-rs-stethoscope:before {
    content: "\f227"
}

.fi-rs-sticker:before {
    content: "\f228"
}

.fi-rs-stop:before {
    content: "\f229"
}

.fi-rs-stopwatch:before {
    content: "\f22a"
}

.fi-rs-subtitles:before {
    content: "\f22b"
}

.fi-rs-surfing:before {
    content: "\f22c"
}

.fi-rs-sword:before {
    content: "\f22d"
}

.fi-rs-syringe:before {
    content: "\f22e"
}

.fi-rs-tablet:before {
    content: "\f22f"
}

.fi-rs-target:before {
    content: "\f230"
}

.fi-rs-tennis:before {
    content: "\f231"
}

.fi-rs-test-tube:before {
    content: "\f232"
}

.fi-rs-test:before {
    content: "\f233"
}

.fi-rs-text-check:before {
    content: "\f234"
}

.fi-rs-text:before {
    content: "\f235"
}

.fi-rs-thumbs-down:before {
    content: "\f236"
}

.fi-rs-thumbs-up:before {
    content: "\f237"
}

.fi-rs-ticket:before {
    content: "\f238"
}

.fi-rs-time-add:before {
    content: "\f239"
}

.fi-rs-time-check:before {
    content: "\f23a"
}

.fi-rs-time-delete:before {
    content: "\f23b"
}

.fi-rs-time-fast:before {
    content: "\f23c"
}

.fi-rs-time-forward-sixty:before {
    content: "\f23d"
}

.fi-rs-time-forward-ten:before {
    content: "\f23e"
}

.fi-rs-time-forward:before {
    content: "\f23f"
}

.fi-rs-time-half-past:before {
    content: "\f240"
}

.fi-rs-time-oclock:before {
    content: "\f241"
}

.fi-rs-time-past:before {
    content: "\f242"
}

.fi-rs-time-quarter-past:before {
    content: "\f243"
}

.fi-rs-time-quarter-to:before {
    content: "\f244"
}

.fi-rs-time-twenty-four:before {
    content: "\f245"
}

.fi-rs-tool-crop:before {
    content: "\f246"
}

.fi-rs-tool-marquee:before {
    content: "\f247"
}

.fi-rs-tooth:before {
    content: "\f248"
}

.fi-rs-transform:before {
    content: "\f249"
}

.fi-rs-trash:before {
    content: "\f24a"
}

.fi-rs-treatment:before {
    content: "\f24b"
}

.fi-rs-trophy:before {
    content: "\f24c"
}

.fi-rs-umbrella:before {
    content: "\f24d"
}

.fi-rs-underline:before {
    content: "\f24e"
}

.fi-rs-undo:before {
    content: "\f24f"
}

.fi-rs-unlock:before {
    content: "\f250"
}

.fi-rs-upload:before {
    content: "\f251"
}

.fi-rs-usb-drive:before {
    content: "\f252"
}

.fi-rs-user-add:before {
    content: "\f253"
}

.fi-rs-user-delete:before {
    content: "\f254"
}

.fi-rs-user-remove:before {
    content: "\f255"
}

.fi-rs-user-time:before {
    content: "\f256"
}

.fi-rs-user:before {
    content: "\f257"
}

.fi-rs-users:before {
    content: "\f258"
}

.fi-rs-vector-2:before {
    content: "\f259"
}

.fi-rs-vector-alt:before {
    content: "\f25a"
}

.fi-rs-video-camera:before {
    content: "\f25b"
}

.fi-rs-volleyball:before {
    content: "\f25c"
}

.fi-rs-volume:before {
    content: "\f25d"
}

.fi-rs-wifi-alt:before {
    content: "\f25e"
}

.fi-rs-world:before {
    content: "\f25f"
}

.fi-rs-yen:before {
    content: "\f260"
}

.fi-rs-zoom-in:before {
    content: "\f261"
}

.fi-rs-zoom-out:before {
    content: "\f262"
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Thin.ttf) format("truetype");
    font-weight: 100
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-ExtraLight.ttf) format("truetype");
    font-weight: 200
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Light.ttf) format("truetype");
    font-weight: 300
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Regular.ttf) format("truetype");
    font-weight: 400
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Medium.ttf) format("truetype");
    font-weight: 500
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-SemiBold.ttf) format("truetype");
    font-weight: 600
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Bold.ttf) format("truetype");
    font-weight: 700
}

@font-face {
    font-family: IBMPlexSans;
    src: url(../fonts/english/IBMPlexSans-Italic.ttf) format("truetype");
    font-style: italic;
    font-weight: 400
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-Thin.ttf) format("truetype");
    font-weight: 100
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-ExtraLight.ttf) format("truetype");
    font-weight: 200
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-Light.ttf) format("truetype");
    font-weight: 300
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-Regular.ttf) format("truetype");
    font-weight: 400
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-Medium.ttf) format("truetype");
    font-weight: 500
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-SemiBold.ttf) format("truetype");
    font-weight: 600
}

@font-face {
    font-family: IBMPlexSansArabic;
    src: url(../fonts/arabic/IBMPlexSansArabic-Bold.ttf) format("truetype");
    font-weight: 700
}

html[lang=en] body {
    font-family: IBMPlexSans,sans-serif
}

html[lang=ar] body {
    font-family: IBMPlexSansArabic,sans-serif
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

html {
    direction: rtl;
    overflow-x: hidden !important
}

main {
    display: block;
    clear: both
}

thead {
    font-weight: 600
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body {
    line-height: 1;
    overflow-x: hidden !important
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

    blockquote:after, blockquote:before, q:after, q:before {
        content: "";
        content: none
    }

table {
    border-collapse: collapse;
    border-spacing: 0
}

img {
    max-width: 100%
}

button, input, select, textarea {
    font-size: 14px
}

    .custom-select:focus, :focus, [contenteditable].form-control:focus, [type=email].form-control:focus, [type=password].form-control:focus, [type=tel].form-control:focus, [type=text].form-control:focus, button:focus, input.form-control:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=text]:focus, select:focus, textarea.form-control:focus, textarea:focus {
        outline: 0 !important;
        box-shadow: none !important
    }

    input:focus::-moz-placeholder {
        opacity: 0;
        -moz-transition: .4s;
        transition: .4s
    }

a {
    color: #0e1c43
}

li.hr span {
    width: 100%;
    height: 1px;
    background-color: #e4e4e4;
    margin: 20px 0;
    display: block
}

::-moz-selection {
    background: #ffaf00;
    color: #fff
}

::selection {
    background: #ffaf00;
    color: #fff
}

::-moz-selection {
    background: #ffaf00;
    color: #fff
}

::-moz-placeholder {
    color: #88929b;
    opacity: 1
}

::placeholder {
    color: #88929b;
    opacity: 1
}

:-ms-input-placeholder, ::-webkit-input-placeholder {
    color: #88929b;
    opacity: 1
}

.fix {
    overflow: hidden
}

.hidden {
    display: none
}

.clear {
    clear: both
}

.section {
    float: right;
    width: 100%
}

.f-right {
    float: left
}

.capitalize {
    text-transform: capitalize
}

.uppercase {
    text-transform: uppercase
}

.bg-img {
    background-position: center center;
    background-size: cover
}

.position-relative {
    position: relative
}

.height-100vh {
    height: 100vh !important
}

.custom-select:focus, :focus, [contenteditable].form-control:focus, [type=email].form-control:focus, [type=password].form-control:focus, [type=tel].form-control:focus, [type=text].form-control:focus, button:focus, input.form-control:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=text]:focus, select:focus, textarea.form-control:focus, textarea:focus {
    outline: 0 !important;
    box-shadow: none
}

.border-radius {
    border-radius: 4px
}

.border-radius-5 {
    border-radius: 5px
}

.border-radius-10 {
    border-radius: 10px
}

.border-radius-15 {
    border-radius: 15px
}

.border-radius-20 {
    border-radius: 20px
}

.hover-up {
    transition: all .25s cubic-bezier(.02,.01,.47,1)
}

    .hover-up:hover {
        transform: translateY(-3px);
        transition: all .25s cubic-bezier(.02,.01,.47,1)
    }

body {
    background-size: contain
}

.none-shadow {
    box-shadow: none !important
}

.form-control {
    border: 1px solid rgba(6,18,36,.1);
    border-radius: 10px;
    background-color: #fff;
    padding: 11px 15px 13px 15px;
    width: 100%;
    color: #88929b
}

    .form-control::-moz-placeholder {
        color: #88929b
    }

    .form-control::placeholder {
        color: #88929b
    }

.form-group {
    position: relative
}

    .form-group i {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        font-size: 18px;
        color: #88929b
    }

.form-icons {
    padding-right: 41px
}

.text-white {
    color: #fff
}

@media (min-width:1400px) {
    .container {
        max-width: 1344px
    }
}

strong {
    font-weight: 700
}

.color-muted {
    color: #88929b !important
}

.divider {
    border-top: 1px solid rgba(6,18,36,.1);
    margin: 20px 0
}

a {
    text-decoration: none
}

:hover {
    transition-duration: .2s
}

.section-box {
    display: inline-block;
    width: 100%;
    overflow: hidden
}

.text-shadow {
    text-shadow: 0 4px 4px rgba(0,0,0,.25)
}

.img-responsive {
    max-width: 100%
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #88929b;
    line-height: 28px;
    font-size: 14px
}

.select2-search.select2-search--dropdown {
    padding: 0;
    margin-bottom: 10px
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: thin solid #ececec;
    border-radius: 8px;
    height: 40px;
    padding-right: 15px
}

.select2-dropdown {
    border-color: #fff;
    box-shadow: 0 9px 26px 0 rgba(31,31,51,.06)
}

.select2-container--open .select2-dropdown--below {
    border: thin solid #ececec;
    padding: 15px;
    margin-top: 10px;
    border-radius: 10px
}

.select-style .select2-selection--single .select2-selection__rendered {
    color: #88929b
}

.select-style .select2 {
    border: 1px solid rgba(6,18,36,.1);
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    display: inline-block;
    width: 100% !important
}

    .select-style .select2 .select2-selection__arrow {
        background: url(../images/theme/icons/arrow-down.svg) no-repeat left 10px center;
        top: 11px;
        width: 26px;
        opacity: .5
    }

        .select-style .select2 .select2-selection__arrow b {
            display: none !important
        }

.select-style-icon .select2 {
    padding-right: 33px
}

.dropdown {
    position: relative
}

    .dropdown .dropdown-menu.show {
        border: thin solid #ececec;
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
        background-color: #fff;
        border-radius: 10px;
        padding: 0;
        overflow: hidden
    }

        .dropdown .dropdown-menu.show .dropdown-item {
            padding: 10px 20px;
            color: #0e1c43 !important;
            font-size: 14px
        }

            .dropdown .dropdown-menu.show .dropdown-item.active {
                color: #fff;
                text-decoration: none;
                background-color: #1ac5ab
            }

            .dropdown .dropdown-menu.show .dropdown-item:active {
                color: #fff;
                text-decoration: none;
                background-color: #1ac5ab
            }

    .dropdown.dropdown-sort .dropdown-menu.show {
        border-radius: 10px;
        margin-top: 20px
    }

a, button, h4, img, input, span {
    transition: all .3s ease 0s
}

@keyframes slideleft {
    10% {
        opacity: 0;
        transform: scale(0);
        left: 0
    }

    50% {
        opacity: 1;
        transform: scale(1)
    }

    90% {
        opacity: 0;
        transform: scale(0);
        left: 100%
    }
}

[data-loader=spinner] {
    width: 35px;
    height: 35px;
    display: inline-block;
    animation: spinner 1.2s infinite ease-in-out;
    background: url(../images/favicon.svg);
    box-shadow: 0 0 10px #fff
}

@keyframes spinner {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        transform: perspective(120px) rotateX(-180deg) rotateY(0)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(180deg)
    }
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(151,119,250,.8)
    }

    100% {
        box-shadow: 0 0 0 5px transparent
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0 rgba(239,63,72,.1)
    }

    100% {
        box-shadow: 0 0 0 20px transparent
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0,20%,0)
    }

    100% {
        transform: translate3d(0,0,0)
    }
}

.jump {
    transform-origin: 100%;
    animation: jump .5s linear alternate infinite
}

body {
    color: #37404e;
    font-size: 14px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400
}

.display-1, .display-2, .font-heading, .heading-lg, .heading-sm-1, h1, h2, h3, h4, h5, h6 {
    color: #1f2938;
    font-weight: 700;
    line-height: 1.2
}

h1 {
    font-size: 69px;
    line-height: 1.2
}

h2 {
    font-size: 36px;
    line-height: 67px
}

h3 {
    font-size: 44px;
    line-height: 54px
}

h4 {
    font-size: 28px;
    line-height: 34px
}

h5 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 500
}

h6 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 500
}

.heading-lg {
    font-size: 52px;
    line-height: 63px;
    font-weight: 700
}

ul.main-menu {
    margin-top: 30px
}

.heading-md {
    font-size: 20px;
    line-height: 24px;
    color: #111112;
    font-weight: 500
}

.heading-sm {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500
}

.text-sm {
    font-size: 12px;
    line-height: 16px
}

.text-md {
    font-size: 16px;
    line-height: 20px
}

.small-heading {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700
}

.medium-heading {
    font-size: 18px;
    color: #1f2938;
    line-height: 22px;
    font-weight: 600
}

.display-block {
    display: block
}

.font-bold {
    font-weight: 700
}

.font-semibold {
    font-weight: 600
}

.text-brand {
    color: #b18b34
}

.font-3xs {
    font-size: 10px
}

.font-xxs {
    font-size: 12px
}

.font-xs {
    font-size: 13px
}

.font-sm {
    font-size: 14px
}

.font-md {
    font-size: 16px
}

.font-md-2 {
    font-size: 15px
}

.font-lg {
    font-size: 18px
}

.font-xl {
    font-size: 20px
}

.font-2xl {
    font-size: 22px
}

.font-3xl {
    font-size: 58px
}

.text-grey-6 {
    color: #d2d2d2 !important
}

.text-muted {
    color: #88929b !important
}

.arabic {
    font-family: IBMPlexSansArabic,sans-serif !important
}

.btn {
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 16px;
    line-height: 1;
    transition: .2s
}

    .btn.btn-default {
        color: #0e1c43;
        background-color: #ffaf00
    }

        .btn.btn-default:hover {
            background-color: #1ac5ab;
            color: #fff;
            transform: translateY(-2px);
            transition: .2s
        }

.btn-grey-small {
    background-color: rgba(151,119,250,.12);
    font-size: 14px;
    padding: 7px 10px;
    border-radius: 6px;
    color: #37404e
}

.disc-btn:before {
    content: "";
    height: 5px;
    width: 5px;
    background-color: #1ac5ab;
    border-radius: 50%;
    display: inline-block;
    margin: 0 0 2px 5px
}

.btn-light-blue {
    background-color: #c5e3ff;
    border-radius: 6px;
    padding: 7px 12px;
    color: #37404e;
    font-size: 14px
}

.btn-pink {
    background-color: #ffcfc5;
    border-radius: 6px;
    padding: 7px 15px;
    color: #37404e;
    font-size: 14px
}

.btn-border {
    border: 1px solid rgba(6,18,36,.1);
    padding: 15px 23px 15px 23px;
    border-radius: 10px;
    background: #fff;
    color: #111112;
    font-size: 16px;
    transition-duration: .2s
}

    .btn-border:hover {
        color: #fff;
        background-color: #1ac5ab;
        transition-duration: .2s;
        transform: translateY(-3px)
    }

.btn-dots {
    border: 0;
    background-image: url(../images/theme/icons/dots.svg);
    background-position: center left;
    background-repeat: no-repeat
}

.btn-sm {
    padding: 12px 20px;
    vertical-align: middle
}

    .btn-sm img {
        float: right;
        margin: 0 0 0 10px
    }

.btn-brand-hover {
    padding: 14px 25px 14px 25px
}

    .btn-brand-hover:hover {
        background-color: #1ac5ab;
        color: #fff
    }

.box-button-shadow {
    position: relative;
    display: inline-block
}

    .box-button-shadow::before {
        background: #ffaf00;
        filter: blur(20px);
        border-radius: 10px;
        content: "";
        position: absolute;
        width: 144px;
        height: 39px;
        z-index: 1;
        right: 0;
        left: 0;
        top: 10px;
        margin: auto
    }

    .box-button-shadow a {
        position: relative;
        z-index: 12
    }

.btn-link {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #1f2938;
    text-decoration: none
}

    .btn-link:hover {
        color: #b18b34
    }

.icon-chevron-right {
    background-image: url(../images/theme/icons/chevron-right.svg);
    background-repeat: no-repeat;
    background-position: left 19px center;
    padding-left: 42px
}

    .icon-chevron-right:hover {
        background-image: url(../images/theme/icons/chevron-right-light.svg);
        color: #fff !important
    }

.btn-md {
    padding: 11px 25px
}

.btn-white-sm {
    background-color: #fff;
    padding: 8px 17px 9px 37px;
    border-color: #fff;
    font-size: 12px;
    background-position: left 13px center
}

.btn-small {
    border-radius: 6px;
    padding: 7px 15px;
    color: #37404e;
    font-size: 14px
}

.btn-tags-sm {
    padding: 10px 18px;
    background: rgba(81,146,255,.12);
    border-radius: 50px;
    font-size: 14px;
    line-height: 12px;
    transition-duration: .2s;
    color: #727272
}

    .btn-tags-sm:hover {
        transform: translateY(-2px);
        transition-duration: .2s
    }

.switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 30px;
    vertical-align: middle
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(186,186,186,.3);
    transition: .4s
}

    .slider:before {
        position: absolute;
        content: "";
        height: 21px;
        width: 21px;
        right: 5px;
        bottom: 5px;
        background-color: #1ac5ab;
        transition: .4s
    }

input:checked + .slider {
    background-color: rgba(81,146,255,.3)
}

input:focus + .slider {
    box-shadow: 0 0 1px #b18b34
}

input:checked + .slider:before {
    transform: translateX(-34px)
}

.slider.round {
    border-radius: 34px
}

    .slider.round:before {
        border-radius: 50%
    }

span.btn {
    cursor: unset
}

.cb-container {
    display: block;
    position: relative;
    padding-right: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 21px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

    .cb-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0
    }

.checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 23px;
    width: 23px;
    background-color: #fff;
    border: 2px solid #d1d1d1;
    border-radius: 4px
}

.cb-container input:checked ~ .checkmark {
    border: 2px solid #b18b34
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none
}

.cb-container input:checked ~ .checkmark:after {
    display: block
}

.cb-container .checkmark:after {
    right: -1px;
    top: -1px;
    width: 21px;
    height: 21px;
    background: #b18b34 url(../images/theme/icons/tick.svg) no-repeat center
}

input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 1
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 1
}

input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 1
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 1
}

input {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    padding-right: 20px;
    font-size: 16px;
    width: 100%
}

    input:focus {
        background: 100% 0;
        border: 1px solid rgba(151,119,250,.5)
    }

select {
    width: 100%;
    background: 100% 0;
    border: 0 solid #ececec;
    box-shadow: none;
    font-size: 16px;
    color: #37404e
}

option {
    background: #fff;
    border: 0 solid #626262;
    padding-right: 10px;
    font-size: 16px
}

textarea {
    border: 1px solid #ececec;
    border-radius: 10px;
    height: 50px;
    box-shadow: none;
    padding: 10px 20px 10px 10px;
    font-size: 16px;
    width: 100%;
    min-height: 250px
}

    textarea:focus {
        background: 100% 0;
        border: 1px solid rgba(151,119,250,.5)
    }

.form-group {
    margin-bottom: 1rem
}

    .form-group input {
        background: #fff;
        border: 1px solid #ececec;
        height: 64px;
        box-shadow: none;
        padding-right: 20px;
        font-size: 16px;
        width: 100%
    }

        .form-group input:focus {
            background: 100% 0;
            border-color: rgba(151,119,250,.5)
        }

        .form-group input.form-icons {
            padding-right: 42px
        }

label {
    margin-bottom: 5px
}

.box-swiper {
    position: relative
}

    .box-swiper .swiper-container {
        position: relative
    }

        .box-swiper .swiper-container .item-logo {
            border: 1px solid rgba(6,18,36,.1);
            padding: 39px 0 36px 0;
            display: inline-block;
            width: 100%;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 20px 60px -6px rgba(0,0,0,.04)
        }

            .box-swiper .swiper-container .item-logo img {
                max-width: 100%
            }

            .box-swiper .swiper-container .item-logo:hover {
                border: 1px solid rgba(151,119,250,.5);
                box-shadow: -20px 20px 54px rgba(0,0,0,.05)
            }

    .box-swiper .swiper-button-next:after, .box-swiper .swiper-button-prev:after {
        content: ""
    }

    .box-swiper .swiper-button-next {
        background: url(../images/slider/swiper/next.svg) no-repeat 100% 0
    }

        .box-swiper .swiper-button-next:hover {
            background: url(../images/slider/swiper/next-active.svg) no-repeat 100% 0
        }

    .box-swiper .swiper-button-prev {
        background: url(../images/slider/swiper/prev.svg) no-repeat 100% 0
    }

        .box-swiper .swiper-button-prev:hover {
            background: url(../images/slider/swiper/prev-active.svg) no-repeat 100% 0
        }

    .box-swiper .swiper-button-next, .box-swiper .swiper-button-prev {
        width: 40px;
        margin-top: -55px
    }

    .box-swiper .swiper-button-next {
        right: auto;
        left: -65px
    }

    .box-swiper .swiper-button-prev {
        right: -65px
    }

        .box-swiper .swiper-button-next.swiper-button-disabled, .box-swiper .swiper-button-prev.swiper-button-disabled {
            opacity: 1
        }

.swiper-pagination {
    text-align: center;
    width: 100%
}

.swiper-pagination-bullet {
    margin: 10px
}

.swiper-pagination-custom {
    bottom: -5px
}

.swiper-pagination-customs {
    background: url(../images/slider/swiper/dot.svg) no-repeat 100% 0;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin-right: 4px;
    margin-left: 4px
}

    .swiper-pagination-customs-active, .swiper-pagination-customs:hover {
        background: url(../images/slider/swiper/dot-active.svg) no-repeat 100% 0;
        width: 12px;
        height: 12px;
        margin-bottom: -1px;
        margin-right: 3px;
        margin-left: 3px
    }

.slider-labels {
    margin-top: 10px
}

.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    touch-action: none;
    -moz-user-select: none;
    user-select: none;
    box-sizing: border-box
}

.noUi-target {
    position: relative;
    direction: rtl
}

.noUi-base {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-origin {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.noUi-handle {
    position: relative;
    z-index: 1
}

.noUi-stacking .noUi-handle {
    z-index: 10
}

.noUi-state-tap .noUi-origin {
    transition: right .3s,top .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-base, .noUi-handle {
    transform: translate3d(0,0,0)
}

.noUi-horizontal {
    height: 4px
}

    .noUi-horizontal .noUi-handle {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        right: -7px;
        top: -7px;
        background-color: #345dbb
    }

.noUi-background {
    background: #d6d7d9
}

.noUi-connect {
    background: #345dbb;
    transition: background 450ms
}

.noUi-origin {
    border-radius: 2px
}

.noUi-target {
    border-radius: 2px
}

.noUi-draggable {
    cursor: w-resize
}

.noUi-vertical .noUi-draggable {
    cursor: n-resize
}

.noUi-handle {
    cursor: default;
    box-sizing: content-box !important
}

    .noUi-handle:active {
        border: 8px solid #345dbb;
        border: 8px solid rgba(53,93,187,.38);
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        right: -14px;
        top: -14px
    }

[disabled] .noUi-connect, [disabled].noUi-connect {
    background: #b8b8b8
}

[disabled] .noUi-handle, [disabled].noUi-origin {
    cursor: not-allowed
}

.ui-slider-handle {
    display: none
}

.ui-widget.ui-widget-content {
    border: 0 solid #ebebeb
}

.noUi-target {
    border-radius: 12px
}

.noUi-horizontal {
    height: 6px
}

.noUi-background {
    background: #ebebeb
}

.noUi-origin {
    border-radius: 12px
}

.noUi-connect {
    background: #ffaf00;
    transition: background 450ms;
    height: 6px;
    margin-top: 0
}

.noUi-horizontal .noUi-handle {
    background-color: #fff;
    border: 1px solid #d1d1d1;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.15);
    right: -8px;
    top: -8px
}

.noUi-handle:active {
    border-width: 0;
    right: -8px;
    top: -8px
}

.card-grid {
    border: .88px solid rgba(6,18,36,.1);
    background: #fff;
    border-radius: 12px;
    padding: 45px;
    margin-bottom: 30px
}

    .card-grid:hover {
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
        border-color: rgba(151,119,250,.5);
        transition-duration: .2s
    }

    .card-grid .card-heading {
        min-height: 56px
    }

    .card-grid .card-img {
        height: 85px
    }

        .card-grid .card-img img {
            max-height: 85px
        }

    .card-grid .text-stroke-40 {
        color: rgba(0,0,0,.4)
    }

    .card-grid a {
        color: #1f2938
    }

        .card-grid a:hover {
            color: #fff
        }

.card-shadow {
    box-shadow: 0 9px 26px 0 rgba(31,31,51,.06)
}

.card-grid-2 {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    background: #fff;
    height: 243px;
    cursor: pointer
}

    .card-grid-2 i {
        font-size: 20px;
        color: #000;
        transition: all .3s ease-in-out
    }

        .card-grid-2 i.fi-rr-marker {
            margin-right: 0
        }

    .card-grid-2 .card-grid-2-link {
        position: absolute;
        top: 20px;
        left: 20px
    }

    .card-grid-2:hover {
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
        border-color: rgba(151,119,250,.5)
    }

    .card-grid-2 a {
        text-decoration: none;
        color: #1f2938
    }

        .card-grid-2 a:hover {
            color: #b18b34
        }

    .card-grid-2 .card-grid-2-image-rd {
        padding: 30px 20px 0 20px;
        display: inline-block;
        width: 100%
    }

        .card-grid-2 .card-grid-2-image-rd figure {
            position: relative;
            display: inline-block
        }

            .card-grid-2 .card-grid-2-image-rd figure img {
                border-radius: 50%;
                height: 110px;
                width: 110px
            }

        .card-grid-2 .card-grid-2-image-rd.online figure::before {
            height: 18px;
            width: 18px;
            border-radius: 50%;
            content: "";
            position: absolute;
            bottom: 13px;
            left: 9px;
            background: #00c070
        }

    .card-grid-2 .card-grid-2-image {
        position: relative
    }

        .card-grid-2 .card-grid-2-image figure {
            display: block
        }

            .card-grid-2 .card-grid-2-image figure img {
                width: 100%
            }

        .card-grid-2 .card-grid-2-image .btn-urgent {
            position: absolute;
            top: 20px;
            right: 21px;
            background-color: #ffcfc5;
            border-radius: 6px;
            padding: 5px 15px;
            color: #37404e;
            font-size: 14px;
            z-index: 1
        }

    .card-grid-2 .card-block-info {
        display: inline-block;
        width: 100%;
        padding: 30px 30px 20px 30px
    }

        .card-grid-2 .card-block-info .card-2-img-text {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            padding: 4px 40px 4px 0;
            font-size: 14px;
            max-width: 90%;
            min-height: 44px
        }

            .card-grid-2 .card-block-info .card-2-img-text .card-grid-2-img-small {
                background: #e4e4e4;
                border-radius: 50%;
                padding: 5px;
                height: 32px;
                width: 32px;
                float: right;
                margin-left: 8px;
                position: absolute;
                top: 0;
                right: 0;
                text-align: center;
                line-height: 30px
            }

            .card-grid-2 .card-block-info .card-2-img-text span {
                display: inline-block;
                color: #37404e;
                font-size: 14px
            }

            .card-grid-2 .card-block-info .card-2-img-text img {
                max-width: 100%
            }

        .card-grid-2 .card-block-info .card-time {
            font-size: 14px;
            display: inline-block;
            padding: 0 25px 0 15px;
            background: url(../images/theme/icons/time.svg) no-repeat 100% 3px
        }

        .card-grid-2 .card-block-info .card-location {
            font-size: 14px;
            display: inline-block;
            padding: 0 25px 0 0;
            background: url(../images/theme/icons/marker.svg) no-repeat 100% 3px
        }

        .card-grid-2 .card-block-info .card-text-price {
            color: #5192ff;
            font-weight: 700;
            font-size: 22px
        }

            .card-grid-2 .card-block-info .card-text-price span {
                font-size: 14px;
                color: #878d96;
                font-weight: 400
            }

        .card-grid-2 .card-block-info .card-2-bottom {
            position: relative
        }

            .card-grid-2 .card-block-info .card-2-bottom .btn-grey-small {
                margin-left: 5px
            }

            .card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover {
                padding: 15px 33px;
                border: thin solid rgba(151,119,250,.5);
                font-size: 14px
            }

                .card-grid-2 .card-block-info .card-2-bottom.card-2-bottom-candidate .btn-brand-hover:hover {
                    color: #fff
                }

        .card-grid-2 .card-block-info .card-grid-2-img-medium {
            padding-right: 55px;
            font-size: 14px;
            font-weight: 600;
            color: #151515;
            line-height: 17px
        }

            .card-grid-2 .card-block-info .card-grid-2-img-medium .card-grid-2-img-small {
                background-color: #5aa6ff;
                height: 44px;
                width: 44px;
                border-radius: 8px
            }

        .card-grid-2 .card-block-info .card-profile {
            text-align: center
        }

            .card-grid-2 .card-block-info .card-profile strong {
                font-size: 18px;
                color: #1f2938;
                line-height: 18px;
                font-weight: 700;
                display: block;
                padding-bottom: 5px
            }

                .card-grid-2 .card-block-info .card-profile strong:hover {
                    color: #b18b34
                }

            .card-grid-2 .card-block-info .card-profile > span {
                color: #88929b
            }

            .card-grid-2 .card-block-info .card-profile .rate-reviews-small span {
                display: inline-block;
                vertical-align: middle
            }

                .card-grid-2 .card-block-info .card-profile .rate-reviews-small span img {
                    height: 13px;
                    display: flex
                }

    .card-grid-2 .card-grid-2-socials {
        display: inline-block;
        height: 25px;
        width: 25px
    }

        .card-grid-2 .card-grid-2-socials.icon-fb-sym {
            background: url(../images/theme/icons/fb-sym.svg) no-repeat center
        }

            .card-grid-2 .card-grid-2-socials.icon-fb-sym:hover {
                background: url(../images/theme/icons/fb-sym-hover.svg) no-repeat center
            }

        .card-grid-2 .card-grid-2-socials.icon-tw-sym {
            background: url(../images/theme/icons/tw-sym.svg) no-repeat center
        }

            .card-grid-2 .card-grid-2-socials.icon-tw-sym:hover {
                background: url(../images/theme/icons/tw-sym-hover.svg) no-repeat center
            }

        .card-grid-2 .card-grid-2-socials.icon-inst-sym {
            background: url(../images/theme/icons/inst-sym.svg) no-repeat center
        }

            .card-grid-2 .card-grid-2-socials.icon-inst-sym:hover {
                background: url(../images/theme/icons/inst-sym-hover.svg) no-repeat center
            }

        .card-grid-2 .card-grid-2-socials.icon-linkedin-sym {
            background: url(../images/theme/icons/linkedin-sym.svg) no-repeat center
        }

            .card-grid-2 .card-grid-2-socials.icon-linkedin-sym:hover {
                background: url(../images/theme/icons/linkedin-sym-hover.svg) no-repeat center
            }

.card-grid-2-list {
    margin-bottom: 35px;
    padding-bottom: 5px
}

    .card-grid-2-list.card-grid-2 .card-grid-2-link {
        top: 25px
    }

    .card-grid-2-list .card-grid-2-image-rd {
        float: right;
        width: 153px
    }

    .card-grid-2-list .card-block-info {
        padding-right: 0 !important;
        padding-left: 10px !important
    }

    .card-grid-2-list .card-block-info-list {
        display: block;
        padding-right: 150px !important
    }

        .card-grid-2-list .card-block-info-list .card-profile {
            text-align: right;
            padding-top: 25px
        }

.card-grid-3 {
    border-radius: 10px;
    border: 1px solid rgba(6,18,36,.1);
    overflow: hidden;
    margin-bottom: 0;
    background: #fff
}

    .card-grid-3:hover {
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
        border-color: rgba(151,119,250,.5)
    }

    .card-grid-3 a {
        text-decoration: none
    }

    .card-grid-3 .card-grid-3-image {
        position: relative;
        padding: 20px 30px 0 30px
    }

        .card-grid-3 .card-grid-3-image figure {
            display: block
        }

            .card-grid-3 .card-grid-3-image figure img {
                width: 100%;
                border-radius: 15px
            }

    .card-grid-3 h5 a {
        color: #1f2938
    }

        .card-grid-3 h5 a:hover {
            color: #b18b34
        }

    .card-grid-3 .card-block-info {
        display: inline-block;
        width: 100%;
        padding: 20px 30px 20px 30px
    }

        .card-grid-3 .card-block-info .card-block-rating span {
            display: inline-block;
            margin: 0 2px
        }

        .card-grid-3 .card-block-info .card-2-img-text {
            display: inline-block;
            vertical-align: middle;
            position: relative;
            padding: 4px 40px 4px 0;
            font-size: 14px
        }

            .card-grid-3 .card-block-info .card-2-img-text .card-grid-2-img-small {
                background: #e4e4e4;
                border-radius: 50%;
                padding: 5px;
                height: 32px;
                width: 32px;
                float: right;
                margin-left: 8px;
                position: absolute;
                top: 0;
                right: 0;
                text-align: center;
                line-height: 30px
            }

            .card-grid-3 .card-block-info .card-2-img-text span {
                display: inline-block;
                color: #37404e;
                font-size: 14px
            }

            .card-grid-3 .card-block-info .card-2-img-text img {
                max-width: 100%
            }

        .card-grid-3 .card-block-info .card-time {
            font-size: 14px;
            display: inline-block;
            padding: 0 25px 0 15px;
            background: url(../images/theme/icons/time.svg) no-repeat 100% 3px
        }

        .card-grid-3 .card-block-info .card-location {
            font-size: 14px;
            display: inline-block;
            padding: 0 25px 0 0;
            background: url(../images/theme/icons/marker.svg) no-repeat 100% 3px
        }

        .card-grid-3 .card-block-info .card-text-price {
            color: #5192ff;
            font-weight: 700;
            font-size: 22px
        }

            .card-grid-3 .card-block-info .card-text-price span {
                font-size: 14px;
                color: #878d96;
                font-weight: 400
            }

        .card-grid-3 .card-block-info .card-2-bottom {
            position: relative
        }

        .card-grid-3 .card-block-info .card-profile strong {
            font-size: 18px;
            color: #1f2938;
            font-weight: 700;
            display: block
        }

        .card-grid-3 .card-block-info .card-profile span {
            font-size: 16px;
            color: #727272
        }

    .card-grid-3 .card-grid-3-image-circle {
        padding-top: 35px
    }

        .card-grid-3 .card-grid-3-image-circle figure img {
            width: 100px;
            height: 100px;
            border-radius: 50%
        }

.card-shadow-2 {
    box-shadow: 0 20px 60px -6px rgba(0,0,0,.04)
}

.list-recent-jobs {
    margin-top: 40px
}

    .list-recent-jobs .card-job {
        border: 1px solid rgba(6,18,36,.1);
        padding: 26px 23px;
        border-radius: 10px;
        background-color: #fff;
        margin-bottom: 30px
    }

        .list-recent-jobs .card-job:hover {
            box-shadow: 0 20px 60px -6px rgba(0,0,0,.04);
            border: 1px solid rgba(151,119,250,.5)
        }

        .list-recent-jobs .card-job .card-job-description {
            color: #727272;
            display: inline-block;
            width: 100%
        }

        .list-recent-jobs .card-job .card-job-top--image {
            float: right;
            width: 52px;
            height: 52px;
            border-radius: 50%
        }

        .list-recent-jobs .card-job .card-job-top--info {
            display: block;
            padding-right: 67px
        }

        .list-recent-jobs .card-job .card-job-top--info-heading {
            font-weight: 700;
            font-size: 18px;
            padding-top: 3px;
            margin-bottom: 1px
        }

            .list-recent-jobs .card-job .card-job-top--info-heading a {
                color: #1f2938
            }

            .list-recent-jobs .card-job .card-job-top--info-heading:hover a {
                color: #b18b34
            }

        .list-recent-jobs .card-job .card-job-top--info .card-job-top--company {
            font-weight: 700;
            color: #b18b34;
            font-size: 12px
        }

        .list-recent-jobs .card-job .card-job-top--info .card-job-top--location, .list-recent-jobs .card-job .card-job-top--info .card-job-top--post-time, .list-recent-jobs .card-job .card-job-top--info .card-job-top--type-job {
            color: #88929b;
            font-size: 12px;
            display: inline-block;
            padding-left: 15px
        }

            .list-recent-jobs .card-job .card-job-top--info .card-job-top--location i, .list-recent-jobs .card-job .card-job-top--info .card-job-top--post-time i, .list-recent-jobs .card-job .card-job-top--info .card-job-top--type-job i {
                float: right;
                margin: 2px 0 0 5px
            }

        .list-recent-jobs .card-job .card-job-top--info .card-job-top--price {
            color: #5192ff;
            font-weight: 700;
            font-size: 22px
        }

            .list-recent-jobs .card-job .card-job-top--info .card-job-top--price span {
                font-size: 14px;
                color: #878d96;
                font-weight: 400
            }

        .list-recent-jobs .card-job .card-job-bottom .btn-urgent {
            background-color: #ffcfc5;
            border-radius: 6px;
            padding: 5px 15px;
            color: #37404e;
            font-size: 14px
        }

.card-job-bottom a.btn {
    transition-duration: .2s
}

    .card-job-bottom a.btn:hover {
        transform: translateY(-3px);
        transition-duration: .2s
    }

.card-job-bottom a.color-muted:hover {
    color: #b18b34 !important
}

.card-grid-4 {
    background-color: #fff;
    padding: 40px 30px 35px 30px;
    border-radius: 10px;
    border: thin solid #ececec
}

    .card-grid-4 a {
        text-decoration: none
    }

    .card-grid-4 .image-top-feature figure img {
        height: 65px
    }

    .card-grid-4 .card-grid-4-info {
        display: inline-block;
        width: 100%;
        padding: 10px 0 0 0
    }

    .card-grid-4 .btn-readmore {
        color: #b18b34;
        font-size: 18px;
        font-weight: 400;
        text-decoration: none
    }

        .card-grid-4 .btn-readmore:hover {
            color: #7856dd
        }

        .card-grid-4 .btn-readmore.icon-arrow {
            background: url(../images/theme/icons/arrow.svg) no-repeat left 0 top 7px;
            padding-left: 35px
        }

.card-none-bd {
    text-align: center;
    background: 100% 0
}

    .card-none-bd .card-info-bottom h3 {
        color: #b18b34;
        margin-bottom: 23px
    }

    .card-none-bd .card-info-bottom strong {
        color: #1f2938;
        font-size: 22px;
        font-weight: 700;
        display: block;
        margin-bottom: 15px
    }

    .card-none-bd .block-image {
        position: relative;
        margin-bottom: 15px
    }

.card-grid-news {
    text-align: justify;
    display: inline-block;
    margin-bottom: 55px;
    width: 100%
}

    .card-grid-news a {
        text-decoration: none
    }

    .card-grid-news .card-info-bottom {
        padding: 0 10px 10px 10px
    }

        .card-grid-news .card-info-bottom .text-gray-200 {
            line-height: 24px
        }

        .card-grid-news .card-info-bottom a {
            text-decoration: none
        }

        .card-grid-news .card-info-bottom h3 {
            color: #b18b34;
            margin-bottom: 23px
        }

            .card-grid-news .card-info-bottom h3 span.count {
                display: inline-block
            }

        .card-grid-news .card-info-bottom strong {
            color: #1f2938;
            font-size: 22px;
            font-weight: 700;
            display: block;
            margin-bottom: 15px
        }

        .card-grid-news .card-info-bottom ul {
            padding: 15px 25px 15px 0
        }

            .card-grid-news .card-info-bottom ul li {
                list-style: disc;
                color: #1ac5ab;
                float: right;
                width: 50%;
                padding: 5px 0 5px 5px;
                font-size: 14px
            }

                .card-grid-news .card-info-bottom ul li a {
                    font-size: 14px;
                    color: #88929b;
                    text-decoration: none
                }

    .card-grid-news .block-image-rd {
        position: relative;
        margin-bottom: 20px
    }

        .card-grid-news .block-image-rd img {
            border-radius: 10px
        }

.card-two-collumn {
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 1px solid #0e1c43;
    overflow: hidden;
    margin-bottom: 0;
    background: #0e1c43;
    padding: 20px;
    height: 300px;
    justify-content: space-between;
    display: grid
}

    .card-two-collumn p {
        text-align: right
    }

    .card-two-collumn.card-two-collumn-light {
        background: #fff
    }

        .card-two-collumn.card-two-collumn-light h3, .card-two-collumn.card-two-collumn-light p {
            color: #0e1c43 !important
        }

.test-author {
    align-items: center
}

    .test-author img {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        -o-object-fit: contain;
        object-fit: contain;
        margin-left: 15px
    }

    .test-author h3 {
        color: #fff !important;
        margin-bottom: 5px !important
    }

    .test-author p {
        margin: 0 !important
    }

.card-two-collumn .card-grid-3-image {
    position: relative;
    padding: 0;
    float: right;
    width: 100px
}

    .card-two-collumn .card-grid-3-image figure {
        display: block;
        overflow: hidden;
        border-radius: 10px;
        border: 0 solid #fff;
        height: 95px;
        width: 95px;
        box-shadow: -4px 1px 22px #eff3f8;
        background: rgba(239,243,248,.55)
    }

        .card-two-collumn .card-grid-3-image figure img {
            width: 110px;
            height: 110px;
            border-radius: 10px;
            -o-object-fit: contain;
            object-fit: contain;
            box-shadow: -4px 1px 22px #eff3f8;
            margin: -7px -7px 0 0;
            max-width: none
        }

.card-two-collumn .card-block-info {
    display: block;
    width: 100%;
    padding: 20px 115px 20px 30px
}

    .card-two-collumn .card-block-info .text-md {
        height: 100px;
        line-height: 25px;
        color: #37404e;
        overflow: hidden;
        position: relative;
        font-size: 16px;
        display: -webkit-box;
        -webkit-box-orient: vertical
    }

    .card-two-collumn .card-block-info.quote-left {
        position: relative;
        padding-top: 40px
    }

        .card-two-collumn .card-block-info.quote-left::before {
            content: "";
            position: absolute;
            top: 0;
            right: 115px;
            height: 30px;
            width: 30px;
            background: url(../images/theme/icons/quote-left.svg) no-repeat 100% 0
        }

    .card-two-collumn .card-block-info .card-bottom-bd {
        margin-top: 25px;
        border-top: 1px solid #f5f5f5;
        padding-top: 25px
    }

    .card-two-collumn .card-block-info .card-block-rating span {
        display: inline-block;
        margin: 0 2px
    }

    .card-two-collumn .card-block-info .card-2-img-text {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding: 4px 40px 4px 0;
        font-size: 14px
    }

        .card-two-collumn .card-block-info .card-2-img-text .card-grid-2-img-small {
            background: #e4e4e4;
            border-radius: 50%;
            padding: 5px;
            height: 32px;
            width: 32px;
            float: right;
            margin-left: 8px;
            position: absolute;
            top: 0;
            right: 0;
            text-align: center;
            line-height: 30px
        }

        .card-two-collumn .card-block-info .card-2-img-text span {
            display: inline-block;
            color: #37404e;
            font-size: 14px
        }

        .card-two-collumn .card-block-info .card-2-img-text img {
            max-width: 100%
        }

    .card-two-collumn .card-block-info .card-time {
        font-size: 14px;
        display: inline-block;
        padding: 0 25px 0 15px;
        background: url(../images/theme/icons/time.svg) no-repeat 100% 3px
    }

    .card-two-collumn .card-block-info .card-location {
        font-size: 14px;
        display: inline-block;
        padding: 0 25px 0 0;
        background: url(../images/theme/icons/marker.svg) no-repeat 100% 3px
    }

    .card-two-collumn .card-block-info .card-text-price {
        color: #5192ff;
        font-weight: 700;
        font-size: 22px
    }

        .card-two-collumn .card-block-info .card-text-price span {
            font-size: 14px;
            color: #878d96;
            font-weight: 400
        }

    .card-two-collumn .card-block-info .card-2-bottom {
        position: relative
    }

    .card-two-collumn .card-block-info .card-profile strong {
        font-size: 18px;
        color: #1f2938;
        font-weight: 500;
        display: block;
        line-height: 22px
    }

    .card-two-collumn .card-block-info .card-profile span {
        font-size: 12px;
        line-height: 22px;
        color: #727272
    }

.card-two-collumn .card-grid-3-image-circle {
    padding-top: 35px
}

    .card-two-collumn .card-grid-3-image-circle figure img {
        width: 100px;
        height: 100px;
        border-radius: 50%
    }

.nav-right {
    float: left;
    margin-top: -10px
}

    .nav-right li {
        float: right;
        padding: 0 5px 0 0
    }

        .nav-right li a, .nav-right li button {
            display: block;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 25px;
            background: 100% 0;
            border: 0;
            font-weight: 500;
            transition-duration: .2s;
            line-height: 1
        }

            .nav-right li a:hover, .nav-right li button:hover {
                background-color: #fff;
                color: #000;
                transition-duration: .2s;
                transform: translateY(-3px)
            }

            .nav-right li a.active, .nav-right li button.active {
                color: #000;
                background-color: #fff
            }

.job-text-desc {
    max-width: 70%
}

.content-job-inner {
    padding: 40px
}

.box-image-job {
    position: relative;
    text-align: center
}

    .box-image-job figure {
        display: block
    }

        .box-image-job figure img {
            max-width: 80%
        }

    .box-image-job .job-top-creator {
        max-width: 290px;
        background-color: #fff;
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
        border-radius: 20px;
        padding: 5px;
        position: absolute;
        bottom: -100px;
        right: -100px;
        animation: hero-thumb-animation 2s linear infinite alternate
    }

    .box-image-job .job-top-creator-head {
        background-color: rgba(151,119,250,.12);
        border-radius: 20px;
        padding: 18px 45px 21px 45px
    }

    .box-image-job .job-top-creator ul {
        display: block;
        padding: 24px 20px 0 20px;
        margin: 0;
        list-style: none
    }

        .box-image-job .job-top-creator ul li {
            display: inline-block;
            width: 100%;
            text-align: right;
            padding-bottom: 15px
        }

            .box-image-job .job-top-creator ul li figure {
                float: right;
                display: block
            }

                .box-image-job .job-top-creator ul li figure img {
                    width: 60px;
                    height: 50px;
                    border-radius: 50%
                }

            .box-image-job .job-top-creator ul li .job-info-creator {
                display: block;
                padding-right: 60px
            }

                .box-image-job .job-top-creator ul li .job-info-creator strong {
                    display: block;
                    font-size: 14px;
                    font-weight: 700
                }

                .box-image-job .job-top-creator ul li .job-info-creator span {
                    color: #88929b;
                    font-size: 14px
                }

.list-partners {
    display: inline-block;
    width: 100%;
    text-align: center
}

    .list-partners li {
        display: inline-block;
        padding: 25px 29px;
        vertical-align: middle
    }

        .list-partners li figure img {
            max-width: 100%;
            vertical-align: middle
        }

.box-newsletter {
    position: relative;
    padding: 57px 138px 96px 0;
    background-size: cover;
    border-bottom-left-radius: 40px;
    overflow: hidden
}

    .box-newsletter .box-form-newsletter {
        background: #fff;
        border-radius: 10px;
        max-width: 770px;
        padding: 10px;
        border-radius: 10px
    }

        .box-newsletter .box-form-newsletter form {
            display: flex
        }

            .box-newsletter .box-form-newsletter form .input-newsletter {
                width: 90%;
                padding: 15px;
                border: 0;
                min-height: 60px
            }

            .box-newsletter .box-form-newsletter form .font-heading {
                font-weight: 500
            }

    .box-newsletter .icon-send-letter {
        background-image: url(../images/theme/icons/icon-send-letter.svg);
        background-repeat: no-repeat;
        background-position: left 17px center;
        padding-left: 50px
    }

    .box-newsletter .text-md-newsletter {
        color: #fff;
        font-size: 37px;
        line-height: 55px;
        font-weight: 700
    }

    .box-newsletter .text-lg-newsletter {
        color: #fff;
        font-size: 46px;
        line-height: 56px;
        font-weight: 700
    }

.box-newsletter-bottom {
    display: inline-block;
    width: 100%;
    text-align: center
}

    .box-newsletter-bottom .newsletter-bottom {
        display: inline-block;
        margin: auto;
        position: relative;
        max-width: calc(100% - 140px);
        width: 100%;
        height: 40px;
        background: url(../images/theme/newsletter-bottom-mid.svg) repeat-x 100% 0
    }

        .box-newsletter-bottom .newsletter-bottom::after, .box-newsletter-bottom .newsletter-bottom::before {
            content: "";
            position: absolute;
            top: 0;
            height: 100%
        }

        .box-newsletter-bottom .newsletter-bottom::before {
            right: -36px;
            width: 37px;
            background: url(../images/theme/newsletter-bottom-left.svg) no-repeat 100% 0
        }

        .box-newsletter-bottom .newsletter-bottom::after {
            left: -37px;
            width: 69px;
            background: url(../images/theme/newsletter-bottom-right.svg) no-repeat left -1px
        }

.bg-patern {
    position: relative
}

    .bg-patern::before {
        content: "";
        height: 900px;
        width: 700px;
        position: absolute;
        top: 0;
        background: url(../images/theme/patern.svg) no-repeat 100% 0;
        z-index: -1
    }

    .bg-patern .container {
        z-index: 3;
        position: relative
    }

.text-mutted {
    font-size: 16px;
    color: #88929b;
    line-height: 16px
}

.text-mutted-2 {
    color: #9ea2ab
}

.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    transition: .6s;
    margin: 0 auto
}

    .preloader img {
        max-width: 250px
    }

.rate {
    height: 21px;
    padding: 0 10px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

    .rate:not(:checked) > input {
        position: absolute;
        visibility: hidden
    }

    .rate:not(:checked) > label {
        float: left;
        width: 21px;
        height: 21px;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        font-size: 30px;
        color: #ccc;
        margin-left: 3px
    }

        .rate:not(:checked) > label:before {
            content: "";
            width: 21px;
            height: 21px;
            background: url(../images/theme/icons/star-grey.svg) no-repeat;
            display: block
        }

        .rate:not(:checked) > label.checked:before {
            background: url(../images/theme/icons/star.svg) no-repeat
        }

    .rate > input:checked ~ label:before {
        background: url(../images/theme/icons/star.svg) no-repeat
    }

    .rate.small {
        transform: scale(.7);
        -moz-transform: scale(.7);
        -webkit-transform: scale(.7);
        -o-transform: scale(.7);
        -ms-transform: scale(.7);
        padding: 0
    }

.breacrumb-cover {
    background-color: #fff9f3;
    padding: 20px 0
}

.breadcrumbs li {
    color: #88929b;
    font-size: 16px;
    display: inline-block;
    padding-right: 13px;
    position: relative
}

    .breadcrumbs li::before {
        content: "/";
        position: absolute;
        top: 1px;
        right: 1px;
        color: #1f2938
    }

    .breadcrumbs li a {
        font-size: 16px;
        color: #1f2938;
        text-decoration: none
    }

        .breadcrumbs li a:hover {
            color: #b18b34
        }

    .breadcrumbs li:last-child::before {
        color: #88929b
    }

    .breadcrumbs li:first-child::before {
        display: none
    }

    .breadcrumbs li:first-child {
        padding-right: 0
    }

.banner-hero {
    padding: 0 15px 0 65px;
    position: relative;
    margin: 0 auto;
    max-width: 100% !important
}

    .banner-hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 15px;
        width: 65%;
        height: 100%;
        border-top-right-radius: 42px;
        border-top-left-radius: 150px;
        border-bottom-right-radius: 150px;
        border-bottom-left-radius: 0;
        background-color: #fff9f3;
        z-index: 1
    }

    .banner-hero .banner-inner {
        z-index: 5;
        position: relative
    }

        .banner-hero .banner-inner .banner-imgs {
            padding: 55px 0 0 0;
            position: relative
        }

            .banner-hero .banner-inner .banner-imgs .union-icon {
                position: absolute;
                top: 10%;
                right: -80px
            }

            .banner-hero .banner-inner .banner-imgs .congratulation-icon {
                position: absolute;
                top: 30%;
                right: -190px
            }

            .banner-hero .banner-inner .banner-imgs .course-icon {
                position: absolute;
                top: 14%;
                left: -60px
            }

            .banner-hero .banner-inner .banner-imgs .web-dev-icon {
                position: absolute;
                top: 50%;
                left: -60px
            }

            .banner-hero .banner-inner .banner-imgs .docs-icon {
                position: absolute;
                bottom: 1%;
                right: -75px
            }

            .banner-hero .banner-inner .banner-imgs .tick-icon {
                position: absolute;
                top: 80%;
                left: -60px
            }

    .banner-hero .text-small-primary {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        padding: 0 25px 10px 0
    }

    .banner-hero .text-small-primary--disk::before {
        content: "";
        height: 15px;
        width: 15px;
        background-color: #72e0bf;
        position: absolute;
        top: 4px;
        right: 0;
        border-radius: 50%
    }

    .banner-hero .block-banner {
        position: relative;
        z-index: 12;
        padding: 300px 0 0 0
    }

        .banner-hero .block-banner .form-find {
            background: #fff;
            box-shadow: 0 18px 40px rgba(25,15,9,.1);
            border-radius: 20px;
            display: inline-block;
            width: 100%;
            padding: 22px 30px
        }

            .banner-hero .block-banner .form-find form {
                display: flex;
                width: 100%
            }

            .banner-hero .block-banner .form-find .btn-find {
                min-width: 127px;
                padding-right: 0;
                padding-left: 0
            }

            .banner-hero .block-banner .form-find .form-input {
                border: 1px solid rgba(26,15,9,.1);
                border-radius: 10px;
                padding: 10px 50px 10px 20px;
                display: inline-block;
                width: 100%
            }

            .banner-hero .block-banner .form-find .select2 {
                border: 1px solid rgba(26,15,9,.1);
                border-radius: 10px;
                padding: 10px 42px 10px 20px;
                display: inline-block;
                width: 100% !important;
                margin-left: 10px
            }

                .banner-hero .block-banner .form-find .select2::before {
                    content: "";
                    background: url(../images/theme/icons/icon-location-2.svg) no-repeat;
                    width: 18px;
                    height: 18px;
                    position: absolute;
                    right: 18px;
                    top: 15px
                }

                .banner-hero .block-banner .form-find .select2 .select2-selection__arrow {
                    background: url(../images/theme/icons/arrow-down.svg) no-repeat left 10px center;
                    top: 11px;
                    width: 26px
                }

                    .banner-hero .block-banner .form-find .select2 .select2-selection__arrow b {
                        display: none !important;
                        background-color: #1ac5ab
                    }

            .banner-hero .block-banner .form-find .input-keysearch {
                background: url(../images/theme/icons/icon-job.svg) no-repeat right 18px center
            }

        .banner-hero .block-banner .list-tags-banner {
            position: relative
        }

            .banner-hero .block-banner .list-tags-banner a {
                text-decoration: none;
                color: #37404e;
                font-size: 16px
            }

            .banner-hero .block-banner .list-tags-banner strong {
                font-weight: 700;
                font-size: 16px;
                color: #37404e
            }

    .banner-hero .heading-banner {
        color: #fff
    }

    .banner-hero .banner-description {
        position: relative;
        font-size: 20px;
        color: #0e1c43
    }

@keyframes hero-thumb-animation {
    0% {
        transform: translateY(-20px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes hero-thumb-sm-animation {
    0% {
        transform: translateY(-20px) translateX(-50px)
    }

    100% {
        transform: translateY(-20px) translateX(0)
    }
}

@keyframes hero-thumb-sm-2-animation {
    0% {
        transform: translateY(-50px)
    }

    100% {
        transform: translateY(0)
    }
}

.shape-1 {
    animation: hero-thumb-sm-2-animation 2s linear infinite alternate
}

.shape-2 {
    animation: hero-thumb-sm-animation 4s linear infinite alternate
}

.shape-3 {
    animation: hero-thumb-sm-2-animation 4s linear infinite alternate
}

.header {
    padding: 5px 0;
    float: right;
    width: 100%;
    position: absolute;
    top: 35px;
    right: 0;
    z-index: 98;
    background: rgba(255,255,255,0)
}

    .header .logo-light {
        display: none !important
    }

@media (max-width:991px) {
    .header {
        top: 0 !important
    }
}

.header .main-header {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 20px
}

@media (max-width:991px) {
    .header .main-header {
        justify-content: space-between;
        margin-top: 0
    }

        .header .main-header .header-left {
            width: 100%;
            justify-content: space-between
        }

        .header .main-header .header {
            top: 0
        }
}

.main-header .header-right {
    display: none
}

@media (max-width:991px) {
    .main-header .header-right {
        display: block
    }
}

.header .main-header .header-left {
    display: flex;
    align-items: center
}

    .header .main-header .header-left .header-logo {
        z-index: 998
    }

        .header .main-header .header-left .header-logo a {
            justify-content: center
        }

.header .nav-main-menu {
    display: inline-block;
    width: 100%;
    padding: 0
}

.header .main-menu li {
    float: right;
    position: relative
}

    .header .main-menu li.has-children > a::after {
        content: "\f10d";
        font-family: uicons-regular-rounded !important;
        font-style: normal;
        font-weight: 400 !important;
        font-variant: normal;
        text-transform: none;
        line-height: 1 !important;
        font-size: 9px;
        opacity: .5;
        margin-right: 4px
    }

    .header .main-menu li.hr {
        padding: 0 22px
    }

        .header .main-menu li.hr span {
            background-color: #ececec;
            height: 1px;
            width: 100%;
            display: block;
            margin: 5px 0
        }

    .header .main-menu li a {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        display: block;
        padding: 14px 22px 10px 22px;
        text-decoration: none;
        position: relative;
        text-transform: uppercase
    }

        .header .main-menu li a.active, .header .main-menu li a:hover, .header .text-link-bd-btom:hover {
            color: #ffaf00;
            text-decoration: underline
        }

.sub-menu li a.active, .sub-menu li a:hover {
    color: #b18b34 !important
}

.header .main-menu li a i {
    font-size: 10px;
    opacity: .5;
    margin-right: 3px
}

.header .main-menu li ul {
    opacity: 0;
    visibility: hidden;
    transition-duration: .2s;
    position: absolute;
    top: 95% !important;
    right: 0;
    z-index: 999;
    min-width: 220px;
    border-radius: 10px;
    border: 1px solid #ececec;
    box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
    background-color: #fff;
    padding: 10px 0 15px 0
}

    .header .main-menu li ul li {
        width: 100%
    }

        .header .main-menu li ul li a {
            padding-top: 8px;
            padding-bottom: 8px;
            font-size: 14px;
            color: #636477;
            position: relative;
            padding: 14px 35px 10px 22px;
            transition: .3s
        }

            .header .main-menu li ul li a::after {
                content: "";
                position: absolute;
                right: 22px;
                top: 50%;
                width: 5px;
                height: 5px;
                background-color: #1ac5ab;
                border-radius: 50%;
                opacity: .7;
                transition-duration: .2s
            }

            .header .main-menu li ul li a:hover {
                padding-right: 38px;
                transition: .5s
            }

                .header .main-menu li ul li a:hover::after {
                    opacity: 1;
                    transition-duration: .3s
                }

        .header .main-menu li ul li ul {
            top: 0;
            right: 100%
        }

.header .main-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin-top: 15px
}

    .header .main-menu li:hover > ul li {
        width: 100%
    }

.header .text-link-bd-btom {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    display: inline-block;
    position: relative;
    padding-right: 13px
}

    .header .text-link-bd-btom::before {
        content: "";
        background: #fff;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -3px;
        animation: shadow-pulse 1s infinite
    }

.navbar {
    padding-top: 0;
    margin-right: 40px;
    padding-bottom: 0
}

    .navbar a {
        color: #0e1c43 !important;
        font-weight: 600;
        text-transform: capitalize
    }

.header.header-2 {
    background-color: #fff9f3
}

.sticky-bar {
    background: #fff !important
}

    .sticky-bar.stick {
        animation: .7s ease-in-out 0s normal none 1 running fadeInDown;
        box-shadow: 0 8px 20px 0 rgba(0,0,0,.05);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 98;
        right: 0;
        transition: all .3s ease 0s;
        border-bottom: 1px solid #0e1c43 !important;
        background: #0e1c43 !important;
        padding: 0 0 5px
    }

        .sticky-bar.stick .logo-light {
            display: flex !important;
            text-align: center
        }

            .sticky-bar.stick .logo-light img {
                max-width: 80%
            }

        .sticky-bar.stick .logo-dark {
            display: none !important
        }

        .sticky-bar.stick .main-header {
            margin-top: 5px
        }

        .sticky-bar.stick .navbar a {
            color: #fff !important
        }

@media (max-width:991px) {
    .sticky-bar.stick {
        padding-top: 5px
    }
}

body.homepage .sticky-bar.stick {
    padding: 40px 0 5px
}

.sticky-bar.stick.sticky-white-bg {
    background-color: #fff
}

.sticky-bar.stick.sticky-blue-bg {
    background-color: #3286e0
}

.user-account {
    display: flex;
    align-items: center
}

    .user-account img {
        max-width: 50px;
        border-radius: 50%;
        margin-left: 10px
    }

    .user-account .user-name {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 14px
    }

.perfect-scroll {
    height: 100vh;
    width: 300px;
    position: relative
}

.body-overlay-1 {
    background: 100% 0;
    height: 100%;
    right: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    cursor: crosshair;
    z-index: 997
}

.mobile-menu-active .body-overlay-1 {
    opacity: 1;
    visibility: visible
}

.mobile-header-wrapper-style {
    position: fixed;
    top: 0;
    width: 380px;
    min-height: 100vh;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .25s cubic-bezier(.645,.045,.355,1);
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0,0,0,.09);
    z-index: 998
}

    .mobile-header-wrapper-style.sidebar-visible {
        visibility: visible;
        opacity: 1;
        transform: translate(0,0)
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner {
        padding: 0 0 30px;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden
    }

        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 34px 30px 30px 30px;
            background-color: #fff;
            align-items: center;
            align-self: center;
            border-bottom: thin solid #ececec
        }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a {
                display: block
            }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
                    width: 100px
                }

        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
            padding: 90px 30px 30px 30px
        }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
                display: block;
                position: relative;
                padding: 13px 0
            }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.hr {
                    display: none
                }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
                    border-bottom: none
                }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand {
                    left: 0;
                    position: absolute;
                    cursor: pointer;
                    z-index: 9;
                    text-align: center;
                    font-size: 12px;
                    display: block;
                    width: 30px;
                    height: 30px;
                    line-height: 38px;
                    top: 5px;
                    color: #1f2938
                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children .menu-expand i {
                        font-size: 18px;
                        font-weight: 300;
                        opacity: .5
                    }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand {
                    background: rgba(255,255,255,.2)
                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.has-children.active > .menu-expand i::before {
                        content: "\f113"
                    }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a {
                    font-size: 16px;
                    line-height: 1;
                    text-transform: capitalize;
                    font-weight: 500;
                    position: relative;
                    display: inline-block;
                    color: #080a28;
                    transition-duration: .2s
                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
                        margin-left: 5px
                    }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
                    padding: 10px 10px 0 0
                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li {
                        padding: 10px 0;
                        border-bottom: none
                    }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children .menu-expand {
                            top: 0
                        }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a {
                            padding-right: 13px;
                            transition-duration: .2s
                        }

                            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li:hover a::before {
                                opacity: 1;
                                transition-duration: .2s
                            }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
                            font-size: 14px;
                            display: block;
                            font-weight: 500;
                            color: #636477;
                            padding-right: 10px;
                            position: relative;
                            transition-duration: .2s
                        }

                            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a::before {
                                content: "";
                                position: absolute;
                                right: 0;
                                top: 50%;
                                margin-top: -3px;
                                width: 5px;
                                height: 5px;
                                background-color: #1ac5ab;
                                border-radius: 50%;
                                opacity: .7;
                                transition-duration: .2s
                            }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
                            margin-top: 0
                        }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.has-children.active {
                            padding-bottom: 0
                        }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a {
                    color: #b18b34;
                    padding-right: 3px;
                    transition-duration: .2s
                }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .categories-dropdown-wrap ul li a {
                padding: 5px 15px
            }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap {
                padding: 20px;
                border-radius: 5px;
                border: 1px solid #ececec;
                margin: 17px 0 30px 0
            }

                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info {
                    position: relative;
                    margin-bottom: 13px
                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
                        margin-bottom: 0
                    }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a {
                        font-size: 14px;
                        display: block;
                        font-weight: 500;
                        color: #1f2938
                    }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
                            color: #b18b34
                        }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a i {
                            font-size: 14px;
                            color: #b18b34;
                            margin-left: 8px
                        }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown {
                        margin-top: 5px;
                        display: none;
                        background-color: transparent;
                        box-shadow: none;
                        padding: 10px 0 0 0;
                        width: 100%;
                        z-index: 11
                    }

                        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li {
                            padding-bottom: 10px
                        }

                            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li:last-child {
                                padding-bottom: 0
                            }

                            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a {
                                font-size: 16px;
                                color: rgba(255,255,255,.7);
                                font-weight: 400
                            }

                                .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
                                    color: #b18b34
                                }

                    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover > a {
                        color: #1f2938
                    }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-border {
                border-bottom: 1px solid rgba(255,255,255,.15)
            }

            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .site-copyright {
                font-size: 13px;
                color: #88929b
            }

.burger-icon {
    width: 24px;
    height: 20px;
    cursor: pointer;
    transition: all .25s cubic-bezier(.645,.045,.355,1)
}

    .burger-icon > span {
        display: block;
        position: absolute;
        right: 0;
        width: 100%;
        height: 2px
    }

        .burger-icon > span.burger-icon-top {
            top: 2px
        }

        .burger-icon > span.burger-icon-bottom {
            bottom: 2px
        }

        .burger-icon > span.burger-icon-mid {
            top: 9px
        }

    .burger-icon.burger-close > span.burger-icon-top {
        display: none;
        opacity: 0
    }

    .burger-icon.burger-close > span.burger-icon-mid {
        top: 8px;
        transform: rotate(-45deg)
    }

    .burger-icon.burger-close > span.burger-icon-bottom {
        bottom: 10px;
        transform: rotate(45deg)
    }

    .burger-icon > span::after, .burger-icon > span::before {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: #333
    }

    .burger-icon.burger-icon-white > span::after, .burger-icon.burger-icon-white > span::before {
        background-color: #fff
    }

.mobile-search form {
    background-color: #f2f3f4;
    border-radius: 8px;
    height: 50px;
    padding: 0 28px 0 15px;
    position: relative
}

    .mobile-search form input {
        border: 0;
        background-color: transparent;
        width: 100%
    }

    .mobile-search form i {
        position: absolute;
        right: 18px;
        top: 16px;
        font-size: 18px;
        color: #878d96
    }

.mobile-social-icon h6 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 30px
}

.mobile-social-icon a {
    text-align: center;
    font-size: 14px;
    margin-left: 5px;
    transition-duration: .5s;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background: #efeaff;
    border-radius: 30px;
    line-height: 1;
    align-content: center;
    justify-content: center
}

    .mobile-social-icon a img {
        max-width: 18px
    }

        .mobile-social-icon a img:hover {
            opacity: .8
        }

    .mobile-social-icon a:hover {
        transform: translateY(-2px);
        transition-duration: .5s;
        margin-top: -2px
    }

    .mobile-social-icon a:last-child {
        margin-left: 0
    }

.mobile-account {
    margin: 15px 0;
    padding: 30px 0 20px 0;
    border-top: thin solid #ececec
}

    .mobile-account h6 {
        font-weight: 600;
        font-size: 18px
    }

    .mobile-account ul li {
        padding: 13px 0
    }

        .mobile-account ul li a {
            font-size: 15px;
            line-height: 1;
            text-transform: capitalize;
            font-weight: 500;
            position: relative;
            display: inline-block;
            color: #636477;
            transition-duration: .2s
        }

        .mobile-account ul li:hover a {
            padding-right: 3px;
            transition-duration: .2s;
            color: #b18b34
        }

.sidebar-title {
    border-bottom: thin solid #ececec;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px
}

.search-form form {
    position: relative
}

    .search-form form input {
        border: 1px solid #ececec;
        border-radius: 10px;
        height: 64px;
        box-shadow: none;
        padding-right: 20px;
        font-size: 16px;
        width: 100%
    }

    .search-form form button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        border: none;
        font-size: 20px;
        height: 100%;
        padding: 0 24px;
        background-color: transparent;
        color: #242424
    }

.widget-categories {
    background-color: #f4f6fa !important
}

    .widget-categories li {
        padding: 8px 0
    }

        .widget-categories li + li {
            border-top: 1px solid #ececec
        }

        .widget-categories li a {
            color: #1f2938;
            font-size: 16px
        }

        .widget-categories li span.count {
            background-color: rgba(81,146,255,.12);
            color: #1f2938;
            border-radius: 3px;
            display: block;
            padding: 3px 5px;
            min-width: 26px;
            text-align: center
        }

        .widget-categories li:hover span.count {
            background-color: #1ac5ab;
            color: #fff
        }

.post-list-small-item {
    transition-duration: .2s
}

    .post-list-small-item:hover {
        transition-duration: .2s;
        transform: translateY(-3px)
    }

    .post-list-small-item figure img {
        max-width: 85px;
        border-radius: 5px
    }

    .post-list-small-item .post-meta {
        font-size: 13px
    }

        .post-list-small-item .post-meta img {
            max-width: 30px;
            border-radius: 50%;
            margin-left: 5px
        }

    .post-list-small-item h5 {
        font-weight: 600;
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 10px
    }

    .post-list-small-item:not(:last-child) {
        margin-bottom: 15px
    }

.footer .menu-footer {
    display: inline-block
}

    .footer .menu-footer li {
        list-style: none;
        margin-bottom: 4px
    }

        .footer .menu-footer li a {
            color: #fff;
            font-size: 14px;
            text-decoration: none;
            transition-duration: .2s
        }

            .footer .menu-footer li a:hover {
                color: #b18b34;
                transition-duration: .2s;
                padding-right: 3px
            }

.footer .footer-bottom {
    border-top: 1px solid rgba(151,119,250,.4);
    padding: 30px 0;
    color: #fff;
    font-size: 14px
}

    .footer .footer-bottom strong {
        color: #b18b34;
        font-weight: 700
    }

    .footer .footer-bottom a {
        text-decoration: none
    }

    .footer .footer-bottom .icon-socials {
        display: inline-block;
        margin-right: 10px;
        height: 30px;
        width: 30px;
        transition-duration: .2s
    }

        .footer .footer-bottom .icon-socials:hover {
            transform: translateY(-3px);
            transition-duration: .2s
        }

        .footer .footer-bottom .icon-socials.icon-facebook {
            background: url(../images/theme/icons/facebook.webp) no-repeat 100% 0;
            transition-duration: .2s
        }

            .footer .footer-bottom .icon-socials.icon-facebook:hover {
                background: url(../images/theme/icons/facebook-hover.svg) no-repeat 100% 0;
                transition-duration: .2s
            }

        .footer .footer-bottom .icon-socials.icon-twitter {
            background: url(../images/theme/icons/twitter.svg) no-repeat 100% 0;
            transition-duration: .2s
        }

            .footer .footer-bottom .icon-socials.icon-twitter:hover {
                background: url(../images/theme/icons/twitter-hover.svg) no-repeat 100% 0;
                transition-duration: .2s
            }

        .footer .footer-bottom .icon-socials.icon-instagram {
            background: url(../images/theme/icons/instagram.svg) no-repeat 100% 0;
            transition-duration: .2s
        }

            .footer .footer-bottom .icon-socials.icon-instagram:hover {
                background: url(../images/theme/icons/instagram-hover.svg) no-repeat 100% 0;
                transition-duration: .2s
            }

        .footer .footer-bottom .icon-socials.icon-linkedin {
            background: url(../images/theme/icons/linkedin.svg) no-repeat 100% 0;
            transition-duration: .2s
        }

            .footer .footer-bottom .icon-socials.icon-linkedin:hover {
                background: url(../images/theme/icons/linkedin-hover.svg) no-repeat 100% 0;
                transition-duration: .2s
            }

#scrollUp {
    width: 42px;
    height: 42px;
    color: #000;
    left: 30px;
    bottom: 30px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    z-index: 999 !important;
    border: 0;
    transition-duration: .2s;
    background-color: transparent;
    border: 1px solid #000
}

    #scrollUp i {
        display: block;
        line-height: 46px !important;
        font-size: 20px;
        color: #000
    }

    #scrollUp:hover {
        transform: translateY(-3px);
        transition-duration: .2s
    }

.section-padding-30 {
    padding: 30px 0
}

.section-padding-50 {
    padding: 50px 0
}

.section-padding-60 {
    padding: 60px 0
}

.section-padding {
    padding: 25px 0
}

.ptb-0 {
    padding: 0
}

.ptb-10 {
    padding: 10px 0
}

.ptb-20 {
    padding: 20px 0
}

.ptb-30 {
    padding: 30px 0
}

.ptb-35 {
    padding: 35px 0
}

.ptb-32 {
    padding: 32px 0
}

.ptb-40 {
    padding: 40px 0
}

.ptb-50 {
    padding: 50px 0
}

.ptb-60 {
    padding: 60px 0
}

.ptb-70 {
    padding: 70px 0
}

.ptb-80 {
    padding: 80px 0
}

.ptb-90 {
    padding: 90px 0
}

.ptb-100 {
    padding: 100px 0
}

.ptb-110 {
    padding: 110px 0
}

.ptb-120 {
    padding: 120px 0
}

.ptb-130 {
    padding: 130px 0
}

.ptb-140 {
    padding: 140px 0
}

.ptb-150 {
    padding: 150px 0
}

.ptb-160 {
    padding: 160px 0
}

.ptb-170 {
    padding: 170px 0
}

.ptb-177 {
    padding: 177px 0
}

.ptb-180 {
    padding: 180px 0
}

.ptb-190 {
    padding: 190px 0
}

.ptb-200 {
    padding: 200px 0
}

.ptb-210 {
    padding: 210px 0
}

.ptb-220 {
    padding: 220px 0
}

.ptb-290 {
    padding: 290px 0
}

.ptb-310 {
    padding: 310px 0
}

.p-10 {
    padding: 10px !important
}

.p-15 {
    padding: 15px !important
}

.p-20 {
    padding: 20px !important
}

.p-25 {
    padding: 25px !important
}

.p-30 {
    padding: 30px !important
}

.p-40 {
    padding: 40px !important
}

.p-65 {
    padding: 65px !important
}

.pt-5 {
    padding-top: 5px !important
}

.pt-10 {
    padding-top: 10px !important
}

.pt-15 {
    padding-top: 15px !important
}

.pt-20 {
    padding-top: 20px !important
}

.pt-25 {
    padding-top: 25px !important
}

.pt-30 {
    padding-top: 30px !important
}

.pt-35 {
    padding-top: 35px !important
}

.pt-40 {
    padding-top: 40px !important
}

.pt-45 {
    padding-top: 45px !important
}

.pt-50 {
    padding-top: 50px !important
}

.pt-55 {
    padding-top: 55px !important
}

.pt-60 {
    padding-top: 60px !important
}

.pt-65 {
    padding-top: 65px !important
}

.pt-70 {
    padding-top: 70px !important
}

.pt-75 {
    padding-top: 75px !important
}

.pt-80 {
    padding-top: 80px !important
}

.pt-85 {
    padding-top: 85px !important
}

.pt-90 {
    padding-top: 90px !important
}

.pt-95 {
    padding-top: 95px !important
}

.pt-100 {
    padding-top: 100px !important
}

.pt-105 {
    padding-top: 105px !important
}

.pt-110 {
    padding-top: 110px !important
}

.pt-115 {
    padding-top: 115px !important
}

.pt-120 {
    padding-top: 120px !important
}

.pt-125 {
    padding-top: 125px !important
}

.pt-130 {
    padding-top: 130px !important
}

.pt-135 {
    padding-top: 135px !important
}

.pt-140 {
    padding-top: 140px !important
}

.pt-145 {
    padding-top: 145px !important
}

.pt-150 {
    padding-top: 150px !important
}

.pt-155 {
    padding-top: 155px !important
}

.pt-160 {
    padding-top: 160px !important
}

.pt-165 {
    padding-top: 165px !important
}

.pt-170 {
    padding-top: 170px !important
}

.pt-175 {
    padding-top: 175px !important
}

.pt-180 {
    padding-top: 180px !important
}

.pt-185 {
    padding-top: 185px !important
}

.pt-190 {
    padding-top: 190px !important
}

.pt-195 {
    padding-top: 195px !important
}

.pt-200 {
    padding-top: 200px !important
}

.pt-260 {
    padding-top: 260px !important
}

.pb-5 {
    padding-bottom: 5px !important
}

.pb-10 {
    padding-bottom: 10px !important
}

.pb-15 {
    padding-bottom: 15px !important
}

.pb-20 {
    padding-bottom: 20px !important
}

.pb-25 {
    padding-bottom: 25px !important
}

.pb-30 {
    padding-bottom: 30px !important
}

.pb-35 {
    padding-bottom: 35px !important
}

.pb-40 {
    padding-bottom: 40px !important
}

.pb-45 {
    padding-bottom: 45px !important
}

.pb-50 {
    padding-bottom: 50px !important
}

.pb-55 {
    padding-bottom: 55px !important
}

.pb-60 {
    padding-bottom: 60px !important
}

.pb-65 {
    padding-bottom: 65px !important
}

.pb-70 {
    padding-bottom: 70px !important
}

.pb-75 {
    padding-bottom: 75px !important
}

.pb-80 {
    padding-bottom: 80px !important
}

.pb-85 {
    padding-bottom: 85px !important
}

.pb-90 {
    padding-bottom: 90px !important
}

.pb-95 {
    padding-bottom: 95px !important
}

.pb-100 {
    padding-bottom: 100px !important
}

.pb-105 {
    padding-bottom: 105px !important
}

.pb-110 {
    padding-bottom: 110px !important
}

.pb-115 {
    padding-bottom: 115px !important
}

.pb-120 {
    padding-bottom: 120px !important
}

.pb-125 {
    padding-bottom: 125px !important
}

.pb-130 {
    padding-bottom: 130px !important
}

.pb-135 {
    padding-bottom: 135px !important
}

.pb-140 {
    padding-bottom: 140px !important
}

.pb-145 {
    padding-bottom: 145px !important
}

.pb-150 {
    padding-bottom: 150px !important
}

.pb-155 {
    padding-bottom: 155px !important
}

.pb-160 {
    padding-bottom: 160px !important
}

.pb-165 {
    padding-bottom: 165px !important
}

.pb-170 {
    padding-bottom: 170px !important
}

.pb-175 {
    padding-bottom: 175px !important
}

.pb-180 {
    padding-bottom: 180px !important
}

.pb-185 {
    padding-bottom: 185px !important
}

.pb-190 {
    padding-bottom: 190px !important
}

.pb-195 {
    padding-bottom: 195px !important
}

.pb-200 {
    padding-bottom: 200px !important
}

.pl-0 {
    padding-right: 0 !important
}

.pl-5 {
    padding-right: 5px !important
}

.pl-10 {
    padding-right: 10px !important
}

.pl-15 {
    padding-right: 15px !important
}

.pl-20 {
    padding-right: 20px !important
}

.pl-25 {
    padding-right: 25px !important
}

.pl-30 {
    padding-right: 30px !important
}

.pl-35 {
    padding-right: 35px !important
}

.pl-40 {
    padding-right: 40px !important
}

.pl-45 {
    padding-right: 45px !important
}

.pl-50 {
    padding-right: 50px !important
}

.pl-55 {
    padding-right: 55px !important
}

.pl-60 {
    padding-right: 60px !important
}

.pl-65 {
    padding-right: 65px !important
}

.pl-70 {
    padding-right: 70px !important
}

.pl-75 {
    padding-right: 75px !important
}

.pl-80 {
    padding-right: 80px !important
}

.pl-85 {
    padding-right: 85px !important
}

.pl-90 {
    padding-right: 90px !important
}

.pl-95 {
    padding-right: 95px !important
}

.pl-100 {
    padding-right: 100px !important
}

.pl-105 {
    padding-right: 105px !important
}

.pl-110 {
    padding-right: 110px !important
}

.pl-115 {
    padding-right: 115px !important
}

.pl-120 {
    padding-right: 120px !important
}

.pl-125 {
    padding-right: 125px !important
}

.pl-130 {
    padding-right: 130px !important
}

.pl-135 {
    padding-right: 135px !important
}

.pl-140 {
    padding-right: 140px !important
}

.pl-145 {
    padding-right: 145px !important
}

.pl-150 {
    padding-right: 150px !important
}

.pl-155 {
    padding-right: 155px !important
}

.pl-160 {
    padding-right: 160px !important
}

.pl-165 {
    padding-right: 165px !important
}

.pl-170 {
    padding-right: 170px !important
}

.pl-175 {
    padding-right: 175px !important
}

.pl-180 {
    padding-right: 180px !important
}

.pl-185 {
    padding-right: 185px !important
}

.pl-190 {
    padding-right: 190px !important
}

.pl-195 {
    padding-right: 195px !important
}

.pl-200 {
    padding-right: 200px !important
}

.pr-5 {
    padding-left: 5px !important
}

.pr-10 {
    padding-left: 10px !important
}

.pr-15 {
    padding-left: 15px !important
}

.pr-20 {
    padding-left: 20px !important
}

.pr-25 {
    padding-left: 25px !important
}

.pr-30 {
    padding-left: 30px !important
}

.pr-35 {
    padding-left: 35px !important
}

.pr-40 {
    padding-left: 40px !important
}

.pr-45 {
    padding-left: 45px !important
}

.pr-50 {
    padding-left: 50px !important
}

.pr-55 {
    padding-left: 55px !important
}

.pr-60 {
    padding-left: 60px !important
}

.pr-65 {
    padding-left: 65px !important
}

.pr-70 {
    padding-left: 70px !important
}

.pr-75 {
    padding-left: 75px !important
}

.pr-80 {
    padding-left: 80px !important
}

.pr-85 {
    padding-left: 85px !important
}

.pr-90 {
    padding-left: 90px !important
}

.pr-95 {
    padding-left: 95px !important
}

.pr-100 {
    padding-left: 100px !important
}

.pr-105 {
    padding-left: 105px !important
}

.pr-110 {
    padding-left: 110px !important
}

.pr-115 {
    padding-left: 115px !important
}

.pr-120 {
    padding-left: 120px !important
}

.pr-125 {
    padding-left: 125px !important
}

.pr-130 {
    padding-left: 130px !important
}

.pr-135 {
    padding-left: 135px !important
}

.pr-140 {
    padding-left: 140px !important
}

.pr-145 {
    padding-left: 145px !important
}

.pr-150 {
    padding-left: 150px !important
}

.pr-155 {
    padding-left: 155px !important
}

.pr-160 {
    padding-left: 160px !important
}

.pr-165 {
    padding-left: 165px !important
}

.pr-170 {
    padding-left: 170px !important
}

.pr-175 {
    padding-left: 175px !important
}

.pr-180 {
    padding-left: 180px !important
}

.pr-185 {
    padding-left: 185px !important
}

.pr-190 {
    padding-left: 190px !important
}

.pr-195 {
    padding-left: 195px !important
}

.pr-200 {
    padding-left: 200px !important
}

.plr-5-percent {
    padding: 0 5%
}

.mtb-0 {
    margin: 0
}

.mtb-10 {
    margin: 10px 0
}

.mtb-15 {
    margin: 15px 0
}

.mtb-20 {
    margin: 20px 0
}

.mtb-30 {
    margin: 30px 0
}

.mtb-40 {
    margin: 40px 0
}

.mtb-50 {
    margin: 50px 0
}

.mtb-60 {
    margin: 60px 0
}

.mtb-70 {
    margin: 70px 0
}

.mtb-80 {
    margin: 80px 0
}

.mtb-90 {
    margin: 90px 0
}

.mtb-100 {
    margin: 100px 0
}

.mtb-110 {
    margin: 110px 0
}

.mtb-120 {
    margin: 120px 0
}

.mtb-130 {
    margin: 130px 0
}

.mtb-140 {
    margin: 140px 0
}

.mtb-150 {
    margin: 150px 0
}

.mtb-290 {
    margin: 290px 0
}

.mb-24 {
    margin-bottom: 24px
}

.mt-5 {
    margin-top: 5px !important
}

.mt-8 {
    margin-top: 8px !important
}

.mt-10 {
    margin-top: 10px !important
}

.mt-15 {
    margin-top: 15px !important
}

.mt-20 {
    margin-top: 20px !important
}

.mt-25 {
    margin-top: 25px !important
}

.mt-30 {
    margin-top: 30px !important
}

.mt-35 {
    margin-top: 35px !important
}

.mt-40 {
    margin-top: 40px !important
}

.mt-45 {
    margin-top: 45px !important
}

.mt-50 {
    margin-top: 50px !important
}

.mt-55 {
    margin-top: 55px !important
}

.mt-60 {
    margin-top: 60px !important
}

@media (max-width:991px) {
    .mt-60 {
        margin-top: 30px !important
    }
}

.mt-65 {
    margin-top: 65px !important
}

.mt-70 {
    margin-top: 70px !important
}

.mt-75 {
    margin-top: 75px !important
}

.mt-80 {
    margin-top: 80px !important
}

.mt-85 {
    margin-top: 85px !important
}

.mt-90 {
    margin-top: 90px !important
}

.mt-95 {
    margin-top: 95px !important
}

.mt-100 {
    margin-top: 100px !important
}

.mt-105 {
    margin-top: 105px !important
}

.mt-110 {
    margin-top: 110px !important
}

.mt-115 {
    margin-top: 115px !important
}

.mt-120 {
    margin-top: 120px !important
}

.mt-125 {
    margin-top: 125px !important
}

.mt-130 {
    margin-top: 130px !important
}

.mt-135 {
    margin-top: 135px !important
}

.mt-140 {
    margin-top: 140px !important
}

.mt-145 {
    margin-top: 145px !important
}

.mt-150 {
    margin-top: 150px !important
}

.mt-155 {
    margin-top: 155px !important
}

.mt-160 {
    margin-top: 160px !important
}

.mt-165 {
    margin-top: 165px !important
}

.mt-170 {
    margin-top: 170px !important
}

.mt-175 {
    margin-top: 175px !important
}

.mt-180 {
    margin-top: 180px !important
}

.mt-185 {
    margin-top: 185px !important
}

.mt-190 {
    margin-top: 190px !important
}

.mt-195 {
    margin-top: 195px !important
}

.mt-200 {
    margin-top: 200px !important
}

.mb-5 {
    margin-bottom: 5px !important
}

.mb-10 {
    margin-bottom: 10px !important
}

.mb-15 {
    margin-bottom: 15px !important
}

.mb-20 {
    margin-bottom: 20px !important
}

.mb-25 {
    margin-bottom: 25px !important
}

.mb-30 {
    margin-bottom: 30px !important
}

.mb-35 {
    margin-bottom: 35px !important
}

.mb-40 {
    margin-bottom: 40px !important
}

.mb-45 {
    margin-bottom: 45px !important
}

.mb-50 {
    margin-bottom: 50px !important
}

.mb-55 {
    margin-bottom: 55px !important
}

.mb-60 {
    margin-bottom: 60px !important
}

.mb-65 {
    margin-bottom: 65px !important
}

.mb-70 {
    margin-bottom: 70px !important
}

.mb-75 {
    margin-bottom: 75px !important
}

.mb-80 {
    margin-bottom: 80px !important
}

.mb-85 {
    margin-bottom: 85px !important
}

.mb-90 {
    margin-bottom: 90px !important
}

.mb-95 {
    margin-bottom: 95px !important
}

.mb-100 {
    margin-bottom: 100px !important
}

.mb-105 {
    margin-bottom: 105px !important
}

.mb-110 {
    margin-bottom: 110px !important
}

.mb-115 {
    margin-bottom: 115px !important
}

.mb-120 {
    margin-bottom: 120px !important
}

.mb-125 {
    margin-bottom: 125px !important
}

.mb-130 {
    margin-bottom: 130px !important
}

.mb-135 {
    margin-bottom: 135px !important
}

.mb-140 {
    margin-bottom: 140px !important
}

.mb-145 {
    margin-bottom: 145px !important
}

.mb-150 {
    margin-bottom: 150px !important
}

.mb-155 {
    margin-bottom: 155px !important
}

.mb-160 {
    margin-bottom: 160px !important
}

.mb-165 {
    margin-bottom: 165px !important
}

.mb-170 {
    margin-bottom: 170px !important
}

.mb-175 {
    margin-bottom: 175px !important
}

.mb-180 {
    margin-bottom: 180px !important
}

.mb-185 {
    margin-bottom: 185px !important
}

.mb-190 {
    margin-bottom: 190px !important
}

.mb-195 {
    margin-bottom: 195px !important
}

.mb-200 {
    margin-bottom: 200px !important
}

.ml-0 {
    margin-right: 0 !important
}

.ml-5 {
    margin-right: 5px !important
}

.ml-10 {
    margin-right: 10px !important
}

.ml-15 {
    margin-right: 15px !important
}

.ml-20 {
    margin-right: 20px !important
}

.ml-25 {
    margin-right: 25px !important
}

.ml-30 {
    margin-right: 30px !important
}

.ml-35 {
    margin-right: 35px !important
}

.ml-40 {
    margin-right: 40px !important
}

.ml-45 {
    margin-right: 45px !important
}

.ml-50 {
    margin-right: 50px !important
}

.ml-55 {
    margin-right: 55px !important
}

.ml-60 {
    margin-right: 60px !important
}

.ml-65 {
    margin-right: 65px !important
}

.ml-70 {
    margin-right: 70px !important
}

.ml-75 {
    margin-right: 75px !important
}

.ml-80 {
    margin-right: 80px !important
}

.ml-85 {
    margin-right: 85px !important
}

.ml-90 {
    margin-right: 90px !important
}

.ml-95 {
    margin-right: 95px !important
}

.ml-100 {
    margin-right: 100px !important
}

.ml-105 {
    margin-right: 105px !important
}

.ml-110 {
    margin-right: 110px !important
}

.ml-115 {
    margin-right: 115px !important
}

.ml-120 {
    margin-right: 120px !important
}

.ml-125 {
    margin-right: 125px !important
}

.ml-130 {
    margin-right: 130px !important
}

.ml-135 {
    margin-right: 135px !important
}

.ml-140 {
    margin-right: 140px !important
}

.ml-145 {
    margin-right: 145px !important
}

.ml-150 {
    margin-right: 150px !important
}

.ml-155 {
    margin-right: 155px !important
}

.ml-160 {
    margin-right: 160px !important
}

.ml-165 {
    margin-right: 165px !important
}

.ml-170 {
    margin-right: 170px !important
}

.ml-175 {
    margin-right: 175px !important
}

.ml-180 {
    margin-right: 180px !important
}

.ml-185 {
    margin-right: 185px !important
}

.ml-190 {
    margin-right: 190px !important
}

.ml-195 {
    margin-right: 195px !important
}

.ml-200 {
    margin-right: 200px !important
}

.mr-5 {
    margin-left: 5px !important
}

.mr-10 {
    margin-left: 10px !important
}

.mr-15 {
    margin-left: 15px !important
}

.mr-20 {
    margin-left: 20px !important
}

.mr-25 {
    margin-left: 25px !important
}

.mr-30 {
    margin-left: 30px !important
}

.mr-35 {
    margin-left: 35px !important
}

.mr-40 {
    margin-left: 40px !important
}

.mr-45 {
    margin-left: 45px !important
}

.mr-50 {
    margin-left: 50px !important
}

.mr-55 {
    margin-left: 55px !important
}

.mr-60 {
    margin-left: 60px !important
}

.mr-65 {
    margin-left: 65px !important
}

.mr-70 {
    margin-left: 70px !important
}

.mr-75 {
    margin-left: 75px !important
}

.mr-80 {
    margin-left: 80px !important
}

.mr-85 {
    margin-left: 85px !important
}

.mr-90 {
    margin-left: 90px !important
}

.mr-95 {
    margin-left: 95px !important
}

.mr-100 {
    margin-left: 100px !important
}

.mr-105 {
    margin-left: 105px !important
}

.mr-110 {
    margin-left: 110px !important
}

.mr-115 {
    margin-left: 115px !important
}

.mr-120 {
    margin-left: 120px !important
}

.mr-125 {
    margin-left: 125px !important
}

.mr-130 {
    margin-left: 130px !important
}

.mr-135 {
    margin-left: 135px !important
}

.mr-140 {
    margin-left: 140px !important
}

.mr-145 {
    margin-left: 145px !important
}

.mr-150 {
    margin-left: 150px !important
}

.mr-155 {
    margin-left: 155px !important
}

.mr-160 {
    margin-left: 160px !important
}

.mr-165 {
    margin-left: 165px !important
}

.mr-170 {
    margin-left: 170px !important
}

.mr-175 {
    margin-left: 175px !important
}

.mr-180 {
    margin-left: 180px !important
}

.mr-185 {
    margin-left: 185px !important
}

.mr-190 {
    margin-left: 190px !important
}

.mr-195 {
    margin-left: 195px !important
}

.mr-200 {
    margin-left: 200px !important
}

.page-about {
    background-position: 100% 5%
}

.bg-banner-about, .header-bg {
    background-color: #fff9f3
}

.bg-banner-about {
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    padding-bottom: 40px
}

.banner-about::before {
    width: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    left: 0;
    right: 0
}

.banner-about .banner-inner .banner-imgs {
    padding-top: 35px
}

.banner-about .main-banner {
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px
}

.banner-about .banner-sm-1 {
    position: absolute;
    top: 3%;
    right: 0;
    width: 182px
}

    .banner-about .banner-sm-1 img {
        height: 140px
    }

.banner-about .banner-sm-2 {
    position: absolute;
    top: 21%;
    right: 35px;
    width: 132px
}

    .banner-about .banner-sm-2 img {
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px
    }

.banner-about .banner-sm-3 {
    position: absolute;
    top: 77%;
    right: -45px;
    width: 182px
}

    .banner-about .banner-sm-3 img {
        border-bottom-right-radius: 40px;
        width: 230px;
        height: 200px;
        -o-object-fit: cover;
        object-fit: cover
    }

.heading-36 {
    color: #000;
    font-size: 36px;
    line-height: 44px !important;
    font-weight: 700;
    text-transform: uppercase
}

.text-left {
    text-align: right
}

.text-lg {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .5px
}

.text-blue {
    font-size: 20px;
    color: #5192ff;
    font-weight: 600;
    line-height: 24px
}

.box-info-job {
    display: inline-block;
    width: 100%;
    padding: 40px 0 0 30px !important
}

.box-image-findjob {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-right: -50px
}

    .box-image-findjob img {
        border-top-right-radius: 100px;
        border-bottom-left-radius: 100px;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover;
        background-color: transparent;
        padding: 10px 0
    }

    .box-image-findjob::before {
        position: absolute;
        content: "";
        bottom: -45px;
        left: -45px;
        height: 39px;
        width: 39px;
        border-radius: 50%;
        background: #9fdbe9
    }

.block-job-bg {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 65px 20px 0 0
}

    .block-job-bg .row {
        z-index: 2;
        position: relative
    }

    .block-job-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: -50px;
        height: 84%;
        width: 88%;
        background: rgba(0,0,0,.3019607843);
        background-size: cover;
        border-radius: 80px;
        z-index: 0
    }

    .block-job-bg::after {
        content: "";
        position: absolute;
        top: 10px;
        left: 85%;
        height: 39px;
        width: 39px;
        background: #bee2ae;
        border-radius: 50%;
        z-index: 0
    }

.bdrd-4 {
    border-radius: 4px !important
}

.banner-imgs-about {
    position: relative
}

    .banner-imgs-about .banner-sm-4 {
        position: absolute;
        top: 15%;
        right: -110px
    }

    .banner-imgs-about .banner-sm-5 {
        position: absolute;
        top: 65%;
        right: -90px
    }

    .banner-imgs-about .main-banner {
        border-top-left-radius: 100px;
        border-bottom-right-radius: 100px
    }

.color-black-5 {
    color: rgba(8,10,40,.5)
}

.box-mw-60 {
    max-width: 60%;
    margin: auto
}

.box-mw-70 {
    max-width: 70%
}

.bg-body-service {
    background: url(../images/page/services/bg-body-service.svg) no-repeat top center;
    background-size: contain
}

.box-banner-services--inner {
    position: relative;
    max-width: 1090px;
    margin: auto
}

    .box-banner-services--inner img {
        border-radius: 15px;
        width: 100%
    }

    .box-banner-services--inner .btn-play-2 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        left: 0;
        height: 140px;
        width: 150px;
        z-index: 3;
        margin: auto;
        background: url(../images/theme/icons/play-2.svg) no-repeat
    }

.mw-450, .mw-650 {
    max-width: 650px;
    margin: auto
}

.mw-450 {
    max-width: 450px
}

.pattern-service {
    position: relative
}

    .pattern-service .container {
        z-index: 2;
        position: relative
    }

    .pattern-service::before {
        content: "";
        position: absolute;
        z-index: 0;
        right: 0;
        top: 0;
        height: 100%;
        min-height: 611px;
        width: 290px;
        background: url(../images/theme/patern-service.svg) no-repeat 100% 0
    }

.bg-blue-full {
    background-color: #ecf4ff;
    padding: 82px 0
}

    .bg-blue-full .btn-border {
        color: #37404e
    }

.bg-body-pricing {
    background: url(../images/theme/bg-body-pricing.svg) no-repeat left 0 top 27%
}

.text-billed {
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
    color: #000
}

.block-pricing {
    background-color: #fff9f3;
    border-radius: 30px
}

    .block-pricing .box-pricing-item {
        display: inline-block;
        width: 100%;
        padding: 44px
    }

        .block-pricing .box-pricing-item .for-month, .block-pricing .box-pricing-item .for-year {
            display: none
        }

        .block-pricing .box-pricing-item .display-month {
            display: inline-block
        }

        .block-pricing .box-pricing-item .display-year {
            display: inline-block
        }

        .block-pricing .box-pricing-item .btn-border {
            border: 1px solid #9777fa;
            color: #37404e
        }

    .block-pricing .box-info-price {
        display: inline-block;
        width: 100%;
        padding-bottom: 40px
    }

        .block-pricing .box-info-price .text-price {
            font-size: 36px;
            color: #231d4f;
            line-height: 46px;
            font-weight: 600;
            margin-left: 15px
        }

        .block-pricing .box-info-price .text-month {
            font-size: 17px;
            line-height: 23px;
            color: #37404e
        }

    .block-pricing .text-desc-package {
        font-size: 15px;
        line-height: 20px;
        color: #37404e
    }

    .block-pricing .list-package-feature {
        display: inline-block;
        width: 100%;
        padding-bottom: 30px
    }

        .block-pricing .list-package-feature li {
            display: inline-block;
            width: 100%;
            padding: 0 35px 0 0;
            background: url(../images/theme/icons/check-circle.svg) no-repeat right center;
            margin-bottom: 12px;
            font-size: 15px;
            line-height: 20px;
            color: #37404e
        }

    .block-pricing .most-popular {
        margin-top: -50px;
        background: #b18b34 url(../images/theme/bg-featured.svg) no-repeat top left;
        background-size: contain;
        border-radius: 26px;
        padding: 20px 30px 44px 30px
    }

        .block-pricing .most-popular .text-desc-package, .block-pricing .most-popular .text-month, .block-pricing .most-popular .text-price, .block-pricing .most-popular h4 {
            color: #fff
        }

        .block-pricing .most-popular .list-package-feature li {
            color: #fff;
            background: url(../images/theme/icons/check-circle-white.svg) no-repeat right center
        }

        .block-pricing .most-popular .btn-border {
            font-weight: 700;
            color: #b18b34;
            width: 100%;
            text-align: center
        }

        .block-pricing .most-popular .btn-white-sm {
            border-radius: 14px;
            text-transform: uppercase;
            padding: 9px 25px 7px 25px;
            font-size: 10px;
            color: #b18b34;
            line-height: 12px
        }

.heading-md-regular {
    font-size: 20px;
    line-height: 24px;
    color: #1f2938;
    font-weight: 500
}

.box-info-job .text-md {
    line-height: 28px
}

.box-image-findjob.box-image-about {
    padding-top: 44px;
    padding-left: 44px;
    text-align: center;
    background-color: transparent
}

    .box-image-findjob.box-image-about::before {
        background: url(../images/theme/bg-dot.svg) no-repeat;
        animation: moveSideToSide 3s ease-in-out infinite;
        width: 159px;
        height: 130px;
        top: 0;
        left: 0;
        border-radius: 0;
        z-index: 0
    }

    .box-image-findjob.box-image-about .btn-play-video {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        left: 0;
        height: 140px;
        width: 150px;
        z-index: 3;
        margin: auto;
        background: url(../images/theme/icons/play.svg) no-repeat
    }

.box-image-findjob figure {
    position: relative;
    z-index: 2;
    animation: moveUptoDown 3s ease-in-out infinite;
    background-color: transparent
}

    .box-image-findjob figure h1 {
        font-size: 22px;
        position: absolute;
        bottom: 35px;
        right: 0;
        padding: 10px 15px 10px 35px;
        background-color: #ddd
    }

.box-info-job.box-info-about {
    padding-top: 30px
}

    .box-info-job.box-info-about .btn-border {
        color: #37404e
    }

.text-gray-200 {
    color: #727272;
    font-size: 16px
}

.faqs-imgs .faqs-1 {
    border-radius: 80px 80px 0 80px
}

.faqs-imgs .faqs-2 {
    border-radius: 80px 0 80px 0
}

.faqs-imgs .faqs-3 {
    border-radius: 80px 0 80px 80px
}

.accordion-flush .accordion-button {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    line-height: 2;
    font-size: 18px;
    font-weight: 800;
    padding-right: 48px
}

    .accordion-flush .accordion-button::after {
        flex-shrink: 0;
        width: 14px;
        height: 20px;
        margin-right: auto;
        content: "";
        background-image: url(../images/theme/icons/accordion-right.svg);
        background-repeat: no-repeat;
        background-size: unset;
        transition: transform .2s ease-in-out;
        position: absolute;
        right: 15px
    }

    .accordion-flush .accordion-button:not(.collapsed) {
        color: #b18b34;
        background-color: transparent
    }

        .accordion-flush .accordion-button:not(.collapsed)::after {
            width: 20px;
            height: 20px;
            background-image: url(../images/theme/icons/accordion-up.svg);
            margin-top: 10px;
            transform: none
        }

    .accordion-flush .accordion-button:focus {
        border-color: rgba(151,119,250,.5)
    }

.accordion-flush .accordion-body {
    color: #88929b;
    font-size: 16px
}

.accordion-flush .accordion-collapse {
    border: 0
}

.leaflet-map {
    height: 528px;
    width: 100%
}

.archive-header h3 {
    font-size: 46px
}

.archive-header .post-meta .author img {
    max-width: 30px;
    border-radius: 50%;
    margin-left: 5px
}

.card-blog-1 {
    border-radius: 15px;
    border: thin solid #ececec;
    padding: 30px
}

    .card-blog-1:hover {
        box-shadow: 0 9px 26px 0 rgba(31,31,51,.06)
    }

    .card-blog-1 .post-thumb {
        border-radius: 15px;
        overflow: hidden
    }

        .card-blog-1 .post-thumb img {
            border-radius: 15px
        }

    .card-blog-1 .post-meta .author img {
        max-width: 30px;
        border-radius: 50%;
        margin-left: 5px
    }

    .card-blog-1 h3.post-title {
        font-size: 24px;
        line-height: 1.33
    }

        .card-blog-1 h3.post-title a {
            color: #1f2938
        }

            .card-blog-1 h3.post-title a:hover {
                color: #b18b34
            }

        .card-blog-1 h3.post-title.small {
            font-size: 18px
        }

    .card-blog-1 .btn-brand-hover {
        border-color: rgba(151,119,250,.5)
    }

    .card-blog-1.post-list {
        display: flex
    }

        .card-blog-1.post-list .post-thumb {
            max-width: 275px;
            margin-left: 25px
        }

.single-body figure img {
    border-radius: 15px
}

.single-body p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #586475;
    line-height: 1.5
}

.single-body h1, .single-body h2, .single-body h3, .single-body h4, .single-body h5, .single-body h6 {
    margin: 30px 0 25px 0
}

.single-body .excerpt p {
    font-size: 22px;
    line-height: 1.5;
    color: #1f2938
}

.single-body blockquote {
    background-color: rgba(81,146,255,.12);
    padding: 40px 60px;
    border-radius: 15px;
    margin: 30px auto;
    font-size: 24px;
    max-width: 80%
}

    .single-body blockquote p {
        font-size: 24px;
        line-height: 32px;
        color: #7e7e7e;
        margin-bottom: 0
    }

.author-bio {
    border-radius: 15px;
    border: 1px solid #ececec
}

    .author-bio h5 {
        margin: 0 !important;
        font-weight: 600
    }

    .author-bio .author-image {
        display: flex;
        justify-content: start;
        align-content: center;
        align-items: center
    }

        .author-bio .author-image img {
            margin-left: 10px;
            max-width: 64px
        }

        .author-bio .author-image p {
            font-size: 14px
        }

.related-posts h6 {
    font-size: 16px;
    font-weight: 600
}

    .related-posts h6 a {
        color: #1f2938
    }

.bg-white {
    background: #fff
}

.box-head-single {
    background-color: #fff9f3;
    display: inline-block;
    width: 100%;
    padding: 55px 0;
    position: relative
}

    .box-head-single.bg-2 {
        background-color: #e9f7ff
    }

    .box-head-single::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        z-index: 1;
        width: 100px;
        background: url(../images/page/job-single/bg-header-left.svg) no-repeat left bottom
    }

    .box-head-single::after {
        z-index: 1;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100%;
        width: 543px;
        background: url(../images/page/job-single/bg-header-right.svg) no-repeat left bottom
    }

    .box-head-single .container {
        position: relative;
        z-index: 2
    }

    .box-head-single h3 {
        margin-bottom: 15px
    }

    .box-head-single .avatar-sidebar {
        position: relative;
        text-align: center;
        display: flex;
        margin-bottom: 15px;
        justify-content: center
    }

        .box-head-single .avatar-sidebar img {
            max-width: 60px;
            border-radius: 50%;
            margin-left: 10px
        }

        .box-head-single .avatar-sidebar .sidebar-company {
            font-weight: 600
        }

        .box-head-single .avatar-sidebar .sidebar-website-text {
            color: #b18b34
        }

.img-rd-15 {
    border-radius: 15px;
    width: 100%
}

.single-image-feature {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%
}

.content-single p {
    font-size: 16px;
    line-height: 200%;
    color: #37404e;
    margin-bottom: 20px
}

.content-single h5 {
    margin-top: 20px;
    font-weight: 700;
    margin-bottom: 20px
}

.content-single ul {
    padding-right: 30px;
    line-height: 200%;
    font-size: 16px;
    color: #37404e;
    list-style: disc
}

.author-single {
    display: inline-block;
    padding-right: 26px;
    padding-top: 10px
}

    .author-single span {
        position: relative;
        background-color: #fff;
        font-size: 18px;
        line-height: 28px;
        font-weight: 700
    }

        .author-single span::before {
            content: "";
            height: 1px;
            border-top: 1px solid #a5a5a5;
            width: 21px;
            position: absolute;
            top: 13px;
            right: -26px
        }

        .author-single span::after {
            content: "";
            height: 1px;
            border-top: 1px solid #a5a5a5;
            width: 21px;
            position: absolute;
            top: 13px;
            left: -27px
        }

.single-apply-jobs {
    display: inline-block;
    width: 100%;
    padding: 47px 0;
    border-top: 1px solid rgba(6,18,36,.1);
    margin-top: 50px
}

.heading-border {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 0
}

    .heading-border::before {
        content: "";
        position: absolute;
        top: 25px;
        right: 0;
        width: 100%;
        height: 1px;
        z-index: 1;
        border-top: 1px solid rgba(6,18,36,.1)
    }

    .heading-border span {
        background-color: #fff;
        display: inline-block;
        padding: 5px 0 5px 10px;
        position: relative;
        z-index: 2
    }

.sidebar-shadow {
    border: 1px solid rgba(6,18,36,.1);
    padding: 29px 33px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
    margin-bottom: 40px
}

    .sidebar-shadow .sidebar-heading {
        display: inline-block;
        width: 100%
    }

        .sidebar-shadow .sidebar-heading .avatar-sidebar figure {
            float: right
        }

            .sidebar-shadow .sidebar-heading .avatar-sidebar figure img {
                width: 50px;
                height: 50px;
                border-radius: 50%
            }

        .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info {
            display: block;
            padding-right: 60px;
            position: relative
        }

            .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-company {
                font-size: 18px;
                line-height: 18px;
                font-weight: 700;
                display: block;
                padding-top: 5px
            }

            .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .sidebar-website-text {
                font-size: 12px;
                line-height: 18px;
                color: #b18b34
            }

            .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-toggle::after {
                display: none
            }

            .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu {
                min-width: unset;
                box-shadow: 0 9px 26px 0 rgba(31,31,51,.06);
                border: thin solid #ececec
            }

                .sidebar-shadow .sidebar-heading .avatar-sidebar .sidebar-info .dropdown-menu a {
                    font-size: 14px;
                    color: #636477
                }

.text-description {
    font-size: 16px;
    color: #37404e;
    line-height: 24px;
    display: inline-block;
    width: 100%
}

.sidebar-team-member {
    border-top: 1px solid rgba(6,18,36,.1);
    display: inline-block;
    width: 100%;
    padding: 30px 0 0 0;
    margin: 30px 0 0 0
}

    .sidebar-team-member .sidebar-list-member {
        display: inline-block;
        width: 100%;
        padding: 30px 0
    }

        .sidebar-team-member .sidebar-list-member ul li {
            display: inline-block;
            margin-left: 18px;
            margin-bottom: 18px;
            transition-duration: .2s
        }

            .sidebar-team-member .sidebar-list-member ul li:hover {
                transform: translateY(-3px);
                transition-duration: .2s
            }

                .sidebar-team-member .sidebar-list-member ul li:hover img {
                    opacity: .85;
                    transition-duration: .2s
                }

            .sidebar-team-member .sidebar-list-member ul li a img {
                width: 49px;
                height: 49px;
                border-radius: 50%;
                transition-duration: .2s
            }

    .sidebar-team-member .info-address {
        padding-top: 20px
    }

        .sidebar-team-member .info-address span {
            display: block;
            font-size: 16px;
            padding-bottom: 10px
        }

            .sidebar-team-member .info-address span i {
                float: right;
                margin: 4px 0 0 8px;
                color: #88929b
            }

            .sidebar-team-member .info-address span span {
                display: block;
                padding-right: 28px
            }

.sidebar-list-job {
    border-top: 1px solid rgba(6,18,36,.1);
    display: inline-block;
    width: 100%;
    padding: 30px 0 0 0;
    margin: 30px 0 0 0
}

    .sidebar-list-job ul {
        padding: 0
    }

        .sidebar-list-job ul li {
            display: inline-block;
            width: 100%;
            padding-bottom: 20px
        }

            .sidebar-list-job ul li .sidebar-icon-item {
                float: right;
                width: 32px
            }

                .sidebar-list-job ul li .sidebar-icon-item i {
                    font-size: 23px;
                    color: #88929b
                }

            .sidebar-list-job ul li .sidebar-text-info {
                display: block;
                padding-right: 35px
            }

                .sidebar-list-job ul li .sidebar-text-info span {
                    color: #727272
                }

                .sidebar-list-job ul li .sidebar-text-info strong {
                    display: block;
                    padding-top: 10px;
                    color: #1f2938
                }

.sidebar-normal {
    padding: 29px 33px
}

.ul-lists {
    padding: 15px 15px 15px 0
}

    .ul-lists li {
        list-style-type: disc;
        color: #88929b;
        padding-bottom: 5px
    }

        .ul-lists li a {
            color: #88929b;
            text-decoration: none
        }

            .ul-lists li a:hover {
                color: #b18b34
            }

.btn-dots-abs-right {
    position: absolute;
    top: 0;
    left: 0
}

.job-overview {
    border: thin solid #ececec;
    box-shadow: 0 20px 60px -6px rgba(0,0,0,.04);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 50px
}

    .job-overview .sidebar-icon-item {
        font-size: 18px;
        color: #a0abb8
    }

    .job-overview .text-description {
        font-size: 16px;
        color: #727272;
        line-height: 24px
    }

.job-meta {
    font-size: 12px;
    color: #88929b
}

    .job-meta .company {
        font-weight: 700;
        color: #b18b34
    }

    .job-meta span {
        margin-left: 15px;
        display: inline-block
    }

.heading-image-rd {
    float: right;
    width: 130px;
    margin-left: 15px
}

    .heading-image-rd figure {
        position: relative;
        display: inline-block
    }

        .heading-image-rd figure img {
            border-radius: 50%;
            height: 130px;
            width: 130px
        }

    .heading-image-rd.online figure::before {
        height: 18px;
        width: 18px;
        border-radius: 50%;
        content: "";
        position: absolute;
        bottom: 16px;
        left: 10px;
        background: #00c070
    }

.heading-main-info {
    display: block;
    padding-right: 145px
}

    .heading-main-info h4 {
        padding: 4px 0 10px 0
    }

    .heading-main-info .head-info-profile {
        margin-bottom: 20px
    }

        .heading-main-info .head-info-profile i {
            float: right;
            margin: 1px 0 0 10px
        }

        .heading-main-info .head-info-profile > span {
            display: inline-block
        }

        .heading-main-info .head-info-profile .rate-reviews-small {
            display: inline-block;
            margin-right: 30px
        }

            .heading-main-info .head-info-profile .rate-reviews-small img {
                height: 13px
            }

    .heading-main-info .mt-minus-15 {
        margin-top: -15px
    }

.box-head-single-candidate::after {
    width: 165px
}

.box-head-single-candidate::before {
    background: url(../images/theme/bg-head-left-candidate.svg) no-repeat left bottom
}

.block-progress-status {
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 30px 0
}

    .block-progress-status .item-progress {
        display: inline-block;
        width: 100%;
        position: relative;
        margin-bottom: 20px
    }

        .block-progress-status .item-progress .title-progress {
            float: right;
            width: 170px;
            margin-left: 10px
        }

        .block-progress-status .item-progress .info-progress {
            max-width: 605px;
            display: block;
            padding-right: 180px;
            margin-top: 7px
        }

            .block-progress-status .item-progress .info-progress .progress {
                height: 10px;
                width: 100%;
                border-radius: 5px;
                background: rgba(6,18,36,.1)
            }

                .block-progress-status .item-progress .info-progress .progress .progress-bar {
                    background: #ffaf00;
                    border-radius: 5px
                }

.text-md-bold {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: #37404e
}

.none-bd {
    border: 0
}

.sidebar-list-follower ul li {
    position: relative
}

    .sidebar-list-follower ul li a.online::before {
        height: 10px;
        width: 10px;
        border-radius: 50%;
        content: "";
        position: absolute;
        top: 0;
        left: 4px;
        background: #00c070
    }

.dis-block {
    display: block
}

.text-md-lh28 {
    font-size: 16px;
    line-height: 24px
}

.lh-32 {
    line-height: 32px !important
}

.none-bg::before {
    display: none
}

.none-bg::after {
    display: none
}

.box-shadow-bdrd-15 {
    border-radius: 15px;
    box-shadow: 0 20px 60px -6px rgba(0,0,0,.04);
    background-color: #fff;
    padding: 15px;
    border: thin solid #ececec
}

.box-filters .box-search-job {
    display: inline-block;
    vertical-align: middle
}

    .box-filters .box-search-job .form-search-job {
        float: right;
        padding-left: 20px
    }

        .box-filters .box-search-job .form-search-job .input-search-job {
            border: 0;
            padding: 12px 45px 10px 10px;
            background: url(../images/theme/icons/icon-search.svg) no-repeat 10px center
        }

.box-filters .list-tags-job {
    vertical-align: middle;
    float: left
}

    .box-filters .list-tags-job a {
        display: inline-block;
        padding: 12px 22px 12px 45px;
        border-radius: 10px;
        background-color: #f1f7ff;
        text-decoration: none;
        position: relative
    }

        .box-filters .list-tags-job a .remove-tags-job {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 15px;
            height: 15px;
            width: 15px;
            background: url(../images/theme/icons/icon-remove.svg) no-repeat center
        }

.paginations {
    margin: 20px 0 50px 0
}

    .paginations .pager {
        padding: 0
    }

        .paginations .pager li {
            display: inline-block;
            vertical-align: middle
        }

            .paginations .pager li a {
                display: block;
                padding: 10px 8px;
                font-weight: 600;
                color: #37404e;
                line-height: 24px;
                text-decoration: none;
                position: relative;
                font-size: 16px
            }

                .paginations .pager li a:hover {
                    font-weight: 700
                }

                .paginations .pager li a.active {
                    font-weight: 700
                }

                .paginations .pager li a.pager-number.active::before {
                    content: "";
                    height: 28px;
                    width: 28px;
                    background: #ffaf00;
                    opacity: .3;
                    border-radius: 8px;
                    position: absolute;
                    z-index: -1;
                    top: 8px;
                    right: -1px
                }

                .paginations .pager li a.pager-number:hover::before {
                    content: "";
                    height: 28px;
                    width: 28px;
                    background: #ffaf00;
                    opacity: .3;
                    border-radius: 8px;
                    position: absolute;
                    z-index: -1;
                    top: 8px;
                    right: -1px
                }

            .paginations .pager li .pager-prev {
                background: url(../images/theme/icons/page-prev.svg) no-repeat center;
                height: 40px;
                width: 40px;
                margin-left: 15px
            }

                .paginations .pager li .pager-prev:hover {
                    background: url(../images/theme/icons/page-prev-hover.svg) no-repeat center
                }

            .paginations .pager li .pager-next {
                background: url(../images/theme/icons/page-next.svg) no-repeat center;
                height: 40px;
                width: 40px;
                margin-right: 15px
            }

                .paginations .pager li .pager-next:hover {
                    background: url(../images/theme/icons/page-next-hover.svg) no-repeat center
                }

.sidebar-with-bg {
    background: rgba(81,146,255,.12);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px
}

.text-body-999 {
    font-size: 16px;
    line-height: 22px;
    color: #999
}

.box-email-reminder .form-group {
    position: relative
}

    .box-email-reminder .form-group input {
        border: 0;
        padding-right: 42px
    }

        .box-email-reminder .form-group input::-moz-placeholder {
            color: #88929b;
            font-size: 12px
        }

        .box-email-reminder .form-group input::placeholder {
            color: #88929b;
            font-size: 12px
        }

.job-fillter .box-button-find {
    width: 140px;
    float: left;
    flex: auto
}

.job-fillter .box-salary {
    padding: 14px 45px 14px 5px;
    display: inline-block;
    vertical-align: middle;
    line-height: 14px
}

    .job-fillter .box-salary i {
        color: #88929b;
        float: right;
        margin: 1px 0 0 7px
    }

.job-fillter .dropdown {
    margin-left: 15px;
    width: 30%;
    max-width: 170px
}

    .job-fillter .dropdown .dropdown-toggle::after {
        border: 0
    }

    .job-fillter .dropdown .dropdown-toggle {
        font-size: 14px;
        line-height: 16px
    }

        .job-fillter .dropdown .dropdown-toggle .fi-rr-angle-small-down {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            margin-top: 0
        }

        .job-fillter .dropdown .dropdown-toggle i {
            color: #88929b;
            float: right;
            margin: -3px 0 0 7px;
            font-size: 18px
        }

    .job-fillter .dropdown .dropdown-menu.show {
        border-radius: 0 0 10px 10px;
        margin: 15px 25px 0 0
    }

.job-fillter .btn-default {
    width: 140px;
    max-width: 140px
}

.text-sortby {
    color: #9c9ca3;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle
}

.box-view-type {
    float: left;
    margin-right: 15px
}

    .box-view-type a {
        display: inline-block;
        vertical-align: middle
    }

.dropdown-sort {
    line-height: 21px;
    display: inline-block;
    vertical-align: middle
}

    .dropdown-sort .dropdown-toggle::after {
        border: 0
    }

    .dropdown-sort .dropdown-toggle {
        padding: 0;
        outline: 0;
        font-size: 14px;
        font-weight: 600
    }

        .dropdown-sort .dropdown-toggle:focus {
            box-shadow: none
        }

        .dropdown-sort .dropdown-toggle i {
            color: #88929b;
            float: left;
            margin: -3px 0 0 7px;
            font-size: 18px
        }

.fs-ri-dollar2 {
    border: 2px solid #ccc;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 20px !important;
    vertical-align: middle;
    font-size: 10px
}

.text-normal {
    font-size: 16px;
    line-height: 22px;
    color: #37404e
}

.text-small {
    font-size: 14px;
    line-height: 19px;
    color: #37404e
}

.float-right {
    float: left
}

.list-checkbox {
    display: inline-block;
    width: 100%;
    padding: 15px 0 5px 0
}

    .list-checkbox li {
        position: relative;
        padding: 0 0 1px 30px;
        display: inline-block;
        width: 100%
    }

        .list-checkbox li .number-item {
            position: absolute;
            top: 35%;
            left: 0;
            transform: translateY(-50%);
            padding: 2px 8px 4px 8px;
            font-size: 12px;
            line-height: 16px;
            border-radius: 5px;
            background: rgba(156,156,163,.18);
            color: #9c9ca3
        }

.background-primary {
    background-color: #5192ff
}

.bg-sidebar {
    background-image: url(../images/theme/bg-sidebar.svg);
    background-position: bottom left;
    background-repeat: no-repeat
}

.menu-dropdown-abs {
    position: absolute;
    top: 10px;
    left: 0
}

.content-page .card-grid-2 .card-block-info {
    padding: 20px 20px 30px 20px;
    position: relative
}

    .content-page .card-grid-2 .card-block-info .btn-dots-abs-right {
        top: 0;
        left: 15px
    }

        .content-page .card-grid-2 .card-block-info .btn-dots-abs-right::after {
            display: none
        }

.content-page h5 {
    font-size: 16px;
    line-height: 28px;
    font-weight: 500
}

.content-page .card-grid-2:hover {
    border-color: rgba(151,119,250,.5)
}

.sidebar-shadow.none-shadow {
    padding-right: 20px;
    padding-left: 17px
}

.buttons-filter .btn {
    padding: 12px 15px;
    font-size: 14px;
    color: #88929b
}

.buttons-filter .btn-default {
    color: #fff
}

.input-disabled {
    background-color: #f9f9f9 !important;
    border: 1px solid rgba(6,18,36,.1);
    padding: 8px 15px;
    color: #a9a9a9
}

    .input-disabled:focus {
        color: #a9a9a9
    }

.minus-input {
    position: relative
}

    .minus-input::before {
        content: "-";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: -15px;
        font-size: 14px;
        color: #a9a9a9
    }

.lb-slider {
    font-weight: 600;
    font-size: 12px;
    color: #37404e
}

.text-brand-10 {
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    color: #b18b34
}

.text-icon-first {
    position: relative;
    display: inline-block;
    padding-right: 10px
}

    .text-icon-first::before {
        position: absolute;
        top: 5px;
        right: 0;
        content: "";
        height: 5px;
        width: 5px;
        border-radius: 50%;
        background-color: #96de95
    }

.job-listing-grid-2 .card-grid-2 .card-block-info .card-text-price {
    font-size: 16px;
    line-height: 20px
}

    .job-listing-grid-2 .card-grid-2 .card-block-info .card-text-price span {
        font-size: 12px
    }

.job-listing-grid-2 .card-grid-2 .card-block-info .dropdown-menu {
    border: thin solid #ececec;
    box-shadow: 0 9px 26px 0 rgba(31,31,51,.06)
}

    .job-listing-grid-2 .card-grid-2 .card-block-info .dropdown-menu .dropdown-item {
        font-size: 14px;
        color: #636477
    }

.text-gray-100 {
    color: #bababa
}

.job-list-list .list-recent-jobs {
    margin-top: 0
}

.background-12 {
    background-color: #c5ffdc
}

.background-6 {
    background-color: rgba(151,119,250,.12)
}

.background-blue-light {
    background-color: #c5e3ff
}

.background-urgent {
    background-color: #ffcfc5
}

.job-tags a {
    background-color: #f1f7ff;
    color: #727272;
    border-radius: 15px;
    padding: 8px 20px;
    display: inline-block
}

    .job-tags a + a {
        margin-right: 5px
    }

.employers-list {
    position: relative
}

    .employers-list .card-employers {
        border: 1px solid rgba(6,18,36,.1);
        padding: 26px 23px;
        border-radius: 10px;
        background-color: #fff;
        margin-bottom: 30px
    }

        .employers-list .card-employers:hover {
            box-shadow: 0 20px 60px -6px rgba(0,0,0,.04);
            border: 1px solid rgba(151,119,250,.5)
        }

        .employers-list .card-employers .employers-name h5 {
            font-size: 18px
        }

            .employers-list .card-employers .employers-name h5 a {
                color: #1f2938
            }

            .employers-list .card-employers .employers-name h5:hover a {
                color: #b18b34
            }

        .employers-list .card-employers .employers-name .rate {
            margin-right: -20px
        }

        .employers-list .card-employers .employers-info i {
            font-size: 20px;
            color: #88929b;
            margin-right: 10px
        }

        .employers-list .card-employers .card-grid-2-link {
            text-align: left
        }

            .employers-list .card-employers .card-grid-2-link i {
                font-size: 20px;
                color: #88929b;
                margin-right: 10px
            }

        .employers-list .card-employers .btn-brand-hover {
            border: thin solid rgba(151,119,250,.5);
            font-size: 14px
        }

        .employers-list .card-employers .employers-logo img {
            max-width: 110px
        }

        .employers-list .card-employers .employers-logo.online figure {
            position: relative;
            display: inline-block
        }

            .employers-list .card-employers .employers-logo.online figure::before {
                height: 18px;
                width: 18px;
                border-radius: 50%;
                content: "";
                position: absolute;
                bottom: 13px;
                left: 9px;
                background: #00c070
            }

.employers-header-2 {
    border-bottom: thin solid #ececec;
    padding-bottom: 50px;
    margin-bottom: 50px
}

.mw-720 {
    max-width: 720px;
    margin: auto;
    display: table !important;
    table-layout: fixed
}

.banner-home-3 {
    position: relative;
    padding-bottom: 140px !important
}

    .banner-home-3 .banner-hero::before {
        display: none
    }

    .banner-home-3 .banner-hero .block-banner {
        padding-left: 80px
    }

    .banner-home-3::before {
        content: "";
        height: 351px;
        width: 400px;
        position: absolute;
        bottom: 40px;
        right: 40px;
        background: url(../images/theme/designer.svg) no-repeat 100% 0;
        background-size: contain
    }

    .banner-home-3::after {
        content: "";
        height: 351px;
        width: 400px;
        position: absolute;
        bottom: 40px;
        left: 20px;
        background: url(../images/theme/working.svg) no-repeat 100% 0;
        background-size: contain
    }

.list-job-2-col .card-job-description {
    font-size: 14px;
    line-height: 22px
}

.findjob-homepage-2::before {
    left: 100px !important;
    bottom: -55px !important
}

.block-job-bg-homepage-2::before {
    left: 0 !important
}

.none-bg-body {
    background: #fff
}

.nav-style-homepage-3 li button.active {
    color: #b18b34;
    background: 100% 0
}

.nav-style-homepage-3 li button:hover {
    color: #b18b34;
    background: 100% 0
}

.nav-style-homepage-3 > li:last-child button {
    padding-left: 0
}

.bg-body-homepage-3 {
    background: url(../images/theme/bg-body-pricing.svg) no-repeat left 0 top 5%
}

    .bg-body-homepage-3::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 901px;
        width: 901px;
        background: url(../images/theme/half-circle.svg) no-repeat 100% 0;
        z-index: -1
    }

@media (min-width:1560px) {
    .banner-homepage-3 {
        padding: 0 145px 0 0
    }
}

.banner-homepage-3 {
    padding-top: 40px
}

    .banner-homepage-3::before {
        display: none
    }

    .banner-homepage-3 .block-banner {
        padding-left: 0
    }

    .banner-homepage-3 .banner-imgs::before {
        content: "";
        z-index: 0;
        position: absolute;
        bottom: 0;
        right: -70px;
        height: 54px;
        width: 56px;
        background: url(../images/theme/icons/triangle.svg) no-repeat 100% 0
    }

    .banner-homepage-3 .banner-imgs .banner-sm1, .banner-homepage-3 .banner-imgs .banner-sm2, .banner-homepage-3 .banner-imgs .banner-sm3 {
        position: absolute;
        top: 4%;
        right: -86px;
        z-index: 12
    }

        .banner-homepage-3 .banner-imgs .banner-sm1 img {
            width: 251px
        }

    .banner-homepage-3 .banner-imgs .banner-sm2 {
        top: 43%;
        right: -136px
    }

        .banner-homepage-3 .banner-imgs .banner-sm2 img {
            width: 144px
        }

    .banner-homepage-3 .banner-imgs .banner-sm3 {
        top: 62%;
        right: -90px
    }

        .banner-homepage-3 .banner-imgs .banner-sm3 img {
            width: 251px
        }

@media (max-width:1399.98px) {
    .custom-class {
        display: block
    }
}

@media (max-width:1199.98px) {
    .custom-class {
        display: block
    }
}

@media (max-width:991.98px) {
    .mt-md-0 {
        margin-top: 0 !important
    }

    .pl-lg-15 {
        padding-right: 15px !important
    }

    h2.section-title {
        font-size: 48px
    }

    .banner-hero {
        max-width: 100%;
        padding: 0
    }

        .banner-hero.hero-1 .block-banner {
            padding-top: 50px;
            padding-bottom: 50px;
            padding-left: var(--bs-gutter-x,.75rem);
            padding-right: var(--bs-gutter-x,.75rem);
            margin-left: auto;
            margin-right: auto;
            max-width: 720px;
            overflow: hidden
        }

        .banner-hero.hero-1::before {
            width: 100%;
            border-radius: 0;
            right: 0
        }

        .banner-hero.hero-1 .banner-imgs {
            display: none
        }

        .banner-hero.hero-1 .text-small-primary {
            font-size: 14px
        }

        .banner-hero.hero-1 h1 {
            font-size: 52px
        }

    .box-swiper .swiper-button-next {
        left: -45px
    }

    .box-swiper .swiper-button-prev {
        right: -45px
    }

    .card-grid-2 h5 {
        font-size: 18px
    }

    .box-image-job .job-top-creator {
        right: 10px
    }

    .list-partners li {
        padding: 15px 18px
    }

        .list-partners li figure img {
            max-width: 80px
        }

    .box-newsletter {
        padding: 57px 50px 96px 50px
    }

    .nav.nav-right {
        margin-top: 30px
    }

    .mt-lg-30 {
        margin-top: 30px !important
    }

    .bg-banner-about.banner-home-3 {
        padding-top: 30px !important;
        padding-bottom: 20px !important
    }

        .bg-banner-about.banner-home-3 .banner-hero {
            max-width: 720px
        }

            .bg-banner-about.banner-home-3 .banner-hero .block-banner {
                padding-top: 0
            }

                .bg-banner-about.banner-home-3 .banner-hero .block-banner h2.heading-banner {
                    font-size: 36px;
                    line-height: 1.2
                }

        .bg-banner-about.banner-home-3::after, .bg-banner-about.banner-home-3::before {
            opacity: .1
        }

    .banner-hero.banner-homepage-3 {
        padding-top: 0;
        margin-bottom: 50px
    }

        .banner-hero.banner-homepage-3 h1 {
            font-size: 48px
        }

        .banner-hero.banner-homepage-3 .banner-imgs {
            display: none
        }

    .box-info-job {
        padding-right: 30px !important
    }

        .box-info-job .mt-50 {
            margin-top: 0 !important
        }

    .block-pricing .most-popular {
        margin-top: 0 !important
    }

    .job-fillter {
        margin: 15px 0 0 0;
        border-top: 1px solid #eee;
        padding-top: 15px
    }

        .job-fillter .btn {
            padding-right: 10px !important
        }

        .job-fillter .dropdown-menu {
            margin-right: 10px !important;
            margin-top: 0 !important
        }

    .heading-main-info .btn-default {
        margin: 15px 0
    }

    .card-blog-1.post-list .post-thumb {
        max-width: 175px;
        margin-left: 15px
    }

    .card-blog-1.post-list .btn-brand-hover {
        padding: 10px 15px;
        font-size: 14px
    }

    .card-blog-1.post-list .post-title {
        font-size: 20px
    }

    .archive-header h3 {
        font-size: 36px;
        width: 100% !important
    }

    .mb-md-30 {
        margin-bottom: 30px !important
    }

    .mt-md-50 {
        margin-top: 50px !important
    }

    .mt-md-30 {
        margin-top: 30px !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .pl-md-0 {
        padding-right: 0 !important
    }

    .pl-md-15 {
        padding-right: 15px !important
    }

    .w-md-100 {
        width: 100% !important
    }

    .section-title-large {
        font-size: 48px
    }

    .leaflet-map {
        height: 328px;
        width: 100%
    }
}

@media (max-width:767.98px) {
    .section-title-large {
        font-size: 42px
    }

    .banner-hero .block-banner {
        padding: 0
    }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top {
        padding: 15px 30px 13px 30px;
        border-bottom: 1px solid #ececec
    }

        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
            width: 140px
        }

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
        padding: 90px 30px 30px 30px
    }

    .nav.nav-right {
        margin-top: 30px
    }

    .box-head-single h3 {
        font-size: 36px;
        line-height: 1.2
    }

    .social-share {
        margin-top: 25px
    }

        .social-share .btn-sm {
            padding: 10px 15px;
            vertical-align: middle
        }

    .job-overview {
        padding: 25px !important
    }
}

@media (max-width:575.98px) {
    .section-box.mt-100, .section-box.mt-40, .section-box.mt-70, .section-box.mt-80 {
        margin-top: 30px !important
    }

    .header.sticky-bar .col-lg-7 .burger-icon {
        left: 15px
    }

    .banner-hero.hero-1 h1 {
        font-size: 38px
    }

    .banner-hero .block-banner .form-find {
        padding: 15px;
        margin-top: 40px !important
    }

        .banner-hero .block-banner .form-find form {
            display: block
        }

            .banner-hero .block-banner .form-find form input {
                margin-bottom: 15px
            }

            .banner-hero .block-banner .form-find form button {
                margin-top: 15px
            }

    .swiper-button-next, .swiper-button-prev {
        display: none
    }

    h2.section-title {
        font-size: 32px;
        line-height: 48px
    }

    .mt-sm-15 {
        margin-top: 15px !important
    }

    .mt-sm-30 {
        margin-top: 30px !important
    }

    .pt-sm-15 {
        padding-top: 15px
    }

    .swiper-group-6 {
        max-height: 140px
    }

    .box-swiper .swiper-container .item-logo {
        box-shadow: none
    }

    .list-partners li {
        padding: 15px 15px
    }

    .box-newsletter {
        padding: 50px 15px
    }

        .box-newsletter .text-md-newsletter {
            font-size: 22px;
            line-height: 28px
        }

        .box-newsletter .text-lg-newsletter {
            font-size: 32px
        }

        .box-newsletter form {
            display: block
        }

    .footer .col-xs-6 {
        width: 50%
    }

    .footer ul.mt-40 {
        margin-top: 15px !important;
        margin-bottom: 20px !important
    }

    .footer .footer-social {
        margin-top: 15px;
        margin-right: -10px
    }

    .bg-banner-about.banner-home-3 {
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px
    }

        .bg-banner-about.banner-home-3 .banner-hero .block-banner {
            padding-left: 15px;
            padding-right: 15px
        }

    .card-job-top--info-heading {
        margin-bottom: 10px
    }

    .card-job-top--price {
        margin-top: 15px;
        display: block
    }

    .box-info-job {
        padding: 0 !important
    }

    .block-job-bg::before {
        display: none
    }

    .box-mw-60 {
        max-width: 100% !important
    }

    .box-image-findjob img {
        border-radius: 20px;
        margin-bottom: 20px
    }

    .nav-right li {
        margin-bottom: 15px
    }

    .block-pricing.mt-125 {
        margin-top: 50px !important
    }

    .box-filters .list-tags-job {
        display: none
    }

    .job-fillter.d-flex {
        display: block !important
    }

        .job-fillter.d-flex .box-button-find {
            float: none
        }

        .job-fillter.d-flex .btn {
            padding-right: 10px !important
        }

        .job-fillter.d-flex .dropdown {
            margin: 0 0 10px 0;
            width: 100%;
            max-width: 100%
        }

    .box-shadow-bdrd-15.box-filters {
        padding-bottom: 30px
    }

    .social-share .btn-sm {
        padding: 10px 11px
    }

    .card-employers .col-sm-6 {
        width: 50%
    }

    .archive-header h3 {
        font-size: 32px;
        line-height: 1.2
    }

    .card-blog-1 .tags {
        display: none
    }

    .card-blog-1 .post-meta {
        font-size: 12px
    }

    .card-blog-1.post-list {
        display: block
    }

        .card-blog-1.post-list .post-thumb {
            max-width: 100%;
            margin-left: 0;
            margin-bottom: 15px
        }

        .card-blog-1.post-list .post-title {
            font-size: 18px
        }

    .single-body blockquote {
        padding: 15px 20px;
        border-radius: 5px;
        margin: 15px auto;
        font-size: 18px;
        max-width: 100%
    }

        .single-body blockquote p {
            font-size: 18px;
            line-height: 1.5
        }

    .bg-banner-about {
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        padding: 15px 15px 40px 15px
    }

        .bg-banner-about .heading-lg {
            font-size: 32px;
            line-height: 1.2
        }

    .banner-about::before {
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px
    }

    .section-title-large {
        font-size: 38px
    }
}

@media (min-width:1400px) {
    .container.wide {
        max-width: 1544px
    }
}

.imagecontainer {
    margin: 50px auto;
    display: block;
    width: 280px;
    height: 280px;
    overflow: hidden;
    border-radius: 28px;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 0 3px 3px rgba(0,0,0,.05)
}

    .imagecontainer img {
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        position: absolute;
        top: -25px;
        right: 25px;
        max-width: 500px !important;
        height: 500px;
        -o-object-fit: cover;
        object-fit: cover
    }

.banner-imgs img {
    border-radius: 20px
}

.shape-1 {
    height: 320px;
    -o-object-fit: cover;
    object-fit: cover
}

.banner-homepage-3 .banner-imgs .banner-sm3 {
    top: 68%;
    right: -70px
}

.banner-homepage-3 {
    position: relative;
    height: 860px;
    background-image: url(../images/banner.webp);
    background-repeat: no-repeat;
    background-size: cover
}

.custom-overlay {
    background-color: #fff;
    background-blend-mode: overlay;
    background-size: auto;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    opacity: .8
}

.card-grid-2 img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: transform .3s ease
}

.wave {
    right: 0;
    line-height: 0;
    bottom: -1px
}

    .wave svg {
        width: calc(100% + 1.3px);
        right: 50%;
        transform: translateX(50%)
    }

    .wave .elementor-shape-fill {
        fill: #fff;
        transform-origin: center;
        transform: rotateY(0)
    }

@keyframes last_rotate {
    0% {
        transform: rotateX(0);
        z-index: 1
    }

    100% {
        transform: rotateX(-180deg);
        z-index: 0
    }
}

@keyframes new_rotate {
    0% {
        transform: rotateX(0);
        z-index: 0
    }

    100% {
        transform: rotateX(-180deg);
        z-index: 1
    }
}

.flip-countdown {
    display: flex;
    justify-content: center;
    font-family: Roboto,sans-serif;
    font-size: 4.1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    overflow: hidden
}

.interval_cont {
    display: flex;
    justify-content: space-around;
    width: auto;
    overflow: hidden
}

    .interval_cont:nth-child(n+1):not(:last-child) {
        margin-left: .15em
    }

.description {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .5em;
    margin-left: .55em;
    font-size: .29em;
    font-weight: 700;
    text-transform: uppercase;
    color: #7791a8;
    text-shadow: -0.05em .05em .1em rgba(136,110,87,.3);
    overflow: hidden
}

.digit_cont {
    position: relative;
    width: 1.2em;
    height: 1.5em;
    font-weight: 900;
    line-height: 1.5em;
    border-radius: .25em;
    color: #4c6377;
    border-bottom: .01em solid rgba(76,99,119,.1);
    box-shadow: 0 .2em .3em -.1em rgba(76,99,119,.1);
    perspective: 3em;
    box-sizing: border-box;
    overflow: hidden
}

    .digit_cont:after {
        content: "";
        position: absolute;
        top: 50%;
        width: 100%;
        height: .015em;
        background: rgba(141,163,182,.25);
        box-shadow: 0 .01em .02em 0 rgba(255,255,255,.1);
        z-index: 1
    }

    .digit_cont:nth-child(n+1):not(:last-child) {
        margin-left: .05em
    }

    .digit_cont span {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 50%;
        width: 100%;
        height: 100%;
        overflow: hidden
    }

    .digit_cont .last_placeholder, .digit_cont .last_rotate, .digit_cont .new_placeholder, .digit_cont .new_rotate {
        position: absolute;
        right: 0;
        width: 100%;
        height: 50%;
        text-align: center;
        overflow: hidden;
        box-sizing: border-box
    }

    .digit_cont .last_placeholder {
        bottom: 0;
        border-radius: 0 0 .25em .25em;
        background: linear-gradient(to bottom,#dae1e8 -90%,#fff 100%),#dae1e8
    }

    .digit_cont .new_placeholder {
        box-shadow: inset 0 .01em 0 0 rgba(255,255,255,.5)
    }

    .digit_cont .last_rotate, .digit_cont .new_placeholder, .digit_cont .new_rotate {
        top: 0;
        border-radius: .25em .25em 0 0;
        background: linear-gradient(to bottom,#dae1e8 10%,#fff 200%),#dae1e8
    }

    .digit_cont .last_rotate {
        transform-origin: 0% 100%;
        animation: last_rotate .5s linear forwards
    }

    .digit_cont .new_rotate {
        border-top: .01em solid rgba(76,99,119,.3);
        background: linear-gradient(to top,#dae1e8 -90%,#fff 100%),#dae1e8;
        transform-origin: 0% 100%;
        animation: new_rotate .5s linear forwards
    }

        .digit_cont .new_rotate .rotated {
            width: 100%;
            height: 100%;
            border-radius: 0 0 .25em .25em;
            transform: rotateX(180deg);
            overflow: hidden
        }

.banner-right {
    position: relative;
    height: 100%
}

.banner-overlay {
    background-image: url(../images/logo/logo-white.webp);
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-size: auto;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 45px;
    right: 0;
    opacity: .2;
    background-position: left
}

.banner-right img {
    margin-top: 20px
}

footer {
    position: relative;
    padding-top: 70px;
    color: #fff !important;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden
}

    footer div, footer h6, footer ul li a {
        color: #fff !important
    }

.footer .footer-bottom strong {
    color: #fff
}

.box-shadow {
    box-shadow: 0 0 15px 0 rgba(0,0,0,.1) !important
}

.rounded-60 {
    border-radius: 30px
}

.countdown-inner span {
    color: #000;
    font-size: 54px;
    font-weight: 900
}

.text-secondary {
    --bs-text-opacity: 1;
    color: #000 !important;
    font-size: 14px;
    font-weight: 500
}

.countdown-h {
    font-size: 25px;
    margin: 30px 0 5px 0 !important;
    color: #000
}

.banner-section {
    margin-top: 117px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px
}

@media (max-width:1199px) {
    .banner-section {
        margin-top: 110px !important
    }
}

.heading-36 span, .heading-banner span, .otherpage .heading-banner span {
    color: #0e1c43
}

.footer-body {
    position: relative;
    z-index: 1
}

.Gallery {
    background-image: url(../images/bg1.webp);
    position: relative;
    padding-top: 90px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1
}

    .Gallery .custom-overlay {
        opacity: .8
    }

.gallery-body {
    position: relative;
    z-index: 1
}

.Gallery .section-title {
    color: #000
}

.footer-socials a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    transition: all .3s ease-in-out;
    text-align: center;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff
}

.social-a:hover {
    background-color: #1ac5ab !important
}

.footer-socials a i {
    color: #fff;
    transition: all .3s ease-in-out
}

.social-a:hover i {
    color: #fff !important
}

footer h6 {
    font-size: 20px
}

.rounded {
    border-radius: 25px !important
}

.box-content {
    z-index: 2;
    transform: translateY(100%);
    transition: transform .5s ease-out
}

.speaker-box {
    position: relative;
    margin: 0 10px;
    overflow: hidden !important
}

    .box-content, .speaker-box:after {
        width: 100%;
        position: absolute;
        right: 0;
        bottom: 0;
        border-radius: 25px;
        transition: all ease-in-out .5s
    }

    .speaker-box:after {
        content: "";
        height: 100%
    }

    .speaker-box:hover .box-content {
        transform: translateY(-20px)
    }

    .speaker-box:hover:after {
        background: rgba(0,0,0,.7);
        border-radius: 25px;
        transition: all ease-in-out .5s;
        top: 0
    }

    .speaker-box .social-link li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        background-color: #a1a1a1;
        transition: all .3s ease-in-out;
        color: #fff
    }

        .speaker-box .social-link li a:hover {
            background: #ffaf00;
            color: #fff
        }

@keyframes iconTranslateY {
    48% {
        transform: translateY(50%)
    }

    49% {
        opacity: 0;
        transform: translateY(-50%)
    }

    50% {
        opacity: 1
    }
}

.social-link > li > a:hover > i {
    animation: iconTranslateY .4s forwards
}

.speaker-title a {
    color: #fff
}

.testimonial {
    background-image: url(../images/map.webp);
    position: relative;
    padding-top: 90px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    z-index: 0
}

.burger-icon {
    display: none
}

.schedule-section {
    position: relative
}

.iifme-back-logo .banner-overlay {
    background-image: url(../images/logo/iifme-logo-black.webp);
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    background-size: auto;
    position: absolute;
    height: 100%;
    width: 100%;
    right: 0;
    opacity: .2;
    background-position: left;
    z-index: -1;
    background-size: 50%;
    background-attachment: fixed
}

@media (max-width:767px) {
    .iifme-back-logo .banner-overlay {
        background-position: center;
        background-size: 75%
    }
}

.iifme-back-logo .banner-overlay.booth {
    background-image: url(../images/booth.webp);
    background-size: 90%;
    background-position: center
}

.schedule-section .schedule-area {
    margin-top: 50px;
    background: rgba(255,255,255,.6901960784);
    padding: 20px;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.2);
    border-radius: 25px;
    height: 420px;
    overflow-y: scroll
}

.schedule-section .schedule-tab-title .table {
    margin-bottom: 0;
    background: #fff
}

    .schedule-section .schedule-tab-title .table > tbody > tr > td {
        position: relative;
        cursor: pointer;
        height: 100px;
        width: 215px;
        border: 1px solid #e5e5e5;
        transition: all .5s ease
    }

        .schedule-section .schedule-tab-title .table-hover > tbody > tr:hover > .active, .schedule-section .schedule-tab-title .table > tbody > tr > td.active, .schedule-section .schedule-tab-title .table > tbody > tr > td:hover {
            background: #ffaf00;
            border: 1px solid #b18b34;
            transition: all .5s ease
        }

.schedule-section tr {
    border-radius: 25px !important
}

.schedule-section .schedule-tab-title .table-hover > tbody > tr > .active:before, .schedule-section .schedule-tab-title .table-hover > tbody > tr > :hover:before {
    color: #b18b34;
    content: "\f0d7";
    font-family: FontAwesome;
    font-size: 24px;
    position: absolute;
    bottom: -15px;
    right: 100px;
    transition: all .5s ease;
    -moz-transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

.schedule-section .schedule-tab-title .table > tbody > tr > td .item-text {
    padding-right: 70px;
    padding-top: 15px;
    width: 165px
}

.schedule-section .schedule-tab-title .table > tbody > tr > td i {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    font-size: 15px;
    width: 40px;
    height: 40px;
    line-height: 50px;
    color: #676970;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #ebebeb;
    border-radius: 50%;
    transition: all .5s ease
}

.schedule-section .schedule-tab-title .table > tbody > tr > td.active i, .schedule-section .schedule-tab-title .table > tbody > tr > td:hover i {
    background: #000;
    color: #fff;
    transition: all .5s ease
}

.schedule-section .schedule-tab-title .table > tbody > tr > td h5 {
    font-size: 14px;
    color: #2f323c;
    line-height: 32px;
    font-weight: 400;
    text-transform: capitalize
}

.schedule-section .schedule-tab-title .table > tbody > tr > td h6 {
    font-size: 14px;
    color: #848484;
    line-height: 16px;
    font-weight: 400;
    text-transform: capitalize
}

.schedule-section .schedule-tab-title .table > tbody > tr > td.active h5, .schedule-section .schedule-tab-title .table > tbody > tr > td:hover h5 {
    color: #ddd !important;
    transition: all .5s ease
}

.schedule-section .schedule-tab-title .table > tbody > tr > td.active h6, .schedule-section .schedule-tab-title .table > tbody > tr > td:hover h6 {
    color: #ddd !important;
    transition: all .5s ease
}

.schedule-section .schedule-tab-content {
    transition: all .5s ease
}

    .schedule-section .schedule-tab-content .inner-box {
        border: 1px solid #eee;
        border-radius: 5px
    }

    .schedule-section .schedule-tab-content .table {
        margin-bottom: 0
    }

        .schedule-section .schedule-tab-content .table > thead > tr > th {
            border-bottom: none;
            background: #383c45;
            padding: 15px 15px;
            font-size: 14px;
            color: #fff;
            font-weight: 500;
            text-transform: capitalize
        }

        .schedule-section .schedule-tab-content .table > tbody > tr {
            background-color: #fff;
            transition: .5s;
            text-transform: capitalize;
            border-top: 1px solid #efefef
        }

        .schedule-section .schedule-tab-content .table > tbody > tr {
            border-top: 1px solid #efefef
        }

            .schedule-section .schedule-tab-content .table > tbody > tr > td {
                padding: 15px 15px;
                font-size: 14px;
                color: #7a8287;
                text-transform: capitalize
            }

        .schedule-section .schedule-tab-content .table > tbody .time {
            position: relative;
            width: 240px
        }

            .schedule-section .schedule-tab-content .table > tbody .time i {
                margin-left: 5px
            }

        .schedule-section .schedule-tab-content .table > tbody .speakers {
            position: relative;
            width: 290px;
            text-align: right
        }

        .schedule-section .schedule-tab-content .table > tbody .subject {
            position: relative;
            width: 300px
        }

        .schedule-section .schedule-tab-content .table > tbody .venue {
            position: relative;
            width: 190px
        }

        .schedule-section .schedule-tab-content .table > tbody .speaker {
            position: relative
        }

            .schedule-section .schedule-tab-content .table > tbody .speaker .image-box {
                position: absolute;
                width: 50px;
                height: 50px;
                top: -15px;
                right: -70px
            }

            .schedule-section .schedule-tab-content .table > tbody .speaker h4 a {
                font-size: 14px;
                font-weight: 400;
                color: #848484
            }

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: #fff !important
}

@keyframes moveSideToSide {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-20px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes moveUptoDown {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }

    100% {
        transform: translateY(0)
    }
}

.partners {
    background-image: url(../images/partners-bg.webp);
    position: relative;
    padding: 150px 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-position: center
}

    .partners .custom-overlay {
        background-image: linear-gradient(-90deg,#fff 0,#fff,#fff 100%);
        opacity: .8;
        background-position: top
    }

.slick-slide {
    display: block
}

.partner-slider img {
    width: 150px;
    height: 150px;
    -o-object-fit: contain;
    object-fit: contain;
    display: unset
}

.judge-slider li, .partner-slider li, .test-slider li {
    display: block
}

.slick-arrow.test_left_arrow {
    position: absolute;
    top: 45%;
    left: 0;
    font-size: 30px;
    color: #0e1c43;
    transform: translate(0,-50%);
    border-radius: 5px;
    z-index: 97;
    cursor: pointer
}

.slick-arrow.test_right_arrow {
    position: absolute;
    top: 45%;
    right: 0;
    font-size: 30px;
    color: #0e1c43;
    transform: translate(0,-50%);
    border-radius: 5px;
    z-index: 97;
    cursor: pointer
}

.partner-body {
    position: relative
}

.speakers .slick-arrow.test_left_arrow {
    position: absolute;
    top: 50%;
    left: -13px;
    font-size: 30px;
    color: #7a736f;
    transform: translate(0,-50%);
    border-radius: 5px;
    z-index: 100;
    cursor: pointer
}

.speakers .slick-arrow.test_right_arrow {
    position: absolute;
    top: 50%;
    right: -13px;
    font-size: 30px;
    color: #7a736f;
    transform: translate(0,-50%);
    border-radius: 5px;
    z-index: 100;
    cursor: pointer
}

.btn-other {
    background-color: #b18b34 !important
}

    .btn-other:hover {
        background-color: #383838 !important
    }

.sectionClass {
    padding: 0 0 50px 0;
    position: relative;
    display: block
}

.fullWidth {
    width: 100% !important;
    display: table;
    float: none;
    padding: 0;
    min-height: 1px;
    height: 100%;
    position: relative
}

.projectFactsWrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

#projectFacts .fullWidth {
    padding: 0
}

.projectFactsWrap .item {
    width: 25%;
    height: 100%;
    padding: 50px 0;
    text-align: center
}

    .projectFactsWrap .item:nth-child(1) {
        background: rgba(120,85,3,.8784313725);
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px
    }

    .projectFactsWrap .item:nth-child(2) {
        background: rgba(155,110,4,.8784313725)
    }

    .projectFactsWrap .item:nth-child(3) {
        background: rgba(189,134,5,.8784313725)
    }

    .projectFactsWrap .item:nth-child(4) {
        background: rgba(229,162,4,.8784313725);
        border-top-left-radius: 25px;
        border-bottom-left-radius: 25px
    }

    .projectFactsWrap .item p.number {
        font-size: 40px;
        padding: 0;
        font-weight: 700;
        margin-top: 20px
    }

    .projectFactsWrap .item p {
        color: rgba(255,255,255,.8);
        font-size: 18px;
        margin: 0;
        padding: 10px
    }

    .projectFactsWrap .item span {
        width: 105px;
        background: rgba(255,255,255,.8);
        height: 4px;
        display: block;
        margin: 11px auto 0
    }

    .projectFactsWrap .item i {
        vertical-align: middle;
        font-size: 50px;
        color: rgba(255,255,255,.8)
    }

    .projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p {
        color: #fff
    }

    .projectFactsWrap .item:hover span {
        background: #fff
    }

@media (max-width:786px) {
    .projectFactsWrap .item {
        flex: 0 0 50%
    }
}

.counter-section {
    background-image: url(../images/bg3.webp);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-attachment: fixed
}

    .counter-section .custom-overlay {
        background-image: linear-gradient(-90deg,#251b02 0,#6a5627,#251b02 100%)
    }

    .counter-section .custom-overlay {
        opacity: .8
    }

.feature-box {
    padding: 30px;
    background-color: rgba(7,7,7,.7607843137);
    position: relative;
    overflow: hidden;
    height: 100%
}

    .feature-box i {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 35px;
        transition: all .5s ease-in-out;
        background-color: #1ac5ab
    }

    .feature-box small {
        color: #fff
    }

    .feature-box:hover i {
        background-color: #f6ad00
    }

.faq-section {
    background-image: url(../images/bg3.webp);
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-attachment: fixed
}

    .faq-section .custom-overlay {
        background-image: #fff;
        opacity: .8
    }

.faq-body {
    position: relative
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: right;
    background-color: rgba(255,255,255,.7490196078);
    border: 1px solid #ddd
}

.faq-body h2 {
    line-height: 35px
}

.accordion-body {
    background-color: rgba(255,255,255,.8784313725)
}

.accordion-button:not(.collapsed) {
    color: #212529;
    background-color: rgba(255,255,255,.7490196078);
    border-bottom: 1px solid #ddd !important
}

.accordion-button:focus {
    z-index: 3;
    border-color: #fff;
    outline: 0;
    box-shadow: unset
}

.mobile-menubar {
    position: fixed;
    left: 15px;
    top: 40px;
    z-index: 999
}

@media (max-width:1468px) {
    .banner-homepage-3 {
        height: 600px
    }
}

@media (max-width:1199px) {
    .header-right {
        display: none
    }

    .burger-icon {
        display: block
    }

    .banner-overlay {
        background-size: 100%
    }

    .banner-homepage-3 {
        height: 850px
    }
}

@media (max-width:1115px) {
    h1 {
        font-size: 52px
    }

    .mt-30 {
        margin-top: 20px !important
    }

    .banner-homepage-3 {
        height: 800px
    }
}

@media (max-width:991px) {
    .banner-hero .block-banner {
        padding: 205px 0 0 0
    }
}

@media (max-width:550px) {
    .projectFactsWrap .item {
        flex: 0 0 100%
    }

    .projectFactsWrap .item {
        border-radius: 25px;
        margin-bottom: 10px
    }
}

.bannervideo-homepage-3 {
    background-image: none !important
}

.banner-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    -o-object-position: 100% 78%;
    object-position: 100% 78%
}

.jury-slider .slick-track {
    width: auto !important
}

.speakers .slick-slide img {
    width: 100%;
    height: 387px;
    -o-object-fit: cover;
    object-fit: cover
}

.swiper-slide {
    margin: 0 10px;
    overflow: hidden !important
}

.arrow-up .slick-arrow.test_right_arrow {
    top: -36px;
    right: unset;
    left: 60px
}

.arrow-up .slick-arrow.test_left_arrow {
    top: -36px;
    left: 20px;
    right: unset
}

.jury img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.jury-detail {
    background-color: rgba(221,221,221,.7490196078);
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden
}

    .jury-detail p {
        color: #000;
        padding-bottom: 20px
    }

.mobile-social-icon .footer-socials a {
    background-color: #000 !important
}

    .mobile-social-icon .footer-socials a i {
        color: #fff
    }

@media (max-width:767px) {
    .mt-100 {
        margin-top: 50px !important
    }

    .partners {
        padding: 100px 0
    }

    .jury-detail {
        margin: 40px 0
    }

    .mt-90 {
        margin-top: 45px !important
    }
}

.top-bar {
    position: static;
    background-color: #0e1c43;
    padding: 7px 0;
    width: 100%;
    border-bottom: 1px solid #284085
}

    .top-bar a {
        color: #fff !important
    }

        .top-bar a span {
            text-decoration: underline
        }

body.homepage .top-bar {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0
}

.header-event-info {
    color: #fff
}

    .header-event-info ul {
        display: flex;
        justify-content: right;
        align-items: center
    }

    .header-event-info i, .header-event-info img {
        width: 25px
    }

.mr-05 {
    margin-left: 5px
}

.ml-05 {
    margin-right: 5px
}

.border-end {
    border-left: 1px solid #ddd !important
}

.card-grid-2:hover img {
    transform: scale(1.1)
}

.Gallery .img_overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1
}

.Gallery .card-grid-2:hover .img_overlay {
    opacity: 1
}

.Gallery .img_overlay .btn {
    width: 50px;
    height: 50px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    color: #fff;
    background: #fff;
    border: none;
    margin: 5px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 50%;
    transition: all .3s ease-in-out
}

    .Gallery .img_overlay .btn:hover {
        background-color: #b18b34 !important
    }

        .Gallery .img_overlay .btn:hover i {
            color: #fff
        }

.site-content .jury .badge, .speakers .badge {
    bottom: 15px;
    top: unset !important;
    left: 5px;
    animation: rotate360 5s infinite linear;
    transform-origin: center;
    perspective: 1000px
}

    .site-content .jury .badge img, .speakers .badge img {
        width: 40px;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
        filter: drop-shadow(2px 4px 6px rgba(35, 30, 0, .5294117647))
    }

@keyframes rotate360 {
    0% {
        transform: rotateY(0)
    }

    50% {
        transform: rotateY(-180deg)
    }

    100% {
        transform: rotateY(-360deg)
    }
}

.ksclink {
    line-height: 0
}

    .ksclink img {
        width: 55%;
        -o-object-fit: contain;
        object-fit: contain
    }

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: none;
    z-index: 999
}

.event-booking {
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    background: #fff;
    padding: 40px;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    z-index: 1000;
    width: 50%
}

.fc-daygrid-day.active-date {
    background: rgba(177,139,52,.4705882353);
    color: #fff
}

.fc .fc-toolbar.fc-header-toolbar {
    margin-bottom: 5px
}

.fc .fc-button-primary, .fc .fc-button-primary:disabled {
    background-color: #383838;
    border-color: #383838
}

    .fc .fc-button-primary:hover {
        background-color: #1ac5ab;
        border-color: #b18b34
    }

.fc-daygrid-day:hover {
    background: rgba(177,139,52,.4705882353)
}

.fc-daygrid-day-top:hover {
    cursor: pointer
}

.fc-daygrid-day.active-date a {
    color: #000 !important
}

.fc-daygrid-day-events {
    cursor: unset !important
}

.table-responsive {
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #888 transparent
}

    .table-responsive::-webkit-scrollbar {
        height: 8px
    }

    .table-responsive::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px
    }

        .table-responsive::-webkit-scrollbar-thumb:hover {
            background-color: #555
        }

    .table-responsive::-webkit-scrollbar-track {
        background: 100% 0
    }

.event-booking h3 {
    font-size: 25px
}

.event-booking button {
    margin-top: 20px
}

.Events a:hover {
    color: #383838
}

.otherpage {
    position: relative;
    height: 500px;
    background-image: url(../images/other-banner.webp) !important
}

    .otherpage h1 {
        font-size: 30px !important
    }

.centered {
    position: absolute;
    top: 350px;
    right: 50%;
    font-size: 85px;
    transform: translate(50%,-50%);
    font-size: 60px;
    text-align: center;
    color: #fff
}

    .centered h1 {
        text-transform: uppercase
    }

.otherpage h1 {
    font-size: 50px
}

.otherpage .banner-description {
    margin-top: 15px !important
}

.site-content .jury img {
    width: 100%;
    height: 325px
}

.site-content .jury-detail p {
    padding-bottom: 7px
}

.jury-attendance-body {
    padding-top: 5px
}

.jury-attendance {
    line-height: 0;
    padding-top: 30px
}

.jury-attendance-badge {
    font-size: 10.5px;
    font-weight: 700;
    text-align: center;
    line-height: 16px
}

.apply-section {
    background-image: url(../images/jury-back.webp);
    position: relative;
    padding: 45px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    background-attachment: fixed;
    border-radius: 40px;
    margin-top: -60px;
    overflow: hidden
}

    .apply-section .custom-overlay {
        background-image: linear-gradient(-178deg,#533a02 0,#533a02,#fee2a3 100%)
    }

.apply-content {
    position: relative
}

.apply-section .custom-overlay {
    opacity: .8
}

.apply-section h2, .apply-section p {
    color: #fff !important
}

.burger-icon.burger-icon-white > span::after, .burger-icon.burger-icon-white > span::before {
    background-color: #ddd
}

.footer {
    background-image: url(../images/footer.webp);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover
}

    .footer h3 {
        font-size: 18px;
        color: #fff;
        line-height: 1;
        margin: 20px 0
    }

    .footer p {
        margin-bottom: 20px
    }

    .footer .custom-overlay {
        background-color: #0e1c43
    }

.bg-banner-about .block-banner {
    padding: 50px 0 0 100px
}

.bg-banner-about video {
    max-width: 100%;
    height: 460px;
    -o-object-fit: cover;
    object-fit: cover
}

.bg-banner-about .video-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
    height: 445px;
    border-radius: 20px
}

    .bg-banner-about .video-container img {
        border-radius: unset;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.bg-banner-about .video-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    opacity: 1;
    transition: opacity .3s ease;
    display: flex;
    justify-content: center;
    align-items: center
}

.bg-banner-about .video-container:hover .video-overlay {
    opacity: 1
}

.bg-banner-about .video-container.playing .video-overlay {
    display: none
}

.bg-banner-about .play-button {
    background-color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    transition: transform .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: scaleAnimation 1.5s infinite alternate ease-in-out
}

@keyframes scaleAnimation {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

.bg-banner-about .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,.3)
}

.bg-banner-about .play-button i {
    color: #333;
    font-size: 15px
}

.bg-banner-about video {
    width: 100%;
    display: block
}

.bg-banner-about .banner-imgs {
    text-align: left
}

.schedule-area tr {
    line-height: 0 !important
}

.schedule-area th {
    padding: 15px .5rem !important
}

.contact-page {
    position: relative
}

    .contact-page input, .contact-page textarea {
        background-color: rgba(229,229,229,.8901960784)
    }

    .contact-page .box-newsletter {
        border-radius: 40px
    }

.calendar-page .box-newsletter {
    border-radius: 40px
}

.faq-page .faq-section {
    background-image: unset
}

.timeline {
    counter-reset: test 20;
    position: relative
}

    .timeline li {
        list-style: none;
        float: right;
        width: 70px;
        position: relative;
        text-align: center;
        text-transform: uppercase
    }

        .timeline li:before {
            content: attr(data-year);
            width: 50px;
            height: 50px;
            border: 3px solid #ffaf00;
            border-radius: 50%;
            display: block;
            text-align: center;
            line-height: 50px;
            margin: 0 auto 10px auto;
            background: #e6e6e6;
            color: #000;
            transition: all ease-in-out .3s;
            cursor: pointer
        }

        .timeline li:after {
            content: "";
            position: absolute;
            width: 100%;
            height: 1px;
            background-color: grey;
            top: 25px;
            right: -50%;
            z-index: -999;
            transition: all ease-in-out .3s
        }

        .timeline li:first-child:after {
            content: none
        }

        .timeline li.active-tl {
            color: #555
        }

.timeline-body {
    width: 100%;
    margin: 4px 0 0 0
}

.event-timeline {
    position: relative;
    width: 100%;
    float: right;
    padding: 0 0 60px 0;
    margin-top: 4px;
    background-color: #fff;
    min-height: 420px
}

    .event-timeline .line {
        position: absolute;
        width: 2px;
        display: block;
        top: 0;
        bottom: 0;
        right: -24px;
        margin-right: 30px;
        background: #000;
        z-index: 4;
        height: 100%
    }

    .event-timeline .dot {
        position: absolute;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #000;
        right: 1px;
        transform: translateY(-50%);
        transition: top .3s ease;
        z-index: 4
    }

    .event-timeline .panel {
        margin: 10px 0;
        padding-right: 40px
    }

        .event-timeline .panel .accordion-header {
            position: relative
        }

        .event-timeline .panel .accordion-button {
            position: relative;
            z-index: 2
        }

    .event-timeline .accordion-item {
        border: none !important
    }

    .event-timeline .accordion-header {
        border: none !important
    }

    .event-timeline .accordion-button {
        border: none !important;
        box-shadow: none !important
    }

    .event-timeline .accordion-collapse {
        border: none !important
    }

    .event-timeline .accordion-body {
        border: none !important;
        padding: 2px 20px 16px
    }

    .event-timeline .accordion-button::after {
        display: none
    }

.d-none {
    display: none
}

.event-date .heading-36 {
    font-size: 25px;
    text-transform: capitalize
}

.gallery-body {
    height: 500px;
    overflow-y: scroll
}

    .gallery-body::-webkit-scrollbar {
        width: 8px
    }

    .gallery-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px
    }

    .gallery-body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px
    }

        .gallery-body::-webkit-scrollbar-thumb:hover {
            background: #555
        }

    .gallery-body::-webkit-scrollbar-button {
        display: none
    }

.invention {
    border-radius: 20px;
    background-color: #ddd;
    padding: 10px 5px;
    margin-bottom: 40px
}

.invention-detail {
    height: 420px;
    overflow-y: scroll
}

    .invention-detail::-webkit-scrollbar {
        width: 8px
    }

    .invention-detail::-webkit-scrollbar-track {
        background: 100% 0;
        border-radius: 10px
    }

    .invention-detail::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px
    }

        .invention-detail::-webkit-scrollbar-thumb:hover {
            background: #555
        }

    .invention-detail::-webkit-scrollbar-button {
        display: none
    }

.registeration-body .invention {
    background-color: rgba(221,221,221,0)
}

.registeration-body .registration .invention-detail {
    height: auto;
    border: 1px solid #b18b34
}

.registeration-body .registration .table > :not(caption) > * > * {
    padding: 2px 0
}

.registeration-body .note li, .registeration-body .note p {
    font-weight: 600;
    color: #000
}

.registeration-body .note ul {
    padding-inline-start: 15px;
    list-style: decimal
}

.registeration-body table td {
    padding-left: 10px !important
}

@media (max-width:767px) {
    .registeration-body .jury-detail {
        margin: 5px 0;
        padding: 7px
    }
}

.prizes {
    padding-top: 70px;
    padding-bottom: 50px;
    background-image: url(../images/medals.webp)
}

    .prizes .custom-overlay {
        opacity: .6
    }

    .prizes .prizes-body {
        position: relative
    }

    .prizes .prize-box {
        width: 100%;
        min-height: 263px;
        text-align: center;
        border: 1px solid rgba(221,221,221,.631372549);
        background-color: rgba(221,221,221,.631372549);
        border-radius: 30px;
        padding: 20px 10px;
        margin-bottom: 45px;
        transition: .4s ease-in-out
    }

        .prizes .prize-box:hover {
            border: 1px solid #b18b34;
            background-color: rgba(207,199,122,.5607843137)
        }

    .prizes img {
        width: 100%;
        padding-bottom: 4px;
        height: 175px;
        -o-object-fit: contain;
        object-fit: contain
    }

    .prizes p {
        font-size: 15px;
        font-weight: 600
    }

    .prizes a p {
        color: #000
    }

    .prizes .next-box img {
        width: 170px
    }

.prize-page .custom-overlay {
    opacity: 0
}

.prize-page.prizes {
    background-image: unset
}

.prize-page .prize-box {
    height: 296px
}

.points-body ul {
    padding-inline-start: 30px
}

    .points-body ul li {
        list-style: decimal;
        font-size: 17px;
        line-height: 2
    }

@media (max-width:1399px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1230px
    }

    .header .main-menu li a {
        font-size: 14px
    }
}

@media (max-width:992px) {
    .top-bar {
        display: none
    }

    .header {
        top: 5px
    }

    .heading-banner {
        font-size: 45px
    }

    .banner-hero .banner-description {
        font-size: 14px
    }

    .btn {
        font-size: 14px
    }

    .countdown-h {
        font-size: 24px;
        margin: 20px 0 0 0 !important
    }

    .countdown-inner span {
        font-size: 40px
    }

    .countdown-inner {
        justify-content: left !important
    }

        .countdown-inner .m-auto {
            margin: 0 25px !important
        }

    .mt-90 {
        margin-top: 50px !important
    }

    .schedule-section .schedule-area {
        height: 300px
    }

    .heading-36 {
        font-size: 30px
    }

    .partners {
        padding: 100px 0
    }

    .mt-100 {
        margin-top: 75px !important
    }
}

@media (max-width:767px) {
    .event-booking {
        width: 95%
    }

    .heading-36 {
        font-size: 22px
    }

    span.text-blue {
        font-size: 18px
    }

    .test-slider .card-grid-3-image {
        display: none
    }

    .card-two-collumn .card-block-info {
        padding: 40px 0 20px 0
    }

        .card-two-collumn .card-block-info.quote-left::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0
        }

    .Gallery .nav.nav-right.float-xl-end {
        justify-content: center
    }

    .Gallery .btn.btn-default {
        margin-right: 0 !important
    }

    .footer-socials {
        margin-bottom: 40px
    }

    .footer-bottom {
        text-align: center !important
    }

        .footer-bottom .text-start {
            text-align: center !important
        }

    .centered {
        width: 95%
    }

    .pb-100 {
        padding-bottom: 75px !important
    }

    .pt-100 {
        padding-top: 75px !important
    }

    .bg-banner-about .block-banner {
        padding: 0
    }

    .banner-hero.banner-homepage-3 {
        margin-bottom: 0
    }

    .jury-detail {
        height: auto
    }
}

.book-body .card-grid-2 {
    height: 265px
}

    .book-body .card-grid-2:hover .img_overlay {
        opacity: 1
    }

.book-body .img_overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1
}

    .book-body .img_overlay .btn {
        width: 50px;
        height: 50px;
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
        padding: 0;
        color: #fff;
        background: #fff;
        border: none;
        margin: 5px;
        text-decoration: none;
        font-size: 14px;
        border-radius: 50%;
        transition: all .3s ease-in-out
    }

        .book-body .img_overlay .btn:hover {
            background-color: #b18b34 !important
        }

            .book-body .img_overlay .btn:hover i {
                color: #fff
            }

.register-form {
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(221,221,221,.7019607843)
}

    .register-form .iti__country-name, .register-form label, .register-form p {
        color: #000
    }

    .register-form .iti--allow-dropdown {
        width: 100%
    }

    .register-form label span {
        color: red
    }

.form-check-input:checked {
    background-color: #b18b34 !important;
    border-color: #b18b34 !important
}

.select2-selection {
    height: 50px !important;
    border-radius: 10px !important;
    padding: 11px 15px 13px 15px !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px !important
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(177,139,52,.4901960784) !important
}

@media (max-width:1400px) {
    .header .main-menu li a {
        padding: 14px 22px 10px 0
    }

    .header-right .ml-40 {
        margin-right: 5px !important
    }

    .header .main-header .header-left .header-logo {
        margin-left: 5px
    }
}

@media (max-width:1198px) {
    .header {
        top: 20px
    }
}

.account-menu {
    display: flex;
    justify-content: left
}

    .account-menu a {
        font-size: 18px;
        font-weight: 500;
        margin: 0 6px 0 8px;
        text-decoration: underline;
        text-decoration-color: transparent
    }

        .account-menu a.active, .account-menu a:hover {
            color: #000;
            text-decoration-color: #000
        }

.invention-account-detail .accordion-item {
    background: rgba(255,255,255,.6784313725);
    border: unset !important
}

.invention-account-detail .accordion-header {
    background: rgba(221,221,221,.6784313725)
}

.invention-account-detail .accordion-body {
    background: rgba(255,255,255,0);
    color: #000;
    border: unset !important;
    margin-top: 20px
}

.invention-account-detail .accordion-collapse {
    border: unset !important
}

.invention-account-detail .accordion-button {
    border: unset !important;
    border-bottom: 1px solid #ddd !important
}

    .invention-account-detail .accordion-button:focus, .invention-account-detail .accordion-button:focus-visible {
        border: unset !important;
        border-bottom: 1px solid #ddd !important
    }

textarea.form-control {
    height: auto !important
}

.header-right .block-signin {
    display: flex;
    align-items: center;
    justify-content: center
}

.header-right .dropdown-menu {
    background-color: #fff;
    border: none;
    padding: 10px 0
}

.header-right .dropdown-item {
    color: #000
}

    .header-right .dropdown .dropdown-menu.show .dropdown-item:active, .header-right .dropdown-item:focus, .header-right .dropdown-item:hover {
        color: #fff !important;
        text-decoration: none;
        background-color: #1ac5ab;
        border-radius: 11px
    }

.header-right .dropdown-toggle::after {
    display: none
}

.header-right .dropdown .dropdown-menu.show .dropdown-item {
    padding: 7px 20px
}

.winners .slick-slide img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
    object-fit: contain
}

.winners .speaker-box h6 {
    padding: 5px 0 0 0 !important;
    transition: .2s ease-in-out !important
}

.winners .speaker-box span {
    color: #fff;
    transition: .2s ease-in-out !important
}

.winners .speaker-box:hover h6, .winners .speaker-box:hover span {
    color: #000 !important
}

.winners .speaker-box:after {
    display: none !important
}

.winners .speaker-box:hover:after {
    display: none !important
}

.booth-img img {
    width: 100% !important;
    height: 100% !important
}

.booth-layout img {
    width: 100% !important;
    height: 100% !important
}

.d-ruby {
    display: ruby
}

.stats {
    position: relative;
    padding: 30px 50px 30px;
    background-color: rgba(255,255,255,.9294117647);
    border-radius: 32px;
    box-shadow: rgba(149,157,165,.2) 0 8px 24px;
    margin-bottom: 50px;
    margin-top: 20px !important
}

    .stats .stat-text {
        margin-right: 10px
    }

    .stats h1 {
        font-size: 35px
    }

    .stats h2 {
        font-size: 22px;
        color: #0e1c43;
        line-height: 1;
        margin: 10px 0 10px 0
    }

    .stats p {
        margin: 0
    }

.programs {
    margin-bottom: 25px;
    text-align: center
}

    .programs h2 {
        font-size: 30px;
        color: #fff;
        line-height: 1;
        margin-bottom: 0
    }

    .programs p {
        color: #fff;
        margin-bottom: 30px
    }

    .programs h3 {
        font-size: 18px;
        color: #0e1c43;
        font-weight: 700;
        line-height: 1;
        text-align: right;
        margin-bottom: 25px
    }

    .programs .program-data {
        position: relative;
        width: 100%;
        height: 230px;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 32px;
        overflow: hidden;
        margin-bottom: 20px
    }

        .programs .program-data img {
            width: 100%;
            height: 280px;
            -o-object-fit: contain;
            object-fit: contain
        }

        .programs .program-data .stat-text {
            position: absolute;
            bottom: -55px;
            background: linear-gradient(-180deg,rgba(255,255,255,0) 0,rgba(255,255,255,.9) 24%);
            padding: 20px 8px 10px;
            transition: all .3s ease-in-out;
            width: 100%
        }

        .programs .program-data:hover .stat-text {
            bottom: 0
        }

.blue-bg {
    background-image: url(../images/circles.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 75px 50px;
    background-color: #0e1c43;
    border-radius: 32px
}

.events h2 {
    color: #0e1c43
}

.events .event-data-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0e1c43;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 2px solid #0e1c43;
    z-index: -1
}

.events .event-data {
    position: relative;
    transition: transform .3s ease;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 2px solid #0e1c43;
    overflow: hidden;
    background-color: #fff
}

    .events .event-data:hover {
        transform: translate(7px,-7px)
    }

    .events .event-data img {
        width: 100%;
        height: 280px
    }

    .events .event-data .event-text {
        padding: 10px 12px
    }

    .events .event-data .event-date-outer {
        position: absolute;
        top: 0;
        left: 2px
    }

        .events .event-data .event-date-outer .event-date-back {
            position: relative;
            width: 108px;
            height: 107px;
            background-color: #0e1c43;
            border-bottom-left-radius: 24px;
            border-bottom-right-radius: 24px
        }

        .events .event-data .event-date-outer .event-date {
            position: absolute;
            top: 0;
            left: -4px;
            background-color: #ffaf00;
            padding: 19px 28px 10px;
            border-bottom-left-radius: 24px;
            border-bottom-right-radius: 24px
        }

            .events .event-data .event-date-outer .event-date h1 {
                font-size: 41px;
                color: #0e1c43;
                font-weight: 700
            }

            .events .event-data .event-date-outer .event-date p {
                font-size: 10px;
                margin: 0;
                color: #0e1c43;
                font-weight: 700
            }

.bullets {
    display: flex;
    align-items: center;
    border: 2px solid #ffaf00;
    border-radius: 35px;
    margin-left: 10px;
    padding: 5px 10px;
    margin-bottom: 10px
}

    .bullets img {
        width: unset !important;
        height: unset !important;
        margin-left: 7px
    }

    .bullets span {
        font-size: 12px;
        font-weight: 700;
        color: #0e1c43 !important
    }

.news-left {
    text-align: right
}

    .news-left .new-left-img {
        width: 100%;
        height: 340px;
        -o-object-fit: contain;
        object-fit: contain;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 32px
    }

/*    .news-left h3 {
        color: #fff;
        margin: 15px 0 20px !important
    }
*/
    .news-left .bullets {
        background-color: #fff;
        margin-bottom: 20px
    }

    .news-left p {
        margin-bottom: 0 !important
    }

.news-right {
    margin-bottom: 10px;
    text-align: right
}

    .news-right .news-right-img-body {
        width: 100%;
        height: 100%
    }

    .news-right .new-right-img {
        width: 100%;
        height: 180px;
        -o-object-fit: contain;
        object-fit: contain;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 32px
    }

    .news-right h3 {
        font-size: 15px;
        color: #fff;
        margin-bottom: 10px
    }

    .news-right .bullets {
        background-color: #fff
    }

#sidebar {
    background: #fff;
    width: 400px;
    height: 100vh;
    display: block;
    position: fixed;
    left: -400px;
    top: 0;
    transition: left .3s linear;
    z-index: 99;
    padding: 20px;
    overflow-y: scroll;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px
}

@media (max-width:767px) {
    #sidebar {
        width: 96%;
        left: -96%
    }
}

#sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center
}

#sidebar .siderbar-options a {
    display: block;
    width: 100%;
    font-size: 16px;
    color: #0e1c43;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(23,54,142,.2);
    text-decoration: none;
    transition: all .2s ease-in-out;
    text-transform: uppercase
}

    #sidebar .siderbar-options a.active, #sidebar .siderbar-options a:hover {
        color: #1ac5ab !important
    }

#sidebar .siderbar-options .submenu {
    padding-right: 15px
}

    #sidebar .siderbar-options .submenu a {
        font-size: 15px;
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
        color: #0e1c43;
        display: block;
        width: 100%;
        transition: all .2s ease-in-out
    }

#sidebar .siderbar-options .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer
}

    #sidebar .siderbar-options .submenu-toggle .submenu-toggle-icon {
        display: inline-block;
        transition: transform .3s ease
    }

    #sidebar .siderbar-options .submenu-toggle[aria-expanded=true] .submenu-toggle-icon {
        transform: rotate(-180deg)
    }

#sidebar .footer-socials {
    padding: 50px 0
}

    #sidebar .footer-socials a {
        border: 1px solid #0e1c43
    }

    #sidebar .footer-socials i {
        color: #0e1c43
    }

#sidebar-blur-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    background: rgba(0,0,0,.2);
    z-index: 98;
    display: none;
    transition: all .3s ease-in-out
}

#sidebar.visible {
    left: 0;
    transition: left .3s linear
}

#close-sidebar {
    background-color: transparent !important;
    border: unset !important;
    padding-right: 0 !important
}

    #close-sidebar i {
        color: #0e1c43;
        font-size: 25px
    }

        #close-sidebar i:hover {
            color: #1ac5ab !important
        }

@media (max-width:767px) {
    .block-signin .btn {
        padding: 9px 16px
    }

    .block-signin .mr-05 {
        margin: 0 0 2px 0 !important
    }

    .banner-hero .block-banner {
        padding: 260px 0 0 0
    }

    .banner-hero.banner-homepage-3 h1 {
        font-size: 20px
    }

    .banner-homepage-3 {
        height: 715px
    }

    .stats {
        padding: 55px 12px
    }

        .stats .stats-body {
            padding-bottom: 20px
        }

        .stats h2 {
            font-size: 20px
        }

        .stats p {
            font-size: 12px
        }

    .blue-bg {
        padding: 55px 12px
    }

    .programs h2 {
        text-align: right;
        font-size: 18px
    }

    .event-data {
        margin-bottom: 20px
    }

    .new-right-img {
        margin: 20px 0
    }

    .news-right .news-right-img-body {
        width: unset;
        height: unset
    }

    .news-right p {
        margin-bottom: 0 !important
    }

    footer h6 {
        margin-top: 20px
    }

    .btn {
        font-size: 12px
    }

    .header .main-header {
        margin-top: 0
    }

    .otherpage {
        height: 500px
    }

    .programs.blue-bg h2 {
        text-align: center;
        margin-bottom: 10px
    }

    .programs.blue-bg .program-data h3 {
        font-size: 12px
    }

    .programs.blue-bg .program-data img {
        height: 240px
    }
}

.breadcrumb {
    background-color: transparent;
    font-size: 14px;
    justify-content: center
}

.breadcrumb-item a {
    display: flex;
    align-items: anchor-center
}

    .breadcrumb-item a span {
        padding-right: 5px
    }

    .breadcrumb-item a:hover {
        color: #0e1c43 !important
    }

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #0e1c43
}

.breadcrumb-item.active {
    color: #0e1c43
}

.filter-btn {
    background-color: transparent !important;
    text-decoration: underline;
    color: #fff !important
}

.news-filter button {
    margin-right: 10px;
    width: 135px
}

.news-filter-options.date-range-wrapper {
    display: inline-block;
    width: 100%;
    cursor: pointer
}

    .news-filter-options.date-range-wrapper .dropdown-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        pointer-events: none
    }

    .news-filter-options.date-range-wrapper input::-moz-placeholder {
        color: #000 !important
    }

    .news-filter-options.date-range-wrapper input::placeholder {
        color: #000 !important
    }

.news-filter-select .form-select {
    height: 50px;
    border-radius: 10px !important
}

.news-latest-news h3, .news-latest-news p {
    color: #0e1c43
}

.each-news-body {
    padding: 0 0 30px 0;
    margin: 0 0 30px 0
}

    .each-news-body:not(:last-child) {
        border-bottom: 1px solid rgba(14,28,67,.2509803922)
    }

.event-right-view {
    background-color: #fffdea;
    border: 1px solid #ffaf00;
    color: #0e1c43;
    border-radius: 5px;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    font-weight: 500
}

    .event-right-view span {
        padding-right: 5px
    }

.mr-20 {
    margin-left: 20px !important
}

.mr-10 {
    margin-left: 10px !important
}

.mr-05 {
    margin-left: 5px !important
}

.news-slider img {
    border-radius: 32px;
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
    object-fit: cover
}

.news-detail img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 32px
}

.news-detail .slick-arrow.test_right_arrow {
    color: #fff !important;
    top: 50%;
    right: 5px
}

.news-detail .slick-arrow.test_left_arrow {
    color: #fff !important;
    top: 50%;
    left: 5px
}

.latest-news-slider .latest-news-slider-img {
    height: 350px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 20px
}

.latest-news-slider .bullets {
    padding: 3px 8px
}

    .latest-news-slider .bullets span {
        font-size: 9px
    }

.latest-news-slider p {
    color: #000
}

.latest-news-slider h3 {
    margin-bottom: 10px !important
}

.event-headings {
    border-bottom: 1px solid rgba(14,28,67,.2509803922)
}

    .event-headings a {
        font-size: 20px;
        padding-bottom: 10px;
        color: rgba(14,28,67,.2509803922)
    }

        .event-headings a.active {
            border-bottom: 3px solid #0e1c43;
            color: #0e1c43;
            font-weight: 700
        }

.events-page .each-news-body img {
    height: 225px
}

.events-page .each-news-body h3 {
    margin: 0 0 5px 0 !important
}

.events-page .each-news-body .bullets {
    margin-bottom: 5px;
    padding: 1px 7px;
    margin-left: 5px
}

    .events-page .each-news-body .bullets span {
        font-size: 9px
    }

.events-page .each-news-body .btn-default {
    font-size: 12px
}

    .events-page .each-news-body .btn-default.mt-20 {
        margin-top: 10px !important
    }

.fc .fc-daygrid-day.fc-day-today, button.fc-button {
    background-color: #ffaf00 !important;
    border: 1px solid #0e1c43 !important;
    color: #0e1c43 !important
}

.fc-daygrid-day-number {
    color: #0e1c43 !important;
    font-weight: 600
}

.fc-today-button.fc-button {
    color: #000 !important
}

.fc-daygrid-day.fc-day.fc-day-mon.fc-day-today {
    border: unset !important
}

.events-filters span {
    font-size: 16px;
    color: #0e1c43;
    font-weight: 700
}

.events-filters .events-heading {
    border-bottom: 2px solid #0e1c43;
    padding-bottom: 10px
}

.events-filters a {
    color: #0e1c43;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0 10px 0;
    border-bottom: 1px solid rgba(14,28,67,.2509803922)
}

.aboutus .new-left-img {
    height: 450px
}

.aboutus-v-m {
    text-align: right !important
}

    .aboutus-v-m img {
        width: unset !important
    }

    .aboutus-v-m h3 {
        margin-bottom: 0;
        line-height: normal;
        margin-top: 8px
    }

.aboutus-v-m-line {
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px
}

.contact label {
    color: #0e1c43;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: .4px
}

.contact .form-control {
    border-radius: 2px
}

.contact input::-moz-placeholder, .contact textarea::-moz-placeholder {
    color: #ddd
}

.contact input::placeholder, .contact textarea::placeholder {
    color: #ddd
}

.contact b {
    font-weight: 700
}

.mb-50 {
    margin-bottom: 50px !important
}

.contact-bottom {
    text-align: center;
    margin-bottom: 40px
}

    .contact-bottom h2 {
        font-size: 16px;
        margin-bottom: 3px;
        text-align: center
    }

    .contact-bottom img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px
    }

    .contact-bottom a {
        margin-top: 2px
    }

.scholarship .event-data {
    position: relative;
    transition: transform .3s ease;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 2px solid #0e1c43;
    overflow: hidden;
    background-color: #fff
}

    .scholarship .event-data .event-text {
        padding: 20px 20px
    }

        .scholarship .event-data .event-text p {
            margin-bottom: 14px
        }

.bullets-schol {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px
}

b {
    font-weight: 700
}

.scholarship-dates p {
    margin-left: 20px;
    margin-bottom: 20px
}

.scholarship-details h3 {
    margin: 20px 0 10px !important
}

.scholarship-details ul {
    list-style: disc;
    padding-inline-start: 18px
}

    .scholarship-details ul li {
        line-height: 2
    }

nav .breadcrumb li.breadcrumb-item {
    display: flex;
    justify-content: center;
    align-items: center
}

    nav .breadcrumb li.breadcrumb-item img {
        margin-left: 5px;
        width: 15px
    }

.career-detail h3 {
    margin-bottom: 0
}

.career-detail .career-detail-head {
    padding-bottom: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(14,28,67,.3098039216)
}

    .career-detail .career-detail-head p {
        margin-bottom: 0
    }

.career-detail h5 {
    font-weight: 700;
    font-size: 15px
}

.text-right {
    text-align: left !important
}

.form-control, .form-select {
    height: 48px !important;
    box-shadow: none;
    padding: 11px 20px 13px 15px !important;
    border: 1px solid #ececec !important;
    font-size: 16px !important;
    border-radius: 10px
}

.upload-box {
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: background-color .2s ease-in-out
}

    .upload-box:hover {
        background-color: #f0f8ff
    }

    .upload-box input[type=file] {
        display: none
    }

.file-list {
    margin-top: 15px
}

.upload-form {
    margin: 15px 0;
    padding: 40px
}

    .upload-form label {
        color: #fff
    }

    .upload-form .upload-box {
        background-color: #fff
    }

    .upload-form .file-list div {
        color: #fff !important
    }

.form-group input:focus {
    background: #fff !important
}

.center-middle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%
}

.failed-box {
    background-color: rgba(230,0,0,.1215686275);
    padding: 25px 15px;
    border-radius: 20px;
    margin: 20px 0
}

    .failed-box h5 {
        font-size: 16px;
        margin-bottom: 0;
        font-weight: 700
    }

.no-border-rad {
    border-radius: unset !important
}

.error .error-body {
    padding: 70px 50px;
    margin: 0 0 70px 0;
    border-radius: 20px;
    background-attachment: unset !important
}

@media (max-width:767px) {
    .error .error-body {
        padding: 50px 20px
    }
}

.error img {
    width: 180px
}

.error h1 {
    font-size: 25px;
    padding: 20px 0 0 0;
    color: #fff
}

.error p {
    padding-top: 10px;
    color: #fff
}

.image-with-line {
    height: 100%;
    position: relative;
    padding-left: 40px
}

    .image-with-line img {
        height: 100%
    }

@media (max-width:767px) {
    .image-with-line {
        padding-left: 0
    }
}

.image-with-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background-color: #000;
    border-radius: 50px
}

@media (max-width:767px) {
    .image-with-line::after {
        display: none
    }
}

.image-with-line-left {
    position: relative;
    padding-right: 40px
}

@media (max-width:767px) {
    .image-with-line-left {
        padding-right: 0
    }
}

.image-with-line-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 7px;
    height: 100%;
    background-color: #000;
    border-radius: 50px
}

@media (max-width:767px) {
    .image-with-line-left::after {
        display: none
    }
}

.academics .academics-p p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 2;
    word-spacing: 3px
}

@media (max-width:767px) {
    .academics .academics-p p {
        font-size: 15px;
        line-height: 1.7;
        word-spacing: 2px
    }
}

.center-middle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

.career h3 {
    margin-bottom: 5px !important
}

.badge-closed {
    position: absolute;
    top: 10px;
    left: -35px;
    transform: rotate(-45deg);
    background-color: #dc3545;
    color: #fff;
    font-weight: 700;
    padding: 6px 60px;
    font-size: 11px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,.15);
    pointer-events: none
}

.academic-b {
    border-bottom: 1px solid rgba(221,221,221,.5490196078);
    padding-bottom: 10px
}

.academic-college-detail-b img {
    width: 310px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.prog-fac p {
    opacity: .8;
    color: #0e1c43;
    margin-bottom: 0
}

.prog-det ul {
    padding-inline-start: 19px
}

    .prog-det ul li {
        list-style: disc
    }

.acad-apply-box h3 {
    color: #ffaf00 !important;
    margin: 0
}

.acad-apply-box p {
    color: #fff !important;
    margin: 0
}

.acad-apply-box .btn-default {
    margin-top: 0 !important
}

.image-with-white-line {
    position: relative
}

    .image-with-white-line::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 7px;
        height: 100%;
        background-color: #fff;
        border-radius: 50px
    }

.mb-0 {
    margin-bottom: 0 !important
}

.form-check-label a {
    color: #dba93c
}

.account-table input:focus {
    background: #fff !important
}

.account-table thead {
    background-color: #0e1c43;
    color: #fff
}

.account-table td a {
    margin-bottom: 8px
}

.graduate-stud p {
    line-height: 30px
}

.graduate-stud ul {
    margin-top: 15px;
    padding-inline-start: 20px;
    list-style: disc
}

    .graduate-stud ul li {
        color: #000;
        line-height: 30px;
        font-size: 16px;
        padding-bottom: 10px
    }

@media (max-width:767px) {
    .graduate-stud ul li {
        font-size: 15px;
        line-height: 1.7;
        word-spacing: 2px
    }
}

.graduate-stud thead {
    background-color: #0e1c43;
    color: #fff
}

.grad-pro ul {
    margin-top: 5px;
    list-style: none !important;
    padding-inline-start: 0
}

.grad-pro a {
    padding: 7px 8px;
    text-align: center;
    margin-left: 10px;
    text-decoration: underline;
    font-weight: 600;
    color: #f6aa02
}

.center-center {
    height: 100%;
    display: flex;
    align-items: center
}

.book {
    text-align: center !important;
    width: 100%;
    padding: 40px 10px;
    background-color: #eef7ff;
    border-radius: 20px
}

    .book img {
        width: 130px;
        height: 140px;
        -o-object-fit: contain;
        object-fit: contain
    }

.btn-light {
    border: 1px solid #ddd !important
}

.book-detail {
    text-align: right
}

    .book-detail p {
        padding-top: 10px;
        margin: 0 !important
    }

    .book-detail h4 {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 10px
    }

    .book-detail h5 {
        font-size: 18px;
        margin-bottom: 10px
    }

.book-all {
    margin-bottom: 45px
}

.carousel-indicators button.thumbnail {
    width: 140px
}

    .carousel-indicators button.thumbnail:not(.active) {
        opacity: .7
    }

.carousel-indicators {
    position: static
}

@media screen and (min-width:992px) {
    .carousel {
        max-width: 100%;
        margin: 0 auto
    }
}

#productDetailSlider img, #productDetailSlider video {
    width: 180px;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0
}

#productDetailSlider .carousel-item {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 40px 10px;
    background-color: #eef7ff;
    border-radius: 20px
}

#productDetailSlider .carousel-indicators {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: left
}

    #productDetailSlider .carousel-indicators [data-bs-target] {
        height: 100%;
        background-color: transparent
    }

    #productDetailSlider .carousel-indicators img {
        width: 100%;
        height: 110px;
        -o-object-fit: contain;
        object-fit: contain;
        border-radius: 24px;
        background-color: #eef7ff;
        padding: 10px
    }

#productDetailSlider .carousel-control-next, #productDetailSlider .carousel-control-prev {
    top: 35%;
    height: 30px
}

@media (max-width:767px) {
    #productDetailSlider {
        margin-top: 40px
    }
}

.mt-150 {
    margin-top: 150px
}

.aasubook-right a:not(:last-child) {
    margin-left: 20px
}

.aasubook-right span {
    font-size: 15px;
    font-weight: 600
}

.justify-content-left {
    justify-content: left !important
}

.book-details h4 {
    margin-bottom: 20px
}

.book-details h5 {
    font-size: 16px;
    padding-bottom: 10px
}

    .book-details h5 span {
        font-weight: 800 !important
    }

.shopping-cart-form {
    margin-bottom: 70px
}

    .shopping-cart-form table {
        background: #fff;
        border: 1px solid #e5e5e5;
        border-width: 1px 1px 1px 0;
        color: #323232;
        margin: 0 0 70px;
        text-align: right;
        width: 100%;
        border-radius: 5px;
        margin: 0
    }

@media only screen and (max-width:991px) {
    .shopping-cart-form table {
        width: 690px
    }
}

.shopping-cart-form table th {
    border-bottom: none;
    border-top: none;
    font-size: 15px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
    border-left: 1px solid #e5e5e5
}

.shopping-cart-form table td, .shopping-cart-form table th {
    padding: 20px 10px;
    vertical-align: middle
}

.shopping-cart-form table td {
    border-top: 1px solid rgba(0,0,0,.1);
    line-height: 1.5em;
    border-bottom: none;
    font-size: 1em;
    font-weight: 600;
    text-align: center;
    border-left: 1px solid #e5e5e5
}

.shopping-cart-form table .tbody-item {
    background-color: transparent;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out
}

    .shopping-cart-form table .tbody-item:hover {
        background-color: #f6f6f6
    }

.shopping-cart-form table .tbody-item-actions td {
    text-align: left
}

.shopping-cart-form table .product-remove .remove {
    color: #323232;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    width: 20px;
    height: 20px;
    display: inline-block
}

    .shopping-cart-form table .product-remove .remove:hover {
        color: #0e1c43
    }

.shopping-cart-form table .product-thumbnail {
    min-width: 32px
}

    .shopping-cart-form table .product-thumbnail img {
        width: 75px
    }

.shopping-cart-form table .product-name .title {
    color: #323232;
    font-weight: 600
}

    .shopping-cart-form table .product-name .title:hover {
        color: #0e1c43
    }

.shopping-cart-form table .product-price .price {
    color: #323232;
    font-size: 15px;
    font-weight: 600
}

.shopping-cart-form table .pro-qty {
    display: inline-block;
    position: relative
}

    .shopping-cart-form table .pro-qty input {
        background-color: transparent;
        border: 1px solid #e5e5e5;
        border-radius: 0;
        color: #323232;
        font-weight: 400;
        width: 75px;
        height: 50px;
        font-size: 15px;
        padding: 5px 5px 5px 30px;
        text-align: center
    }

    .shopping-cart-form table .pro-qty .qty-btn {
        background-color: transparent;
        position: absolute;
        width: 25px;
        height: 25px;
        font-size: 14px;
        font-weight: 600;
        top: 0;
        left: 0;
        border-right: 1px solid #e5e5e5;
        line-height: 25px;
        cursor: pointer;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
        transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        -moz-transition: all .3s ease-out;
        -ms-transition: all .3s ease-out;
        -o-transition: all .3s ease-out
    }

        .shopping-cart-form table .pro-qty .qty-btn:hover {
            background-color: #0e1c43;
            color: #0e1c43;
            color: #fff
        }

    .shopping-cart-form table .pro-qty .dec {
        border-top: 1px solid #e5e5e5;
        top: auto;
        bottom: 0
    }

.shopping-cart-form .btn-update-cart {
    background: #fff;
    border: 2px solid #e5e5e5;
    box-shadow: none;
    color: #323232;
    display: inline-block;
    font-size: 1.077em;
    font-weight: 600;
    height: 50px;
    line-height: 46px;
    padding: 0 35px;
    border-radius: 4px;
    transition: all .3s ease 0s
}

    .shopping-cart-form .btn-update-cart:hover {
        background-color: #ebe9eb;
        border-color: #e5e5e5
    }

.coupon-wrap .title {
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    margin: 0 0 22px;
    padding: 0 0 10px;
    text-transform: uppercase;
    font-weight: 800
}

.coupon-wrap .desc {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 12px
}

.coupon-wrap .form-control {
    background: #fff;
    box-shadow: none;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 50px;
    line-height: 48px;
    padding: 0 16px;
    vertical-align: middle;
    margin: 0 0 25px;
    width: 100%;
    font-size: 14px
}

.coupon-wrap .btn-coupon {
    background: #fff;
    border: 2px solid #e5e5e5;
    box-shadow: none;
    color: #323232;
    display: inline-block;
    height: 50px;
    padding: 0 35px;
    border-radius: 4px;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 48px
}

    .coupon-wrap .btn-coupon:hover {
        background-color: #721b65;
        border-color: #721b65;
        color: #fff
    }

.cart-totals-wrap {
    background: #f9f9f9;
    margin-bottom: 30px;
    padding: 33px 30px 35px;
    width: 100%
}

@media only screen and (max-width:991px) {
    .cart-totals-wrap {
        margin-top: 40px
    }
}

.cart-totals-wrap .title {
    border-bottom: 1px solid #e5e5e5;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
    padding: 0 0 10px;
    text-transform: uppercase
}

.cart-totals-wrap table {
    width: 100%
}

    .cart-totals-wrap table tbody tr:first-child th {
        border-top: none
    }

    .cart-totals-wrap table tbody tr th {
        border: none;
        border-bottom: 1px solid #e5e5e5;
        font-size: 13px;
        font-weight: 600;
        padding: 16px 0 15px;
        text-align: right;
        text-transform: uppercase;
        vertical-align: top
    }

    .cart-totals-wrap table tbody tr td {
        border-bottom: 1px solid #e5e5e5;
        padding: 15px 0;
        text-align: left;
        vertical-align: top
    }

    .cart-totals-wrap table tbody .amount {
        color: #242424;
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        text-transform: uppercase
    }

    .cart-totals-wrap table tbody .shipping-list {
        margin-top: 2px;
        margin-bottom: 20px
    }

        .cart-totals-wrap table tbody .shipping-list li {
            margin: 0 0 4px;
            padding: 0;
            text-align: left;
            line-height: 1.5em
        }

            .cart-totals-wrap table tbody .shipping-list li label {
                cursor: pointer;
                color: #323232;
                font-size: 14px;
                font-weight: 600
            }

                .cart-totals-wrap table tbody .shipping-list li label span {
                    color: #000;
                    font-weight: 600;
                    margin-right: 5px;
                    text-align: right
                }

    .cart-totals-wrap table tbody .destination {
        font-size: 14px;
        margin-bottom: 6px
    }

        .cart-totals-wrap table tbody .destination strong {
            font-weight: 700
        }

    .cart-totals-wrap table tbody .btn-shipping-address {
        font-size: 13px;
        color: #000;
        font-weight: 600;
        margin-bottom: 3px;
        display: inline-block
    }

        .cart-totals-wrap table tbody .btn-shipping-address:hover {
            color: #721b65
        }

    .cart-totals-wrap table .order-total th {
        padding-top: 18px
    }

.cart-totals-wrap .checkout-button {
    background: #721b65;
    border: 2px solid #721b65;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    height: 50px;
    letter-spacing: 0;
    line-height: 46px;
    outline: 0;
    overflow: hidden;
    padding: 0 35px;
    text-shadow: none;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
    border-radius: 4px;
    transition: all .3s ease-out;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out
}

@media only screen and (max-width:575px) {
    .cart-totals-wrap .checkout-button {
        font-size: 14px;
        padding: 0 15px
    }
}

.cart-totals-wrap .checkout-button:hover {
    background: #000;
    border-color: #000;
    color: #fff
}

.table-responsive {
    overflow-x: auto !important
}

.form-floating .form-control {
    height: 58px !important;
    padding: 18px 13px 8px 17px !important
}

.form-floating .form-select {
    height: 58px !important;
    padding: 7px 13px 8px 17px !important
}

.form-floating textarea.form-control {
    height: auto !important;
    padding-top: 25px !important
}

.cart-totals-wrap .table .product-total {
    text-align: left
}

.cart-totals-wrap .table .cart-item {
    line-height: 20px
}

    .cart-totals-wrap .table .cart-item:first-child td {
        padding-top: 27px
    }

    .cart-totals-wrap .table .cart-item:last-child td {
        padding-bottom: 27px;
        border-bottom-width: 1px
    }

.cart-totals-wrap .table .shipping td {
    min-width: 140px;
    text-align: left
}

.cart-totals-wrap .table .product-quantity {
    color: #000
}

.cart-totals-wrap .table-foot td {
    text-align: left
}

.cart-totals-wrap .table-foot td, .cart-totals-wrap .table-foot th {
    padding: 15px 0 !important;
    border-bottom-width: 1px !important
}

.cart-totals-wrap .table th {
    border-style: solid;
    border-width: 0 0 1px 0;
    border-color: #e8e8e8;
    padding: 8px 0
}

.cart-totals-wrap .table td {
    border-width: 0;
    border-color: #e8e8e8;
    border-style: solid;
    padding: 8px 0
}

.cart-totals-wrap .table td, .cart-totals-wrap .table th {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle
}

.cart-totals-wrap .shop-payment-method {
    margin-top: 34px
}

    .cart-totals-wrap .shop-payment-method .card {
        background-color: transparent;
        border-radius: 0;
        border: none;
        margin-bottom: 10px
    }

        .cart-totals-wrap .shop-payment-method .card .card-header {
            border: none;
            background-color: transparent;
            padding: 0;
            display: inline-block
        }

            .cart-totals-wrap .shop-payment-method .card .card-header .title {
                display: inline-block;
                font-weight: 400;
                font-size: 14px;
                margin-bottom: 0;
                position: relative;
                padding-right: 20px;
                padding-bottom: 0;
                text-transform: uppercase
            }

                .cart-totals-wrap .shop-payment-method .card .card-header .title:before {
                    position: absolute;
                    content: "";
                    background-color: #fff;
                    border: 1px solid #666;
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    top: 50%;
                    transform: translateY(-50%);
                    right: 0
                }

.cart-totals-wrap .product-name {
    text-align: right
}

.pm {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px
}

.form-floating .form-select {
    font-size: 14px !important
}

h5 {
    font-size: 20px;
    font-weight: 800
}

.thankyou img {
    width: 100px
}

.thankyou h1 {
    padding: 10px 0 0 0
}

.wishlist-cart a {
    padding: 7px 7px
}

.order-summary-table-resp {
    padding: 15px !important;
    background-color: #fff !important;
    border-radius: 12px !important;
    margin: 10px 0 0 0
}

.order-summary-table {
    width: 100%;
    border-collapse: collapse
}

    .order-summary-table td, .order-summary-table th {
        padding: 10px;
        text-align: right;
        border-bottom: 1px solid #ddd
    }

    .order-summary-table th {
        color: #333;
        background-color: #fff;
        font-weight: 700
    }

    .order-summary-table td {
        color: #333;
        background-color: #fff
    }

.career .news-detail img {
    width: auto
}

.scholarship .event-data {
    margin-bottom: 30px
}

.procurement .event-data img {
    width: 60px;
    height: auto
}

.major-sheet .event-data {
    height: 416px
}

.h2-med {
    font-size: 22px !important
}

.form-a img {
    width: 75px !important;
    margin-top: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0 !important
}

.form-a p {
    font-size: 16px;
    line-height: .5;
    margin-bottom: 30px !important;
    color: #00d0d0;
    margin-bottom: 0
}

.applying h2 {
    line-height: 1;
    font-size: 30px
}

.applying p {
    font-size: 16px
}

.applying .left-back, .applying .right-back {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 35px
}

.applying .left-back {
    background-color: #0e1c43
}

    .applying .left-back p {
        color: #1ac5ab;
        font-size: 22px
    }

.applying .right-back {
    background-color: #1ac5ab;
    text-align: center
}

    .applying .right-back h2 {
        font-size: 28px
    }

    .applying .right-back p {
        color: #0e1c43;
        font-size: 22px
    }

.grad-prog ul {
    list-style: disc;
    padding-inline-start: 22px
}

    .grad-prog ul li {
        font-size: 18px;
        line-height: 1.5
    }

.grad-prog h4 {
    font-size: 18px;
    text-decoration: underline
}

.grad-prog .grad-prog-a {
    display: block
}

    .grad-prog .grad-prog-a img {
        width: 70px;
        border-radius: unset !important
    }

    .grad-prog .grad-prog-a h5 {
        font-size: 15px;
        color: #1ac5ab;
        line-height: 1
    }

.calculator {
    display: inline-flex
}

    .calculator input {
        border-radius: unset;
        height: 40px !important;
        width: 100px !important;
        border: 1px solid #ddd !important
    }

        .calculator input:disabled, .calculator input[readonly] {
            background-color: #fff;
            opacity: 1
        }

    .calculator .input-center {
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center
    }

.cal-table tr {
    border: 1px solid;
    background-color: #f3fffc
}

.cal-table td {
    width: 1% !important
}

    .cal-table td p {
        margin-bottom: 0 !important;
        margin-top: 5px !important;
        font-weight: 500
    }

#chart_wrapper {
    width: 100%;
    overflow: hidden;
    text-align: center
}

#chart_div {
    display: inline-block;
    padding: 0 20px;
    min-height: 500px
}

.google-visualization-orgchart-node {
    color: #fff !important;
    text-align: center;
    font-family: IBMPlexSansArabic !important;
    min-width: 115px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    padding: 12px 11px !important
}

.bg-dark-blue {
    background: #14193e !important
}

.bg-light-blue {
    background: #9fa6d2 !important
}

.bg-deep-blue {
    background: #2a3682 !important
}

.bg-mid-blue {
    background: #5765af !important
}

.bg-green {
    background: #12897a !important
}

.bg-light-green {
    background: #11b19d !important
}

.bg-teal {
    background: #8cd1ca !important
}

@media (max-width:768px) {
    .node-box {
        font-size: 12px !important;
        padding: 4px 6px
    }
}

.gallery {
    margin-bottom: 30px
}

    .gallery img {
        width: 100%;
        height: 300px;
        border-top-right-radius: 32px;
        border-bottom-left-radius: 32px;
        -o-object-fit: contain;
        object-fit: contain
    }

.gallery-item {
    position: relative;
    overflow: hidden
}

    .gallery-item img {
        width: 100%;
        display: block;
        border-radius: 10px
    }

    .gallery-item .overlay {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.6);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        transition: opacity .3s ease;
        border-radius: 10px
    }

    .gallery-item:hover .overlay {
        opacity: 1
    }

.overlay-btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 30px;
    transition: .3s ease
}

    .overlay-btn:hover {
        background: #000;
        color: #fff
    }

.header-logo img {
    width: 200px;
    -o-object-fit: contain;
    object-fit: contain
}

.mute-btn {
    position: absolute;
    left: 55px;
    bottom: 30px;
    transform: translateY(-50%);
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
    width: 57px;
    height: 55px
}

    .mute-btn:hover {
        background: rgba(0,0,0,.8)
    }

.banner-home.banner-hero {
    position: relative
}

.press-page .each-news-body img {
    height: 200px
}

.Grad-list ul {
    list-style: disc !important;
    padding-inline-start: 20px
}

.banner-hero .custom-overlay {
    background-color: rgba(189,126,126,0) !important
}

.nav-link.active {
    color: #ffaf00 !important
}

.sticky-bar.stick .navbar a.active {
    color: #ffaf00 !important
}

.dropdown-menu[data-bs-popper] {
    top: 72%
}

.navbar-expand-lg .navbar-nav .nav-link {
    cursor: pointer
}

.res-img img {
    height: 340px !important;
    width: 100% !important;
    -o-object-fit: contain;
    object-fit: contain
}

.acad-col-slider img {
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 280px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top
}

.a-c-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px
}

    .a-c-img img {
        border-radius: unset !important;
        margin-bottom: 0;
        transition: transform .3s ease
    }

        .a-c-img img:hover {
            transform: scale(1.1)
        }

.location iframe {
    border-radius: 32px
}

.res-detail h3 {
    margin-top: 0 !important
}

.identity p {
    display: inline-flex;
    align-items: center;
    margin-bottom: 7px !important
}

    .identity p .btn {
        padding: 8px 9px;
        margin-left: 5px
    }

.degree-detail-box {
    position: relative;
    transition: transform .3s ease;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 2px solid #0e1c43;
    overflow: hidden;
    background-color: #0e1c43;
    min-height: 365px !important;
    margin-bottom: 25px
}

    .degree-detail-box:hover {
        transform: translate(7px,-7px)
    }

    .degree-detail-box h2 span {
        font-size: 25px
    }

.degree-center-middle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center
}

html, body, div, span, a, b, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    font-family: 'IBMPlexSansArabic' !important;
}

.calculator {
    display: inline-flex;
}

    .calculator input {
        border-radius: unset;
        height: 40px !important;
        width: 100px !important;
        border: 1px solid #ddd !important
    }

        .calculator input:disabled, .calculator input[readonly] {
            background-color: #fff;
            opacity: 1
        }

    .calculator .input-center {
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.cal-table tr {
    border: 1px solid;
    background-color: #f3fffc;
}

.cal-table td {
    width: 1% !important;
}

    .cal-table td p {
        margin-bottom: 0 !important;
        margin-top: 5px !important;
        font-weight: 500;
    }

.slick-slider {
    direction: ltr !important;
}

.acad-col-slider .arrow-up .slick-arrow.test_right_arrow {
    left: 20px !important;
}

.acad-col-slider .arrow-up .slick-arrow.test_left_arrow {
    left: 60px !important;
}

.slick-slider {
    direction: ltr !important;
}

.acad-col-slider.arrow-up .slick-arrow.test_right_arrow {
    left: 20px !important;
}

.acad-col-slider.arrow-up .slick-arrow.test_left_arrow {
    left: 60px !important;
}

#calendar .fc-header-toolbar {
    direction: rtl !important;
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:last-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius:  0;
    border-top-left-radius: .25em;
    border-bottom-left-radius:   .25em;
}

.fc-direction-rtl .fc-button-group > .fc-button:not(:first-child) {
    margin-left: 0;
    margin-right: -1px;
    border-top-right-radius:  0;
    border-bottom-right-radius:  0;
    border-top-left-radius:   .25em;
    border-bottom-left-radius:   .25em;
}

.fc-today-button {
    margin-left: 4px;
}


.top-bar {
    z-index: 99;
}

.banner-section {
    margin-top: 117px;
}

.banner-hero {
    max-width: 100% !important;
}

.sticky-bar.stick {
    background: #0e1c43 !important;
}


.sticky-bar {
    background: #fff !important;
}

.stats {
    margin-top: 20px !important;
}

.dropdown .dropdown-menu.show .dropdown-item {
    color: #0e1c43 !important;
}

@media (max-width: 991px) {
    .sticky-bar.stick {
        padding-top: 5px;
    }
}

.eligibility-badge {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

    .eligibility-badge .badge {
        white-space: normal !important;
        max-width: 90%;
        overflow-wrap: break-word;
        word-break: break-word;
        line-height: 1.4;
        text-align: center;
    }

.choices {
    position: relative
}

.choices__list--dropdown {
    z-index: 12000 !important;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.15);
    border: 1px solid #ddd;
    background: #fff;
    min-width: 100% !important
}

.choices[dir="rtl"] {
    direction: rtl
}

    .choices[dir="rtl"] .choices__inner {
        direction: rtl;
        text-align: right
    }

    .choices[dir="rtl"] .choices__button {
        right: auto !important;
        left: 10px !important
    }

    .choices[dir="rtl"] .choices__indicator {
        right: auto !important;
        left: 0 !important
    }

.choices__inner {
    background-color: transparent;
    height: auto !important;
    min-height: 50px !important;
    border-radius: 6px
}

.choices__list--single {
    margin-top: -5px
}


.form-floating.has-floating-choice {
    position: relative
}

    .form-floating.has-floating-choice > label {
        position: absolute;
        top: .25rem;
        inset-inline-start: .75rem;
        z-index: 2;
        transition: transform .2s ease,color .2s ease,opacity .2s ease;
        pointer-events: none;
        opacity: 1 !important
    }

    .form-floating.has-floating-choice .choices__inner {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 18px 13px 8px 17px !important;
        overflow: visible
    }

    .form-floating.has-floating-choice .choices__inner {
        max-height: 200px;
        overflow: auto
    }

.has-floating-choice .choices__list--multiple .choices__item {
    margin-bottom: 4px
}

.choices[dir="rtl"] .choices__item--selectable {
    padding-right: 30px !important;
    padding-left: 10px !important;
    text-align: right
}

.has-floating-choice.filled > label {
    transform: scale(.82) translateY(-1.05rem);
    color: var(--tertiary-back-color) !important;
    font-size: 14px !important
}

.sticky-bar {
    background: rgba(255, 255, 255, .7019607843) !important;
}

.top-bar {
    z-index: 99;
}

.banner-section {
    margin-top: 117px;
}

.banner-hero {
    max-width: 100% !important;
}

.fancybox__container {
    direction: ltr !important;
}

.fancybox__nav .carousel__button.is-next {
    right: 40px;
    left: unset;
}

.fancybox__nav .carousel__button.is-prev {
    left: 40px;
    right: unset;
}
.file-name-cell {
    white-space: wrap;
}

.file-name-text {
    display: inline-flex;
    align-items: center;
}

.news-left h3 {
    color: #fff;
    margin: 15px 0 20px !important;
}

.news-latest-news h3, .news-latest-news p {
    color: #0e1c43;
}