@import url(https://fonts.googleapis.com/css?family=Poppins:100, 100i, 200, 200i, 300, 300i, 400, 400i, 500, 500i, 600, 600i, 700, 700i, 800, 800i, 900, 900i);
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shake {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    0%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg);
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg);
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg);
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg);
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake;
}
@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}
@keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none;
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg);
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg);
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg);
    }
}
.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center;
}
@-webkit-keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
    }
    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%,
    80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.1) rotate(30deg);
        transform: scale(0.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg);
    }
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp;
}
@font-face {
    font-family: boxicons;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/boxicons.2722ed7e.eot);
    src: url(../fonts/boxicons.2722ed7e.eot) format("embedded-opentype"), url(../fonts/boxicons.42d2adbb.woff2) format("woff2"), url(../fonts/boxicons.b8fb7c66.woff) format("woff"), url(../fonts/boxicons.15fa2fe8.ttf) format("truetype"),
        url(../img/boxicons.c1f1800d.svg?#boxicons) format("svg");
}
.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.bx-ul {
    margin-left: 2em;
    padding-left: 0;
    list-style: none;
}
.bx-ul > li {
    position: relative;
}
.bx-ul .bx {
    font-size: inherit;
    line-height: inherit;
    position: absolute;
    left: -2em;
    width: 2em;
    text-align: center;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-webkit-keyframes burst {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    90% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@keyframes burst {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    90% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
    }
}
@-webkit-keyframes flashing {
    0% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}
@keyframes flashing {
    0% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    90% {
        opacity: 1;
    }
}
@-webkit-keyframes fade-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0;
    }
}
@keyframes fade-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0;
    }
}
@-webkit-keyframes fade-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0;
    }
}
@keyframes fade-right {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 0;
    }
}
@-webkit-keyframes fade-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }
}
@keyframes fade-up {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }
}
@-webkit-keyframes fade-down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
}
@keyframes fade-down {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.95, 0.95, 0.95) rotate(-10deg);
        transform: scale3d(0.95, 0.95, 0.95) rotate(-10deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scaleX(1) rotate(10deg);
        transform: scaleX(1) rotate(10deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scaleX(1) rotate(-10deg);
        transform: scaleX(1) rotate(-10deg);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    10%,
    20% {
        -webkit-transform: scale3d(0.95, 0.95, 0.95) rotate(-10deg);
        transform: scale3d(0.95, 0.95, 0.95) rotate(-10deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scaleX(1) rotate(10deg);
        transform: scaleX(1) rotate(10deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.bx-spin,
.bx-spin-hover:hover {
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.bx-tada,
.bx-tada-hover:hover {
    -webkit-animation: tada 1.5s ease infinite;
    animation: tada 1.5s ease infinite;
}
.bx-flashing,
.bx-flashing-hover:hover {
    -webkit-animation: flashing 1.5s linear infinite;
    animation: flashing 1.5s linear infinite;
}
.bx-burst,
.bx-burst-hover:hover {
    -webkit-animation: burst 1.5s linear infinite;
    animation: burst 1.5s linear infinite;
}
.bx-fade-up,
.bx-fade-up-hover:hover {
    -webkit-animation: fade-up 1.5s linear infinite;
    animation: fade-up 1.5s linear infinite;
}
.bx-fade-down,
.bx-fade-down-hover:hover {
    -webkit-animation: fade-down 1.5s linear infinite;
    animation: fade-down 1.5s linear infinite;
}
.bx-fade-left,
.bx-fade-left-hover:hover {
    -webkit-animation: fade-left 1.5s linear infinite;
    animation: fade-left 1.5s linear infinite;
}
.bx-fade-right,
.bx-fade-right-hover:hover {
    -webkit-animation: fade-right 1.5s linear infinite;
    animation: fade-right 1.5s linear infinite;
}
.bx-xs {
    font-size: 1rem !important;
}
.bx-sm {
    font-size: 1.55rem !important;
}
.bx-md {
    font-size: 2.25rem !important;
}
.bx-fw {
    font-size: 1.2857142857em;
    line-height: 0.8em;
    width: 1.2857142857em;
    height: 0.8em;
    margin-top: -0.2em !important;
    vertical-align: middle;
}
.bx-lg {
    font-size: 3rem !important;
}
.bx-pull-left {
    float: left;
    margin-right: 0.3em !important;
}
.bx-pull-right {
    float: right;
    margin-left: 0.3em !important;
}
.bx-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
}
.bx-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
}
.bx-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
}
.bx-flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1)";
}
.bx-flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1)";
}
.bx-border {
    padding: 0.25em;
    border: 0.07em solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25em;
}
.bx-border-circle {
    padding: 0.25em;
    border: 0.07em solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}
.bxl-500px:before {
    content: "\e900";
}
.bxl-adobe:before {
    content: "\e901";
}
.bxl-airbnb:before {
    content: "\e902";
}
.bxl-algolia:before {
    content: "\e903";
}
.bxl-amazon:before {
    content: "\e904";
}
.bxl-android:before {
    content: "\e905";
}
.bxl-angular:before {
    content: "\e906";
}
.bxl-apple:before {
    content: "\e907";
}
.bxl-audible:before {
    content: "\e908";
}
.bxl-baidu:before {
    content: "\e909";
}
.bxl-behance:before {
    content: "\e90a";
}
.bxl-bing:before {
    content: "\e90b";
}
.bxl-bitcoin:before {
    content: "\e90c";
}
.bxl-blogger:before {
    content: "\e90d";
}
.bxl-bootstrap:before {
    content: "\e90e";
}
.bxl-chrome:before {
    content: "\e90f";
}
.bxl-codepen:before {
    content: "\e910";
}
.bxl-creative-commons:before {
    content: "\e911";
}
.bxl-css3:before {
    content: "\e912";
}
.bxl-dailymotion:before {
    content: "\e913";
}
.bxl-deviantart:before {
    content: "\e914";
}
.bxl-digg:before {
    content: "\e915";
}
.bxl-digitalocean:before {
    content: "\e916";
}
.bxl-discord:before {
    content: "\e917";
}
.bxl-discourse:before {
    content: "\e918";
}
.bxl-dribbble:before {
    content: "\e919";
}
.bxl-dropbox:before {
    content: "\e91a";
}
.bxl-drupal:before {
    content: "\e91b";
}
.bxl-ebay:before {
    content: "\e91c";
}
.bxl-edge:before {
    content: "\e91d";
}
.bxl-etsy:before {
    content: "\e91e";
}
.bxl-facebook:before {
    content: "\e91f";
}
.bxl-facebook-circle:before {
    content: "\e920";
}
.bxl-facebook-square:before {
    content: "\e921";
}
.bxl-figma:before {
    content: "\e922";
}
.bxl-firefox:before {
    content: "\e923";
}
.bxl-flickr:before {
    content: "\e924";
}
.bxl-flickr-square:before {
    content: "\e925";
}
.bxl-foursquare:before {
    content: "\e926";
}
.bxl-git:before {
    content: "\e927";
}
.bxl-github:before {
    content: "\e928";
}
.bxl-gitlab:before {
    content: "\e929";
}
.bxl-google:before {
    content: "\e92a";
}
.bxl-google-plus:before {
    content: "\e92b";
}
.bxl-google-plus-circle:before {
    content: "\e92c";
}
.bxl-html5:before {
    content: "\e92d";
}
.bxl-imdb:before {
    content: "\e92e";
}
.bxl-instagram:before {
    content: "\e92f";
}
.bxl-instagram-alt:before {
    content: "\e930";
}
.bxl-internet-explorer:before {
    content: "\e931";
}
.bxl-invision:before {
    content: "\e932";
}
.bxl-javascript:before {
    content: "\e933";
}
.bxl-joomla:before {
    content: "\e934";
}
.bxl-jquery:before {
    content: "\e935";
}
.bxl-jsfiddle:before {
    content: "\e936";
}
.bxl-kickstarter:before {
    content: "\e937";
}
.bxl-less:before {
    content: "\e938";
}
.bxl-linkedin:before {
    content: "\e939";
}
.bxl-linkedin-square:before {
    content: "\e93a";
}
.bxl-magento:before {
    content: "\e93b";
}
.bxl-mailchimp:before {
    content: "\e93c";
}
.bxl-mastercard:before {
    content: "\e93d";
}
.bxl-medium:before {
    content: "\e93e";
}
.bxl-medium-old:before {
    content: "\e93f";
}
.bxl-medium-square:before {
    content: "\e940";
}
.bxl-messenger:before {
    content: "\e941";
}
.bxl-microsoft:before {
    content: "\e942";
}
.bxl-nodejs:before {
    content: "\e943";
}
.bxl-opera:before {
    content: "\e944";
}
.bxl-patreon:before {
    content: "\e945";
}
.bxl-paypal:before {
    content: "\e946";
}
.bxl-periscope:before {
    content: "\e947";
}
.bxl-pinterest:before {
    content: "\e948";
}
.bxl-pinterest-alt:before {
    content: "\e949";
}
.bxl-play-store:before {
    content: "\e94a";
}
.bxl-pocket:before {
    content: "\e94b";
}
.bxl-product-hunt:before {
    content: "\e94c";
}
.bxl-quora:before {
    content: "\e94d";
}
.bxl-react:before {
    content: "\e94e";
}
.bxl-redbubble:before {
    content: "\e94f";
}
.bxl-reddit:before {
    content: "\e950";
}
.bxl-redux:before {
    content: "\e951";
}
.bxl-sass:before {
    content: "\e952";
}
.bxl-shopify:before {
    content: "\e953";
}
.bxl-skype:before {
    content: "\e954";
}
.bxl-slack:before {
    content: "\e955";
}
.bxl-slack-old:before {
    content: "\e956";
}
.bxl-snapchat:before {
    content: "\e957";
}
.bxl-soundcloud:before {
    content: "\e958";
}
.bxl-spotify:before {
    content: "\e959";
}
.bxl-squarespace:before {
    content: "\e95a";
}
.bxl-stack-overflow:before {
    content: "\e95b";
}
.bxl-stripe:before {
    content: "\e95c";
}
.bxl-telegram:before {
    content: "\e95d";
}
.bxl-trello:before {
    content: "\e95e";
}
.bxl-tumblr:before {
    content: "\e95f";
}
.bxl-twitch:before {
    content: "\e960";
}
.bxl-twitter:before {
    content: "\e961";
}
.bxl-unsplash:before {
    content: "\e962";
}
.bxl-vimeo:before {
    content: "\e963";
}
.bxl-visa:before {
    content: "\e964";
}
.bxl-vk:before {
    content: "\e965";
}
.bxl-vuejs:before {
    content: "\e966";
}
.bxl-whatsapp:before {
    content: "\e967";
}
.bxl-whatsapp-square:before {
    content: "\e968";
}
.bxl-wikipedia:before {
    content: "\e969";
}
.bxl-windows:before {
    content: "\e96a";
}
.bxl-wix:before {
    content: "\e96b";
}
.bxl-wordpress:before {
    content: "\e96c";
}
.bxl-yahoo:before {
    content: "\e96d";
}
.bxl-yelp:before {
    content: "\e96e";
}
.bxl-youtube:before {
    content: "\e96f";
}
.bx-accessibility:before {
    content: "\e970";
}
.bx-add-to-queue:before {
    content: "\e971";
}
.bx-adjust:before {
    content: "\e972";
}
.bx-alarm:before {
    content: "\e973";
}
.bx-alarm-add:before {
    content: "\e974";
}
.bx-alarm-off:before {
    content: "\e975";
}
.bx-album:before {
    content: "\e976";
}
.bx-align-justify:before {
    content: "\e977";
}
.bx-align-left:before {
    content: "\e978";
}
.bx-align-middle:before {
    content: "\e979";
}
.bx-align-right:before {
    content: "\e97a";
}
.bx-analyse:before {
    content: "\e97b";
}
.bx-anchor:before {
    content: "\e97c";
}
.bx-angry:before {
    content: "\e97d";
}
.bx-aperture:before {
    content: "\e97e";
}
.bx-arch:before {
    content: "\e97f";
}
.bx-archive:before {
    content: "\e980";
}
.bx-archive-in:before {
    content: "\e981";
}
.bx-archive-out:before {
    content: "\e982";
}
.bx-area:before {
    content: "\e983";
}
.bx-arrow-back:before {
    content: "\e984";
}
.bx-arrow-from-bottom:before {
    content: "\e985";
}
.bx-arrow-from-left:before {
    content: "\e986";
}
.bx-arrow-from-right:before {
    content: "\e987";
}
.bx-arrow-from-top:before {
    content: "\e988";
}
.bx-arrow-to-bottom:before {
    content: "\e989";
}
.bx-arrow-to-left:before {
    content: "\e98a";
}
.bx-arrow-to-right:before {
    content: "\e98b";
}
.bx-arrow-to-top:before {
    content: "\e98c";
}
.bx-at:before {
    content: "\e98d";
}
.bx-atom:before {
    content: "\e98e";
}
.bx-award:before {
    content: "\e98f";
}
.bx-badge:before {
    content: "\e990";
}
.bx-badge-check:before {
    content: "\e991";
}
.bx-ball:before {
    content: "\e992";
}
.bx-band-aid:before {
    content: "\e993";
}
.bx-bar-chart:before {
    content: "\e994";
}
.bx-bar-chart-alt:before {
    content: "\e995";
}
.bx-bar-chart-alt-2:before {
    content: "\e996";
}
.bx-bar-chart-square:before {
    content: "\e997";
}
.bx-barcode:before {
    content: "\e998";
}
.bx-baseball:before {
    content: "\e999";
}
.bx-basket:before {
    content: "\e99a";
}
.bx-basketball:before {
    content: "\e99b";
}
.bx-bath:before {
    content: "\e99c";
}
.bx-battery:before {
    content: "\e99d";
}
.bx-bed:before {
    content: "\e99e";
}
.bx-been-here:before {
    content: "\e99f";
}
.bx-beer:before {
    content: "\e9a0";
}
.bx-bell:before {
    content: "\e9a1";
}
.bx-bell-minus:before {
    content: "\e9a2";
}
.bx-bell-off:before {
    content: "\e9a3";
}
.bx-bell-plus:before {
    content: "\e9a4";
}
.bx-bible:before {
    content: "\e9a5";
}
.bx-bitcoin:before {
    content: "\e9a6";
}
.bx-block:before {
    content: "\e9a7";
}
.bx-bluetooth:before {
    content: "\e9a8";
}
.bx-body:before {
    content: "\e9a9";
}
.bx-bold:before {
    content: "\e9aa";
}
.bx-bolt-circle:before {
    content: "\e9ab";
}
.bx-bomb:before {
    content: "\e9ac";
}
.bx-book:before {
    content: "\e9ad";
}
.bx-book-bookmark:before {
    content: "\e9ae";
}
.bx-book-content:before {
    content: "\e9af";
}
.bx-bookmark:before {
    content: "\e9b0";
}
.bx-bookmark-minus:before {
    content: "\e9b1";
}
.bx-bookmark-plus:before {
    content: "\e9b2";
}
.bx-bookmarks:before {
    content: "\e9b3";
}
.bx-book-open:before {
    content: "\e9b4";
}
.bx-book-reader:before {
    content: "\e9b5";
}
.bx-border-all:before {
    content: "\e9b6";
}
.bx-border-bottom:before {
    content: "\e9b7";
}
.bx-border-inner:before {
    content: "\e9b8";
}
.bx-border-left:before {
    content: "\e9b9";
}
.bx-border-none:before {
    content: "\e9ba";
}
.bx-border-radius:before {
    content: "\e9bb";
}
.bx-border-right:before {
    content: "\e9bc";
}
.bx-border-top:before {
    content: "\e9bd";
}
.bx-bot:before {
    content: "\e9be";
}
.bx-bowling-ball:before {
    content: "\e9bf";
}
.bx-box:before {
    content: "\e9c0";
}
.bx-briefcase:before {
    content: "\e9c1";
}
.bx-briefcase-alt:before {
    content: "\e9c2";
}
.bx-briefcase-alt-2:before {
    content: "\e9c3";
}
.bx-brightness:before {
    content: "\e9c4";
}
.bx-brightness-half:before {
    content: "\e9c5";
}
.bx-broadcast:before {
    content: "\e9c6";
}
.bx-brush:before {
    content: "\e9c7";
}
.bx-brush-alt:before {
    content: "\e9c8";
}
.bx-bug:before {
    content: "\e9c9";
}
.bx-bug-alt:before {
    content: "\e9ca";
}
.bx-building:before {
    content: "\e9cb";
}
.bx-building-house:before {
    content: "\e9cc";
}
.bx-buildings:before {
    content: "\e9cd";
}
.bx-bulb:before {
    content: "\e9ce";
}
.bx-bullseye:before {
    content: "\e9cf";
}
.bx-buoy:before {
    content: "\e9d0";
}
.bx-bus:before {
    content: "\e9d1";
}
.bx-bus-school:before {
    content: "\e9d2";
}
.bx-cabinet:before {
    content: "\e9d3";
}
.bx-cake:before {
    content: "\e9d4";
}
.bx-calculator:before {
    content: "\e9d5";
}
.bx-calendar:before {
    content: "\e9d6";
}
.bx-calendar-alt:before {
    content: "\e9d7";
}
.bx-calendar-check:before {
    content: "\e9d8";
}
.bx-calendar-edit:before {
    content: "\e9d9";
}
.bx-calendar-event:before {
    content: "\e9da";
}
.bx-calendar-minus:before {
    content: "\e9db";
}
.bx-calendar-plus:before {
    content: "\e9dc";
}
.bx-calendar-week:before {
    content: "\e9dd";
}
.bx-calendar-x:before {
    content: "\e9de";
}
.bx-camera:before {
    content: "\e9df";
}
.bx-camera-off:before {
    content: "\e9e0";
}
.bx-captions:before {
    content: "\e9e1";
}
.bx-car:before {
    content: "\e9e2";
}
.bx-card:before {
    content: "\e9e3";
}
.bx-caret-down:before {
    content: "\e9e4";
}
.bx-caret-left:before {
    content: "\e9e5";
}
.bx-caret-right:before {
    content: "\e9e6";
}
.bx-caret-up:before {
    content: "\e9e7";
}
.bx-carousel:before {
    content: "\e9e8";
}
.bx-cart:before {
    content: "\e9e9";
}
.bx-cart-alt:before {
    content: "\e9ea";
}
.bx-cast:before {
    content: "\e9eb";
}
.bx-certification:before {
    content: "\e9ec";
}
.bx-chalkboard:before {
    content: "\e9ed";
}
.bx-chart:before {
    content: "\e9ee";
}
.bx-chat:before {
    content: "\e9ef";
}
.bx-check:before {
    content: "\e9f0";
}
.bx-checkbox:before {
    content: "\e9f1";
}
.bx-checkbox-checked:before {
    content: "\e9f2";
}
.bx-checkbox-square:before {
    content: "\e9f3";
}
.bx-check-circle:before {
    content: "\e9f4";
}
.bx-check-double:before {
    content: "\e9f5";
}
.bx-check-shield:before {
    content: "\e9f6";
}
.bx-check-square:before {
    content: "\e9f7";
}
.bx-chevron-down:before {
    content: "\e9f8";
}
.bx-chevron-left:before {
    content: "\e9f9";
}
.bx-chevron-right:before {
    content: "\e9fa";
}
.bx-chevrons-down:before {
    content: "\e9fb";
}
.bx-chevrons-left:before {
    content: "\e9fc";
}
.bx-chevrons-right:before {
    content: "\e9fd";
}
.bx-chevrons-up:before {
    content: "\e9fe";
}
.bx-chevron-up:before {
    content: "\e9ff";
}
.bx-chip:before {
    content: "\ea00";
}
.bx-circle:before {
    content: "\ea01";
}
.bx-clinic:before {
    content: "\ea02";
}
.bx-clipboard:before {
    content: "\ea03";
}
.bx-closet:before {
    content: "\ea04";
}
.bx-cloud:before {
    content: "\ea05";
}
.bx-cloud-download:before {
    content: "\ea06";
}
.bx-cloud-drizzle:before {
    content: "\ea07";
}
.bx-cloud-lightning:before {
    content: "\ea08";
}
.bx-cloud-light-rain:before {
    content: "\ea09";
}
.bx-cloud-rain:before {
    content: "\ea0a";
}
.bx-cloud-snow:before {
    content: "\ea0b";
}
.bx-cloud-upload:before {
    content: "\ea0c";
}
.bx-code:before {
    content: "\ea0d";
}
.bx-code-alt:before {
    content: "\ea0e";
}
.bx-code-block:before {
    content: "\ea0f";
}
.bx-code-curly:before {
    content: "\ea10";
}
.bx-coffee:before {
    content: "\ea11";
}
.bx-coffee-togo:before {
    content: "\ea12";
}
.bx-cog:before {
    content: "\ea13";
}
.bx-collapse:before {
    content: "\ea14";
}
.bx-collection:before {
    content: "\ea15";
}
.bx-columns:before {
    content: "\ea16";
}
.bx-command:before {
    content: "\ea17";
}
.bx-comment:before {
    content: "\ea18";
}
.bx-comment-dots:before {
    content: "\ea19";
}
.bx-compass:before {
    content: "\ea1a";
}
.bx-confused:before {
    content: "\ea1b";
}
.bx-conversation:before {
    content: "\ea1c";
}
.bx-cool:before {
    content: "\ea1d";
}
.bx-copy:before {
    content: "\ea1e";
}
.bx-copy-alt:before {
    content: "\ea1f";
}
.bx-copyright:before {
    content: "\ea20";
}
.bx-credit-card:before {
    content: "\ea21";
}
.bx-credit-card-alt:before {
    content: "\ea22";
}
.bx-crop:before {
    content: "\ea23";
}
.bx-crosshair:before {
    content: "\ea24";
}
.bx-crown:before {
    content: "\ea25";
}
.bx-cube:before {
    content: "\ea26";
}
.bx-cube-alt:before {
    content: "\ea27";
}
.bx-cuboid:before {
    content: "\ea28";
}
.bx-current-location:before {
    content: "\ea29";
}
.bx-customize:before {
    content: "\ea2a";
}
.bx-cut:before {
    content: "\ea2b";
}
.bx-cycling:before {
    content: "\ea2c";
}
.bx-cylinder:before {
    content: "\ea2d";
}
.bx-data:before {
    content: "\ea2e";
}
.bx-desktop:before {
    content: "\ea2f";
}
.bx-detail:before {
    content: "\ea30";
}
.bx-devices:before {
    content: "\ea31";
}
.bx-dialpad:before {
    content: "\ea32";
}
.bx-dialpad-alt:before {
    content: "\ea33";
}
.bx-diamond:before {
    content: "\ea34";
}
.bx-dice-1:before {
    content: "\ea35";
}
.bx-dice-2:before {
    content: "\ea36";
}
.bx-dice-3:before {
    content: "\ea37";
}
.bx-dice-4:before {
    content: "\ea38";
}
.bx-dice-5:before {
    content: "\ea39";
}
.bx-dice-6:before {
    content: "\ea3a";
}
.bx-directions:before {
    content: "\ea3b";
}
.bx-disc:before {
    content: "\ea3c";
}
.bx-dish:before {
    content: "\ea3d";
}
.bx-dislike:before {
    content: "\ea3e";
}
.bx-dizzy:before {
    content: "\ea3f";
}
.bx-dna:before {
    content: "\ea40";
}
.bx-dock-bottom:before {
    content: "\ea41";
}
.bx-dock-left:before {
    content: "\ea42";
}
.bx-dock-right:before {
    content: "\ea43";
}
.bx-dock-top:before {
    content: "\ea44";
}
.bx-dollar:before {
    content: "\ea45";
}
.bx-dollar-circle:before {
    content: "\ea46";
}
.bx-dots-horizontal:before {
    content: "\ea47";
}
.bx-dots-horizontal-rounded:before {
    content: "\ea48";
}
.bx-dots-vertical:before {
    content: "\ea49";
}
.bx-dots-vertical-rounded:before {
    content: "\ea4a";
}
.bx-doughnut-chart:before {
    content: "\ea4b";
}
.bx-down-arrow:before {
    content: "\ea4c";
}
.bx-down-arrow-alt:before {
    content: "\ea4d";
}
.bx-down-arrow-circle:before {
    content: "\ea4e";
}
.bx-download:before {
    content: "\ea4f";
}
.bx-downvote:before {
    content: "\ea50";
}
.bx-droplet:before {
    content: "\ea51";
}
.bx-dumbbell:before {
    content: "\ea52";
}
.bx-duplicate:before {
    content: "\ea53";
}
.bx-edit:before {
    content: "\ea54";
}
.bx-edit-alt:before {
    content: "\ea55";
}
.bx-envelope:before {
    content: "\ea56";
}
.bx-equalizer:before {
    content: "\ea57";
}
.bx-error:before {
    content: "\ea58";
}
.bx-error-alt:before {
    content: "\ea59";
}
.bx-error-circle:before {
    content: "\ea5a";
}
.bx-euro:before {
    content: "\ea5b";
}
.bx-exit:before {
    content: "\ea5c";
}
.bx-exit-fullscreen:before {
    content: "\ea5d";
}
.bx-expand:before {
    content: "\ea5e";
}
.bx-export:before {
    content: "\ea5f";
}
.bx-extension:before {
    content: "\ea60";
}
.bx-face:before {
    content: "\ea61";
}
.bx-fast-forward:before {
    content: "\ea62";
}
.bx-fast-forward-circle:before {
    content: "\ea63";
}
.bx-female:before {
    content: "\ea64";
}
.bx-female-sign:before {
    content: "\ea65";
}
.bx-file:before {
    content: "\ea66";
}
.bx-file-blank:before {
    content: "\ea67";
}
.bx-file-find:before {
    content: "\ea68";
}
.bx-film:before {
    content: "\ea69";
}
.bx-filter:before {
    content: "\ea6a";
}
.bx-filter-alt:before {
    content: "\ea6b";
}
.bx-fingerprint:before {
    content: "\ea6c";
}
.bx-first-aid:before {
    content: "\ea6d";
}
.bx-first-page:before {
    content: "\ea6e";
}
.bx-flag:before {
    content: "\ea6f";
}
.bx-folder:before {
    content: "\ea70";
}
.bx-folder-minus:before {
    content: "\ea71";
}
.bx-folder-open:before {
    content: "\ea72";
}
.bx-folder-plus:before {
    content: "\ea73";
}
.bx-font:before {
    content: "\ea74";
}
.bx-font-color:before {
    content: "\ea75";
}
.bx-font-family:before {
    content: "\ea76";
}
.bx-font-size:before {
    content: "\ea77";
}
.bx-food-menu:before {
    content: "\ea78";
}
.bx-food-tag:before {
    content: "\ea79";
}
.bx-football:before {
    content: "\ea7a";
}
.bx-fridge:before {
    content: "\ea7b";
}
.bx-fullscreen:before {
    content: "\ea7c";
}
.bx-gas-pump:before {
    content: "\ea7d";
}
.bx-ghost:before {
    content: "\ea7e";
}
.bx-gift:before {
    content: "\ea7f";
}
.bx-git-branch:before {
    content: "\ea80";
}
.bx-git-commit:before {
    content: "\ea81";
}
.bx-git-compare:before {
    content: "\ea82";
}
.bx-git-merge:before {
    content: "\ea83";
}
.bx-git-pull-request:before {
    content: "\ea84";
}
.bx-git-repo-forked:before {
    content: "\ea85";
}
.bx-glasses:before {
    content: "\ea86";
}
.bx-glasses-alt:before {
    content: "\ea87";
}
.bx-globe:before {
    content: "\ea88";
}
.bx-globe-alt:before {
    content: "\ea89";
}
.bx-grid:before {
    content: "\ea8a";
}
.bx-grid-alt:before {
    content: "\ea8b";
}
.bx-grid-horizontal:before {
    content: "\ea8c";
}
.bx-grid-small:before {
    content: "\ea8d";
}
.bx-grid-vertical:before {
    content: "\ea8e";
}
.bx-group:before {
    content: "\ea8f";
}
.bx-handicap:before {
    content: "\ea90";
}
.bx-happy:before {
    content: "\ea91";
}
.bx-happy-alt:before {
    content: "\ea92";
}
.bx-happy-beaming:before {
    content: "\ea93";
}
.bx-happy-heart-eyes:before {
    content: "\ea94";
}
.bx-hash:before {
    content: "\ea95";
}
.bx-hdd:before {
    content: "\ea96";
}
.bx-heading:before {
    content: "\ea97";
}
.bx-headphone:before {
    content: "\ea98";
}
.bx-health:before {
    content: "\ea99";
}
.bx-heart:before {
    content: "\ea9a";
}
.bx-heart-circle:before {
    content: "\ea9b";
}
.bx-heart-square:before {
    content: "\ea9c";
}
.bx-help-circle:before {
    content: "\ea9d";
}
.bx-hide:before {
    content: "\ea9e";
}
.bx-highlight:before {
    content: "\ea9f";
}
.bx-history:before {
    content: "\eaa0";
}
.bx-hive:before {
    content: "\eaa1";
}
.bx-home:before {
    content: "\eaa2";
}
.bx-home-alt:before {
    content: "\eaa3";
}
.bx-home-circle:before {
    content: "\eaa4";
}
.bx-home-heart:before {
    content: "\eaa5";
}
.bx-horizontal-center:before {
    content: "\eaa6";
}
.bx-hotel:before {
    content: "\eaa7";
}
.bx-hourglass:before {
    content: "\eaa8";
}
.bx-id-card:before {
    content: "\eaa9";
}
.bx-image:before {
    content: "\eaaa";
}
.bx-image-add:before {
    content: "\eaab";
}
.bx-image-alt:before {
    content: "\eaac";
}
.bx-images:before {
    content: "\eaad";
}
.bx-import:before {
    content: "\eaae";
}
.bx-infinite:before {
    content: "\eaaf";
}
.bx-info-circle:before {
    content: "\eab0";
}
.bx-info-square:before {
    content: "\eab1";
}
.bx-italic:before {
    content: "\eab2";
}
.bx-joystick:before {
    content: "\eab3";
}
.bx-joystick-alt:before {
    content: "\eab4";
}
.bx-joystick-button:before {
    content: "\eab5";
}
.bx-key:before {
    content: "\eab6";
}
.bx-label:before {
    content: "\eab7";
}
.bx-landscape:before {
    content: "\eab8";
}
.bx-laptop:before {
    content: "\eab9";
}
.bx-last-page:before {
    content: "\eaba";
}
.bx-laugh:before {
    content: "\eabb";
}
.bx-layer:before {
    content: "\eabc";
}
.bx-layer-minus:before {
    content: "\eabd";
}
.bx-layer-plus:before {
    content: "\eabe";
}
.bx-layout:before {
    content: "\eabf";
}
.bx-left-arrow:before {
    content: "\eac0";
}
.bx-left-arrow-alt:before {
    content: "\eac1";
}
.bx-left-arrow-circle:before {
    content: "\eac2";
}
.bx-left-down-arrow-circle:before {
    content: "\eac3";
}
.bx-left-indent:before {
    content: "\eac4";
}
.bx-left-top-arrow-circle:before {
    content: "\eac5";
}
.bx-like:before {
    content: "\eac6";
}
.bx-line-chart:before {
    content: "\eac7";
}
.bx-link:before {
    content: "\eac8";
}
.bx-link-alt:before {
    content: "\eac9";
}
.bx-link-external:before {
    content: "\eaca";
}
.bx-lira:before {
    content: "\eacb";
}
.bx-list-check:before {
    content: "\eacc";
}
.bx-list-minus:before {
    content: "\eacd";
}
.bx-list-ol:before {
    content: "\eace";
}
.bx-list-plus:before {
    content: "\eacf";
}
.bx-list-ul:before {
    content: "\ead0";
}
.bx-loader:before {
    content: "\ead1";
}
.bx-loader-alt:before {
    content: "\ead2";
}
.bx-loader-circle:before {
    content: "\ead3";
}
.bx-location-plus:before {
    content: "\ead4";
}
.bx-lock:before {
    content: "\ead5";
}
.bx-lock-alt:before {
    content: "\ead6";
}
.bx-lock-open:before {
    content: "\ead7";
}
.bx-lock-open-alt:before {
    content: "\ead8";
}
.bx-log-in:before {
    content: "\ead9";
}
.bx-log-in-circle:before {
    content: "\eada";
}
.bx-log-out:before {
    content: "\eadb";
}
.bx-log-out-circle:before {
    content: "\eadc";
}
.bx-low-vision:before {
    content: "\eadd";
}
.bx-magnet:before {
    content: "\eade";
}
.bx-mail-send:before {
    content: "\eadf";
}
.bx-male:before {
    content: "\eae0";
}
.bx-male-sign:before {
    content: "\eae1";
}
.bx-map:before {
    content: "\eae2";
}
.bx-map-alt:before {
    content: "\eae3";
}
.bx-map-pin:before {
    content: "\eae4";
}
.bx-mask:before {
    content: "\eae5";
}
.bx-meh:before {
    content: "\eae6";
}
.bx-meh-alt:before {
    content: "\eae7";
}
.bx-meh-blank:before {
    content: "\eae8";
}
.bx-memory-card:before {
    content: "\eae9";
}
.bx-menu:before {
    content: "\eaea";
}
.bx-menu-alt-left:before {
    content: "\eaeb";
}
.bx-menu-alt-right:before {
    content: "\eaec";
}
.bx-message:before {
    content: "\eaed";
}
.bx-message-alt:before {
    content: "\eaee";
}
.bx-message-alt-dots:before {
    content: "\eaef";
}
.bx-message-dots:before {
    content: "\eaf0";
}
.bx-message-rounded:before {
    content: "\eaf1";
}
.bx-message-rounded-dots:before {
    content: "\eaf2";
}
.bx-message-square:before {
    content: "\eaf3";
}
.bx-message-square-dots:before {
    content: "\eaf4";
}
.bx-microchip:before {
    content: "\eaf5";
}
.bx-microphone:before {
    content: "\eaf6";
}
.bx-microphone-off:before {
    content: "\eaf7";
}
.bx-minus:before {
    content: "\eaf8";
}
.bx-minus-circle:before {
    content: "\eaf9";
}
.bx-mobile:before {
    content: "\eafa";
}
.bx-mobile-alt:before {
    content: "\eafb";
}
.bx-mobile-landscape:before {
    content: "\eafc";
}
.bx-mobile-vibration:before {
    content: "\eafd";
}
.bx-money:before {
    content: "\eafe";
}
.bx-moon:before {
    content: "\eaff";
}
.bx-mouse:before {
    content: "\eb00";
}
.bx-mouse-alt:before {
    content: "\eb01";
}
.bx-move:before {
    content: "\eb02";
}
.bx-move-horizontal:before {
    content: "\eb03";
}
.bx-move-vertical:before {
    content: "\eb04";
}
.bx-movie:before {
    content: "\eb05";
}
.bx-music:before {
    content: "\eb06";
}
.bx-navigation:before {
    content: "\eb07";
}
.bx-news:before {
    content: "\eb08";
}
.bx-no-entry:before {
    content: "\eb09";
}
.bx-note:before {
    content: "\eb0a";
}
.bx-notepad:before {
    content: "\eb0b";
}
.bx-notification:before {
    content: "\eb0c";
}
.bx-notification-off:before {
    content: "\eb0d";
}
.bx-package:before {
    content: "\eb0e";
}
.bx-paint:before {
    content: "\eb0f";
}
.bx-paint-roll:before {
    content: "\eb10";
}
.bx-palette:before {
    content: "\eb11";
}
.bx-paperclip:before {
    content: "\eb12";
}
.bx-paper-plane:before {
    content: "\eb13";
}
.bx-paragraph:before {
    content: "\eb14";
}
.bx-paste:before {
    content: "\eb15";
}
.bx-pause:before {
    content: "\eb16";
}
.bx-pause-circle:before {
    content: "\eb17";
}
.bx-pen:before {
    content: "\eb18";
}
.bx-pencil:before {
    content: "\eb19";
}
.bx-phone:before {
    content: "\eb1a";
}
.bx-phone-call:before {
    content: "\eb1b";
}
.bx-phone-incoming:before {
    content: "\eb1c";
}
.bx-phone-outgoing:before {
    content: "\eb1d";
}
.bx-photo-album:before {
    content: "\eb1e";
}
.bx-pie-chart:before {
    content: "\eb1f";
}
.bx-pie-chart-alt:before {
    content: "\eb20";
}
.bx-pie-chart-alt-2:before {
    content: "\eb21";
}
.bx-pin:before {
    content: "\eb22";
}
.bx-planet:before {
    content: "\eb23";
}
.bx-play:before {
    content: "\eb24";
}
.bx-play-circle:before {
    content: "\eb25";
}
.bx-plug:before {
    content: "\eb26";
}
.bx-plus:before {
    content: "\eb27";
}
.bx-plus-circle:before {
    content: "\eb28";
}
.bx-plus-medical:before {
    content: "\eb29";
}
.bx-pointer:before {
    content: "\eb2a";
}
.bx-poll:before {
    content: "\eb2b";
}
.bx-polygon:before {
    content: "\eb2c";
}
.bx-pound:before {
    content: "\eb2d";
}
.bx-power-off:before {
    content: "\eb2e";
}
.bx-printer:before {
    content: "\eb2f";
}
.bx-pulse:before {
    content: "\eb30";
}
.bx-purchase-tag:before {
    content: "\eb31";
}
.bx-purchase-tag-alt:before {
    content: "\eb32";
}
.bx-pyramid:before {
    content: "\eb33";
}
.bx-question-mark:before {
    content: "\eb34";
}
.bx-radar:before {
    content: "\eb35";
}
.bx-radio:before {
    content: "\eb36";
}
.bx-radio-circle:before {
    content: "\eb37";
}
.bx-radio-circle-marked:before {
    content: "\eb38";
}
.bx-receipt:before {
    content: "\eb39";
}
.bx-rectangle:before {
    content: "\eb3a";
}
.bx-recycle:before {
    content: "\eb3b";
}
.bx-redo:before {
    content: "\eb3c";
}
.bx-rename:before {
    content: "\eb3d";
}
.bx-repeat:before {
    content: "\eb3e";
}
.bx-reply:before {
    content: "\eb3f";
}
.bx-reply-all:before {
    content: "\eb40";
}
.bx-repost:before {
    content: "\eb41";
}
.bx-reset:before {
    content: "\eb42";
}
.bx-restaurant:before {
    content: "\eb43";
}
.bx-revision:before {
    content: "\eb44";
}
.bx-rewind:before {
    content: "\eb45";
}
.bx-rewind-circle:before {
    content: "\eb46";
}
.bx-right-arrow:before {
    content: "\eb47";
}
.bx-right-arrow-alt:before {
    content: "\eb48";
}
.bx-right-arrow-circle:before {
    content: "\eb49";
}
.bx-right-down-arrow-circle:before {
    content: "\eb4a";
}
.bx-right-indent:before {
    content: "\eb4b";
}
.bx-right-top-arrow-circle:before {
    content: "\eb4c";
}
.bx-rocket:before {
    content: "\eb4d";
}
.bx-rotate-left:before {
    content: "\eb4e";
}
.bx-rotate-right:before {
    content: "\eb4f";
}
.bx-rss:before {
    content: "\eb50";
}
.bx-ruble:before {
    content: "\eb51";
}
.bx-ruler:before {
    content: "\eb52";
}
.bx-run:before {
    content: "\eb53";
}
.bx-rupee:before {
    content: "\eb54";
}
.bx-sad:before {
    content: "\eb55";
}
.bx-save:before {
    content: "\eb56";
}
.bx-scan:before {
    content: "\eb57";
}
.bx-screenshot:before {
    content: "\eb58";
}
.bx-search:before {
    content: "\eb59";
}
.bx-search-alt:before {
    content: "\eb5a";
}
.bx-search-alt-2:before {
    content: "\eb5b";
}
.bx-selection:before {
    content: "\eb5c";
}
.bx-select-multiple:before {
    content: "\eb5d";
}
.bx-send:before {
    content: "\eb5e";
}
.bx-server:before {
    content: "\eb5f";
}
.bx-shape-circle:before {
    content: "\eb60";
}
.bx-shape-square:before {
    content: "\eb61";
}
.bx-shape-triangle:before {
    content: "\eb62";
}
.bx-share:before {
    content: "\eb63";
}
.bx-share-alt:before {
    content: "\eb64";
}
.bx-shekel:before {
    content: "\eb65";
}
.bx-shield:before {
    content: "\eb66";
}
.bx-shield-alt:before {
    content: "\eb67";
}
.bx-shield-alt-2:before {
    content: "\eb68";
}
.bx-shield-quarter:before {
    content: "\eb69";
}
.bx-shocked:before {
    content: "\eb6a";
}
.bx-shopping-bag:before {
    content: "\eb6b";
}
.bx-show:before {
    content: "\eb6c";
}
.bx-show-alt:before {
    content: "\eb6d";
}
.bx-shuffle:before {
    content: "\eb6e";
}
.bx-sidebar:before {
    content: "\eb6f";
}
.bx-sitemap:before {
    content: "\eb70";
}
.bx-skip-next:before {
    content: "\eb71";
}
.bx-skip-next-circle:before {
    content: "\eb72";
}
.bx-skip-previous:before {
    content: "\eb73";
}
.bx-skip-previous-circle:before {
    content: "\eb74";
}
.bx-sleepy:before {
    content: "\eb75";
}
.bx-slider:before {
    content: "\eb76";
}
.bx-slider-alt:before {
    content: "\eb77";
}
.bx-slideshow:before {
    content: "\eb78";
}
.bx-smile:before {
    content: "\eb79";
}
.bx-sort:before {
    content: "\eb7a";
}
.bx-sort-a-z:before {
    content: "\eb7b";
}
.bx-sort-down:before {
    content: "\eb7c";
}
.bx-sort-up:before {
    content: "\eb7d";
}
.bx-sort-z-a:before {
    content: "\eb7e";
}
.bx-spa:before {
    content: "\eb7f";
}
.bx-space-bar:before {
    content: "\eb80";
}
.bx-spray-can:before {
    content: "\eb81";
}
.bx-spreadsheet:before {
    content: "\eb82";
}
.bx-square:before {
    content: "\eb83";
}
.bx-square-rounded:before {
    content: "\eb84";
}
.bx-star:before {
    content: "\eb85";
}
.bx-station:before {
    content: "\eb86";
}
.bx-stats:before {
    content: "\eb87";
}
.bx-sticker:before {
    content: "\eb88";
}
.bx-stop:before {
    content: "\eb89";
}
.bx-stop-circle:before {
    content: "\eb8a";
}
.bx-stopwatch:before {
    content: "\eb8b";
}
.bx-store:before {
    content: "\eb8c";
}
.bx-store-alt:before {
    content: "\eb8d";
}
.bx-street-view:before {
    content: "\eb8e";
}
.bx-strikethrough:before {
    content: "\eb8f";
}
.bx-subdirectory-left:before {
    content: "\eb90";
}
.bx-subdirectory-right:before {
    content: "\eb91";
}
.bx-sun:before {
    content: "\eb92";
}
.bx-support:before {
    content: "\eb93";
}
.bx-swim:before {
    content: "\eb94";
}
.bx-sync:before {
    content: "\eb95";
}
.bx-tab:before {
    content: "\eb96";
}
.bx-table:before {
    content: "\eb97";
}
.bx-tachometer:before {
    content: "\eb98";
}
.bx-tag:before {
    content: "\eb99";
}
.bx-target-lock:before {
    content: "\eb9a";
}
.bx-task:before {
    content: "\eb9b";
}
.bx-taxi:before {
    content: "\eb9c";
}
.bx-tennis-ball:before {
    content: "\eb9d";
}
.bx-terminal:before {
    content: "\eb9e";
}
.bx-test-tube:before {
    content: "\eb9f";
}
.bx-text:before {
    content: "\eba0";
}
.bx-time:before {
    content: "\eba1";
}
.bx-time-five:before {
    content: "\eba2";
}
.bx-timer:before {
    content: "\eba3";
}
.bx-tired:before {
    content: "\eba4";
}
.bx-toggle-left:before {
    content: "\eba5";
}
.bx-toggle-right:before {
    content: "\eba6";
}
.bx-tone:before {
    content: "\eba7";
}
.bx-traffic-cone:before {
    content: "\eba8";
}
.bx-train:before {
    content: "\eba9";
}
.bx-transfer:before {
    content: "\ebaa";
}
.bx-transfer-alt:before {
    content: "\ebab";
}
.bx-trash:before {
    content: "\ebac";
}
.bx-trash-alt:before {
    content: "\ebad";
}
.bx-trending-down:before {
    content: "\ebae";
}
.bx-trending-up:before {
    content: "\ebaf";
}
.bx-trophy:before {
    content: "\ebb0";
}
.bx-tv:before {
    content: "\ebb1";
}
.bx-underline:before {
    content: "\ebb2";
}
.bx-undo:before {
    content: "\ebb3";
}
.bx-unlink:before {
    content: "\ebb4";
}
.bx-up-arrow:before {
    content: "\ebb5";
}
.bx-up-arrow-alt:before {
    content: "\ebb6";
}
.bx-up-arrow-circle:before {
    content: "\ebb7";
}
.bx-upload:before {
    content: "\ebb8";
}
.bx-upside-down:before {
    content: "\ebb9";
}
.bx-upvote:before {
    content: "\ebba";
}
.bx-usb:before {
    content: "\ebbb";
}
.bx-user:before {
    content: "\ebbc";
}
.bx-user-check:before {
    content: "\ebbd";
}
.bx-user-circle:before {
    content: "\ebbe";
}
.bx-user-minus:before {
    content: "\ebbf";
}
.bx-user-pin:before {
    content: "\ebc0";
}
.bx-user-plus:before {
    content: "\ebc1";
}
.bx-user-voice:before {
    content: "\ebc2";
}
.bx-user-x:before {
    content: "\ebc3";
}
.bx-vertical-center:before {
    content: "\ebc4";
}
.bx-video:before {
    content: "\ebc5";
}
.bx-video-off:before {
    content: "\ebc6";
}
.bx-video-plus:before {
    content: "\ebc7";
}
.bx-video-recording:before {
    content: "\ebc8";
}
.bx-voicemail:before {
    content: "\ebc9";
}
.bx-volume:before {
    content: "\ebca";
}
.bx-volume-full:before {
    content: "\ebcb";
}
.bx-volume-low:before {
    content: "\ebcc";
}
.bx-volume-mute:before {
    content: "\ebcd";
}
.bx-walk:before {
    content: "\ebce";
}
.bx-wallet:before {
    content: "\ebcf";
}
.bx-wallet-alt:before {
    content: "\ebd0";
}
.bx-water:before {
    content: "\ebd1";
}
.bx-webcam:before {
    content: "\ebd2";
}
.bx-wifi:before {
    content: "\ebd3";
}
.bx-wifi-0:before {
    content: "\ebd4";
}
.bx-wifi-1:before {
    content: "\ebd5";
}
.bx-wifi-2:before {
    content: "\ebd6";
}
.bx-wifi-off:before {
    content: "\ebd7";
}
.bx-wind:before {
    content: "\ebd8";
}
.bx-window:before {
    content: "\ebd9";
}
.bx-window-close:before {
    content: "\ebda";
}
.bx-window-open:before {
    content: "\ebdb";
}
.bx-windows:before {
    content: "\ebdc";
}
.bx-wink-smile:before {
    content: "\ebdd";
}
.bx-wink-tongue:before {
    content: "\ebde";
}
.bx-won:before {
    content: "\ebdf";
}
.bx-world:before {
    content: "\ebe0";
}
.bx-wrench:before {
    content: "\ebe1";
}
.bx-x:before {
    content: "\ebe2";
}
.bx-x-circle:before {
    content: "\ebe3";
}
.bx-yen:before {
    content: "\ebe4";
}
.bx-zoom-in:before {
    content: "\ebe5";
}
.bx-zoom-out:before {
    content: "\ebe6";
}
.bxs-add-to-queue:before {
    content: "\ebe7";
}
.bxs-adjust:before {
    content: "\ebe8";
}
.bxs-adjust-alt:before {
    content: "\ebe9";
}
.bxs-alarm:before {
    content: "\ebea";
}
.bxs-alarm-add:before {
    content: "\ebeb";
}
.bxs-alarm-off:before {
    content: "\ebec";
}
.bxs-album:before {
    content: "\ebed";
}
.bxs-ambulance:before {
    content: "\ebee";
}
.bxs-analyse:before {
    content: "\ebef";
}
.bxs-angry:before {
    content: "\ebf0";
}
.bxs-arch:before {
    content: "\ebf1";
}
.bxs-archive:before {
    content: "\ebf2";
}
.bxs-archive-in:before {
    content: "\ebf3";
}
.bxs-archive-out:before {
    content: "\ebf4";
}
.bxs-area:before {
    content: "\ebf5";
}
.bxs-arrow-from-bottom:before {
    content: "\ebf6";
}
.bxs-arrow-from-left:before {
    content: "\ebf7";
}
.bxs-arrow-from-right:before {
    content: "\ebf8";
}
.bxs-arrow-from-top:before {
    content: "\ebf9";
}
.bxs-arrow-to-bottom:before {
    content: "\ebfa";
}
.bxs-arrow-to-left:before {
    content: "\ebfb";
}
.bxs-arrow-to-right:before {
    content: "\ebfc";
}
.bxs-arrow-to-top:before {
    content: "\ebfd";
}
.bxs-award:before {
    content: "\ebfe";
}
.bxs-baby-carriage:before {
    content: "\ebff";
}
.bxs-badge:before {
    content: "\ec00";
}
.bxs-badge-check:before {
    content: "\ec01";
}
.bxs-badge-dollar:before {
    content: "\ec02";
}
.bxs-ball:before {
    content: "\ec03";
}
.bxs-band-aid:before {
    content: "\ec04";
}
.bxs-bank:before {
    content: "\ec05";
}
.bxs-bar-chart-alt-2:before {
    content: "\ec06";
}
.bxs-bar-chart-square:before {
    content: "\ec07";
}
.bxs-barcode:before {
    content: "\ec08";
}
.bxs-basket:before {
    content: "\ec09";
}
.bxs-bath:before {
    content: "\ec0a";
}
.bxs-battery:before {
    content: "\ec0b";
}
.bxs-battery-charging:before {
    content: "\ec0c";
}
.bxs-battery-full:before {
    content: "\ec0d";
}
.bxs-battery-low:before {
    content: "\ec0e";
}
.bxs-bed:before {
    content: "\ec0f";
}
.bxs-been-here:before {
    content: "\ec10";
}
.bxs-beer:before {
    content: "\ec11";
}
.bxs-bell:before {
    content: "\ec12";
}
.bxs-bell-minus:before {
    content: "\ec13";
}
.bxs-bell-off:before {
    content: "\ec14";
}
.bxs-bell-plus:before {
    content: "\ec15";
}
.bxs-bell-ring:before {
    content: "\ec16";
}
.bxs-bible:before {
    content: "\ec17";
}
.bxs-bolt:before {
    content: "\ec18";
}
.bxs-bolt-circle:before {
    content: "\ec19";
}
.bxs-bomb:before {
    content: "\ec1a";
}
.bxs-book:before {
    content: "\ec1b";
}
.bxs-book-bookmark:before {
    content: "\ec1c";
}
.bxs-book-content:before {
    content: "\ec1d";
}
.bxs-bookmark:before {
    content: "\ec1e";
}
.bxs-bookmark-minus:before {
    content: "\ec1f";
}
.bxs-bookmark-plus:before {
    content: "\ec20";
}
.bxs-bookmarks:before {
    content: "\ec21";
}
.bxs-bookmark-star:before {
    content: "\ec22";
}
.bxs-book-open:before {
    content: "\ec23";
}
.bxs-book-reader:before {
    content: "\ec24";
}
.bxs-bot:before {
    content: "\ec25";
}
.bxs-bowling-ball:before {
    content: "\ec26";
}
.bxs-box:before {
    content: "\ec27";
}
.bxs-briefcase:before {
    content: "\ec28";
}
.bxs-briefcase-alt:before {
    content: "\ec29";
}
.bxs-briefcase-alt-2:before {
    content: "\ec2a";
}
.bxs-brightness:before {
    content: "\ec2b";
}
.bxs-brightness-half:before {
    content: "\ec2c";
}
.bxs-brush:before {
    content: "\ec2d";
}
.bxs-brush-alt:before {
    content: "\ec2e";
}
.bxs-bug:before {
    content: "\ec2f";
}
.bxs-bug-alt:before {
    content: "\ec30";
}
.bxs-building:before {
    content: "\ec31";
}
.bxs-building-house:before {
    content: "\ec32";
}
.bxs-buildings:before {
    content: "\ec33";
}
.bxs-bulb:before {
    content: "\ec34";
}
.bxs-buoy:before {
    content: "\ec35";
}
.bxs-bus:before {
    content: "\ec36";
}
.bxs-business:before {
    content: "\ec37";
}
.bxs-bus-school:before {
    content: "\ec38";
}
.bxs-cabinet:before {
    content: "\ec39";
}
.bxs-cake:before {
    content: "\ec3a";
}
.bxs-calculator:before {
    content: "\ec3b";
}
.bxs-calendar:before {
    content: "\ec3c";
}
.bxs-calendar-alt:before {
    content: "\ec3d";
}
.bxs-calendar-check:before {
    content: "\ec3e";
}
.bxs-calendar-edit:before {
    content: "\ec3f";
}
.bxs-calendar-event:before {
    content: "\ec40";
}
.bxs-calendar-minus:before {
    content: "\ec41";
}
.bxs-calendar-plus:before {
    content: "\ec42";
}
.bxs-calendar-week:before {
    content: "\ec43";
}
.bxs-calendar-x:before {
    content: "\ec44";
}
.bxs-camera:before {
    content: "\ec45";
}
.bxs-camera-off:before {
    content: "\ec46";
}
.bxs-camera-plus:before {
    content: "\ec47";
}
.bxs-capsule:before {
    content: "\ec48";
}
.bxs-captions:before {
    content: "\ec49";
}
.bxs-car:before {
    content: "\ec4a";
}
.bxs-car-crash:before {
    content: "\ec4b";
}
.bxs-card:before {
    content: "\ec4c";
}
.bxs-caret-down-circle:before {
    content: "\ec4d";
}
.bxs-caret-left-circle:before {
    content: "\ec4e";
}
.bxs-caret-right-circle:before {
    content: "\ec4f";
}
.bxs-caret-up-circle:before {
    content: "\ec50";
}
.bxs-car-garage:before {
    content: "\ec51";
}
.bxs-car-mechanic:before {
    content: "\ec52";
}
.bxs-carousel:before {
    content: "\ec53";
}
.bxs-cart:before {
    content: "\ec54";
}
.bxs-cart-alt:before {
    content: "\ec55";
}
.bxs-car-wash:before {
    content: "\ec56";
}
.bxs-certification:before {
    content: "\ec57";
}
.bxs-chalkboard:before {
    content: "\ec58";
}
.bxs-chart:before {
    content: "\ec59";
}
.bxs-chat:before {
    content: "\ec5a";
}
.bxs-checkbox:before {
    content: "\ec5b";
}
.bxs-checkbox-checked:before {
    content: "\ec5c";
}
.bxs-check-circle:before {
    content: "\ec5d";
}
.bxs-check-shield:before {
    content: "\ec5e";
}
.bxs-check-square:before {
    content: "\ec5f";
}
.bxs-chess:before {
    content: "\ec60";
}
.bxs-chip:before {
    content: "\ec61";
}
.bxs-circle:before {
    content: "\ec62";
}
.bxs-city:before {
    content: "\ec63";
}
.bxs-clinic:before {
    content: "\ec64";
}
.bxs-cloud:before {
    content: "\ec65";
}
.bxs-cloud-download:before {
    content: "\ec66";
}
.bxs-cloud-lightning:before {
    content: "\ec67";
}
.bxs-cloud-rain:before {
    content: "\ec68";
}
.bxs-cloud-upload:before {
    content: "\ec69";
}
.bxs-coffee:before {
    content: "\ec6a";
}
.bxs-coffee-alt:before {
    content: "\ec6b";
}
.bxs-coffee-togo:before {
    content: "\ec6c";
}
.bxs-cog:before {
    content: "\ec6d";
}
.bxs-collection:before {
    content: "\ec6e";
}
.bxs-color-fill:before {
    content: "\ec6f";
}
.bxs-comment:before {
    content: "\ec70";
}
.bxs-comment-add:before {
    content: "\ec71";
}
.bxs-comment-detail:before {
    content: "\ec72";
}
.bxs-comment-dots:before {
    content: "\ec73";
}
.bxs-comment-error:before {
    content: "\ec74";
}
.bxs-compass:before {
    content: "\ec75";
}
.bxs-component:before {
    content: "\ec76";
}
.bxs-confused:before {
    content: "\ec77";
}
.bxs-contact:before {
    content: "\ec78";
}
.bxs-conversation:before {
    content: "\ec79";
}
.bxs-cool:before {
    content: "\ec7a";
}
.bxs-copy:before {
    content: "\ec7b";
}
.bxs-copy-alt:before {
    content: "\ec7c";
}
.bxs-coupon:before {
    content: "\ec7d";
}
.bxs-credit-card:before {
    content: "\ec7e";
}
.bxs-credit-card-alt:before {
    content: "\ec7f";
}
.bxs-crown:before {
    content: "\ec80";
}
.bxs-cube:before {
    content: "\ec81";
}
.bxs-cube-alt:before {
    content: "\ec82";
}
.bxs-cuboid:before {
    content: "\ec83";
}
.bxs-customize:before {
    content: "\ec84";
}
.bxs-cylinder:before {
    content: "\ec85";
}
.bxs-dashboard:before {
    content: "\ec86";
}
.bxs-data:before {
    content: "\ec87";
}
.bxs-detail:before {
    content: "\ec88";
}
.bxs-devices:before {
    content: "\ec89";
}
.bxs-dice-1:before {
    content: "\ec8a";
}
.bxs-dice-2:before {
    content: "\ec8b";
}
.bxs-dice-3:before {
    content: "\ec8c";
}
.bxs-dice-4:before {
    content: "\ec8d";
}
.bxs-dice-5:before {
    content: "\ec8e";
}
.bxs-dice-6:before {
    content: "\ec8f";
}
.bxs-direction-left:before {
    content: "\ec90";
}
.bxs-direction-right:before {
    content: "\ec91";
}
.bxs-directions:before {
    content: "\ec92";
}
.bxs-disc:before {
    content: "\ec93";
}
.bxs-discount:before {
    content: "\ec94";
}
.bxs-dish:before {
    content: "\ec95";
}
.bxs-dislike:before {
    content: "\ec96";
}
.bxs-dizzy:before {
    content: "\ec97";
}
.bxs-dock-bottom:before {
    content: "\ec98";
}
.bxs-dock-left:before {
    content: "\ec99";
}
.bxs-dock-right:before {
    content: "\ec9a";
}
.bxs-dock-top:before {
    content: "\ec9b";
}
.bxs-dollar-circle:before {
    content: "\ec9c";
}
.bxs-doughnut-chart:before {
    content: "\ec9d";
}
.bxs-down-arrow:before {
    content: "\ec9e";
}
.bxs-down-arrow-circle:before {
    content: "\ec9f";
}
.bxs-down-arrow-square:before {
    content: "\eca0";
}
.bxs-download:before {
    content: "\eca1";
}
.bxs-downvote:before {
    content: "\eca2";
}
.bxs-drink:before {
    content: "\eca3";
}
.bxs-droplet:before {
    content: "\eca4";
}
.bxs-droplet-half:before {
    content: "\eca5";
}
.bxs-dryer:before {
    content: "\eca6";
}
.bxs-duplicate:before {
    content: "\eca7";
}
.bxs-edit:before {
    content: "\eca8";
}
.bxs-edit-alt:before {
    content: "\eca9";
}
.bxs-edit-location:before {
    content: "\ecaa";
}
.bxs-eject:before {
    content: "\ecab";
}
.bxs-envelope:before {
    content: "\ecac";
}
.bxs-eraser:before {
    content: "\ecad";
}
.bxs-error:before {
    content: "\ecae";
}
.bxs-error-alt:before {
    content: "\ecaf";
}
.bxs-error-circle:before {
    content: "\ecb0";
}
.bxs-ev-station:before {
    content: "\ecb1";
}
.bxs-exit:before {
    content: "\ecb2";
}
.bxs-extension:before {
    content: "\ecb3";
}
.bxs-eyedropper:before {
    content: "\ecb4";
}
.bxs-face:before {
    content: "\ecb5";
}
.bxs-factory:before {
    content: "\ecb6";
}
.bxs-fast-forward-circle:before {
    content: "\ecb7";
}
.bxs-file:before {
    content: "\ecb8";
}
.bxs-file-archive:before {
    content: "\ecb9";
}
.bxs-file-blank:before {
    content: "\ecba";
}
.bxs-file-css:before {
    content: "\ecbb";
}
.bxs-file-doc:before {
    content: "\ecbc";
}
.bxs-file-export:before {
    content: "\ecbd";
}
.bxs-file-find:before {
    content: "\ecbe";
}
.bxs-file-gif:before {
    content: "\ecbf";
}
.bxs-file-html:before {
    content: "\ecc0";
}
.bxs-file-image:before {
    content: "\ecc1";
}
.bxs-file-import:before {
    content: "\ecc2";
}
.bxs-file-jpg:before {
    content: "\ecc3";
}
.bxs-file-js:before {
    content: "\ecc4";
}
.bxs-file-json:before {
    content: "\ecc5";
}
.bxs-file-md:before {
    content: "\ecc6";
}
.bxs-file-pdf:before {
    content: "\ecc7";
}
.bxs-file-plus:before {
    content: "\ecc8";
}
.bxs-file-png:before {
    content: "\ecc9";
}
.bxs-file-txt:before {
    content: "\ecca";
}
.bxs-film:before {
    content: "\eccb";
}
.bxs-filter-alt:before {
    content: "\eccc";
}
.bxs-first-aid:before {
    content: "\eccd";
}
.bxs-flag:before {
    content: "\ecce";
}
.bxs-flag-alt:before {
    content: "\eccf";
}
.bxs-flag-checkered:before {
    content: "\ecd0";
}
.bxs-flame:before {
    content: "\ecd1";
}
.bxs-flask:before {
    content: "\ecd2";
}
.bxs-florist:before {
    content: "\ecd3";
}
.bxs-folder:before {
    content: "\ecd4";
}
.bxs-folder-minus:before {
    content: "\ecd5";
}
.bxs-folder-open:before {
    content: "\ecd6";
}
.bxs-folder-plus:before {
    content: "\ecd7";
}
.bxs-food-menu:before {
    content: "\ecd8";
}
.bxs-fridge:before {
    content: "\ecd9";
}
.bxs-gas-pump:before {
    content: "\ecda";
}
.bxs-ghost:before {
    content: "\ecdb";
}
.bxs-gift:before {
    content: "\ecdc";
}
.bxs-graduation:before {
    content: "\ecdd";
}
.bxs-grid:before {
    content: "\ecde";
}
.bxs-grid-alt:before {
    content: "\ecdf";
}
.bxs-group:before {
    content: "\ece0";
}
.bxs-hand-down:before {
    content: "\ece1";
}
.bxs-hand-left:before {
    content: "\ece2";
}
.bxs-hand-right:before {
    content: "\ece3";
}
.bxs-hand-up:before {
    content: "\ece4";
}
.bxs-happy:before {
    content: "\ece5";
}
.bxs-happy-alt:before {
    content: "\ece6";
}
.bxs-happy-beaming:before {
    content: "\ece7";
}
.bxs-happy-heart-eyes:before {
    content: "\ece8";
}
.bxs-hdd:before {
    content: "\ece9";
}
.bxs-heart:before {
    content: "\ecea";
}
.bxs-heart-circle:before {
    content: "\eceb";
}
.bxs-heart-square:before {
    content: "\ecec";
}
.bxs-help-circle:before {
    content: "\eced";
}
.bxs-hide:before {
    content: "\ecee";
}
.bxs-home:before {
    content: "\ecef";
}
.bxs-home-circle:before {
    content: "\ecf0";
}
.bxs-home-heart:before {
    content: "\ecf1";
}
.bxs-hot:before {
    content: "\ecf2";
}
.bxs-hotel:before {
    content: "\ecf3";
}
.bxs-hourglass:before {
    content: "\ecf4";
}
.bxs-hourglass-bottom:before {
    content: "\ecf5";
}
.bxs-hourglass-top:before {
    content: "\ecf6";
}
.bxs-id-card:before {
    content: "\ecf7";
}
.bxs-image:before {
    content: "\ecf8";
}
.bxs-image-add:before {
    content: "\ecf9";
}
.bxs-image-alt:before {
    content: "\ecfa";
}
.bxs-inbox:before {
    content: "\ecfb";
}
.bxs-info-circle:before {
    content: "\ecfc";
}
.bxs-info-square:before {
    content: "\ecfd";
}
.bxs-institution:before {
    content: "\ecfe";
}
.bxs-joystick:before {
    content: "\ecff";
}
.bxs-joystick-alt:before {
    content: "\ed00";
}
.bxs-joystick-button:before {
    content: "\ed01";
}
.bxs-key:before {
    content: "\ed02";
}
.bxs-keyboard:before {
    content: "\ed03";
}
.bxs-label:before {
    content: "\ed04";
}
.bxs-landmark:before {
    content: "\ed05";
}
.bxs-landscape:before {
    content: "\ed06";
}
.bxs-laugh:before {
    content: "\ed07";
}
.bxs-layer:before {
    content: "\ed08";
}
.bxs-layer-minus:before {
    content: "\ed09";
}
.bxs-layer-plus:before {
    content: "\ed0a";
}
.bxs-layout:before {
    content: "\ed0b";
}
.bxs-left-arrow:before {
    content: "\ed0c";
}
.bxs-left-arrow-circle:before {
    content: "\ed0d";
}
.bxs-left-arrow-square:before {
    content: "\ed0e";
}
.bxs-left-down-arrow-circle:before {
    content: "\ed0f";
}
.bxs-left-top-arrow-circle:before {
    content: "\ed10";
}
.bxs-like:before {
    content: "\ed11";
}
.bxs-location-plus:before {
    content: "\ed12";
}
.bxs-lock:before {
    content: "\ed13";
}
.bxs-lock-alt:before {
    content: "\ed14";
}
.bxs-lock-open:before {
    content: "\ed15";
}
.bxs-lock-open-alt:before {
    content: "\ed16";
}
.bxs-log-in:before {
    content: "\ed17";
}
.bxs-log-in-circle:before {
    content: "\ed18";
}
.bxs-log-out:before {
    content: "\ed19";
}
.bxs-log-out-circle:before {
    content: "\ed1a";
}
.bxs-low-vision:before {
    content: "\ed1b";
}
.bxs-magic-wand:before {
    content: "\ed1c";
}
.bxs-magnet:before {
    content: "\ed1d";
}
.bxs-map:before {
    content: "\ed1e";
}
.bxs-map-alt:before {
    content: "\ed1f";
}
.bxs-map-pin:before {
    content: "\ed20";
}
.bxs-mask:before {
    content: "\ed21";
}
.bxs-megaphone:before {
    content: "\ed22";
}
.bxs-meh:before {
    content: "\ed23";
}
.bxs-meh-alt:before {
    content: "\ed24";
}
.bxs-meh-blank:before {
    content: "\ed25";
}
.bxs-memory-card:before {
    content: "\ed26";
}
.bxs-message:before {
    content: "\ed27";
}
.bxs-message-alt:before {
    content: "\ed28";
}
.bxs-message-alt-dots:before {
    content: "\ed29";
}
.bxs-message-dots:before {
    content: "\ed2a";
}
.bxs-message-rounded:before {
    content: "\ed2b";
}
.bxs-message-rounded-dots:before {
    content: "\ed2c";
}
.bxs-message-square:before {
    content: "\ed2d";
}
.bxs-message-square-dots:before {
    content: "\ed2e";
}
.bxs-microchip:before {
    content: "\ed2f";
}
.bxs-microphone:before {
    content: "\ed30";
}
.bxs-microphone-alt:before {
    content: "\ed31";
}
.bxs-microphone-off:before {
    content: "\ed32";
}
.bxs-minus-circle:before {
    content: "\ed33";
}
.bxs-minus-square:before {
    content: "\ed34";
}
.bxs-mobile:before {
    content: "\ed35";
}
.bxs-mobile-vibration:before {
    content: "\ed36";
}
.bxs-moon:before {
    content: "\ed37";
}
.bxs-mouse:before {
    content: "\ed38";
}
.bxs-mouse-alt:before {
    content: "\ed39";
}
.bxs-movie:before {
    content: "\ed3a";
}
.bxs-music:before {
    content: "\ed3b";
}
.bxs-navigation:before {
    content: "\ed3c";
}
.bxs-news:before {
    content: "\ed3d";
}
.bxs-no-entry:before {
    content: "\ed3e";
}
.bxs-note:before {
    content: "\ed3f";
}
.bxs-notepad:before {
    content: "\ed40";
}
.bxs-notification:before {
    content: "\ed41";
}
.bxs-notification-off:before {
    content: "\ed42";
}
.bxs-offer:before {
    content: "\ed43";
}
.bxs-package:before {
    content: "\ed44";
}
.bxs-paint:before {
    content: "\ed45";
}
.bxs-paint-roll:before {
    content: "\ed46";
}
.bxs-palette:before {
    content: "\ed47";
}
.bxs-paper-plane:before {
    content: "\ed48";
}
.bxs-parking:before {
    content: "\ed49";
}
.bxs-paste:before {
    content: "\ed4a";
}
.bxs-pen:before {
    content: "\ed4b";
}
.bxs-pencil:before {
    content: "\ed4c";
}
.bxs-phone:before {
    content: "\ed4d";
}
.bxs-phone-call:before {
    content: "\ed4e";
}
.bxs-phone-incoming:before {
    content: "\ed4f";
}
.bxs-phone-outgoing:before {
    content: "\ed50";
}
.bxs-photo-album:before {
    content: "\ed51";
}
.bxs-piano:before {
    content: "\ed52";
}
.bxs-pie-chart:before {
    content: "\ed53";
}
.bxs-pie-chart-alt:before {
    content: "\ed54";
}
.bxs-pie-chart-alt-2:before {
    content: "\ed55";
}
.bxs-pin:before {
    content: "\ed56";
}
.bxs-pizza:before {
    content: "\ed57";
}
.bxs-plane:before {
    content: "\ed58";
}
.bxs-plane-alt:before {
    content: "\ed59";
}
.bxs-plane-land:before {
    content: "\ed5a";
}
.bxs-planet:before {
    content: "\ed5b";
}
.bxs-plane-take-off:before {
    content: "\ed5c";
}
.bxs-playlist:before {
    content: "\ed5d";
}
.bxs-plug:before {
    content: "\ed5e";
}
.bxs-plus-circle:before {
    content: "\ed5f";
}
.bxs-plus-square:before {
    content: "\ed60";
}
.bxs-pointer:before {
    content: "\ed61";
}
.bxs-polygon:before {
    content: "\ed62";
}
.bxs-printer:before {
    content: "\ed63";
}
.bxs-purchase-tag:before {
    content: "\ed64";
}
.bxs-purchase-tag-alt:before {
    content: "\ed65";
}
.bxs-pyramid:before {
    content: "\ed66";
}
.bxs-quote-alt-left:before {
    content: "\ed67";
}
.bxs-quote-alt-right:before {
    content: "\ed68";
}
.bxs-quote-left:before {
    content: "\ed69";
}
.bxs-quote-right:before {
    content: "\ed6a";
}
.bxs-quote-single-left:before {
    content: "\ed6b";
}
.bxs-quote-single-right:before {
    content: "\ed6c";
}
.bxs-radiation:before {
    content: "\ed6d";
}
.bxs-radio:before {
    content: "\ed6e";
}
.bxs-receipt:before {
    content: "\ed6f";
}
.bxs-rectangle:before {
    content: "\ed70";
}
.bxs-rename:before {
    content: "\ed71";
}
.bxs-report:before {
    content: "\ed72";
}
.bxs-rewind-circle:before {
    content: "\ed73";
}
.bxs-right-arrow:before {
    content: "\ed74";
}
.bxs-right-arrow-circle:before {
    content: "\ed75";
}
.bxs-right-arrow-square:before {
    content: "\ed76";
}
.bxs-right-down-arrow-circle:before {
    content: "\ed77";
}
.bxs-right-top-arrow-circle:before {
    content: "\ed78";
}
.bxs-rocket:before {
    content: "\ed79";
}
.bxs-ruler:before {
    content: "\ed7a";
}
.bxs-sad:before {
    content: "\ed7b";
}
.bxs-save:before {
    content: "\ed7c";
}
.bxs-school:before {
    content: "\ed7d";
}
.bxs-search:before {
    content: "\ed7e";
}
.bxs-search-alt-2:before {
    content: "\ed7f";
}
.bxs-select-multiple:before {
    content: "\ed80";
}
.bxs-send:before {
    content: "\ed81";
}
.bxs-server:before {
    content: "\ed82";
}
.bxs-shapes:before {
    content: "\ed83";
}
.bxs-share:before {
    content: "\ed84";
}
.bxs-share-alt:before {
    content: "\ed85";
}
.bxs-shield:before {
    content: "\ed86";
}
.bxs-shield-alt-2:before {
    content: "\ed87";
}
.bxs-ship:before {
    content: "\ed88";
}
.bxs-shocked:before {
    content: "\ed89";
}
.bxs-shopping-bag:before {
    content: "\ed8a";
}
.bxs-shopping-bag-alt:before {
    content: "\ed8b";
}
.bxs-show:before {
    content: "\ed8c";
}
.bxs-skip-next-circle:before {
    content: "\ed8d";
}
.bxs-skip-previous-circle:before {
    content: "\ed8e";
}
.bxs-skull:before {
    content: "\ed8f";
}
.bxs-sleepy:before {
    content: "\ed90";
}
.bxs-slideshow:before {
    content: "\ed91";
}
.bxs-smile:before {
    content: "\ed92";
}
.bxs-sort-alt:before {
    content: "\ed93";
}
.bxs-spa:before {
    content: "\ed94";
}
.bxs-spray-can:before {
    content: "\ed95";
}
.bxs-spreadsheet:before {
    content: "\ed96";
}
.bxs-square:before {
    content: "\ed97";
}
.bxs-square-rounded:before {
    content: "\ed98";
}
.bxs-star:before {
    content: "\ed99";
}
.bxs-star-half:before {
    content: "\ed9a";
}
.bxs-sticker:before {
    content: "\ed9b";
}
.bxs-stopwatch:before {
    content: "\ed9c";
}
.bxs-store:before {
    content: "\ed9d";
}
.bxs-store-alt:before {
    content: "\ed9e";
}
.bxs-sun:before {
    content: "\ed9f";
}
.bxs-tachometer:before {
    content: "\eda0";
}
.bxs-tag:before {
    content: "\eda1";
}
.bxs-tag-x:before {
    content: "\eda2";
}
.bxs-taxi:before {
    content: "\eda3";
}
.bxs-tennis-ball:before {
    content: "\eda4";
}
.bxs-terminal:before {
    content: "\eda5";
}
.bxs-thermometer:before {
    content: "\eda6";
}
.bxs-time:before {
    content: "\eda7";
}
.bxs-time-five:before {
    content: "\eda8";
}
.bxs-timer:before {
    content: "\eda9";
}
.bxs-tired:before {
    content: "\edaa";
}
.bxs-toggle-left:before {
    content: "\edab";
}
.bxs-toggle-right:before {
    content: "\edac";
}
.bxs-tone:before {
    content: "\edad";
}
.bxs-torch:before {
    content: "\edae";
}
.bxs-to-top:before {
    content: "\edaf";
}
.bxs-traffic:before {
    content: "\edb0";
}
.bxs-traffic-barrier:before {
    content: "\edb1";
}
.bxs-traffic-cone:before {
    content: "\edb2";
}
.bxs-train:before {
    content: "\edb3";
}
.bxs-trash:before {
    content: "\edb4";
}
.bxs-trash-alt:before {
    content: "\edb5";
}
.bxs-tree:before {
    content: "\edb6";
}
.bxs-trophy:before {
    content: "\edb7";
}
.bxs-truck:before {
    content: "\edb8";
}
.bxs-t-shirt:before {
    content: "\edb9";
}
.bxs-up-arrow:before {
    content: "\edba";
}
.bxs-up-arrow-circle:before {
    content: "\edbb";
}
.bxs-up-arrow-square:before {
    content: "\edbc";
}
.bxs-upside-down:before {
    content: "\edbd";
}
.bxs-upvote:before {
    content: "\edbe";
}
.bxs-user:before {
    content: "\edbf";
}
.bxs-user-badge:before {
    content: "\edc0";
}
.bxs-user-check:before {
    content: "\edc1";
}
.bxs-user-circle:before {
    content: "\edc2";
}
.bxs-user-detail:before {
    content: "\edc3";
}
.bxs-user-minus:before {
    content: "\edc4";
}
.bxs-user-pin:before {
    content: "\edc5";
}
.bxs-user-plus:before {
    content: "\edc6";
}
.bxs-user-rectangle:before {
    content: "\edc7";
}
.bxs-user-voice:before {
    content: "\edc8";
}
.bxs-user-x:before {
    content: "\edc9";
}
.bxs-vial:before {
    content: "\edca";
}
.bxs-video:before {
    content: "\edcb";
}
.bxs-video-off:before {
    content: "\edcc";
}
.bxs-video-plus:before {
    content: "\edcd";
}
.bxs-video-recording:before {
    content: "\edce";
}
.bxs-videos:before {
    content: "\edcf";
}
.bxs-volume:before {
    content: "\edd0";
}
.bxs-volume-full:before {
    content: "\edd1";
}
.bxs-volume-low:before {
    content: "\edd2";
}
.bxs-volume-mute:before {
    content: "\edd3";
}
.bxs-wallet:before {
    content: "\edd4";
}
.bxs-wallet-alt:before {
    content: "\edd5";
}
.bxs-washer:before {
    content: "\edd6";
}
.bxs-watch:before {
    content: "\edd7";
}
.bxs-watch-alt:before {
    content: "\edd8";
}
.bxs-webcam:before {
    content: "\edd9";
}
.bxs-widget:before {
    content: "\edda";
}
.bxs-wine:before {
    content: "\eddb";
}
.bxs-wink-smile:before {
    content: "\eddc";
}
.bxs-wink-tongue:before {
    content: "\eddd";
}
.bxs-wrench:before {
    content: "\edde";
}
.bxs-x-circle:before {
    content: "\eddf";
}
.bxs-x-square:before {
    content: "\ede0";
}
.bxs-yin-yang:before {
    content: "\ede1";
}
.bxs-zap:before {
    content: "\ede2";
}
.bxs-zoom-in:before {
    content: "\ede3";
}
.bxs-zoom-out:before {
    content: "\ede4";
}
@font-face {
    font-family: Flaticon;
    src: url(../fonts/Flaticon.f0bcb7e0.eot);
    src: url(../fonts/Flaticon.f0bcb7e0.eot?#iefix) format("embedded-opentype"), url(../fonts/Flaticon.eb217961.woff2) format("woff2"), url(../fonts/Flaticon.2ee6b10a.woff) format("woff"),
        url(../fonts/Flaticon.c9e5b272.ttf) format("truetype"), url(../img/Flaticon.6d16abf1.svg#Flaticon) format("svg");
    font-weight: 400;
    font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    @font-face {
        font-family: Flaticon;
        src: url(../img/Flaticon.6d16abf1.svg#Flaticon) format("svg");
    }
}
[class*=" flaticon-"]:after,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class^="flaticon-"]:before {
    font-family: Flaticon;
    font-size: 20px;
    font-style: normal;
}
.flaticon-cloud:before {
    content: "\f100";
}
.flaticon-data:before {
    content: "\f101";
}
.flaticon-vps:before {
    content: "\f102";
}
.flaticon-shield:before {
    content: "\f103";
}
.flaticon-team:before {
    content: "\f104";
}
.flaticon-rocket:before {
    content: "\f105";
}
.flaticon-diamond:before {
    content: "\f106";
}
.flaticon-money:before {
    content: "\f107";
}
.flaticon-data-1:before {
    content: "\f108";
}
.flaticon-dashboard:before {
    content: "\f109";
}
.flaticon-support:before {
    content: "\f10a";
}
.flaticon-star:before {
    content: "\f10b";
}
.flaticon-star-1:before {
    content: "\f10c";
}
.flaticon-star-2:before {
    content: "\f10d";
}
.flaticon-plus:before {
    content: "\f10e";
}
.flaticon-line:before {
    content: "\f10f";
}
.flaticon-monitor:before {
    content: "\f110";
}
.flaticon-idea:before {
    content: "\f111";
}
.flaticon-layout:before {
    content: "\f112";
}
.flaticon-hard-disk:before {
    content: "\f113";
}
.flaticon-smartphone:before {
    content: "\f114";
}
.flaticon-reload:before {
    content: "\f115";
}
.flaticon-laptop:before {
    content: "\f116";
}
.flaticon-update-arrows:before {
    content: "\f117";
}
.flaticon-handshake:before {
    content: "\f118";
}
.flaticon-repair:before {
    content: "\f119";
}
.flaticon-delivery-truck:before {
    content: "\f11a";
}
.flaticon-left-quote:before {
    content: "\f11b";
}
.flaticon-software:before {
    content: "\f11c";
}
.flaticon-gear:before {
    content: "\f11d";
}
.flaticon-skyline:before {
    content: "\f11e";
}
.flaticon-car-insurance:before {
    content: "\f11f";
}
.flaticon-factory:before {
    content: "\f120";
}
.flaticon-chip:before {
    content: "\f121";
}

/*!
 * Bootstrap v4.6.0 (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 {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}
[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
abbr[data-original-title],
abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}
address {
    font-style: normal;
    line-height: inherit;
}
address,
dl,
ol,
ul {
    margin-bottom: 1rem;
}
dl,
ol,
ul {
    margin-top: 0;
}
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}
blockquote {
    margin: 0 0 1rem;
}
b,
strong {
    font-weight: bolder;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
a {
    color: #007bff;
    background-color: transparent;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}
code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: 1em;
}
pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}
figure {
    margin: 0 0 1rem;
}
img {
    border-style: none;
}
img,
svg {
    vertical-align: middle;
}
svg {
    overflow: hidden;
}
table {
    border-collapse: collapse;
}
caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}
th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}
label {
    display: inline-block;
    margin-bottom: 0.5rem;
}
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,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
[role="button"] {
    cursor: pointer;
}
select {
    word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}
textarea {
    overflow: auto;
    resize: vertical;
}
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}
legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}
output {
    display: inline-block;
}
summary {
    display: list-item;
    cursor: pointer;
}
template {
    display: none;
}
[hidden] {
    display: none !important;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.h1,
h1 {
    font-size: 2.5rem;
}
.h2,
h2 {
    font-size: 2rem;
}
.h3,
h3 {
    font-size: 1.75rem;
}
.h4,
h4 {
    font-size: 1.5rem;
}
.h5,
h5 {
    font-size: 1.25rem;
}
.h6,
h6 {
    font-size: 1rem;
}
.lead {
    font-size: 1.25rem;
    font-weight: 300;
}
.display-1 {
    font-size: 6rem;
}
.display-1,
.display-2 {
    font-weight: 300;
    line-height: 1.2;
}
.display-2 {
    font-size: 5.5rem;
}
.display-3 {
    font-size: 4.5rem;
}
.display-3,
.display-4 {
    font-weight: 300;
    line-height: 1.2;
}
.display-4 {
    font-size: 3.5rem;
}
hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #85d6f8;
}
.small,
small {
    font-size: 80%;
    font-weight: 400;
}
.mark,
mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}
.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.list-inline-item {
    display: inline-block;
}
.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}
.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}
.blockquote-footer:before {
    content: "\2014\00A0";
}
.img-fluid,
.img-thumbnail {
    max-width: 100%;
    height: auto;
}
.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
}
.figure {
    display: inline-block;
}
.figure-img {
    margin-bottom: 0.5rem;
    line-height: 1;
}
.figure-caption {
    font-size: 90%;
    color: #6c757d;
}
code {
    font-size: 87.5%;
    color: #e83e8c;
    word-wrap: break-word;
}
a > code {
    color: inherit;
}
kbd {
    padding: 0.2rem 0.4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: 0.2rem;
}
kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
}
pre {
    display: block;
    font-size: 87.5%;
    color: #212529;
}
pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}
.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: 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;
    }
}
.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}
.row-cols-1 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.row-cols-2 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.row-cols-3 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.row-cols-4 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.row-cols-5 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}
.row-cols-6 > * {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.col-1,
.col-auto {
    -webkit-box-flex: 0;
}
.col-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}
.col-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}
.col-2,
.col-3 {
    -webkit-box-flex: 0;
}
.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.col-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.col-4,
.col-5 {
    -webkit-box-flex: 0;
}
.col-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}
.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.col-6,
.col-7 {
    -webkit-box-flex: 0;
}
.col-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}
.col-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}
.col-8,
.col-9 {
    -webkit-box-flex: 0;
}
.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.col-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}
.col-10,
.col-11 {
    -webkit-box-flex: 0;
}
.col-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}
.col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}
.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
}
.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}
.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}
.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}
.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
}
.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
}
.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
}
.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
}
.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}
.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
}
.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
}
.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
}
.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
}
.offset-1 {
    margin-left: 8.33333%;
}
.offset-2 {
    margin-left: 16.66667%;
}
.offset-3 {
    margin-left: 25%;
}
.offset-4 {
    margin-left: 33.33333%;
}
.offset-5 {
    margin-left: 41.66667%;
}
.offset-6 {
    margin-left: 50%;
}
.offset-7 {
    margin-left: 58.33333%;
}
.offset-8 {
    margin-left: 66.66667%;
}
.offset-9 {
    margin-left: 75%;
}
.offset-10 {
    margin-left: 83.33333%;
}
.offset-11 {
    margin-left: 91.66667%;
}
@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-sm-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-sm-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-sm-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-sm-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-sm-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-sm-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-sm-0 {
        margin-left: 0;
    }
    .offset-sm-1 {
        margin-left: 8.33333%;
    }
    .offset-sm-2 {
        margin-left: 16.66667%;
    }
    .offset-sm-3 {
        margin-left: 25%;
    }
    .offset-sm-4 {
        margin-left: 33.33333%;
    }
    .offset-sm-5 {
        margin-left: 41.66667%;
    }
    .offset-sm-6 {
        margin-left: 50%;
    }
    .offset-sm-7 {
        margin-left: 58.33333%;
    }
    .offset-sm-8 {
        margin-left: 66.66667%;
    }
    .offset-sm-9 {
        margin-left: 75%;
    }
    .offset-sm-10 {
        margin-left: 83.33333%;
    }
    .offset-sm-11 {
        margin-left: 91.66667%;
    }
}
@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-md-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-md-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-md-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-md-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-md-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-md-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-md-0 {
        margin-left: 0;
    }
    .offset-md-1 {
        margin-left: 8.33333%;
    }
    .offset-md-2 {
        margin-left: 16.66667%;
    }
    .offset-md-3 {
        margin-left: 25%;
    }
    .offset-md-4 {
        margin-left: 33.33333%;
    }
    .offset-md-5 {
        margin-left: 41.66667%;
    }
    .offset-md-6 {
        margin-left: 50%;
    }
    .offset-md-7 {
        margin-left: 58.33333%;
    }
    .offset-md-8 {
        margin-left: 66.66667%;
    }
    .offset-md-9 {
        margin-left: 75%;
    }
    .offset-md-10 {
        margin-left: 83.33333%;
    }
    .offset-md-11 {
        margin-left: 91.66667%;
    }
}
@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-lg-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-lg-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-lg-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-lg-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-lg-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-lg-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-lg-0 {
        margin-left: 0;
    }
    .offset-lg-1 {
        margin-left: 8.33333%;
    }
    .offset-lg-2 {
        margin-left: 16.66667%;
    }
    .offset-lg-3 {
        margin-left: 25%;
    }
    .offset-lg-4 {
        margin-left: 33.33333%;
    }
    .offset-lg-5 {
        margin-left: 41.66667%;
    }
    .offset-lg-6 {
        margin-left: 50%;
    }
    .offset-lg-7 {
        margin-left: 58.33333%;
    }
    .offset-lg-8 {
        margin-left: 66.66667%;
    }
    .offset-lg-9 {
        margin-left: 75%;
    }
    .offset-lg-10 {
        margin-left: 83.33333%;
    }
    .offset-lg-11 {
        margin-left: 91.66667%;
    }
}
@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }
    .row-cols-xl-1 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .row-cols-xl-2 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .row-cols-xl-3 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .row-cols-xl-4 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .row-cols-xl-5 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
    .row-cols-xl-6 > * {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }
    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }
    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }
    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }
    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }
    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }
    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }
    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5;
    }
    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6;
    }
    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7;
    }
    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8;
    }
    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9;
    }
    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10;
    }
    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11;
    }
    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12;
    }
    .offset-xl-0 {
        margin-left: 0;
    }
    .offset-xl-1 {
        margin-left: 8.33333%;
    }
    .offset-xl-2 {
        margin-left: 16.66667%;
    }
    .offset-xl-3 {
        margin-left: 25%;
    }
    .offset-xl-4 {
        margin-left: 33.33333%;
    }
    .offset-xl-5 {
        margin-left: 41.66667%;
    }
    .offset-xl-6 {
        margin-left: 50%;
    }
    .offset-xl-7 {
        margin-left: 58.33333%;
    }
    .offset-xl-8 {
        margin-left: 66.66667%;
    }
    .offset-xl-9 {
        margin-left: 75%;
    }
    .offset-xl-10 {
        margin-left: 83.33333%;
    }
    .offset-xl-11 {
        margin-left: 91.66667%;
    }
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}
.table td,
.table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}
.table-sm td,
.table-sm th {
    padding: 0.3rem;
}
.table-bordered,
.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}
.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px;
}
.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > td,
.table-primary > th {
    background-color: #b8daff;
}
.table-primary tbody + tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
    border-color: #7abaff;
}
.table-hover .table-primary:hover,
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}
.table-secondary,
.table-secondary > td,
.table-secondary > th {
    background-color: #d6d8db;
}
.table-secondary tbody + tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
    border-color: #b3b7bb;
}
.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
    background-color: #c8cbcf;
}
.table-success,
.table-success > td,
.table-success > th {
    background-color: #c3e6cb;
}
.table-success tbody + tbody,
.table-success td,
.table-success th,
.table-success thead th {
    border-color: #8fd19e;
}
.table-hover .table-success:hover,
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
    background-color: #b1dfbb;
}
.table-info,
.table-info > td,
.table-info > th {
    background-color: #bee5eb;
}
.table-info tbody + tbody,
.table-info td,
.table-info th,
.table-info thead th {
    border-color: #86cfda;
}
.table-hover .table-info:hover,
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
    background-color: #abdde5;
}
.table-warning,
.table-warning > td,
.table-warning > th {
    background-color: #ffeeba;
}
.table-warning tbody + tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
    border-color: #ffdf7e;
}
.table-hover .table-warning:hover,
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
    background-color: #ffe8a1;
}
.table-danger,
.table-danger > td,
.table-danger > th {
    background-color: #f5c6cb;
}
.table-danger tbody + tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
    border-color: #ed969e;
}
.table-hover .table-danger:hover,
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
    background-color: #f1b0b7;
}
.table-light,
.table-light > td,
.table-light > th {
    background-color: #fdfdfe;
}
.table-light tbody + tbody,
.table-light td,
.table-light th,
.table-light thead th {
    border-color: #fbfcfc;
}
.table-hover .table-light:hover,
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
    background-color: #ececf6;
}
.table-dark,
.table-dark > td,
.table-dark > th {
    background-color: #c6c8ca;
}
.table-dark tbody + tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #95999c;
}
.table-hover .table-dark:hover,
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
    background-color: #b9bbbe;
}
.table-active,
.table-active > td,
.table-active > th,
.table-hover .table-active:hover,
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}
.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.table-dark {
    color: #fff;
    background-color: #343a40;
}
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #454d55;
}
.table-dark.table-bordered {
    border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: hsla(0, 0%, 100%, 0.05);
}
.table-dark.table-hover tbody tr:hover {
    color: #fff;
    background-color: hsla(0, 0%, 100%, 0.075);
}
@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}
@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}
@media (max-width: 991.98px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-lg > .table-bordered {
        border: 0;
    }
}
@media (max-width: 1199.98px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive-xl > .table-bordered {
        border: 0;
    }
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
    border: 0;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.0em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.0;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}
.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}
.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}
input[type="date"].form-control,
input[type="datetime-local"].form-control,
input[type="month"].form-control,
input[type="time"].form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.form-control-file,
.form-control-range {
    display: block;
    width: 100%;
}
.col-form-label {
    padding-top: calc(0.375rem + 1px);
    padding-bottom: calc(0.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}
.col-form-label-lg {
    padding-top: calc(0.5rem + 1px);
    padding-bottom: calc(0.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5;
}
.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
    line-height: 1.5;
}
.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0.175rem 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.0;
    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-right: 0;
    padding-left: 0;
}
.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.0;
    border-radius: 0.2rem;
}
.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.0;
    border-radius: 0.3rem;
}
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
    height: auto;
}
.form-group {
    margin-bottom: 1rem;
}
.form-text {
    display: block;
    margin-top: 0.25rem;
}
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.form-row > .col,
.form-row > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}
.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label,
.form-check-input[disabled] ~ .form-check-label {
    color: #6c757d;
}
.form-check-label {
    margin-bottom: 0;
}
.form-check-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}
.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #28a745;
}
.valid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, 0.9);
    border-radius: 0.25rem;
}
.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
    left: 5px;
}
.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: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' 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: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.custom-select.is-valid,
.was-validated .custom-select:valid {
    border-color: #28a745;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat,
        #fff
            url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%2328a745' 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")
            center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745;
}
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block;
}
.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #28a745;
}
.custom-control-input.is-valid ~ .custom-control-label:before,
.was-validated .custom-control-input:valid ~ .custom-control-label:before {
    border-color: #28a745;
}
.custom-control-input.is-valid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label:before {
    border-color: #34ce57;
    background-color: #34ce57;
}
.custom-control-input.is-valid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label:before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label:before,
.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-file-input:valid ~ .custom-file-label {
    border-color: #28a745;
}
.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 80%;
    color: #dc3545;
}
.invalid-tooltip {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.25rem 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 0.25rem;
}
.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
    left: 5px;
}
.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-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + 0.75rem);
    background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}
.custom-select.is-invalid,
.was-validated .custom-select:invalid {
    border-color: #dc3545;
    padding-right: calc(0.75em + 2.3125rem);
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat,
        #fff
            url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' 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")
            center right 1.75rem / calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545;
}
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block;
}
.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #dc3545;
}
.custom-control-input.is-invalid ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid ~ .custom-control-label:before {
    border-color: #dc3545;
}
.custom-control-input.is-invalid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label:before {
    border-color: #e4606d;
    background-color: #e4606d;
}
.custom-control-input.is-invalid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label:before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label:before,
.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label:before,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #dc3545;
}
.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.form-inline .form-check {
    width: 100%;
}
@media (min-width: 576px) {
    .form-inline label {
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .form-group,
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        margin-bottom: 0;
    }
    .form-inline .form-group {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    .form-inline .form-control-plaintext {
        display: inline-block;
    }
    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto;
    }
    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0;
    }
    .form-inline .form-check-input {
        position: relative;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0;
    }
    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .form-inline .custom-control-label {
        margin-bottom: 0;
    }
}

.btn {
    display: inline-block;
    font-weight: 200;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.25rem 0.25rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none;
    }
}
.btn:hover {
    color: #212529;
    text-decoration: none;
}
.btn.focus,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled,
.btn:disabled {
    opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}
.btn-primary.focus,
.btn-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-primary.disabled,
.btn-primary:disabled {
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}
.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
}
.btn-secondary.focus,
.btn-secondary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}
.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success.focus,
.btn-success:focus,
.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}
.btn-success.focus,
.btn-success:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5);
}
.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-info.focus,
.btn-info:focus,
.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}
.btn-info.focus,
.btn-info:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-info.disabled,
.btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}
.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00;
}
.btn-warning.focus,
.btn-warning:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled,
.btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}
.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger.focus,
.btn-danger:focus,
.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}
.btn-danger.focus,
.btn-danger:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}
.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5;
}
.btn-light.focus,
.btn-light:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled,
.btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124;
}
.btn-dark.focus,
.btn-dark:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary.focus,
.btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
    color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success.focus,
.btn-outline-success:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
    color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info.focus,
.btn-outline-info:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning.focus,
.btn-outline-warning:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger.focus,
.btn-outline-danger:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
    color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light.focus,
.btn-outline-light:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark.focus,
.btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-link {
    font-weight: 400;
    color: #007bff;
    text-decoration: none;
}
.btn-link:hover {
    color: #0056b3;
}
.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
    text-decoration: underline;
}
.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d;
    pointer-events: none;
}
.btn-group-lg > .btn,
.btn-lg {
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.btn-group-sm > .btn,
.btn-sm {
    padding: 0.125rem 0.10rem 0.125rem 0.10rem;
    font-size: 0.75rem;
    line-height: 1.0;
    border-radius: 0.05rem;
    width: min-content;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-block + .btn-block {
    margin-top: 0.5rem;
}
input[type="button"].btn-block,
input[type="reset"].btn-block,
input[type="submit"].btn-block {
    width: 100%;
}
.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}
.fade:not(.show) {
    opacity: 0;
}
.collapse:not(.show) {
    display: none;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none;
    }
}
.dropdown,
.dropleft,
.dropright,
.dropup {
    position: relative;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.dropdown-menu-left {
    right: auto;
    left: 0;
}
.dropdown-menu-right {
    right: 0;
    left: auto;
}
@media (min-width: 576px) {
    .dropdown-menu-sm-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-sm-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 768px) {
    .dropdown-menu-md-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-md-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 992px) {
    .dropdown-menu-lg-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-lg-right {
        right: 0;
        left: auto;
    }
}
@media (min-width: 1200px) {
    .dropdown-menu-xl-left {
        right: auto;
        left: 0;
    }
    .dropdown-menu-xl-right {
        right: 0;
        left: auto;
    }
}
.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-right: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: 0.125rem;
}
.dropright .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropright .dropdown-toggle:after {
    vertical-align: 0;
}
.dropleft .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;
    margin-right: 0.125rem;
}
.dropleft .dropdown-toggle:after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    display: none;
}
.dropleft .dropdown-toggle:before {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty:after {
    margin-left: 0;
}
.dropleft .dropdown-toggle:before {
    vertical-align: 0;
}
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="top"] {
    right: auto;
    bottom: auto;
}
.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #e9ecef;
}
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}
.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-header {
    display: block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #6c757d;
    white-space: nowrap;
}
.dropdown-item-text {
    display: block;
    padding: 0.25rem 1.5rem;
    color: #212529;
}
.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}
.btn-group-vertical > .btn,
.btn-group > .btn {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
    z-index: 1;
}
.btn-toolbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.btn-toolbar .input-group {
    width: auto;
}
.btn-group > .btn-group:not(:first-child),
.btn-group > .btn:not(:first-child) {
    margin-left: -1px;
}
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
    padding-right: 0.5625rem;
    padding-left: 0.5625rem;
}
.dropdown-toggle-split:after,
.dropright .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
    margin-left: 0;
}
.dropleft .dropdown-toggle-split:before {
    margin-right: 0;
}
.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}
.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    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-right-radius: 0;
    border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0;
}
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.btn-group-toggle > .btn input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}
.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-bottom: 0;
}
.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .form-control {
    margin-left: -1px;
}
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
    z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
    z-index: 4;
}
.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.input-group > .custom-file:not(:first-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label:after,
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .form-control:nth-last-child(n + 3),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label:after,
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group-append,
.input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.input-group-append .btn,
.input-group-prepend .btn {
    position: relative;
    z-index: 2;
}
.input-group-append .btn:focus,
.input-group-prepend .btn:focus {
    z-index: 3;
}
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
    margin-left: -1px;
}
.input-group-prepend {
    margin-right: -1px;
}
.input-group-append {
    margin-left: -1px;
}
.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.input-group-text input[type="checkbox"],
.input-group-text input[type="radio"] {
    margin-top: 0;
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px);
}
.input-group-lg > .custom-select,
.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control:not(textarea) {
    height: calc(1.5em + 0.5rem + 2px);
}
.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
    padding-right: 1.75rem;
}
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem;
}
.custom-control-input {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
    border-color: #007bff;
    background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label:before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label:before {
    color: #fff;
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label,
.custom-control-input[disabled] ~ .custom-control-label {
    color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label:before,
.custom-control-input[disabled] ~ .custom-control-label:before {
    background-color: #e9ecef;
}
.custom-control-label {
    position: relative;
    margin-bottom: 0;
    vertical-align: top;
}
.custom-control-label:before {
    pointer-events: none;
    background-color: #fff;
    border: 1px solid #adb5bd;
}
.custom-control-label:after,
.custom-control-label:before {
    position: absolute;
    top: 0.25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
}
.custom-control-label:after {
    background: 50%/50% 50% no-repeat;
}
.custom-checkbox .custom-control-label:before {
    border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:before {
    border-color: #007bff;
    background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
    background-color: rgba(0, 123, 255, 0.5);
}
.custom-radio .custom-control-label:before {
    border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(0, 123, 255, 0.5);
}
.custom-switch {
    padding-left: 2.25rem;
}
.custom-switch .custom-control-label:before {
    left: -2.25rem;
    width: 1.75rem;
    pointer-events: all;
    border-radius: 0.5rem;
}
.custom-switch .custom-control-label:after {
    top: calc(0.25rem + 2px);
    left: calc(-2.25rem + 2px);
    width: calc(1rem - 4px);
    height: calc(1rem - 4px);
    background-color: #adb5bd;
    border-radius: 0.5rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .custom-switch .custom-control-label:after {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    background-color: #fff;
    -webkit-transform: translateX(0.75rem);
    transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label:before {
    background-color: rgba(0, 123, 255, 0.5);
}
.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 1.75rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") right 0.75rem center/8px 10px no-repeat;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
    color: #495057;
    background-color: #fff;
}
.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}
.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef;
}
.custom-select::-ms-expand {
    display: none;
}
.custom-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #495057;
}
.custom-select-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 0.5rem;
    font-size: 0.875rem;
}
.custom-select-lg {
    height: calc(1.5em + 1rem + 2px);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 1.25rem;
}
.custom-file {
    display: inline-block;
    margin-bottom: 0;
}
.custom-file,
.custom-file-input {
    position: relative;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
}
.custom-file-input {
    z-index: 2;
    margin: 0;
    overflow: hidden;
    opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label,
.custom-file-input[disabled] ~ .custom-file-label {
    background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label:after {
    content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]:after {
    content: attr(data-browse);
}
.custom-file-label {
    left: 0;
    z-index: 1;
    height: calc(1.5em + 0.75rem + 2px);
    overflow: hidden;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.custom-file-label,
.custom-file-label:after {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #495057;
}
.custom-file-label:after {
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 0.25rem 0.25rem 0;
}
.custom-range {
    width: 100%;
    height: 1.4rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-range:focus {
    outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
    border: 0;
}
.custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}
.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}
.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}
.custom-range::-ms-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: 0;
    margin-right: 0.2rem;
    margin-left: 0.2rem;
    background-color: #007bff;
    border: 0;
    border-radius: 1rem;
    -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
}
@media (prefers-reduced-motion: reduce) {
    .custom-range::-ms-thumb {
        -ms-transition: none;
        transition: none;
    }
}
.custom-range::-ms-thumb:active {
    background-color: #b3d7ff;
}
.custom-range::-ms-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: transparent;
    border-color: transparent;
    border-width: 0.5rem;
}
.custom-range::-ms-fill-lower,
.custom-range::-ms-fill-upper {
    background-color: #dee2e6;
    border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
    margin-right: 15px;
}
.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
    cursor: default;
}
.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd;
}
.custom-control-label:before,
.custom-file-label,
.custom-select {
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .custom-control-label:before,
    .custom-file-label,
    .custom-select {
        -webkit-transition: none;
        transition: none;
    }
}
.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
}
.nav-link:focus,
.nav-link:hover {
    text-decoration: none;
}
.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default;
}
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
    color: #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-left-radius: 0;
    border-top-right-radius: 0;
}
.nav-pills .nav-link {
    border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff;
}
.nav-fill .nav-item,
.nav-fill > .nav-link {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}
.nav-justified .nav-item,
.nav-justified > .nav-link {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}
.tab-content > .tab-pane {
    display: none;
}
.tab-content > .active {
    display: block;
}
.navbar {
    position: relative;
    padding: 0.5rem 1rem;
}
.navbar,
.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.navbar-brand {
    display: inline-block;
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}
.navbar-brand:focus,
.navbar-brand:hover {
    text-decoration: none;
}
.navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .dropdown-menu {
    position: static;
    float: none;
}
.navbar-text {
    display: inline-block;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
    text-decoration: none;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: 50%/100% 100% no-repeat;
}
.navbar-nav-scroll {
    max-height: 75vh;
    overflow-y: auto;
}
@media (max-width: 575.98px) {
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid,
    .navbar-expand-sm > .container-lg,
    .navbar-expand-sm > .container-md,
    .navbar-expand-sm > .container-sm,
    .navbar-expand-sm > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 576px) {
    .navbar-expand-sm {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-sm,
    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-sm > .container,
    .navbar-expand-sm > .container-fluid,
    .navbar-expand-sm > .container-lg,
    .navbar-expand-sm > .container-md,
    .navbar-expand-sm > .container-sm,
    .navbar-expand-sm > .container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-sm .navbar-toggler {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-lg,
    .navbar-expand-md > .container-md,
    .navbar-expand-md > .container-sm,
    .navbar-expand-md > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 768px) {
    .navbar-expand-md {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-md,
    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-md > .container,
    .navbar-expand-md > .container-fluid,
    .navbar-expand-md > .container-lg,
    .navbar-expand-md > .container-md,
    .navbar-expand-md > .container-sm,
    .navbar-expand-md > .container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-md .navbar-toggler {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid,
    .navbar-expand-lg > .container-lg,
    .navbar-expand-lg > .container-md,
    .navbar-expand-lg > .container-sm,
    .navbar-expand-lg > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-lg,
    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid,
    .navbar-expand-lg > .container-lg,
    .navbar-expand-lg > .container-md,
    .navbar-expand-lg > .container-sm,
    .navbar-expand-lg > .container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
}
@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid,
    .navbar-expand-xl > .container-lg,
    .navbar-expand-xl > .container-md,
    .navbar-expand-xl > .container-sm,
    .navbar-expand-xl > .container-xl {
        padding-right: 0;
        padding-left: 0;
    }
}
@media (min-width: 1200px) {
    .navbar-expand-xl {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-expand-xl,
    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
    .navbar-expand-xl > .container,
    .navbar-expand-xl > .container-fluid,
    .navbar-expand-xl > .container-lg,
    .navbar-expand-xl > .container-md,
    .navbar-expand-xl > .container-sm,
    .navbar-expand-xl > .container-xl {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible;
    }
    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
    .navbar-expand-xl .navbar-toggler {
        display: none;
    }
}
.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
    padding-right: 0;
    padding-left: 0;
}
.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-lg,
.navbar-expand > .container-md,
.navbar-expand > .container-sm,
.navbar-expand > .container-xl {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}
.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
.navbar-expand .navbar-toggler {
    display: none;
}
.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(0,0,0,0.5)' 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, 0.5);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
    color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
    color: hsla(0, 0%, 100%, 0.5);
}
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: hsla(0, 0%, 100%, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
    color: hsla(0, 0%, 100%, 0.25);
}
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
    color: #fff;
}
.navbar-dark .navbar-toggler {
    color: hsla(0, 0%, 100%, 0.5);
    border-color: hsla(0, 0%, 100%, 0.1);
}
.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cpath stroke='rgba(255,255,255,0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
    color: hsla(0, 0%, 100%, 0.5);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff;
}
.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}
.card > hr {
    margin-right: 0;
    margin-left: 0;
}
.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}
.card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}
.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}
.card-title {
    margin-bottom: 0.75rem;
}
.card-subtitle {
    margin-top: -0.375rem;
}
.card-subtitle,
.card-text:last-child {
    margin-bottom: 0;
}
.card-link:hover {
    text-decoration: none;
}
.card-link + .card-link {
    margin-left: 1.25rem;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
    margin-bottom: -0.75rem;
    border-bottom: 0;
}
.card-header-pills,
.card-header-tabs {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
    border-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom,
.card-img-top {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
}
.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck .card {
    margin-bottom: 15px;
}
@media (min-width: 576px) {
    .card-deck {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px;
    }
}
.card-group > .card {
    margin-bottom: 15px;
}
@media (min-width: 576px) {
    .card-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }
    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }
    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0;
    }
    .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-header,
    .card-group > .card:not(:last-child) .card-img-top {
        border-top-right-radius: 0;
    }
    .card-group > .card:not(:last-child) .card-footer,
    .card-group > .card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0;
    }
    .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-header,
    .card-group > .card:not(:first-child) .card-img-top {
        border-top-left-radius: 0;
    }
    .card-group > .card:not(:first-child) .card-footer,
    .card-group > .card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0;
    }
}
.card-columns .card {
    margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }
    .card-columns .card {
        display: inline-block;
        width: 100%;
    }
}
.accordion {
    overflow-anchor: none;
}
.accordion > .card {
    overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
    border-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion > .card > .card-header {
    border-radius: 0;
    margin-bottom: -1px;
}
.breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item:before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover:before {
    text-decoration: underline;
    text-decoration: none;
}
.breadcrumb-item.active {
    color: #6c757d;
}
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-link:hover {
    z-index: 2;
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
.page-link:focus {
    z-index: 3;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: 0.3rem;
    border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: 0.3rem;
    border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .badge {
        -webkit-transition: none;
        transition: none;
    }
}
a.badge:focus,
a.badge:hover {
    text-decoration: none;
}
.badge:empty {
    display: none;
}
.btn .badge {
    position: relative;
    top: -1px;
}
.badge-pill {
    padding-right: 0.6em;
    padding-left: 0.6em;
    border-radius: 10rem;
}
.badge-primary {
    color: #fff;
    background-color: #007bff;
}
a.badge-primary:focus,
a.badge-primary:hover {
    color: #fff;
    background-color: #0062cc;
}
a.badge-primary.focus,
a.badge-primary:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.badge-secondary {
    color: #fff;
    background-color: #6c757d;
}
a.badge-secondary:focus,
a.badge-secondary:hover {
    color: #fff;
    background-color: #545b62;
}
a.badge-secondary.focus,
a.badge-secondary:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.badge-success {
    color: #fff;
    background-color: #28a745;
}
a.badge-success:focus,
a.badge-success:hover {
    color: #fff;
    background-color: #1e7e34;
}
a.badge-success.focus,
a.badge-success:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.badge-info {
    color: #fff;
    background-color: #17a2b8;
}
a.badge-info:focus,
a.badge-info:hover {
    color: #fff;
    background-color: #117a8b;
}
a.badge-info.focus,
a.badge-info:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.badge-warning {
    color: #212529;
    background-color: #ffc107;
}
a.badge-warning:focus,
a.badge-warning:hover {
    color: #212529;
    background-color: #d39e00;
}
a.badge-warning.focus,
a.badge-warning:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.badge-danger {
    color: #fff;
    background-color: #dc3545;
}
a.badge-danger:focus,
a.badge-danger:hover {
    color: #fff;
    background-color: #bd2130;
}
a.badge-danger.focus,
a.badge-danger:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.badge-light {
    color: #212529;
    background-color: #f8f9fa;
}
a.badge-light:focus,
a.badge-light:hover {
    color: #212529;
    background-color: #dae0e5;
}
a.badge-light.focus,
a.badge-light:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.badge-dark {
    color: #fff;
    background-color: #343a40;
}
a.badge-dark:focus,
a.badge-dark:hover {
    color: #fff;
    background-color: #1d2124;
}
a.badge-dark.focus,
a.badge-dark:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: 0.3rem;
}
@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}
.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
}
.alert-dismissible {
    padding-right: 4rem;
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 0.75rem 1.25rem;
    color: inherit;
}
.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-primary hr {
    border-top-color: #9fcdff;
}
.alert-primary .alert-link {
    color: #002752;
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.alert-secondary hr {
    border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
    color: #202326;
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.alert-success hr {
    border-top-color: #b1dfbb;
}
.alert-success .alert-link {
    color: #0b2e13;
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.alert-info hr {
    border-top-color: #abdde5;
}
.alert-info .alert-link {
    color: #062c33;
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.alert-warning hr {
    border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
    color: #533f03;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert-danger hr {
    border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
    color: #491217;
}
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}
.alert-light hr {
    border-top-color: #ececf6;
}
.alert-light .alert-link {
    color: #686868;
}
.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}
.alert-dark hr {
    border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
    color: #040505;
}
@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
@keyframes progress-bar-stripes {
    0% {
        background-position: 1rem 0;
    }
    to {
        background-position: 0 0;
    }
}
.progress {
    height: 1rem;
    line-height: 0;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}
.progress,
.progress-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.progress-bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        -webkit-transition: none;
        transition: none;
    }
}
.progress-bar-striped {
    background-image: linear-gradient(45deg, hsla(0, 0%, 100%, 0.15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, 0.15) 0, hsla(0, 0%, 100%, 0.15) 75%, transparent 0, transparent);
    background-size: 1rem 1rem;
}
.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}
.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.media-body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.list-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: 0.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: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-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: #007bff;
    border-color: #007bff;
}
.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 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-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-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
}
@media (min-width: 576px) {
    .list-group-horizontal-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-sm > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-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-left-width: 0;
    }
    .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}
@media (min-width: 768px) {
    .list-group-horizontal-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-md > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-md > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-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-left-width: 0;
    }
    .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}
@media (min-width: 992px) {
    .list-group-horizontal-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-lg > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-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-left-width: 0;
    }
    .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px;
    }
}
@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .list-group-horizontal-xl > .list-group-item:first-child {
        border-bottom-left-radius: 0.25rem;
        border-top-right-radius: 0;
    }
    .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-right-radius: 0.25rem;
        border-bottom-left-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-left-width: 0;
    }
    .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-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: #004085;
    background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #004085;
    background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085;
}
.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #383d41;
    background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41;
}
.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #155724;
    background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724;
}
.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #0c5460;
    background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460;
}
.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #856404;
    background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404;
}
.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #721c24;
    background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24;
}
.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #818182;
    background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182;
}
.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21;
    background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21;
}
.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.5;
}
.close:hover {
    color: #000;
    text-decoration: none;
}
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 0.75;
}
button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}
a.close.disabled {
    pointer-events: none;
}
.toast {
    -ms-flex-preferred-size: 350px;
    flex-basis: 350px;
    max-width: 350px;
    font-size: 0.875rem;
    background-color: hsla(0, 0%, 100%, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    opacity: 0;
    border-radius: 0.25rem;
}
.toast:not(:last-child) {
    margin-bottom: 0.75rem;
}
.toast.showing {
    opacity: 1;
}
.toast.show {
    display: block;
    opacity: 1;
}
.toast.hide {
    display: none;
}
.toast-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: hsla(0, 0%, 100%, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.toast-body {
    padding: 0.75rem;
}
.modal-open {
    overflow: hidden;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}
.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}
.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}
.modal-dialog-scrollable {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}
.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}
.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - 1rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable:before {
    content: none;
}
.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.show {
    opacity: 0.5;
}
.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}
.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
    margin: 0.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 {
        max-height: calc(100% - 3.5rem);
    }
    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem);
    }
    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }
    .modal-dialog-centered:before {
        height: calc(100vh - 3.5rem);
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
    }
    .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;
    }
}
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}
.tooltip.show {
    opacity: 0.9;
}
.tooltip .arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}
.tooltip .arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.bs-tooltip-auto[x-placement^="top"],
.bs-tooltip-top,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"],
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] {
    padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow,
.bs-tooltip-top .arrow,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow {
    bottom: 0;
}
.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.bs-tooltip-top .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow:before {
    top: 0;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #000;
}
.bs-tooltip-auto[x-placement^="right"],
.bs-tooltip-right,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"],
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] {
    padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow,
.bs-tooltip-right .arrow,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.bs-tooltip-right .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow:before {
    right: 0;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #000;
}
.bs-tooltip-auto[x-placement^="bottom"],
.bs-tooltip-bottom,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"],
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] {
    padding: 0.4rem 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.bs-tooltip-bottom .arrow,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow {
    top: 0;
}
.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.bs-tooltip-bottom .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow:before {
    bottom: 0;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #000;
}
.bs-tooltip-auto[x-placement^="left"],
.bs-tooltip-left,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"],
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] {
    padding: 0 0.4rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow,
.bs-tooltip-left .arrow,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}
.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.bs-tooltip-left .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow:before {
    left: 0;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #000;
}
.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem;
}
.popover {
    top: 0;
    left: 0;
    z-index: 1060;
    max-width: 276px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
}
.popover,
.popover .arrow {
    position: absolute;
    display: block;
}
.popover .arrow {
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem;
}
.popover .arrow:after,
.popover .arrow:before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}
.b-popover-danger.bs-popover-auto[x-placement^="top"],
.b-popover-dark.bs-popover-auto[x-placement^="top"],
.b-popover-info.bs-popover-auto[x-placement^="top"],
.b-popover-light.bs-popover-auto[x-placement^="top"],
.b-popover-primary.bs-popover-auto[x-placement^="top"],
.b-popover-secondary.bs-popover-auto[x-placement^="top"],
.b-popover-success.bs-popover-auto[x-placement^="top"],
.b-popover-warning.bs-popover-auto[x-placement^="top"],
.bs-popover-auto[x-placement^="top"],
.bs-popover-top {
    margin-bottom: 0.5rem;
}
.bs-popover-auto[x-placement^="top"] > .arrow,
.bs-popover-top > .arrow {
    bottom: calc(-0.5rem - 1px);
}
.bs-popover-auto[x-placement^="top"] > .arrow:before,
.bs-popover-top > .arrow:before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="top"] > .arrow:after,
.bs-popover-top > .arrow:after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #fff;
}
.b-popover-danger.bs-popover-auto[x-placement^="right"],
.b-popover-dark.bs-popover-auto[x-placement^="right"],
.b-popover-info.bs-popover-auto[x-placement^="right"],
.b-popover-light.bs-popover-auto[x-placement^="right"],
.b-popover-primary.bs-popover-auto[x-placement^="right"],
.b-popover-secondary.bs-popover-auto[x-placement^="right"],
.b-popover-success.bs-popover-auto[x-placement^="right"],
.b-popover-warning.bs-popover-auto[x-placement^="right"],
.bs-popover-auto[x-placement^="right"],
.bs-popover-right {
    margin-left: 0.5rem;
}
.bs-popover-auto[x-placement^="right"] > .arrow,
.bs-popover-right > .arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}
.bs-popover-auto[x-placement^="right"] > .arrow:before,
.bs-popover-right > .arrow:before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="right"] > .arrow:after,
.bs-popover-right > .arrow:after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff;
}
.b-popover-danger.bs-popover-auto[x-placement^="bottom"],
.b-popover-dark.bs-popover-auto[x-placement^="bottom"],
.b-popover-info.bs-popover-auto[x-placement^="bottom"],
.b-popover-light.bs-popover-auto[x-placement^="bottom"],
.b-popover-primary.bs-popover-auto[x-placement^="bottom"],
.b-popover-secondary.bs-popover-auto[x-placement^="bottom"],
.b-popover-success.bs-popover-auto[x-placement^="bottom"],
.b-popover-warning.bs-popover-auto[x-placement^="bottom"],
.bs-popover-auto[x-placement^="bottom"],
.bs-popover-bottom {
    margin-top: 0.5rem;
}
.bs-popover-auto[x-placement^="bottom"] > .arrow,
.bs-popover-bottom > .arrow {
    top: calc(-0.5rem - 1px);
}
.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.bs-popover-bottom > .arrow:before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.bs-popover-bottom > .arrow:after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #fff;
}
.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.bs-popover-bottom .popover-header:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7;
}
.b-popover-danger.bs-popover-auto[x-placement^="left"],
.b-popover-dark.bs-popover-auto[x-placement^="left"],
.b-popover-info.bs-popover-auto[x-placement^="left"],
.b-popover-light.bs-popover-auto[x-placement^="left"],
.b-popover-primary.bs-popover-auto[x-placement^="left"],
.b-popover-secondary.bs-popover-auto[x-placement^="left"],
.b-popover-success.bs-popover-auto[x-placement^="left"],
.b-popover-warning.bs-popover-auto[x-placement^="left"],
.bs-popover-auto[x-placement^="left"],
.bs-popover-left {
    margin-right: 0.5rem;
}
.bs-popover-auto[x-placement^="left"] > .arrow,
.bs-popover-left > .arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0;
}
.bs-popover-auto[x-placement^="left"] > .arrow:before,
.bs-popover-left > .arrow:before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-auto[x-placement^="left"] > .arrow:after,
.bs-popover-left > .arrow:after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #fff;
}
.popover-header {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
    display: none;
}
.popover-body {
    padding: 0.5rem 0.75rem;
    color: #212529;
}
.carousel {
    position: relative;
}
.carousel.pointer-event {
    -ms-touch-action: pan-y;
    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: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block;
}
.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none;
}
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-control-next,
    .carousel-control-prev {
        -webkit-transition: none;
        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: 0.9;
}
.carousel-control-prev {
    left: 0;
}
.carousel-control-next {
    right: 0;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: 50%/100% 100% no-repeat;
}
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8'%3E%3Cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}
.carousel-indicators li {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .carousel-indicators li {
        -webkit-transition: none;
        transition: none;
    }
}
.carousel-indicators .active {
    opacity: 1;
}
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
}
@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes spinner-border {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border 0.75s linear infinite;
    animation: spinner-border 0.75s linear infinite;
}
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: spinner-grow 0.75s linear infinite;
    animation: spinner-grow 0.75s linear infinite;
}
.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}
@media (prefers-reduced-motion: reduce) {
    .spinner-border,
    .spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
    }
}
.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;
}
.bg-primary {
    background-color: #007bff !important;
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0062cc !important;
}
.bg-secondary {
    background-color: #6c757d !important;
}
a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important;
}
.bg-success {
    background-color: #28a745 !important;
}
a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #1e7e34 !important;
}
.bg-info {
    background-color: #17a2b8 !important;
}
a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important;
}
.bg-warning {
    background-color: #ffc107 !important;
}
a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #d39e00 !important;
}
.bg-danger {
    background-color: #dc3545 !important;
}
a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #bd2130 !important;
}
.bg-light {
    background-color: #f8f9fa !important;
}
a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important;
}
.bg-dark {
    background-color: #343a40 !important;
}
a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.border {
    border: 1px solid #dee2e6 !important;
}
.border-top {
    border-top: 1px solid #dee2e6 !important;
}
.border-right {
    border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
    border-left: 1px solid #dee2e6 !important;
}
.border-0 {
    border: 0 !important;
}
.border-top-0 {
    border-top: 0 !important;
}
.border-right-0 {
    border-right: 0 !important;
}
.border-bottom-0 {
    border-bottom: 0 !important;
}
.border-left-0 {
    border-left: 0 !important;
}
.border-primary {
    border-color: #007bff !important;
}
.border-secondary {
    border-color: #6c757d !important;
}
.border-success {
    border-color: #28a745 !important;
}
.border-info {
    border-color: #17a2b8 !important;
}
.border-warning {
    border-color: #ffc107 !important;
}
.border-danger {
    border-color: #dc3545 !important;
}
.border-light {
    border-color: #f8f9fa !important;
}
.border-dark {
    border-color: #343a40 !important;
}
.border-white {
    border-color: #fff !important;
}
.rounded-sm {
    border-radius: 0.2rem !important;
}
.rounded {
    border-radius: 0.25rem !important;
}
.rounded-top {
    border-top-left-radius: 0.25rem !important;
}
.rounded-right,
.rounded-top {
    border-top-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-right {
    border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom,
.rounded-left {
    border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
    border-top-left-radius: 0.25rem !important;
}
.rounded-lg {
    border-radius: 0.3rem !important;
}
.rounded-circle {
    border-radius: 50% !important;
}
.rounded-pill {
    border-radius: 50rem !important;
}
.rounded-0 {
    border-radius: 0 !important;
}
.clearfix:after {
    display: block;
    clear: both;
    content: "";
}
.d-none {
    display: none !important;
}
.d-inline {
    display: inline !important;
}
.d-inline-block {
    display: inline-block !important;
}
.d-block {
    display: block !important;
}
.d-table {
    display: table !important;
}
.d-table-row {
    display: table-row !important;
}
.d-table-cell {
    display: table-cell !important;
}
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
    .d-sm-inline {
        display: inline !important;
    }
    .d-sm-inline-block {
        display: inline-block !important;
    }
    .d-sm-block {
        display: block !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-inline {
        display: inline !important;
    }
    .d-md-inline-block {
        display: inline-block !important;
    }
    .d-md-block {
        display: block !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }
    .d-lg-inline {
        display: inline !important;
    }
    .d-lg-inline-block {
        display: inline-block !important;
    }
    .d-lg-block {
        display: block !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important;
    }
    .d-xl-inline {
        display: inline !important;
    }
    .d-xl-inline-block {
        display: inline-block !important;
    }
    .d-xl-block {
        display: block !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
@media print {
    .d-print-none {
        display: none !important;
    }
    .d-print-inline {
        display: inline !important;
    }
    .d-print-inline-block {
        display: inline-block !important;
    }
    .d-print-block {
        display: block !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: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}
.embed-responsive:before {
    display: block;
    content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.embed-responsive-21by9:before {
    padding-top: 42.85714%;
}
.embed-responsive-16by9:before {
    padding-top: 56.25%;
}
.embed-responsive-4by3:before {
    padding-top: 75%;
}
.embed-responsive-1by1:before {
    padding-top: 100%;
}
.flex-row {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}
.flex-column,
.flex-row {
    -webkit-box-direction: normal !important;
}
.flex-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}
.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}
.flex-column-reverse,
.flex-row-reverse {
    -webkit-box-direction: reverse !important;
}
.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}
.flex-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}
.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}
.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}
.align-items-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}
.align-items-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}
.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}
.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}
.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}
.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}
.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}
.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}
.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}
.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}
.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}
@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-sm-column,
    .flex-sm-row {
        -webkit-box-direction: normal !important;
    }
    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}
@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-md-column,
    .flex-md-row {
        -webkit-box-direction: normal !important;
    }
    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}
@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-lg-column,
    .flex-lg-row {
        -webkit-box-direction: normal !important;
    }
    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}
@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }
    .flex-xl-column,
    .flex-xl-row {
        -webkit-box-direction: normal !important;
    }
    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }
    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }
    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }
    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }
    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }
    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }
    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }
    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }
    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }
    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }
    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }
    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }
    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }
    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }
    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }
    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }
    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }
    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }
    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }
    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }
    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }
    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }
    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }
    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }
    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }
    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }
    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }
}
.float-left {
    float: left !important;
}
.float-right {
    float: right !important;
}
.float-none {
    float: none !important;
}
@media (min-width: 576px) {
    .float-sm-left {
        float: left !important;
    }
    .float-sm-right {
        float: right !important;
    }
    .float-sm-none {
        float: none !important;
    }
}
@media (min-width: 768px) {
    .float-md-left {
        float: left !important;
    }
    .float-md-right {
        float: right !important;
    }
    .float-md-none {
        float: none !important;
    }
}
@media (min-width: 992px) {
    .float-lg-left {
        float: left !important;
    }
    .float-lg-right {
        float: right !important;
    }
    .float-lg-none {
        float: none !important;
    }
}
@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important;
    }
    .float-xl-right {
        float: right !important;
    }
    .float-xl-none {
        float: none !important;
    }
}
.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    -ms-user-select: all !important;
    user-select: all !important;
}
.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}
.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}
.overflow-auto {
    overflow: auto !important;
}
.overflow-hidden {
    overflow: hidden !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;
}
.fixed-top {
    top: 0;
}
.fixed-bottom,
.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}
.fixed-bottom {
    bottom: 0;
}
@supports (position: sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}
.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
    -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !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;
}
.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;
}
.mw-100 {
    max-width: 100% !important;
}
.mh-100 {
    max-height: 100% !important;
}
.min-vw-100 {
    min-width: 100vw !important;
}
.min-vh-100 {
    min-height: 100vh !important;
}
.vw-100 {
    width: 100vw !important;
}
.vh-100 {
    height: 100vh !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0,
.my-0 {
    margin-top: 0 !important;
}
.mr-0,
.mx-0 {
    margin-right: 0 !important;
}
.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
    margin-left: 0 !important;
}
.m-1 {
    margin: 0.25rem !important;
}
.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}
.m-2 {
    margin: 0.5rem !important;
}
.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}
.m-3 {
    margin: 1rem !important;
}
.mt-3,
.my-3 {
    margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}
.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}
.m-4 {
    margin: 1.5rem !important;
}
.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}
.m-5 {
    margin: 3rem !important;
}
.mt-5,
.my-5 {
    margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}
.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0,
.py-0 {
    padding-top: 0 !important;
}
.pr-0,
.px-0 {
    padding-right: 0 !important;
}
.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
    padding-left: 0 !important;
}
.p-1 {
    padding: 0.25rem !important;
}
.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}
.p-2 {
    padding: 0.5rem !important;
}
.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}
.p-3 {
    padding: 1rem !important;
}
.pt-3,
.py-3 {
    padding-top: 1rem !important;
}
.pr-3,
.px-3 {
    padding-right: 1rem !important;
}
.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
    padding-left: 1rem !important;
}
.p-4 {
    padding: 1.5rem !important;
}
.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}
.p-5 {
    padding: 3rem !important;
}
.pt-5,
.py-5 {
    padding-top: 3rem !important;
}
.pr-5,
.px-5 {
    padding-right: 3rem !important;
}
.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
    padding-left: 3rem !important;
}
.m-n1 {
    margin: -0.25rem !important;
}
.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}
.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}
.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}
.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}
.m-n2 {
    margin: -0.5rem !important;
}
.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}
.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}
.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}
.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}
.m-n3 {
    margin: -1rem !important;
}
.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}
.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}
.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}
.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}
.m-n4 {
    margin: -1.5rem !important;
}
.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}
.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}
.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}
.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}
.m-n5 {
    margin: -3rem !important;
}
.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}
.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}
.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}
.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}
.m-auto {
    margin: auto !important;
}
.mt-auto,
.my-auto {
    margin-top: auto !important;
}
.mr-auto,
.mx-auto {
    margin-right: auto !important;
}
.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
    margin-left: auto !important;
}
@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 !important;
    }
    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }
    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }
    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }
    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }
    .m-sm-1 {
        margin: 0.25rem !important;
    }
    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }
    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }
    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }
    .m-sm-2 {
        margin: 0.5rem !important;
    }
    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }
    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }
    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }
    .m-sm-3 {
        margin: 1rem !important;
    }
    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }
    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }
    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }
    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }
    .m-sm-4 {
        margin: 1.5rem !important;
    }
    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }
    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }
    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }
    .m-sm-5 {
        margin: 3rem !important;
    }
    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }
    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }
    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }
    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }
    .p-sm-0 {
        padding: 0 !important;
    }
    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }
    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }
    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }
    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }
    .p-sm-1 {
        padding: 0.25rem !important;
    }
    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }
    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }
    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }
    .p-sm-2 {
        padding: 0.5rem !important;
    }
    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }
    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }
    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }
    .p-sm-3 {
        padding: 1rem !important;
    }
    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }
    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }
    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }
    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }
    .p-sm-4 {
        padding: 1.5rem !important;
    }
    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }
    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }
    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }
    .p-sm-5 {
        padding: 3rem !important;
    }
    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }
    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }
    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }
    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }
    .m-sm-n1 {
        margin: -0.25rem !important;
    }
    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }
    .m-sm-n2 {
        margin: -0.5rem !important;
    }
    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }
    .m-sm-n3 {
        margin: -1rem !important;
    }
    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }
    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }
    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }
    .m-sm-n4 {
        margin: -1.5rem !important;
    }
    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }
    .m-sm-n5 {
        margin: -3rem !important;
    }
    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }
    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }
    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }
    .m-sm-auto {
        margin: auto !important;
    }
    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }
    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }
    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }
    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 !important;
    }
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    .m-md-1 {
        margin: 0.25rem !important;
    }
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    .m-md-2 {
        margin: 0.5rem !important;
    }
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    .m-md-3 {
        margin: 1rem !important;
    }
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    .m-md-4 {
        margin: 1.5rem !important;
    }
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    .m-md-5 {
        margin: 3rem !important;
    }
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    .p-md-0 {
        padding: 0 !important;
    }
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    .p-md-1 {
        padding: 0.25rem !important;
    }
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    .p-md-2 {
        padding: 0.5rem !important;
    }
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    .p-md-3 {
        padding: 1rem !important;
    }
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    .p-md-4 {
        padding: 1.5rem !important;
    }
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    .p-md-5 {
        padding: 3rem !important;
    }
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    .m-md-n1 {
        margin: -0.25rem !important;
    }
    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }
    .m-md-n2 {
        margin: -0.5rem !important;
    }
    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }
    .m-md-n3 {
        margin: -1rem !important;
    }
    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }
    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }
    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }
    .m-md-n4 {
        margin: -1.5rem !important;
    }
    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }
    .m-md-n5 {
        margin: -3rem !important;
    }
    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }
    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }
    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }
    .m-md-auto {
        margin: auto !important;
    }
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 !important;
    }
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    .m-lg-3 {
        margin: 1rem !important;
    }
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    .m-lg-5 {
        margin: 3rem !important;
    }
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    .p-lg-0 {
        padding: 0 !important;
    }
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    .p-lg-3 {
        padding: 1rem !important;
    }
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    .p-lg-5 {
        padding: 3rem !important;
    }
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    .m-lg-n1 {
        margin: -0.25rem !important;
    }
    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }
    .m-lg-n2 {
        margin: -0.5rem !important;
    }
    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }
    .m-lg-n3 {
        margin: -1rem !important;
    }
    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }
    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }
    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }
    .m-lg-n4 {
        margin: -1.5rem !important;
    }
    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }
    .m-lg-n5 {
        margin: -3rem !important;
    }
    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }
    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }
    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }
    .m-lg-auto {
        margin: auto !important;
    }
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 !important;
    }
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    .m-xl-3 {
        margin: 1rem !important;
    }
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    .m-xl-5 {
        margin: 3rem !important;
    }
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    .p-xl-0 {
        padding: 0 !important;
    }
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    .p-xl-3 {
        padding: 1rem !important;
    }
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    .p-xl-5 {
        padding: 3rem !important;
    }
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    .m-xl-n1 {
        margin: -0.25rem !important;
    }
    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }
    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }
    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }
    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }
    .m-xl-n2 {
        margin: -0.5rem !important;
    }
    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }
    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }
    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }
    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }
    .m-xl-n3 {
        margin: -1rem !important;
    }
    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }
    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }
    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }
    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }
    .m-xl-n4 {
        margin: -1.5rem !important;
    }
    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }
    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }
    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }
    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }
    .m-xl-n5 {
        margin: -3rem !important;
    }
    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }
    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }
    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }
    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }
    .m-xl-auto {
        margin: auto !important;
    }
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}
.stretched-link:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: transparent;
}
.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace !important;
}
.text-justify {
    text-align: justify !important;
}
.text-wrap {
    white-space: normal !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}
@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}
@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}
@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}
.text-lowercase {
    text-transform: lowercase !important;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.text-capitalize {
    text-transform: capitalize !important;
}
.font-weight-light {
    font-weight: 300 !important;
}
.font-weight-lighter {
    font-weight: lighter !important;
}
.font-weight-normal {
    font-weight: 400 !important;
}
.font-weight-bold {
    font-weight: 700 !important;
}
.font-weight-bolder {
    font-weight: bolder !important;
}
.font-italic {
    font-style: italic !important;
}
.text-white {
    color: #fff !important;
}
.text-primary {
    color: #007bff !important;
}
a.text-primary:focus,
a.text-primary:hover {
    color: #0056b3 !important;
}
.text-secondary {
    color: #6c757d !important;
}
a.text-secondary:focus,
a.text-secondary:hover {
    color: #494f54 !important;
}
.text-success {
    color: #28a745 !important;
}
a.text-success:focus,
a.text-success:hover {
    color: #19692c !important;
}
.text-info {
    color: #17a2b8 !important;
}
a.text-info:focus,
a.text-info:hover {
    color: #0f6674 !important;
}
.text-warning {
    color: #ffc107 !important;
}
a.text-warning:focus,
a.text-warning:hover {
    color: #ba8b00 !important;
}
.text-danger {
    color: #dc3545 !important;
}
a.text-danger:focus,
a.text-danger:hover {
    color: #a71d2a !important;
}
.text-light {
    color: #f8f9fa !important;
}
a.text-light:focus,
a.text-light:hover {
    color: #cbd3da !important;
}
.text-dark {
    color: #343a40 !important;
}
a.text-dark:focus,
a.text-dark:hover {
    color: #121416 !important;
}
.text-body {
    color: #212529 !important;
}
.text-muted {
    color: #6c757d !important;
}
.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
    color: hsla(0, 0%, 100%, 0.5) !important;
}
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}
.text-decoration-none {
    text-decoration: none !important;
}
.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important;
}
.text-reset {
    color: inherit !important;
}
.visible {
    visibility: visible !important;
}
.invisible {
    visibility: hidden !important;
}
@media print {
    *,
    :after,
    :before {
        text-shadow: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    a:not(.btn) {
        text-decoration: underline;
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    pre {
        white-space: pre-wrap !important;
    }
    blockquote,
    pre {
        border: 1px solid #adb5bd;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    img,
    tr {
        page-break-inside: avoid;
    }
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    @page {
        size: a3;
    }
    .container,
    body {
        min-width: 992px !important;
    }
    .navbar {
        display: none;
    }
    .badge {
        border: 1px solid #000;
    }
    .table {
        border-collapse: collapse !important;
    }
    .table td,
    .table th {
        background-color: #fff !important;
    }
    .table-bordered td,
    .table-bordered th {
        border: 1px solid #dee2e6 !important;
    }
    .table-dark {
        color: inherit;
    }
    .table-dark tbody + tbody,
    .table-dark td,
    .table-dark th,
    .table-dark thead th {
        border-color: #dee2e6;
    }
    .table .thead-dark th {
        color: inherit;
        border-color: #dee2e6;
    }
}
.bv-no-focus-ring:focus {
    outline: none;
}
@media (max-width: 575.98px) {
    .bv-d-xs-down-none {
        display: none !important;
    }
}
@media (max-width: 767.98px) {
    .bv-d-sm-down-none {
        display: none !important;
    }
}
@media (max-width: 991.98px) {
    .bv-d-md-down-none {
        display: none !important;
    }
}
@media (max-width: 1199.98px) {
    .bv-d-lg-down-none {
        display: none !important;
    }
}
.bv-d-xl-down-none {
    display: none !important;
}
.form-control.focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control.focus.is-valid {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.form-control.focus.is-invalid {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.b-avatar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: inherit;
    font-weight: 400;
    line-height: 1;
    max-width: 100%;
    max-height: auto;
    text-align: center;
    overflow: visible;
    position: relative;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.b-avatar:focus {
    outline: 0;
}
.b-avatar.btn,
.b-avatar[href] {
    padding: 0;
    border: 0;
}
.b-avatar.btn .b-avatar-img img,
.b-avatar[href] .b-avatar-img img {
    -webkit-transition: -webkit-transform 0.15s ease-in-out;
    transition: -webkit-transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out;
    transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}
.b-avatar.btn:not(:disabled):not(.disabled),
.b-avatar[href]:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,
.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
.b-avatar.disabled,
.b-avatar:disabled,
.b-avatar[disabled] {
    opacity: 0.65;
    pointer-events: none;
}
.b-avatar .b-avatar-custom,
.b-avatar .b-avatar-img,
.b-avatar .b-avatar-text {
    border-radius: inherit;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
}
.b-avatar .b-avatar-text {
    text-transform: uppercase;
    white-space: nowrap;
}
.b-avatar[href] {
    text-decoration: none;
}
.b-avatar > .b-icon {
    width: 60%;
    height: auto;
    max-width: 100%;
}
.b-avatar .b-avatar-img img {
    width: 100%;
    height: 100%;
    max-height: auto;
    border-radius: inherit;
    -o-object-fit: cover;
    object-fit: cover;
}
.b-avatar .b-avatar-badge {
    position: absolute;
    min-height: 1.5em;
    min-width: 1.5em;
    padding: 0.25em;
    line-height: 1;
    border-radius: 10em;
    font-size: 70%;
    font-weight: 700;
    z-index: 1;
}
.b-avatar-sm {
    width: 1.5rem;
    height: 1.5rem;
}
.b-avatar-sm .b-avatar-text {
    font-size: 0.6rem;
}
.b-avatar-sm .b-avatar-badge {
    font-size: 0.42rem;
}
.b-avatar-lg {
    width: 3.5rem;
    height: 3.5rem;
}
.b-avatar-lg .b-avatar-text {
    font-size: 1.4rem;
}
.b-avatar-lg .b-avatar-badge {
    font-size: 0.98rem;
}
.b-avatar-group .b-avatar-group-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.b-avatar-group .b-avatar {
    border: 1px solid #dee2e6;
}
.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled),
.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled) {
    z-index: 1;
}
.b-calendar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.b-calendar .b-calendar-inner {
    min-width: 250px;
}
.b-calendar .b-calendar-header,
.b-calendar .b-calendar-nav {
    margin-bottom: 0.25rem;
}
.b-calendar .b-calendar-nav .btn {
    padding: 0.25rem;
}
.b-calendar output {
    padding: 0.25rem;
    font-size: 80%;
}
.b-calendar output.readonly {
    background-color: #e9ecef;
    opacity: 1;
}
.b-calendar .b-calendar-footer {
    margin-top: 0.5rem;
}
.b-calendar .b-calendar-grid {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.b-calendar .b-calendar-grid .row {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.b-calendar .b-calendar-grid-caption {
    padding: 0.25rem;
}
.b-calendar .b-calendar-grid-body .col[data-date] .btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
    line-height: 1;
    margin: 3px auto;
    padding: 9px 0;
}
.b-calendar .btn.disabled,
.b-calendar .btn:disabled,
.b-calendar .btn[aria-disabled="true"] {
    cursor: default;
    pointer-events: none;
}
.card-img-left {
    border-top-left-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-img-right {
    border-top-right-radius: calc(0.25rem - 1px);
    border-bottom-right-radius: calc(0.25rem - 1px);
}
.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret:before,
.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret:after {
    display: none !important;
}
.dropdown .dropdown-menu:focus {
    outline: none;
}
.b-dropdown-form {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    width: 100%;
    clear: both;
    font-weight: 400;
}
.b-dropdown-form:focus {
    outline: 1px dotted !important;
    outline: 5px auto -webkit-focus-ring-color !important;
}
.b-dropdown-form.disabled,
.b-dropdown-form:disabled {
    outline: 0 !important;
    color: #adb5bd;
    pointer-events: none;
}
.b-dropdown-text {
    display: inline-block;
    padding: 0.25rem 1.5rem;
    margin-bottom: 0;
    width: 100%;
    clear: both;
    font-weight: lighter;
}
.custom-checkbox.b-custom-control-lg,
.input-group-lg .custom-checkbox {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 1.875rem;
}
.custom-checkbox.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-checkbox .custom-control-label:before {
    top: 0.3125rem;
    left: -1.875rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.3rem;
}
.custom-checkbox.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-checkbox .custom-control-label:after {
    top: 0.3125rem;
    left: -1.875rem;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 50% 50%;
}
.custom-checkbox.b-custom-control-sm,
.input-group-sm .custom-checkbox {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.3125rem;
}
.custom-checkbox.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-checkbox .custom-control-label:before {
    top: 0.21875rem;
    left: -1.3125rem;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 0.2rem;
}
.custom-checkbox.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-checkbox .custom-control-label:after {
    top: 0.21875rem;
    left: -1.3125rem;
    width: 0.875rem;
    height: 0.875rem;
    background-size: 50% 50%;
}
.custom-switch.b-custom-control-lg,
.input-group-lg .custom-switch {
    padding-left: 2.8125rem;
}
.custom-switch.b-custom-control-lg .custom-control-label,
.input-group-lg .custom-switch .custom-control-label {
    font-size: 1.25rem;
    line-height: 1.5;
}
.custom-switch.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-switch .custom-control-label:before {
    top: 0.3125rem;
    height: 1.25rem;
    left: -2.8125rem;
    width: 2.1875rem;
    border-radius: 0.625rem;
}
.custom-switch.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-switch .custom-control-label:after {
    top: calc(0.3125rem + 2px);
    left: calc(-2.8125rem + 2px);
    width: calc(1.25rem - 4px);
    height: calc(1.25rem - 4px);
    border-radius: 0.625rem;
    background-size: 50% 50%;
}
.custom-switch.b-custom-control-lg .custom-control-input:checked ~ .custom-control-label:after,
.input-group-lg .custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    -webkit-transform: translateX(0.9375rem);
    transform: translateX(0.9375rem);
}
.custom-switch.b-custom-control-sm,
.input-group-sm .custom-switch {
    padding-left: 1.96875rem;
}
.custom-switch.b-custom-control-sm .custom-control-label,
.input-group-sm .custom-switch .custom-control-label {
    font-size: 0.875rem;
    line-height: 1.5;
}
.custom-switch.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-switch .custom-control-label:before {
    top: 0.21875rem;
    left: -1.96875rem;
    width: 1.53125rem;
    height: 0.875rem;
    border-radius: 0.4375rem;
}
.custom-switch.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-switch .custom-control-label:after {
    top: calc(0.21875rem + 2px);
    left: calc(-1.96875rem + 2px);
    width: calc(0.875rem - 4px);
    height: calc(0.875rem - 4px);
    border-radius: 0.4375rem;
    background-size: 50% 50%;
}
.custom-switch.b-custom-control-sm .custom-control-input:checked ~ .custom-control-label:after,
.input-group-sm .custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    -webkit-transform: translateX(0.65625rem);
    transform: translateX(0.65625rem);
}
.input-group > .input-group-append:last-child > .btn-group:not(:last-child):not(.dropdown-toggle) > .btn,
.input-group > .input-group-append:not(:last-child) > .btn-group > .btn,
.input-group > .input-group-prepend > .btn-group > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn-group > .btn,
.input-group > .input-group-prepend:first-child > .btn-group:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .btn-group > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.b-form-btn-label-control.form-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: auto;
    padding: 0;
    background-image: none;
}
.input-group .b-form-btn-label-control.form-control {
    padding: 0;
}
.b-form-btn-label-control.form-control[dir="rtl"],
[dir="rtl"] .b-form-btn-label-control.form-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.b-form-btn-label-control.form-control[dir="rtl"] > label,
[dir="rtl"] .b-form-btn-label-control.form-control > label {
    text-align: right;
}
.b-form-btn-label-control.form-control > .btn {
    line-height: 1;
    font-size: inherit;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 0;
}
.b-form-btn-label-control.form-control > .btn:disabled {
    pointer-events: none;
}
.b-form-btn-label-control.form-control.is-valid > .btn {
    color: #28a745;
}
.b-form-btn-label-control.form-control.is-invalid > .btn {
    color: #dc3545;
}
.b-form-btn-label-control.form-control > .dropdown-menu {
    padding: 0.5rem;
}
.b-form-btn-label-control.form-control > .form-control {
    height: auto;
    min-height: calc(1.5em + 0.75rem);
    padding-left: 0.25rem;
    margin: 0;
    border: 0;
    outline: 0;
    background: transparent;
    word-break: break-word;
    font-size: inherit;
    white-space: normal;
    cursor: pointer;
}
.b-form-btn-label-control.form-control > .form-control.form-control-sm {
    min-height: calc(1.5em + 0.5rem);
}
.b-form-btn-label-control.form-control > .form-control.form-control-lg {
    min-height: calc(1.5em + 1rem);
}
.input-group.input-group-sm .b-form-btn-label-control.form-control > .form-control {
    min-height: calc(1.5em + 0.5rem);
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.input-group.input-group-lg .b-form-btn-label-control.form-control > .form-control {
    min-height: calc(1.5em + 1rem);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.b-form-btn-label-control.form-control[aria-disabled="true"],
.b-form-btn-label-control.form-control[aria-readonly="true"] {
    background-color: #e9ecef;
    opacity: 1;
}
.b-form-btn-label-control.form-control[aria-disabled="true"] {
    pointer-events: none;
}
.b-form-btn-label-control.form-control[aria-disabled="true"] > label {
    cursor: default;
}
.b-form-btn-label-control.btn-group > .dropdown-menu {
    padding: 0.5rem;
}
.custom-file-label {
    white-space: nowrap;
    overflow-x: hidden;
}
.b-custom-control-lg.custom-file,
.b-custom-control-lg .custom-file-input,
.b-custom-control-lg .custom-file-label,
.input-group-lg.custom-file,
.input-group-lg .custom-file-input,
.input-group-lg .custom-file-label {
    font-size: 1.25rem;
    height: calc(1.5em + 1rem + 2px);
}
.b-custom-control-lg .custom-file-label,
.b-custom-control-lg .custom-file-label:after,
.input-group-lg .custom-file-label,
.input-group-lg .custom-file-label:after {
    padding: 0.5rem 1rem;
    line-height: 1.5;
}
.b-custom-control-lg .custom-file-label,
.input-group-lg .custom-file-label {
    border-radius: 0.3rem;
}
.b-custom-control-lg .custom-file-label:after,
.input-group-lg .custom-file-label:after {
    font-size: inherit;
    height: calc(1.5em + 1rem);
    border-radius: 0 0.3rem 0.3rem 0;
}
.b-custom-control-sm.custom-file,
.b-custom-control-sm .custom-file-input,
.b-custom-control-sm .custom-file-label,
.input-group-sm.custom-file,
.input-group-sm .custom-file-input,
.input-group-sm .custom-file-label {
    font-size: 0.875rem;
    height: calc(1.5em + 0.5rem + 2px);
}
.b-custom-control-sm .custom-file-label,
.b-custom-control-sm .custom-file-label:after,
.input-group-sm .custom-file-label,
.input-group-sm .custom-file-label:after {
    padding: 0.25rem 0.5rem;
    line-height: 1.5;
}
.b-custom-control-sm .custom-file-label,
.input-group-sm .custom-file-label {
    border-radius: 0.2rem;
}
.b-custom-control-sm .custom-file-label:after,
.input-group-sm .custom-file-label:after {
    font-size: inherit;
    height: calc(1.5em + 0.5rem);
    border-radius: 0 0.2rem 0.2rem 0;
}
.form-control.is-invalid,
.form-control.is-valid,
.was-validated .form-control:invalid,
.was-validated .form-control:valid {
    background-position: right calc(0.375em + 0.1875rem) center;
}
input[type="color"].form-control {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.125rem 0.25rem;
}
.input-group-sm input[type="color"].form-control,
input[type="color"].form-control.form-control-sm {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.125rem 0.25rem;
}
.input-group-lg input[type="color"].form-control,
input[type="color"].form-control.form-control-lg {
    height: calc(1.5em + 1rem + 2px);
    padding: 0.125rem 0.25rem;
}
input[type="color"].form-control:disabled {
    background-color: #adb5bd;
    opacity: 0.65;
}
.input-group > .custom-range {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
.input-group > .custom-file + .custom-range,
.input-group > .custom-range + .custom-file,
.input-group > .custom-range + .custom-range,
.input-group > .custom-range + .custom-select,
.input-group > .custom-range + .form-control,
.input-group > .custom-range + .form-control-plaintext,
.input-group > .custom-select + .custom-range,
.input-group > .form-control + .custom-range,
.input-group > .form-control-plaintext + .custom-range {
    margin-left: -1px;
}
.input-group > .custom-range:focus {
    z-index: 3;
}
.input-group > .custom-range:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.input-group > .custom-range:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group > .custom-range {
    padding: 0 0.75rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    height: calc(1.5em + 0.75rem + 2px);
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .input-group > .custom-range {
        -webkit-transition: none;
        transition: none;
    }
}
.input-group > .custom-range:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.input-group > .custom-range:disabled,
.input-group > .custom-range[readonly] {
    background-color: #e9ecef;
}
.input-group-lg > .custom-range {
    height: calc(1.5em + 1rem + 2px);
    padding: 0 1rem;
    border-radius: 0.3rem;
}
.input-group-sm > .custom-range {
    height: calc(1.5em + 0.5rem + 2px);
    padding: 0 0.5rem;
    border-radius: 0.2rem;
}
.input-group .custom-range.is-valid,
.was-validated .input-group .custom-range:valid {
    border-color: #28a745;
}
.input-group .custom-range.is-valid:focus,
.was-validated .input-group .custom-range:valid:focus {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.custom-range.is-valid:focus::-webkit-slider-thumb,
.was-validated .custom-range:valid:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}
.custom-range.is-valid:focus::-moz-range-thumb,
.was-validated .custom-range:valid:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}
.custom-range.is-valid:focus::-ms-thumb,
.was-validated .custom-range:valid:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #9be7ac;
}
.custom-range.is-valid::-webkit-slider-thumb,
.was-validated .custom-range:valid::-webkit-slider-thumb {
    background-color: #28a745;
    background-image: none;
}
.custom-range.is-valid::-webkit-slider-thumb:active,
.was-validated .custom-range:valid::-webkit-slider-thumb:active {
    background-color: #9be7ac;
    background-image: none;
}
.custom-range.is-valid::-webkit-slider-runnable-track,
.was-validated .custom-range:valid::-webkit-slider-runnable-track {
    background-color: rgba(40, 167, 69, 0.35);
}
.custom-range.is-valid::-moz-range-thumb,
.was-validated .custom-range:valid::-moz-range-thumb {
    background-color: #28a745;
    background-image: none;
}
.custom-range.is-valid::-moz-range-thumb:active,
.was-validated .custom-range:valid::-moz-range-thumb:active {
    background-color: #9be7ac;
    background-image: none;
}
.custom-range.is-valid::-moz-range-track,
.was-validated .custom-range:valid::-moz-range-track {
    background: rgba(40, 167, 69, 0.35);
}
.custom-range.is-valid ~ .valid-feedback,
.custom-range.is-valid ~ .valid-tooltip,
.was-validated .custom-range:valid ~ .valid-feedback,
.was-validated .custom-range:valid ~ .valid-tooltip {
    display: block;
}
.custom-range.is-valid::-ms-thumb,
.was-validated .custom-range:valid::-ms-thumb {
    background-color: #28a745;
    background-image: none;
}
.custom-range.is-valid::-ms-thumb:active,
.was-validated .custom-range:valid::-ms-thumb:active {
    background-color: #9be7ac;
    background-image: none;
}
.custom-range.is-valid::-ms-track-lower,
.custom-range.is-valid::-ms-track-upper,
.was-validated .custom-range:valid::-ms-track-lower,
.was-validated .custom-range:valid::-ms-track-upper {
    background: rgba(40, 167, 69, 0.35);
}
.input-group .custom-range.is-invalid,
.was-validated .input-group .custom-range:invalid {
    border-color: #dc3545;
}
.input-group .custom-range.is-invalid:focus,
.was-validated .input-group .custom-range:invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.custom-range.is-invalid:focus::-webkit-slider-thumb,
.was-validated .custom-range:invalid:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}
.custom-range.is-invalid:focus::-moz-range-thumb,
.was-validated .custom-range:invalid:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}
.custom-range.is-invalid:focus::-ms-thumb,
.was-validated .custom-range:invalid:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #f6cdd1;
}
.custom-range.is-invalid::-webkit-slider-thumb,
.was-validated .custom-range:invalid::-webkit-slider-thumb {
    background-color: #dc3545;
    background-image: none;
}
.custom-range.is-invalid::-webkit-slider-thumb:active,
.was-validated .custom-range:invalid::-webkit-slider-thumb:active {
    background-color: #f6cdd1;
    background-image: none;
}
.custom-range.is-invalid::-webkit-slider-runnable-track,
.was-validated .custom-range:invalid::-webkit-slider-runnable-track {
    background-color: rgba(220, 53, 69, 0.35);
}
.custom-range.is-invalid::-moz-range-thumb,
.was-validated .custom-range:invalid::-moz-range-thumb {
    background-color: #dc3545;
    background-image: none;
}
.custom-range.is-invalid::-moz-range-thumb:active,
.was-validated .custom-range:invalid::-moz-range-thumb:active {
    background-color: #f6cdd1;
    background-image: none;
}
.custom-range.is-invalid::-moz-range-track,
.was-validated .custom-range:invalid::-moz-range-track {
    background: rgba(220, 53, 69, 0.35);
}
.custom-range.is-invalid ~ .invalid-feedback,
.custom-range.is-invalid ~ .invalid-tooltip,
.was-validated .custom-range:invalid ~ .invalid-feedback,
.was-validated .custom-range:invalid ~ .invalid-tooltip {
    display: block;
}
.custom-range.is-invalid::-ms-thumb,
.was-validated .custom-range:invalid::-ms-thumb {
    background-color: #dc3545;
    background-image: none;
}
.custom-range.is-invalid::-ms-thumb:active,
.was-validated .custom-range:invalid::-ms-thumb:active {
    background-color: #f6cdd1;
    background-image: none;
}
.custom-range.is-invalid::-ms-track-lower,
.custom-range.is-invalid::-ms-track-upper,
.was-validated .custom-range:invalid::-ms-track-lower,
.was-validated .custom-range:invalid::-ms-track-upper {
    background: rgba(220, 53, 69, 0.35);
}
.custom-radio.b-custom-control-lg,
.input-group-lg .custom-radio {
    font-size: 1.25rem;
    line-height: 1.5;
    padding-left: 1.875rem;
}
.custom-radio.b-custom-control-lg .custom-control-label:before,
.input-group-lg .custom-radio .custom-control-label:before {
    top: 0.3125rem;
    left: -1.875rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
}
.custom-radio.b-custom-control-lg .custom-control-label:after,
.input-group-lg .custom-radio .custom-control-label:after {
    top: 0.3125rem;
    left: -1.875rem;
    width: 1.25rem;
    height: 1.25rem;
    background: no-repeat 50%/50% 50%;
}
.custom-radio.b-custom-control-sm,
.input-group-sm .custom-radio {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 1.3125rem;
}
.custom-radio.b-custom-control-sm .custom-control-label:before,
.input-group-sm .custom-radio .custom-control-label:before {
    top: 0.21875rem;
    left: -1.3125rem;
    width: 0.875rem;
    height: 0.875rem;
    border-radius: 50%;
}
.custom-radio.b-custom-control-sm .custom-control-label:after,
.input-group-sm .custom-radio .custom-control-label:after {
    top: 0.21875rem;
    left: -1.3125rem;
    width: 0.875rem;
    height: 0.875rem;
    background: no-repeat 50%/50% 50%;
}
.b-rating {
    text-align: center;
}
.b-rating.d-inline-flex {
    width: auto;
}
.b-rating .b-rating-star,
.b-rating .b-rating-value {
    padding: 0 0.25em;
}
.b-rating .b-rating-value {
    min-width: 2.5em;
}
.b-rating .b-rating-star {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: 0;
}
.b-rating .b-rating-star,
.b-rating .b-rating-star .b-rating-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.b-rating .b-rating-star .b-rating-icon {
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.b-rating.disabled,
.b-rating:disabled {
    background-color: #e9ecef;
    color: #6c757d;
}
.b-rating:not(.disabled):not(.readonly) .b-rating-star {
    cursor: pointer;
}
.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon,
.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}
.b-rating[dir="rtl"] .b-rating-star-half {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
.b-form-spinbutton {
    text-align: center;
    overflow: hidden;
    background-image: none;
    padding: 0;
}
.b-form-spinbutton[dir="rtl"]:not(.flex-column),
[dir="rtl"] .b-form-spinbutton:not(.flex-column) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.b-form-spinbutton output {
    font-size: inherit;
    outline: 0;
    border: 0;
    background-color: transparent;
    width: auto;
    margin: 0;
    padding: 0 0.25rem;
}
.b-form-spinbutton output > bdi,
.b-form-spinbutton output > div {
    display: block;
    min-width: 2.25em;
    height: 1.5em;
}
.b-form-spinbutton.flex-column {
    height: auto;
    width: auto;
}
.b-form-spinbutton.flex-column output {
    margin: 0 0.25rem;
    padding: 0.25rem 0;
}
.b-form-spinbutton:not(.d-inline-flex):not(.flex-column) {
    output-width: 100%;
}
.b-form-spinbutton.d-inline-flex:not(.flex-column) {
    width: auto;
}
.b-form-spinbutton .btn {
    line-height: 1;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.b-form-spinbutton .btn:disabled {
    pointer-events: none;
}
.b-form-spinbutton .btn:hover:not(:disabled) > div > .b-icon {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}
.b-form-spinbutton.disabled,
.b-form-spinbutton.readonly {
    background-color: #e9ecef;
}
.b-form-spinbutton.disabled {
    pointer-events: none;
}
.b-form-tags .b-form-tags-list {
    margin-top: -0.25rem;
}
.b-form-tags .b-form-tags-list .b-form-tag,
.b-form-tags .b-form-tags-list .b-from-tags-field {
    margin-top: 0.25rem;
}
.b-form-tags.focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.b-form-tags.focus.is-valid {
    border-color: #28a745;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.b-form-tags.focus.is-invalid {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.b-form-tags.disabled {
    background-color: #e9ecef;
}
.b-form-tag {
    font-size: 75%;
    font-weight: 400;
    line-height: 1.5;
    margin-right: 0.25rem;
}
.b-form-tag.disabled {
    opacity: 0.75;
}
.b-form-tag > button.b-form-tag-remove {
    color: inherit;
    font-size: 125%;
    line-height: 1;
    float: none;
    margin-left: 0.25rem;
}
.form-control-lg .b-form-tag,
.form-control-sm .b-form-tag {
    line-height: 1.5;
}
.media-aside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 1rem;
}
.media-aside-right {
    margin-right: 0;
    margin-left: 1rem;
}
.modal-backdrop {
    opacity: 0.5;
}
.b-pagination-pills .page-item .page-link {
    border-radius: 50rem !important;
    margin-left: 0.25rem;
    line-height: 1;
}
.b-pagination-pills .page-item:first-child .page-link {
    margin-left: 0;
}
.popover.b-popover {
    display: block;
    opacity: 1;
    outline: 0;
}
.popover.b-popover.fade:not(.show) {
    opacity: 0;
}
.popover.b-popover.show {
    opacity: 1;
}
.b-popover-primary.popover {
    background-color: #cce5ff;
    border-color: #b8daff;
}
.b-popover-primary.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-primary.bs-popover-top > .arrow:before {
    border-top-color: #b8daff;
}
.b-popover-primary.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-primary.bs-popover-top > .arrow:after {
    border-top-color: #cce5ff;
}
.b-popover-primary.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-primary.bs-popover-right > .arrow:before {
    border-right-color: #b8daff;
}
.b-popover-primary.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-primary.bs-popover-right > .arrow:after {
    border-right-color: #cce5ff;
}
.b-popover-primary.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-primary.bs-popover-bottom > .arrow:before {
    border-bottom-color: #b8daff;
}
.b-popover-primary.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-primary.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-primary.bs-popover-bottom .popover-header:before,
.b-popover-primary.bs-popover-bottom > .arrow:after {
    border-bottom-color: #bdddff;
}
.b-popover-primary.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-primary.bs-popover-left > .arrow:before {
    border-left-color: #b8daff;
}
.b-popover-primary.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-primary.bs-popover-left > .arrow:after {
    border-left-color: #cce5ff;
}
.b-popover-primary .popover-header {
    color: #212529;
    background-color: #bdddff;
    border-bottom-color: #a3d0ff;
}
.b-popover-primary .popover-body {
    color: #004085;
}
.b-popover-secondary.popover {
    background-color: #e2e3e5;
    border-color: #d6d8db;
}
.b-popover-secondary.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-secondary.bs-popover-top > .arrow:before {
    border-top-color: #d6d8db;
}
.b-popover-secondary.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-secondary.bs-popover-top > .arrow:after {
    border-top-color: #e2e3e5;
}
.b-popover-secondary.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-secondary.bs-popover-right > .arrow:before {
    border-right-color: #d6d8db;
}
.b-popover-secondary.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-secondary.bs-popover-right > .arrow:after {
    border-right-color: #e2e3e5;
}
.b-popover-secondary.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-secondary.bs-popover-bottom > .arrow:before {
    border-bottom-color: #d6d8db;
}
.b-popover-secondary.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-secondary.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-secondary.bs-popover-bottom .popover-header:before,
.b-popover-secondary.bs-popover-bottom > .arrow:after {
    border-bottom-color: #dadbde;
}
.b-popover-secondary.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-secondary.bs-popover-left > .arrow:before {
    border-left-color: #d6d8db;
}
.b-popover-secondary.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-secondary.bs-popover-left > .arrow:after {
    border-left-color: #e2e3e5;
}
.b-popover-secondary .popover-header {
    color: #212529;
    background-color: #dadbde;
    border-bottom-color: #ccced2;
}
.b-popover-secondary .popover-body {
    color: #383d41;
}
.b-popover-success.popover {
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.b-popover-success.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-success.bs-popover-top > .arrow:before {
    border-top-color: #c3e6cb;
}
.b-popover-success.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-success.bs-popover-top > .arrow:after {
    border-top-color: #d4edda;
}
.b-popover-success.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-success.bs-popover-right > .arrow:before {
    border-right-color: #c3e6cb;
}
.b-popover-success.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-success.bs-popover-right > .arrow:after {
    border-right-color: #d4edda;
}
.b-popover-success.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-success.bs-popover-bottom > .arrow:before {
    border-bottom-color: #c3e6cb;
}
.b-popover-success.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-success.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-success.bs-popover-bottom .popover-header:before,
.b-popover-success.bs-popover-bottom > .arrow:after {
    border-bottom-color: #c9e8d1;
}
.b-popover-success.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-success.bs-popover-left > .arrow:before {
    border-left-color: #c3e6cb;
}
.b-popover-success.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-success.bs-popover-left > .arrow:after {
    border-left-color: #d4edda;
}
.b-popover-success .popover-header {
    color: #212529;
    background-color: #c9e8d1;
    border-bottom-color: #b7e1c1;
}
.b-popover-success .popover-body {
    color: #155724;
}
.b-popover-info.popover {
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.b-popover-info.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-info.bs-popover-top > .arrow:before {
    border-top-color: #bee5eb;
}
.b-popover-info.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-info.bs-popover-top > .arrow:after {
    border-top-color: #d1ecf1;
}
.b-popover-info.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-info.bs-popover-right > .arrow:before {
    border-right-color: #bee5eb;
}
.b-popover-info.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-info.bs-popover-right > .arrow:after {
    border-right-color: #d1ecf1;
}
.b-popover-info.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-info.bs-popover-bottom > .arrow:before {
    border-bottom-color: #bee5eb;
}
.b-popover-info.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-info.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-info.bs-popover-bottom .popover-header:before,
.b-popover-info.bs-popover-bottom > .arrow:after {
    border-bottom-color: #c5e7ed;
}
.b-popover-info.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-info.bs-popover-left > .arrow:before {
    border-left-color: #bee5eb;
}
.b-popover-info.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-info.bs-popover-left > .arrow:after {
    border-left-color: #d1ecf1;
}
.b-popover-info .popover-header {
    color: #212529;
    background-color: #c5e7ed;
    border-bottom-color: #b2dfe7;
}
.b-popover-info .popover-body {
    color: #0c5460;
}
.b-popover-warning.popover {
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.b-popover-warning.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-warning.bs-popover-top > .arrow:before {
    border-top-color: #ffeeba;
}
.b-popover-warning.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-warning.bs-popover-top > .arrow:after {
    border-top-color: #fff3cd;
}
.b-popover-warning.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-warning.bs-popover-right > .arrow:before {
    border-right-color: #ffeeba;
}
.b-popover-warning.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-warning.bs-popover-right > .arrow:after {
    border-right-color: #fff3cd;
}
.b-popover-warning.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-warning.bs-popover-bottom > .arrow:before {
    border-bottom-color: #ffeeba;
}
.b-popover-warning.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-warning.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-warning.bs-popover-bottom .popover-header:before,
.b-popover-warning.bs-popover-bottom > .arrow:after {
    border-bottom-color: #ffefbe;
}
.b-popover-warning.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-warning.bs-popover-left > .arrow:before {
    border-left-color: #ffeeba;
}
.b-popover-warning.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-warning.bs-popover-left > .arrow:after {
    border-left-color: #fff3cd;
}
.b-popover-warning .popover-header {
    color: #212529;
    background-color: #ffefbe;
    border-bottom-color: #ffe9a4;
}
.b-popover-warning .popover-body {
    color: #856404;
}
.b-popover-danger.popover {
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.b-popover-danger.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-danger.bs-popover-top > .arrow:before {
    border-top-color: #f5c6cb;
}
.b-popover-danger.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-danger.bs-popover-top > .arrow:after {
    border-top-color: #f8d7da;
}
.b-popover-danger.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-danger.bs-popover-right > .arrow:before {
    border-right-color: #f5c6cb;
}
.b-popover-danger.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-danger.bs-popover-right > .arrow:after {
    border-right-color: #f8d7da;
}
.b-popover-danger.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-danger.bs-popover-bottom > .arrow:before {
    border-bottom-color: #f5c6cb;
}
.b-popover-danger.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-danger.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-danger.bs-popover-bottom .popover-header:before,
.b-popover-danger.bs-popover-bottom > .arrow:after {
    border-bottom-color: #f6cace;
}
.b-popover-danger.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-danger.bs-popover-left > .arrow:before {
    border-left-color: #f5c6cb;
}
.b-popover-danger.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-danger.bs-popover-left > .arrow:after {
    border-left-color: #f8d7da;
}
.b-popover-danger .popover-header {
    color: #212529;
    background-color: #f6cace;
    border-bottom-color: #f2b4ba;
}
.b-popover-danger .popover-body {
    color: #721c24;
}
.b-popover-light.popover {
    background-color: #fefefe;
    border-color: #fdfdfe;
}
.b-popover-light.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-light.bs-popover-top > .arrow:before {
    border-top-color: #fdfdfe;
}
.b-popover-light.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-light.bs-popover-top > .arrow:after {
    border-top-color: #fefefe;
}
.b-popover-light.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-light.bs-popover-right > .arrow:before {
    border-right-color: #fdfdfe;
}
.b-popover-light.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-light.bs-popover-right > .arrow:after {
    border-right-color: #fefefe;
}
.b-popover-light.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-light.bs-popover-bottom > .arrow:before {
    border-bottom-color: #fdfdfe;
}
.b-popover-light.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-light.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-light.bs-popover-bottom .popover-header:before,
.b-popover-light.bs-popover-bottom > .arrow:after {
    border-bottom-color: #f6f6f6;
}
.b-popover-light.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-light.bs-popover-left > .arrow:before {
    border-left-color: #fdfdfe;
}
.b-popover-light.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-light.bs-popover-left > .arrow:after {
    border-left-color: #fefefe;
}
.b-popover-light .popover-header {
    color: #212529;
    background-color: #f6f6f6;
    border-bottom-color: #eaeaea;
}
.b-popover-light .popover-body {
    color: #818182;
}
.b-popover-dark.popover {
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}
.b-popover-dark.bs-popover-auto[x-placement^="top"] > .arrow:before,
.b-popover-dark.bs-popover-top > .arrow:before {
    border-top-color: #c6c8ca;
}
.b-popover-dark.bs-popover-auto[x-placement^="top"] > .arrow:after,
.b-popover-dark.bs-popover-top > .arrow:after {
    border-top-color: #d6d8d9;
}
.b-popover-dark.bs-popover-auto[x-placement^="right"] > .arrow:before,
.b-popover-dark.bs-popover-right > .arrow:before {
    border-right-color: #c6c8ca;
}
.b-popover-dark.bs-popover-auto[x-placement^="right"] > .arrow:after,
.b-popover-dark.bs-popover-right > .arrow:after {
    border-right-color: #d6d8d9;
}
.b-popover-dark.bs-popover-auto[x-placement^="bottom"] > .arrow:before,
.b-popover-dark.bs-popover-bottom > .arrow:before {
    border-bottom-color: #c6c8ca;
}
.b-popover-dark.bs-popover-auto[x-placement^="bottom"] .popover-header:before,
.b-popover-dark.bs-popover-auto[x-placement^="bottom"] > .arrow:after,
.b-popover-dark.bs-popover-bottom .popover-header:before,
.b-popover-dark.bs-popover-bottom > .arrow:after {
    border-bottom-color: #ced0d2;
}
.b-popover-dark.bs-popover-auto[x-placement^="left"] > .arrow:before,
.b-popover-dark.bs-popover-left > .arrow:before {
    border-left-color: #c6c8ca;
}
.b-popover-dark.bs-popover-auto[x-placement^="left"] > .arrow:after,
.b-popover-dark.bs-popover-left > .arrow:after {
    border-left-color: #d6d8d9;
}
.b-popover-dark .popover-header {
    color: #212529;
    background-color: #ced0d2;
    border-bottom-color: #c1c4c5;
}
.b-popover-dark .popover-body {
    color: #1b1e21;
}
.b-sidebar-outer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    overflow: visible;
    z-index: 1035;
}
.b-sidebar-backdrop {
    left: 0;
    z-index: -1;
    width: 100vw;
    opacity: 0.6;
}
.b-sidebar,
.b-sidebar-backdrop {
    position: fixed;
    top: 0;
    height: 100vh;
}
.b-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 320px;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    outline: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.b-sidebar.slide {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
    .b-sidebar.slide {
        -webkit-transition: none;
        transition: none;
    }
}
.b-sidebar:not(.b-sidebar-right) {
    left: 0;
    right: auto;
}
.b-sidebar:not(.b-sidebar-right).slide:not(.show) {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.b-sidebar:not(.b-sidebar-right) > .b-sidebar-header .close {
    margin-left: auto;
}
.b-sidebar.b-sidebar-right {
    left: auto;
    right: 0;
}
.b-sidebar.b-sidebar-right.slide:not(.show) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.b-sidebar.b-sidebar-right > .b-sidebar-header .close {
    margin-right: auto;
}
.b-sidebar > .b-sidebar-header {
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
[dir="rtl"] .b-sidebar > .b-sidebar-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.b-sidebar > .b-sidebar-header .close {
    float: none;
    font-size: 1.5rem;
}
.b-sidebar > .b-sidebar-body {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%;
    overflow-y: auto;
}
.b-sidebar > .b-sidebar-footer {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.b-skeleton-wrapper {
    cursor: wait;
}
.b-skeleton {
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.12);
    cursor: wait;
    -webkit-mask-image: radial-gradient(#fff, #000);
    mask-image: radial-gradient(#fff, #000);
}
.b-skeleton:before {
    content: "\00a0";
}
.b-skeleton-text {
    height: 1rem;
    margin-bottom: 0.25rem;
    border-radius: 0.25rem;
}
.b-skeleton-button {
    width: 75px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
}
.b-skeleton-avatar {
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
}
.b-skeleton-input {
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}
.b-skeleton-icon-wrapper svg {
    color: rgba(0, 0, 0, 0.12);
}
.b-skeleton-img {
    height: 100%;
    width: 100%;
}
.b-skeleton-animate-wave:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(hsla(0, 0%, 100%, 0.4)), to(transparent));
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.4), transparent);
    -webkit-animation: b-skeleton-animate-wave 1.75s linear infinite;
    animation: b-skeleton-animate-wave 1.75s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
    .b-skeleton-animate-wave:after {
        background: none;
        -webkit-animation: none;
        animation: none;
    }
}
@-webkit-keyframes b-skeleton-animate-wave {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes b-skeleton-animate-wave {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
.b-skeleton-animate-fade {
    -webkit-animation: b-skeleton-animate-fade 0.875s ease-in-out infinite alternate;
    animation: b-skeleton-animate-fade 0.875s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-skeleton-animate-fade {
        -webkit-animation: none;
        animation: none;
    }
}
@-webkit-keyframes b-skeleton-animate-fade {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0.4;
    }
}
@keyframes b-skeleton-animate-fade {
    0% {
        opacity: 1;
    }
    to {
        opacity: 0.4;
    }
}
.b-skeleton-animate-throb {
    -webkit-animation: b-skeleton-animate-throb 0.875s ease-in infinite alternate;
    animation: b-skeleton-animate-throb 0.875s ease-in infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-skeleton-animate-throb {
        -webkit-animation: none;
        animation: none;
    }
}
@-webkit-keyframes b-skeleton-animate-throb {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.975);
        transform: scale(0.975);
    }
}
@keyframes b-skeleton-animate-throb {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(0.975);
        transform: scale(0.975);
    }
}
.table.b-table.b-table-fixed {
    table-layout: fixed;
}
.table.b-table.b-table-no-border-collapse {
    border-collapse: separate;
    border-spacing: 0;
}
.table.b-table[aria-busy="true"] {
    opacity: 0.55;
}
.table.b-table > tbody > tr.b-table-details > td {
    border-top: none !important;
}
.table.b-table > caption {
    caption-side: bottom;
}
.table.b-table.b-table-caption-top > caption {
    caption-side: top !important;
}
.table.b-table > tbody > .table-active,
.table.b-table > tbody > .table-active > td,
.table.b-table > tbody > .table-active > th {
    background-color: rgba(0, 0, 0, 0.075);
}
.table.b-table.table-hover > tbody > tr.table-active:hover td,
.table.b-table.table-hover > tbody > tr.table-active:hover th {
    color: #212529;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.075)), to(rgba(0, 0, 0, 0.075)));
    background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
    background-repeat: no-repeat;
}
.table.b-table > tbody > .bg-active,
.table.b-table > tbody > .bg-active > td,
.table.b-table > tbody > .bg-active > th {
    background-color: hsla(0, 0%, 100%, 0.075) !important;
}
.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover td,
.table.b-table.table-hover.table-dark > tbody > tr.bg-active:hover th {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.075)), to(hsla(0, 0%, 100%, 0.075)));
    background-image: linear-gradient(hsla(0, 0%, 100%, 0.075), hsla(0, 0%, 100%, 0.075));
    background-repeat: no-repeat;
}
.b-table-sticky-header,
.table-responsive,
[class*="table-responsive-"] {
    margin-bottom: 1rem;
}
.b-table-sticky-header > .table,
.table-responsive > .table,
[class*="table-responsive-"] > .table {
    margin-bottom: 0;
}
.b-table-sticky-header {
    overflow-y: auto;
    max-height: 300px;
}
@media print {
    .b-table-sticky-header {
        overflow-y: visible !important;
        max-height: none !important;
    }
}
@supports (position: sticky) {
    .b-table-sticky-header > .table.b-table > thead > tr > th {
        position: sticky;
        top: 0;
        z-index: 2;
    }
    .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
    .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > tbody > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > tfoot > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > thead > tr > .b-table-sticky-column {
        position: sticky;
        left: 0;
    }
    .b-table-sticky-header > .table.b-table > thead > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > thead > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > thead > tr > .b-table-sticky-column {
        z-index: 5;
    }
    .b-table-sticky-header > .table.b-table > tbody > tr > .b-table-sticky-column,
    .b-table-sticky-header > .table.b-table > tfoot > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > tbody > tr > .b-table-sticky-column,
    .table-responsive > .table.b-table > tfoot > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > tbody > tr > .b-table-sticky-column,
    [class*="table-responsive-"] > .table.b-table > tfoot > tr > .b-table-sticky-column {
        z-index: 2;
    }
    .table.b-table > tbody > tr > .table-b-table-default,
    .table.b-table > tfoot > tr > .table-b-table-default,
    .table.b-table > thead > tr > .table-b-table-default {
        color: #212529;
        background-color: #fff;
    }
    .table.b-table.table-dark > tbody > tr > .bg-b-table-default,
    .table.b-table.table-dark > tfoot > tr > .bg-b-table-default,
    .table.b-table.table-dark > thead > tr > .bg-b-table-default {
        color: #fff;
        background-color: #343a40;
    }
    .table.b-table.table-striped > tbody > tr:nth-of-type(odd) > .table-b-table-default {
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.05)), to(rgba(0, 0, 0, 0.05)));
        background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
        background-repeat: no-repeat;
    }
    .table.b-table.table-striped.table-dark > tbody > tr:nth-of-type(odd) > .bg-b-table-default {
        background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.05)), to(hsla(0, 0%, 100%, 0.05)));
        background-image: linear-gradient(hsla(0, 0%, 100%, 0.05), hsla(0, 0%, 100%, 0.05));
        background-repeat: no-repeat;
    }
    .table.b-table.table-hover > tbody > tr:hover > .table-b-table-default {
        color: #212529;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.075)), to(rgba(0, 0, 0, 0.075)));
        background-image: linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));
        background-repeat: no-repeat;
    }
    .table.b-table.table-hover.table-dark > tbody > tr:hover > .bg-b-table-default {
        color: #fff;
        background-image: -webkit-gradient(linear, left top, left bottom, from(hsla(0, 0%, 100%, 0.075)), to(hsla(0, 0%, 100%, 0.075)));
        background-image: linear-gradient(hsla(0, 0%, 100%, 0.075), hsla(0, 0%, 100%, 0.075));
        background-repeat: no-repeat;
    }
}
.table.b-table > tfoot > tr > [aria-sort],
.table.b-table > thead > tr > [aria-sort] {
    cursor: pointer;
    background-image: none;
    background-repeat: no-repeat;
    background-size: 0.65em 1em;
}
.table.b-table > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table > thead > tr > [aria-sort]:not(.b-table-sort-icon-left) {
    background-position: right 0.375rem center;
    padding-right: calc(0.75rem + 0.65em);
}
.table.b-table > tfoot > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table > thead > tr > [aria-sort].b-table-sort-icon-left {
    background-position: left 0.375rem center;
    padding-left: calc(0.75rem + 0.65em);
}
.table.b-table > tfoot > tr > [aria-sort="none"],
.table.b-table > thead > tr > [aria-sort="none"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table > tfoot > tr > [aria-sort="ascending"],
.table.b-table > thead > tr > [aria-sort="ascending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table > tfoot > tr > [aria-sort="descending"],
.table.b-table > thead > tr > [aria-sort="descending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table.table-dark > tfoot > tr > [aria-sort="none"],
.table.b-table.table-dark > thead > tr > [aria-sort="none"],
.table.b-table > .thead-dark > tr > [aria-sort="none"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table.table-dark > tfoot > tr > [aria-sort="ascending"],
.table.b-table.table-dark > thead > tr > [aria-sort="ascending"],
.table.b-table > .thead-dark > tr > [aria-sort="ascending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table.table-dark > tfoot > tr > [aria-sort="descending"],
.table.b-table.table-dark > thead > tr > [aria-sort="descending"],
.table.b-table > .thead-dark > tr > [aria-sort="descending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table > tfoot > tr > .table-dark[aria-sort="none"],
.table.b-table > thead > tr > .table-dark[aria-sort="none"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22zm0 100l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table > tfoot > tr > .table-dark[aria-sort="ascending"],
.table.b-table > thead > tr > .table-dark[aria-sort="ascending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' opacity='.3' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table > tfoot > tr > .table-dark[aria-sort="descending"],
.table.b-table > thead > tr > .table-dark[aria-sort="descending"] {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='101' height='101' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' opacity='.3' d='M51 1l25 23 24 22H1l25-22z'/%3E%3Cpath fill='%23fff' d='M51 101l25-23 24-22H1l25 22z'/%3E%3C/svg%3E");
}
.table.b-table.table-sm > tfoot > tr > [aria-sort]:not(.b-table-sort-icon-left),
.table.b-table.table-sm > thead > tr > [aria-sort]:not(.b-table-sort-icon-left) {
    background-position: right 0.15rem center;
    padding-right: calc(0.3rem + 0.65em);
}
.table.b-table.table-sm > tfoot > tr > [aria-sort].b-table-sort-icon-left,
.table.b-table.table-sm > thead > tr > [aria-sort].b-table-sort-icon-left {
    background-position: left 0.15rem center;
    padding-left: calc(0.3rem + 0.65em);
}
.table.b-table.b-table-selectable:not(.b-table-selectable-no-click) > tbody > tr {
    cursor: pointer;
}
.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range > tbody > tr {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
@media (max-width: 575.98px) {
    .table.b-table.b-table-stacked-sm {
        display: block;
        width: 100%;
    }
    .table.b-table.b-table-stacked-sm > caption,
    .table.b-table.b-table-stacked-sm > tbody,
    .table.b-table.b-table-stacked-sm > tbody > tr,
    .table.b-table.b-table-stacked-sm > tbody > tr > td,
    .table.b-table.b-table-stacked-sm > tbody > tr > th {
        display: block;
    }
    .table.b-table.b-table-stacked-sm > tfoot,
    .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-sm > tfoot > tr.b-table-top-row,
    .table.b-table.b-table-stacked-sm > thead,
    .table.b-table.b-table-stacked-sm > thead > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-sm > thead > tr.b-table-top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-sm > caption {
        caption-side: top !important;
    }
    .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]:before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: 700;
        font-style: normal;
        padding: 0 0.5rem 0 0;
        margin: 0;
    }
    .table.b-table.b-table-stacked-sm > tbody > tr > [data-label]:after {
        display: block;
        clear: both;
        content: "";
    }
    .table.b-table.b-table-stacked-sm > tbody > tr > [data-label] > div {
        display: inline-block;
        width: 60%;
        padding: 0 0 0 0.5rem;
        margin: 0;
    }
    .table.b-table.b-table-stacked-sm > tbody > tr.bottom-row,
    .table.b-table.b-table-stacked-sm > tbody > tr.top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-sm > tbody > tr > :first-child,
    .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + td,
    .table.b-table.b-table-stacked-sm > tbody > tr > [rowspan] + th {
        border-top-width: 3px;
    }
}
@media (max-width: 767.98px) {
    .table.b-table.b-table-stacked-md {
        display: block;
        width: 100%;
    }
    .table.b-table.b-table-stacked-md > caption,
    .table.b-table.b-table-stacked-md > tbody,
    .table.b-table.b-table-stacked-md > tbody > tr,
    .table.b-table.b-table-stacked-md > tbody > tr > td,
    .table.b-table.b-table-stacked-md > tbody > tr > th {
        display: block;
    }
    .table.b-table.b-table-stacked-md > tfoot,
    .table.b-table.b-table-stacked-md > tfoot > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-md > tfoot > tr.b-table-top-row,
    .table.b-table.b-table-stacked-md > thead,
    .table.b-table.b-table-stacked-md > thead > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-md > thead > tr.b-table-top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-md > caption {
        caption-side: top !important;
    }
    .table.b-table.b-table-stacked-md > tbody > tr > [data-label]:before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: 700;
        font-style: normal;
        padding: 0 0.5rem 0 0;
        margin: 0;
    }
    .table.b-table.b-table-stacked-md > tbody > tr > [data-label]:after {
        display: block;
        clear: both;
        content: "";
    }
    .table.b-table.b-table-stacked-md > tbody > tr > [data-label] > div {
        display: inline-block;
        width: 60%;
        padding: 0 0 0 0.5rem;
        margin: 0;
    }
    .table.b-table.b-table-stacked-md > tbody > tr.bottom-row,
    .table.b-table.b-table-stacked-md > tbody > tr.top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-md > tbody > tr > :first-child,
    .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + td,
    .table.b-table.b-table-stacked-md > tbody > tr > [rowspan] + th {
        border-top-width: 3px;
    }
}
@media (max-width: 991.98px) {
    .table.b-table.b-table-stacked-lg {
        display: block;
        width: 100%;
    }
    .table.b-table.b-table-stacked-lg > caption,
    .table.b-table.b-table-stacked-lg > tbody,
    .table.b-table.b-table-stacked-lg > tbody > tr,
    .table.b-table.b-table-stacked-lg > tbody > tr > td,
    .table.b-table.b-table-stacked-lg > tbody > tr > th {
        display: block;
    }
    .table.b-table.b-table-stacked-lg > tfoot,
    .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-lg > tfoot > tr.b-table-top-row,
    .table.b-table.b-table-stacked-lg > thead,
    .table.b-table.b-table-stacked-lg > thead > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-lg > thead > tr.b-table-top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-lg > caption {
        caption-side: top !important;
    }
    .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]:before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: 700;
        font-style: normal;
        padding: 0 0.5rem 0 0;
        margin: 0;
    }
    .table.b-table.b-table-stacked-lg > tbody > tr > [data-label]:after {
        display: block;
        clear: both;
        content: "";
    }
    .table.b-table.b-table-stacked-lg > tbody > tr > [data-label] > div {
        display: inline-block;
        width: 60%;
        padding: 0 0 0 0.5rem;
        margin: 0;
    }
    .table.b-table.b-table-stacked-lg > tbody > tr.bottom-row,
    .table.b-table.b-table-stacked-lg > tbody > tr.top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-lg > tbody > tr > :first-child,
    .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + td,
    .table.b-table.b-table-stacked-lg > tbody > tr > [rowspan] + th {
        border-top-width: 3px;
    }
}
@media (max-width: 1199.98px) {
    .table.b-table.b-table-stacked-xl {
        display: block;
        width: 100%;
    }
    .table.b-table.b-table-stacked-xl > caption,
    .table.b-table.b-table-stacked-xl > tbody,
    .table.b-table.b-table-stacked-xl > tbody > tr,
    .table.b-table.b-table-stacked-xl > tbody > tr > td,
    .table.b-table.b-table-stacked-xl > tbody > tr > th {
        display: block;
    }
    .table.b-table.b-table-stacked-xl > tfoot,
    .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-xl > tfoot > tr.b-table-top-row,
    .table.b-table.b-table-stacked-xl > thead,
    .table.b-table.b-table-stacked-xl > thead > tr.b-table-bottom-row,
    .table.b-table.b-table-stacked-xl > thead > tr.b-table-top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-xl > caption {
        caption-side: top !important;
    }
    .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]:before {
        content: attr(data-label);
        width: 40%;
        float: left;
        text-align: right;
        overflow-wrap: break-word;
        font-weight: 700;
        font-style: normal;
        padding: 0 0.5rem 0 0;
        margin: 0;
    }
    .table.b-table.b-table-stacked-xl > tbody > tr > [data-label]:after {
        display: block;
        clear: both;
        content: "";
    }
    .table.b-table.b-table-stacked-xl > tbody > tr > [data-label] > div {
        display: inline-block;
        width: 60%;
        padding: 0 0 0 0.5rem;
        margin: 0;
    }
    .table.b-table.b-table-stacked-xl > tbody > tr.bottom-row,
    .table.b-table.b-table-stacked-xl > tbody > tr.top-row {
        display: none;
    }
    .table.b-table.b-table-stacked-xl > tbody > tr > :first-child,
    .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + td,
    .table.b-table.b-table-stacked-xl > tbody > tr > [rowspan] + th {
        border-top-width: 3px;
    }
}
.table.b-table.b-table-stacked {
    display: block;
    width: 100%;
}
.table.b-table.b-table-stacked > caption,
.table.b-table.b-table-stacked > tbody,
.table.b-table.b-table-stacked > tbody > tr,
.table.b-table.b-table-stacked > tbody > tr > td,
.table.b-table.b-table-stacked > tbody > tr > th {
    display: block;
}
.table.b-table.b-table-stacked > tfoot,
.table.b-table.b-table-stacked > tfoot > tr.b-table-bottom-row,
.table.b-table.b-table-stacked > tfoot > tr.b-table-top-row,
.table.b-table.b-table-stacked > thead,
.table.b-table.b-table-stacked > thead > tr.b-table-bottom-row,
.table.b-table.b-table-stacked > thead > tr.b-table-top-row {
    display: none;
}
.table.b-table.b-table-stacked > caption {
    caption-side: top !important;
}
.table.b-table.b-table-stacked > tbody > tr > [data-label]:before {
    content: attr(data-label);
    width: 40%;
    float: left;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: 700;
    font-style: normal;
    padding: 0 0.5rem 0 0;
    margin: 0;
}
.table.b-table.b-table-stacked > tbody > tr > [data-label]:after {
    display: block;
    clear: both;
    content: "";
}
.table.b-table.b-table-stacked > tbody > tr > [data-label] > div {
    display: inline-block;
    width: 60%;
    padding: 0 0 0 0.5rem;
    margin: 0;
}
.table.b-table.b-table-stacked > tbody > tr.bottom-row,
.table.b-table.b-table-stacked > tbody > tr.top-row {
    display: none;
}
.table.b-table.b-table-stacked > tbody > tr > :first-child,
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + td,
.table.b-table.b-table-stacked > tbody > tr > [rowspan] + th {
    border-top-width: 3px;
}
.b-time {
    min-width: 150px;
}
.b-time[aria-disabled="true"] output,
.b-time[aria-readonly="true"] output,
.b-time output.disabled {
    background-color: #e9ecef;
    opacity: 1;
}
.b-time[aria-disabled="true"] output {
    pointer-events: none;
}
[dir="rtl"] .b-time > .d-flex:not(.flex-column) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.b-time .b-time-header {
    margin-bottom: 0.5rem;
}
.b-time .b-time-header output {
    padding: 0.25rem;
    font-size: 80%;
}
.b-time .b-time-footer {
    margin-top: 0.5rem;
}
.b-time .b-time-ampm {
    margin-left: 0.5rem;
}
.b-toast {
    display: block;
    position: relative;
    max-width: 350px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-clip: padding-box;
    z-index: 1;
    border-radius: 0.25rem;
}
.b-toast .toast {
    background-color: hsla(0, 0%, 100%, 0.85);
}
.b-toast:not(:last-child) {
    margin-bottom: 0.75rem;
}
.b-toast.b-toast-solid .toast {
    background-color: #fff;
}
.b-toast .toast {
    opacity: 1;
}
.b-toast .toast.fade:not(.show) {
    opacity: 0;
}
.b-toast .toast .toast-body {
    display: block;
}
.b-toast-primary .toast {
    background-color: rgba(230, 242, 255, 0.85);
    border-color: rgba(184, 218, 255, 0.85);
    color: #004085;
}
.b-toast-primary .toast .toast-header {
    color: #004085;
    background-color: rgba(204, 229, 255, 0.85);
    border-bottom-color: rgba(184, 218, 255, 0.85);
}
.b-toast-primary.b-toast-solid .toast {
    background-color: #e6f2ff;
}
.b-toast-secondary .toast {
    background-color: rgba(239, 240, 241, 0.85);
    border-color: rgba(214, 216, 219, 0.85);
    color: #383d41;
}
.b-toast-secondary .toast .toast-header {
    color: #383d41;
    background-color: rgba(226, 227, 229, 0.85);
    border-bottom-color: rgba(214, 216, 219, 0.85);
}
.b-toast-secondary.b-toast-solid .toast {
    background-color: #eff0f1;
}
.b-toast-success .toast {
    background-color: rgba(230, 245, 233, 0.85);
    border-color: rgba(195, 230, 203, 0.85);
    color: #155724;
}
.b-toast-success .toast .toast-header {
    color: #155724;
    background-color: rgba(212, 237, 218, 0.85);
    border-bottom-color: rgba(195, 230, 203, 0.85);
}
.b-toast-success.b-toast-solid .toast {
    background-color: #e6f5e9;
}
.b-toast-info .toast {
    background-color: rgba(229, 244, 247, 0.85);
    border-color: rgba(190, 229, 235, 0.85);
    color: #0c5460;
}
.b-toast-info .toast .toast-header {
    color: #0c5460;
    background-color: rgba(209, 236, 241, 0.85);
    border-bottom-color: rgba(190, 229, 235, 0.85);
}
.b-toast-info.b-toast-solid .toast {
    background-color: #e5f4f7;
}
.b-toast-warning .toast {
    background-color: rgba(255, 249, 231, 0.85);
    border-color: rgba(255, 238, 186, 0.85);
    color: #856404;
}
.b-toast-warning .toast .toast-header {
    color: #856404;
    background-color: rgba(255, 243, 205, 0.85);
    border-bottom-color: rgba(255, 238, 186, 0.85);
}
.b-toast-warning.b-toast-solid .toast {
    background-color: #fff9e7;
}
.b-toast-danger .toast {
    background-color: rgba(252, 237, 238, 0.85);
    border-color: rgba(245, 198, 203, 0.85);
    color: #721c24;
}
.b-toast-danger .toast .toast-header {
    color: #721c24;
    background-color: rgba(248, 215, 218, 0.85);
    border-bottom-color: rgba(245, 198, 203, 0.85);
}
.b-toast-danger.b-toast-solid .toast {
    background-color: #fcedee;
}
.b-toast-light .toast {
    background-color: hsla(0, 0%, 100%, 0.85);
    border-color: rgba(253, 253, 254, 0.85);
    color: #818182;
}
.b-toast-light .toast .toast-header {
    color: #818182;
    background-color: hsla(0, 0%, 99.6%, 0.85);
    border-bottom-color: rgba(253, 253, 254, 0.85);
}
.b-toast-light.b-toast-solid .toast {
    background-color: #fff;
}
.b-toast-dark .toast {
    background-color: rgba(227, 229, 229, 0.85);
    border-color: rgba(198, 200, 202, 0.85);
    color: #1b1e21;
}
.b-toast-dark .toast .toast-header {
    color: #1b1e21;
    background-color: rgba(214, 216, 217, 0.85);
    border-bottom-color: rgba(198, 200, 202, 0.85);
}
.b-toast-dark.b-toast-solid .toast {
    background-color: #e3e5e5;
}
.b-toaster {
    z-index: 1100;
}
.b-toaster .b-toaster-slot {
    position: relative;
    display: block;
}
.b-toaster .b-toaster-slot:empty {
    display: none !important;
}
.b-toaster.b-toaster-bottom-center,
.b-toaster.b-toaster-bottom-full,
.b-toaster.b-toaster-bottom-left,
.b-toaster.b-toaster-bottom-right,
.b-toaster.b-toaster-top-center,
.b-toaster.b-toaster-top-full,
.b-toaster.b-toaster-top-left,
.b-toaster.b-toaster-top-right {
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    margin: 0;
    padding: 0;
    height: 0;
    overflow: visible;
}
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
    position: absolute;
    max-width: 350px;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
}
.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,
.b-toaster.b-toaster-top-full .b-toaster-slot .toast {
    width: 100%;
    max-width: 100%;
}
.b-toaster.b-toaster-top-center,
.b-toaster.b-toaster-top-full,
.b-toaster.b-toaster-top-left,
.b-toaster.b-toaster-top-right {
    top: 0;
}
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-full .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
    top: 0.5rem;
}
.b-toaster.b-toaster-bottom-center,
.b-toaster.b-toaster-bottom-full,
.b-toaster.b-toaster-bottom-left,
.b-toaster.b-toaster-bottom-right {
    bottom: 0;
}
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-full .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot {
    bottom: 0.5rem;
}
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-right .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-right .b-toaster-slot {
    margin-left: auto;
}
.b-toaster.b-toaster-bottom-center .b-toaster-slot,
.b-toaster.b-toaster-bottom-left .b-toaster-slot,
.b-toaster.b-toaster-top-center .b-toaster-slot,
.b-toaster.b-toaster-top-left .b-toaster-slot {
    margin-right: auto;
}
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-move {
    -webkit-transition: -webkit-transform 0.175s;
    transition: -webkit-transform 0.175s;
    transition: transform 0.175s;
    transition: transform 0.175s, -webkit-transform 0.175s;
}
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active {
    position: absolute;
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
}
.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,
.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.tooltip.b-tooltip {
    display: block;
    opacity: 0.9;
    outline: 0;
}
.tooltip.b-tooltip.fade:not(.show) {
    opacity: 0;
}
.tooltip.b-tooltip.show {
    opacity: 0.9;
}
.tooltip.b-tooltip.noninteractive {
    pointer-events: none;
}
.tooltip.b-tooltip .arrow {
    margin: 0 0.25rem;
}
.tooltip.b-tooltip.bs-tooltip-auto[x-placement^="left"] .arrow,
.tooltip.b-tooltip.bs-tooltip-auto[x-placement^="right"] .arrow,
.tooltip.b-tooltip.bs-tooltip-left .arrow,
.tooltip.b-tooltip.bs-tooltip-right .arrow {
    margin: 0.25rem 0;
}
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-top .arrow:before {
    border-top-color: #007bff;
}
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-right .arrow:before {
    border-right-color: #007bff;
}
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #007bff;
}
.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-primary.bs-tooltip-left .arrow:before {
    border-left-color: #007bff;
}
.tooltip.b-tooltip-primary .tooltip-inner {
    color: #fff;
    background-color: #007bff;
}
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow:before {
    border-top-color: #6c757d;
}
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow:before {
    border-right-color: #6c757d;
}
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #6c757d;
}
.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow:before {
    border-left-color: #6c757d;
}
.tooltip.b-tooltip-secondary .tooltip-inner {
    color: #fff;
    background-color: #6c757d;
}
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-top .arrow:before {
    border-top-color: #28a745;
}
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-right .arrow:before {
    border-right-color: #28a745;
}
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #28a745;
}
.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-success.bs-tooltip-left .arrow:before {
    border-left-color: #28a745;
}
.tooltip.b-tooltip-success .tooltip-inner {
    color: #fff;
    background-color: #28a745;
}
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-top .arrow:before {
    border-top-color: #17a2b8;
}
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-right .arrow:before {
    border-right-color: #17a2b8;
}
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #17a2b8;
}
.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-info.bs-tooltip-left .arrow:before {
    border-left-color: #17a2b8;
}
.tooltip.b-tooltip-info .tooltip-inner {
    color: #fff;
    background-color: #17a2b8;
}
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-top .arrow:before {
    border-top-color: #ffc107;
}
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-right .arrow:before {
    border-right-color: #ffc107;
}
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #ffc107;
}
.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-warning.bs-tooltip-left .arrow:before {
    border-left-color: #ffc107;
}
.tooltip.b-tooltip-warning .tooltip-inner {
    color: #212529;
    background-color: #ffc107;
}
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-top .arrow:before {
    border-top-color: #dc3545;
}
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-right .arrow:before {
    border-right-color: #dc3545;
}
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #dc3545;
}
.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-danger.bs-tooltip-left .arrow:before {
    border-left-color: #dc3545;
}
.tooltip.b-tooltip-danger .tooltip-inner {
    color: #fff;
    background-color: #dc3545;
}
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-top .arrow:before {
    border-top-color: #f8f9fa;
}
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-right .arrow:before {
    border-right-color: #f8f9fa;
}
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #f8f9fa;
}
.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-light.bs-tooltip-left .arrow:before {
    border-left-color: #f8f9fa;
}
.tooltip.b-tooltip-light .tooltip-inner {
    color: #212529;
    background-color: #f8f9fa;
}
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="top"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-top .arrow:before {
    border-top-color: #343a40;
}
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="right"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-right .arrow:before {
    border-right-color: #343a40;
}
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="bottom"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #343a40;
}
.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^="left"] .arrow:before,
.tooltip.b-tooltip-dark.bs-tooltip-left .arrow:before {
    border-left-color: #343a40;
}
.tooltip.b-tooltip-dark .tooltip-inner {
    color: #fff;
    background-color: #343a40;
}
.b-icon.bi {
    display: inline-block;
    overflow: visible;
    vertical-align: -0.15em;
}
.b-icon.b-icon-animation-cylon,
.b-icon.b-iconstack .b-icon-animation-cylon > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-cylon 0.75s ease-in-out infinite alternate;
    animation: b-icon-animation-cylon 0.75s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-cylon,
    .b-icon.b-iconstack .b-icon-animation-cylon > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-cylon-vertical,
.b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-cylon-vertical 0.75s ease-in-out infinite alternate;
    animation: b-icon-animation-cylon-vertical 0.75s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-cylon-vertical,
    .b-icon.b-iconstack .b-icon-animation-cylon-vertical > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-fade,
.b-icon.b-iconstack .b-icon-animation-fade > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-fade 0.75s ease-in-out infinite alternate;
    animation: b-icon-animation-fade 0.75s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-fade,
    .b-icon.b-iconstack .b-icon-animation-fade > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-spin,
.b-icon.b-iconstack .b-icon-animation-spin > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-spin 2s linear infinite normal;
    animation: b-icon-animation-spin 2s linear infinite normal;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-spin,
    .b-icon.b-iconstack .b-icon-animation-spin > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-spin-reverse,
.b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    animation: b-icon-animation-spin 2s linear infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-spin-reverse,
    .b-icon.b-iconstack .b-icon-animation-spin-reverse > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-spin-pulse,
.b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-spin 1s steps(8) infinite normal;
    animation: b-icon-animation-spin 1s steps(8) infinite normal;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-spin-pulse,
    .b-icon.b-iconstack .b-icon-animation-spin-pulse > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-spin-reverse-pulse,
.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    animation: b-icon-animation-spin 1s steps(8) infinite reverse;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-spin-reverse-pulse,
    .b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse > g {
        -webkit-animation: none;
        animation: none;
    }
}
.b-icon.b-icon-animation-throb,
.b-icon.b-iconstack .b-icon-animation-throb > g {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: b-icon-animation-throb 0.75s ease-in-out infinite alternate;
    animation: b-icon-animation-throb 0.75s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .b-icon.b-icon-animation-throb,
    .b-icon.b-iconstack .b-icon-animation-throb > g {
        -webkit-animation: none;
        animation: none;
    }
}
@-webkit-keyframes b-icon-animation-cylon {
    0% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    to {
        -webkit-transform: translateX(25%);
        transform: translateX(25%);
    }
}
@keyframes b-icon-animation-cylon {
    0% {
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    to {
        -webkit-transform: translateX(25%);
        transform: translateX(25%);
    }
}
@-webkit-keyframes b-icon-animation-cylon-vertical {
    0% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
    }
    to {
        -webkit-transform: translateY(-25%);
        transform: translateY(-25%);
    }
}
@keyframes b-icon-animation-cylon-vertical {
    0% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
    }
    to {
        -webkit-transform: translateY(-25%);
        transform: translateY(-25%);
    }
}
@-webkit-keyframes b-icon-animation-fade {
    0% {
        opacity: 0.1;
    }
    to {
        opacity: 1;
    }
}
@keyframes b-icon-animation-fade {
    0% {
        opacity: 0.1;
    }
    to {
        opacity: 1;
    }
}
@-webkit-keyframes b-icon-animation-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes b-icon-animation-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@-webkit-keyframes b-icon-animation-throb {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes b-icon-animation-throb {
    0% {
        opacity: 0.5;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.btn .b-icon.bi,
.dropdown-item .b-icon.bi,
.dropdown-toggle .b-icon.bi,
.input-group-text .b-icon.bi,
.nav-link .b-icon.bi {
    font-size: 125%;
    vertical-align: text-bottom;
}
body {
    font-family: Poppins, sans-serif;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
img {
    max-width: 100%;
}
a {
    color: #0e314c;
    display: inline-block;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: 0 !important;
}
a,
a:focus,
a:hover {
    text-decoration: none;
}
a:focus,
a:hover {
    color: #44ce6f;
}
.d-table {
    width: 100%;
    height: 100%;
}
.d-table-cell {
    vertical-align: middle;
}
p {
    color: #6084a4;
    line-height: 1.9;
}
p:last-child {
    margin-bottom: 0;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #0e314c;
    font-weight: 500;
}
.ptb-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.bg-f7fafd {
    background-color: #f7fafd;
}
.bg-f9f6f6 {
    background-color: #f9f6f6;
}
.bg-f9fafb {
    background-color: #f9fafb;
}
.bg-0f054b {
    background-color: #0f054b;
}
.bg-eef6fd {
    background-color: #eef6fd;
}

.btn-primary {
    color: #fff;
    background-color: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background: #0e314c;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.btn-primary.focus,
.btn-primary .show > .btn-primary.dropdown-toggle:focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus {
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.btn-primary .show > .btn-primary.dropdown-toggle,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background: #0e314c;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    opacity: 1;
}
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary:disabled:focus,
.btn-primary:disabled:hover {
    background: #0e314c;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.btn {
    font-weight: 600;
    font-size: 14px;
    border: none;
    padding: 15px 40px;
    position: relative;
    border-radius: 4px;
    z-index: 1;
    text-transform: uppercase;
}
.btn,
.btn:after,
.btn:before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.btn:after,
.btn:before {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background: #c679e3;
    z-index: -1;
}
.btn:after {
    left: 0;
    border-radius: 4px 0 0 4px;
}
.btn:before {
    right: 0;
    border-radius: 0 4px 4px 0;
}
.btn:hover:after,
.btn:hover:before {
    width: 50%;
}
.btn.btn-secondary {
    text-transform: capitalize;
    border-radius: 0;
    background-color: #775eba;
    padding: 13px 30px;
    -webkit-box-shadow: 5px 5px 5px #c4aeff;
    box-shadow: 5px 5px 5px #c4aeff;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
}
.btn.btn-secondary:after,
.btn.btn-secondary:before {
    border-radius: 0;
    background: #25602c;
}
.btn.btn-secondary:not(:disabled):not(.disabled).active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #44ce6f;
    border-color: #44ce6f;
}
.btn.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn.btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 5px 5px 5px #86ec92;
    box-shadow: 5px 5px 5px #86ec92;
}
.btn.btn-secondary:focus {
    color: #fff;
}
.btn.btn-secondary:focus,
.btn.btn-secondary:hover {
    -webkit-box-shadow: 5px 5px 5px #86ec92;
    box-shadow: 5px 5px 5px #86ec92;
}
.form-group {
    margin-bottom: 18px;
}
label {
    color: #0e314c;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
.form-control {
    height: 45px;
    padding: 10px;
    font-size: 14px;
    color: #0e314c;
    border: 1px solid #eee;
    border-radius: 0;
    background: #eee;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.form-control:focus {
    outline: 0;
    background: #fff;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-color: #44ce6f;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    margin-bottom: 0;
    text-transform: capitalize;
    font-size: 25px;
    font-weight: 600;
}
.section-title p {
    max-width: 520px;
    margin: 0 auto;
}
.section-title .bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 20px auto;
    position: relative;
    border-radius: 30px;
}
.section-title .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}
.section-title .sub-title {
    display: inline-block;
    color: #c679e3;
    background-color: #f5dffd;
    margin-bottom: 18px;
    border-radius: 30px;
    padding: 5px 20px 4px;
    font-size: 13px;
}
.section-title.text-left h2 {
    font-weight: 500;
}
.section-title.text-left h2 span {
    display: inline-block;
    font-weight: 700;
}
.section-title.text-left p {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
}
@-webkit-keyframes MOVE-BG {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}
@keyframes MOVE-BG {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(88px);
        transform: translateX(88px);
    }
}
.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: #44ce6f;
}
.preloader .spinner {
    width: 60px;
    height: 60px;
    background-color: #fff;
    margin: 0 auto;
    -webkit-animation: sk-rotateplane 1.2s ease-in-out infinite;
    animation: sk-rotateplane 1.2s ease-in-out infinite;
    position: absolute;
    right: 0;
    left: 0;
    -webkit-box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.4);
    top: 50%;
    margin-top: -75px;
}
@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    to {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
@keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    to {
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
#header.headroom {
    position: fixed;
    width: 100%;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: transparent;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /*padding-top: 15px;*/
}
#header.headroom.is-sticky {
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    background-color: #fff !important;
    padding-top: 15px;
    padding-bottom: 15px;
}
#header.headroom.navbar-style-two {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}
#header.headroom--pinned {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
#header.headroom--unpinned {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
.startp-nav {
    background: #fff;
	-webkit-box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -ms-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -o-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
}
.startp-nav nav {
    padding: 0;
}
.startp-nav nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.startp-nav nav .navbar-nav .nav-item {
    position: relative;
    padding: 15px 0;
}
.startp-nav nav .navbar-nav .nav-item a {
    font-weight: 500;
    font-size: 15px;
    color: #4a6f8a;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 14px;
    margin-right: 14px;
}
.startp-nav nav .navbar-nav .nav-item a.active,
.startp-nav nav .navbar-nav .nav-item a:focus,
.startp-nav nav .navbar-nav .nav-item a:hover {
    color: #28622f;
}
.startp-nav nav .navbar-nav .nav-item a .feather {
    width: 14px;
    position: relative;
    top: 1.5px;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    position: absolute;
    top: 80px;
    left: 0;
    width: 250px;
    z-index: 99;
    padding-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 20px;
    opacity: 0;
    border-radius: 5px;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li {
    position: relative;
    padding: 0;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a {
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    margin: 0;
    display: block;
    color: #4a6f8a;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a.active,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:focus,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li a:hover {
    color: #44ce6f;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
    position: absolute;
    left: 220px;
    top: 0;
    opacity: 0 !important;
    visibility: hidden !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu li a {
    color: #4a6f8a;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu li a.active,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu li a:focus,
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu li a:hover {
    color: #44ce6f;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover .dropdown_menu {
    opacity: 1 !important;
    visibility: visible !important;
    top: -20px !important;
}
.startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover a {
    color: #44ce6f;
}
.startp-nav nav .navbar-nav .nav-item:hover ul {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.startp-nav nav .others-option {
    margin-left: 20px;
}
.startp-nav nav .others-option .cart-wrapper-btn {
    position: relative;
    margin-right: 20px;
    top: 4px;
}
.startp-nav nav .others-option .cart-wrapper-btn svg {
    width: 15px;
}
.startp-nav nav .others-option .cart-wrapper-btn span {
    display: inline-block;
    background-color: red;
    color: #fff;
    font-size: 9px;
    width: 13px;
    height: 13px;
    text-align: center;
    line-height: 14px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    right: 5px;
}
.startp-nav nav .others-option .btn.btn-light {
    background: transparent;
    border: 2px dashed #cdf1d8;
    padding: 12px 33px;
    margin-right: 10px;
}
.startp-nav nav .others-option .btn.btn-light:focus {
    color: #0e314c !important;
}
.startp-nav nav .others-option .btn.btn-light:focus,
.startp-nav nav .others-option .btn.btn-light:hover {
    color: #fff;
    border-color: #44ce6f;
}
.startp-nav nav .others-option .btn.btn-light:after,
.startp-nav nav .others-option .btn.btn-light:before {
    background: #44ce6f;
}
.startp-nav nav .others-option .btn.btn-primary {
    background: #775eba;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.startp-nav nav .others-option .btn.btn-primary:after,
.startp-nav nav .others-option .btn.btn-primary:before {
    background: #25602c;
   /* -webkit-box-shadow: 5px 5px 5px #86ec92;
    box-shadow: 5px 5px 5px #86ec92; */
}
.navbar-style-three .startp-nav {
    padding-left: 25px;
    padding-right: 25px;
}
.navbar-color-white .startp-nav nav .navbar-nav .nav-item a {
    color: #fff;
}
.navbar-color-white .startp-nav nav .navbar-nav .nav-item a.active,
.navbar-color-white .startp-nav nav .navbar-nav .nav-item a:focus,
.navbar-color-white .startp-nav nav .navbar-nav .nav-item a:hover {
    color: #44ce6f;
}
.navbar-color-white .startp-nav nav .others-option .cart-wrapper-btn {
    color: #fff;
}
.navbar-color-white .startp-nav nav .others-option .btn.btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.navbar-color-white .startp-nav nav .others-option .btn.btn-primary:after,
.navbar-color-white .startp-nav nav .others-option .btn.btn-primary:before {
    background: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.navbar-color-white#header.headroom.is-sticky {
    background-color: #0e314c !important;
}
@media only screen and (max-width: 767px) {
	.navbar-brand{width:200px;}
    .startp-nav .navbar-toggler {
        outline: 0;
        border-color: #0e314c;
        border-radius: 0;
    }
    .startp-nav .navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .startp-nav nav .others-option {
        display: none;
    }
    .startp-nav nav .navbar-nav {
        margin-left: 0;
        background-color: #fff;
        border: 1px solid #eee;
        margin-top: 15px;
        /*height: 350px; */
        display: block;
        /*overflow-y: scroll;*/
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .startp-nav nav .navbar-nav .nav-item {
        padding: 10px 0;
    }
    .startp-nav nav .navbar-nav .nav-item a {
        margin-left: 0;
        margin-right: 0;
    }
    .startp-nav nav .navbar-nav .nav-item .dropdown_menu {
        position: relative;
        top: 0;
        -webkit-box-shadow: unset;
        box-shadow: unset;
        left: 0;
        width: 100%;
        opacity: 1;
        visibility: visible;
        border: 1px solid #eee;
        border-radius: 0;
        margin-top: 15px;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 10px;
    }
    .startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
        position: relative;
        left: 0;
        top: 0;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 0;
        margin-left: 11px;
    }
    .startp-nav nav .navbar-nav .nav-item .dropdown_menu li:hover .dropdown_menu {
        top: 0 !important;
    }
    .startp-nav nav .navbar-nav .nav-item:hover ul {
        top: 0;
    }
    .navbar-style-three .startp-nav {
        padding-left: 0;
        padding-right: 0;
    }
}
.main-banner {
    position: relative;
    height: 910px;
    z-index: 1;
    background: transparent url(../img/banner-bg1.c8e7f324.jpg) 100% 0 no-repeat;
}
.main-banner .hero-content h1 {
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}
.main-banner .hero-content p {
    margin-bottom: 30px;
}
.main-banner .banner-form {
    background: #fff;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    padding: 50px 30px;
    border-radius: 5px;
}
.main-banner .banner-form form .form-control {
    padding-left: 15px;
}
.main-banner .banner-form form .btn {
    display: block;
    width: 100%;
    -webkit-transform: unset;
    transform: unset;
    margin-top: 25px;
}
.main-banner .banner-image {
    position: relative;
}
.main-banner .banner-image img {
    position: absolute;
}
.main-banner .banner-image img:first-child {
    z-index: 3;
    top: -130px;
    left: -45px;
}
.main-banner .banner-image img:nth-child(2) {
    right: 145px;
    top: -287px;
}
.main-banner .banner-image img:nth-child(3) {
    left: 25px;
    top: -20px;
}
.main-banner .banner-image img:nth-child(4) {
    right: 12%;
    top: 118px;
    z-index: 1;
}
.main-banner .banner-image img:nth-child(5) {
    left: 28%;
    top: -120px;
    z-index: 2;
}
.main-banner .banner-image img:nth-child(6) {
    right: 35%;
    z-index: 1;
    top: -150px;
}
.main-banner .banner-image img:nth-child(7) {
    right: 20px;
    top: -110px;
}
.main-banner .banner-image img:nth-child(8) {
    right: 25px;
    top: -140px;
}
.main-banner .banner-image img:nth-child(9) {
    right: 30%;
    z-index: 1;
    top: -35px;
}
.main-banner .banner-image img:nth-child(10) {
    left: 37%;
    top: -28px;
    z-index: 1;
}
.main-banner .banner-image img:nth-child(11) {
    left: 37%;
    top: -160px;
    z-index: 1;
}
.main-banner .banner-image img:nth-child(12) {
    left: 90px;
    top: -110px;
}
.main-banner .banner-image img:nth-child(13) {
    left: 56%;
    top: -25px;
    z-index: 2;
}
.main-banner .banner-image img:nth-child(14) {
    right: 105px;
    top: -28px;
}
.main-banner .banner-image img:last-child {
    display: none;
}
.main-banner .banner-image.single-banner-image img {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.hosting-main-banner {
    position: relative;
    z-index: 1;
    background-color: #032b8d;
    padding-top: 250px;
    padding-bottom: 190px;
}
.hosting-main-banner .hosting-banner-content h1 {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 25px;
}
.hosting-main-banner .hosting-banner-content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.hosting-main-banner .hosting-banner-content ul li {
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    padding-left: 30px;
}
.hosting-main-banner .hosting-banner-content ul li:before {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #44ce6f;
    content: "";
}
.hosting-main-banner .hosting-banner-content ul li:last-child {
    margin-bottom: 0;
}
.hosting-main-banner .hosting-banner-content p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 25px;
}
.hosting-main-banner .hosting-banner-content p span {
    text-decoration: line-through;
}
.hosting-main-banner .hosting-banner-image {
    position: relative;
}
.hosting-main-banner .hosting-banner-image img {
    position: absolute;
}
.hosting-main-banner .hosting-banner-image img:first-child {
    top: -175px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(2) {
    top: 184px;
    left: 21%;
}
.hosting-main-banner .hosting-banner-image img:nth-child(3) {
    top: 177px;
    right: 38px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(4) {
    left: 29%;
    right: 0;
    top: -15px;
    margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(5) {
    right: 8px;
    top: -107px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(6) {
    left: 18%;
    top: -175px;
    z-index: -1;
}
.hosting-main-banner .hosting-banner-image img:nth-child(7) {
    top: -235px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(8) {
    left: 27%;
    top: -200px;
}
.hosting-main-banner .hosting-banner-image img:nth-child(9) {
    z-index: -2;
    top: 40px;
    left: 80px;
    right: 0;
    margin: 0 auto;
}
.hosting-main-banner .hosting-banner-image img:nth-child(10) {
    display: none;
}
.hosting-main-banner .hosting-banner-image.single-hosting-banner-image img {
    display: block;
    position: relative;
    top: 0 !important;
    left: 0;
    right: 0;
    bottom: 0;
}
.shape1 {
    top: 20%;
    left: 30px;
    -webkit-animation: rotate3d 4s linear infinite;
    animation: rotate3d 4s linear infinite;
    opacity: 0.4;
}
.shape1,
.shape2 {
    position: absolute;
    z-index: -1;
}
.shape2 {
    top: 60%;
    left: 15%;
}
.shape3 {
    left: 25%;
    -webkit-animation: animationFramesOne 15s linear infinite;
    animation: animationFramesOne 15s linear infinite;
}
.shape3,
.shape4 {
    position: absolute;
    bottom: 15%;
    z-index: -1;
}
.shape4 {
    right: 25%;
    -webkit-animation: animationFramesOne 20s linear infinite;
    animation: animationFramesOne 20s linear infinite;
}
.shape5 {
    right: 5%;
    top: 10%;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
    opacity: 0.2;
}
.shape5,
.shape6 {
    position: absolute;
    z-index: -1;
}
.shape6 {
    top: 40%;
    right: 10%;
}
.shape7 {
    left: 25%;
    -webkit-animation: animationFramesOne 20s linear infinite;
    animation: animationFramesOne 20s linear infinite;
}
.shape7,
.shape8 {
    position: absolute;
    top: 15%;
    z-index: -1;
}
.shape8 {
    right: 10%;
}
@-webkit-keyframes movebounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
@-webkit-keyframes rotateme {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes rotateme {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@-webkit-keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(1turn);
        transform: rotateY(1turn);
    }
}
@keyframes rotate3d {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
    to {
        -webkit-transform: rotateY(1turn);
        transform: rotateY(1turn);
    }
}
@-webkit-keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    to {
        -webkit-transform: translate(0) rotate(0deg);
    }
}
@keyframes animationFramesOne {
    0% {
        -webkit-transform: translate(0) rotate(0deg);
    }
    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg);
    }
    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg);
    }
    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg);
    }
    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg);
    }
    to {
        -webkit-transform: translate(0) rotate(0deg);
    }
}
.boxes-area {
    position: relative;
    padding-bottom: 80px;
    margin-top: -130px;
    z-index: 1;
}
.hosting-boxes-area {
    background-color: #032b8d;
    margin-top: 0;
}
.hosting-boxes-area .single-box {
    padding-left: 15px;
    padding-right: 15px;
}
.hosting-boxes-area .single-box .icon {
    line-height: 55px;
}
.boxes-slides .single-box {
    margin-left: 15px;
    margin-right: 15px;
}
.boxes-slides .single-box:hover {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.single-box {
    border: 1px dashed #cdf1d8;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0 0 10px rgba(72, 69, 224, 0.1);
    box-shadow: 0 0 10px rgba(72, 69, 224, 0.1);
}
.single-box,
.single-box .icon {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-box .icon {
    display: inline-block;
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 70px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
}
.single-box h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.single-box:before,
.single-box h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.single-box p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-box.bg-f78acb {
    border-color: rgba(247, 138, 203, 0.3);
}
.single-box.bg-f78acb .icon {
    color: #f78acb;
    background: rgba(247, 138, 203, 0.3);
}
.single-box.bg-c679e3 {
    border-color: #edc3fc;
}
.single-box.bg-c679e3 .icon {
    color: #c679e3;
    background: #edc3fc;
}
.single-box.bg-eb6b3d {
    border-color: rgba(235, 107, 61, 0.3);
}
.single-box.bg-eb6b3d .icon {
    color: #eb6b3d;
    background: rgba(235, 107, 61, 0.3);
}
.single-box:hover {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
    border-color: transparent;
}
.single-box:hover:before {
    opacity: 1;
    visibility: visible;
}
.single-box:hover .icon {
    background: #fff;
    color: #44ce6f;
}
.single-box:hover h3,
.single-box:hover p {
    color: #fff;
}
.single-box:hover.bg-f78acb .icon {
    color: #f78acb;
}
.single-box:hover.bg-c679e3 .icon {
    color: #c679e3;
}
.single-box:hover.bg-eb6b3d .icon {
    color: #eb6b3d;
}
.about-content .section-title {
    text-align: left;
    margin-bottom: 18px;
}
.about-content .section-title .bar {
    margin-right: 0;
    margin-left: 0;
}
.about-content .section-title p {
    margin: 0;
}
.about-inner-area {
    margin-top: 60px;
}
.about-inner-area .about-text h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.why-choose-us {
    background: transparent url(../img/banner-bg1.c8e7f324.jpg) 100% 0 no-repeat;
    position: relative;
    z-index: 1;
}
.why-choose-us .section-title {
    text-align: left;
}
.why-choose-us .section-title .bar,
.why-choose-us .section-title p {
    margin-left: 0;
    margin-right: 0;
}
.why-choose-us-image {
    position: relative;
    text-align: center;
}
.why-choose-us-image .main-pic {
    display: none;
}
.why-choose-us-image img:first-child {
    position: relative;
    left: -20px;
}
.why-choose-us-image img:nth-child(3) {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    margin: 0 auto;
    z-index: -1;
}
.why-choose-us-image.single-why-choose-us-image img {
    display: block;
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
}
.col-lg-6 .col-lg-6:first-child .single-why-choose-us {
    margin-top: 60px;
}
.col-lg-6 .col-lg-6:nth-child(2) .single-why-choose-us {
    margin-top: 0;
}
.col-lg-6 .col-lg-6:nth-child(4) .single-why-choose-us {
    margin-top: -30px;
}
.single-why-choose-us {
    padding: 30px 15px;
    border-radius: 5px;
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 0 30px rgba(56, 46, 46, 0.1);
    box-shadow: 0 0 30px rgba(56, 46, 46, 0.1);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 30px;
}
.single-why-choose-us .icon {
    color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-why-choose-us .icon i:before {
    font-size: 45px;
}
.single-why-choose-us h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-why-choose-us:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.single-why-choose-us:before,
.single-why-choose-us p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-why-choose-us:hover {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
    border-color: transparent;
}
.single-why-choose-us:hover:before {
    opacity: 1;
    visibility: visible;
}
.single-why-choose-us:hover .icon,
.single-why-choose-us:hover h3,
.single-why-choose-us:hover p {
    color: #fff;
}
.services-area {
    overflow: hidden;
}
.services-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}
.services-content .section-title .bar {
    margin-left: 0;
    margin-right: 0;
}
.services-content .section-title p {
    margin: 0;
}
.services-content .row {
    margin-left: -8px;
    margin-right: -8px;
}
.services-content .row .col-lg-6 {
    padding-left: 8px;
    padding-right: 8px;
}
.services-content .box {
    position: relative;
    z-index: 1;
    display: block;
    padding: 15px 12px;
    color: #6084a4;
    font-weight: 500;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}
.services-content .box,
.services-content .box:before {
    border-radius: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.services-content .box:before {
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1;
}
.services-content .box .feather {
    position: relative;
    top: 2px;
    margin-right: 5px;
    display: inline-block;
    color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 18px;
}
.services-content .box:hover {
    color: #fff;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.services-content .box:hover:before {
    opacity: 1;
    visibility: visible;
}
.services-content .box:hover svg {
    color: #fff;
}
.services-right-image {
    position: relative;
}
.services-right-image img {
    position: absolute;
}
.services-right-image img:first-child {
    left: 22%;
    top: -85px;
    z-index: 1;
}
.services-right-image img:nth-child(2) {
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    top: -52px;
}
.services-right-image img:nth-child(3) {
    left: 44%;
    top: -33px;
    z-index: 1;
}
.services-right-image img:nth-child(4) {
    right: 38%;
    z-index: 1;
    top: -220px;
}
.services-right-image img:nth-child(5) {
    z-index: 1;
    right: 24%;
    top: 8px;
}
.services-right-image img:nth-child(6) {
    left: 29%;
    top: 0;
    z-index: 1;
}
.services-right-image img:nth-child(7) {
    right: 44%;
    top: -78px;
    z-index: 1;
}
.services-right-image img:nth-child(8) {
    right: 30%;
    top: -134px;
    z-index: 1;
}
.services-right-image img:nth-child(9) {
    right: 31%;
    top: -21px;
    z-index: 1;
}
.services-right-image img:nth-child(10) {
    right: 24%;
    top: -80px;
}
.services-right-image img:nth-child(11) {
    left: 27%;
    top: -60px;
    z-index: 2;
}
.services-right-image img:nth-child(12) {
    right: 28%;
    z-index: 1;
    top: -54px;
}
.services-right-image img:nth-child(13) {
    left: 31%;
    top: -105px;
    z-index: 1;
}
.services-right-image img.bg-image {
    top: -262px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.services-right-image img:last-child {
    display: none;
}
.services-right-image.single-right-image img {
    display: block;
}
.services-right-image.single-right-image img:first-child {
    top: -60px;
}
.services-right-image.single-right-image img:last-child {
    position: relative;
    left: 0;
    top: 0;
}
.services-left-image {
    position: relative;
}
.services-left-image img {
    position: absolute;
}
.services-left-image img:first-child {
    left: 15%;
    top: -98px;
}
.services-left-image img:nth-child(2) {
    left: 0;
    top: -200px;
    right: 0;
    text-align: center;
    margin: 0 auto;
}
.services-left-image img:nth-child(3) {
    left: 36%;
    z-index: 12;
    top: -55px;
}
.services-left-image img:nth-child(4) {
    left: 55px;
    top: -38px;
    z-index: 1;
}
.services-left-image img:nth-child(5) {
    z-index: 3;
    right: 26%;
    top: -66px;
}
.services-left-image img:nth-child(6) {
    right: 19%;
    top: -41px;
    z-index: 2;
}
.services-left-image img:nth-child(7) {
    right: 97px;
    top: 40px;
    z-index: 1;
}
.services-left-image img:nth-child(8) {
    right: 23%;
    top: -175px;
    z-index: 2;
}
.services-left-image img.bg-image {
    top: -262px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.services-left-image img:last-child {
    display: none;
}
.services-left-image.single-left-image img {
    display: block;
}
.services-left-image.single-left-image img:first-child {
    top: -60px;
}
.services-left-image.single-left-image img:last-child {
    position: relative;
    left: 0;
    top: 0;
}
.single-services-box {
    position: relative;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 20px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
}
.single-services-box h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.single-services-box .icon {
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 70px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-services-box .icon.bg-c679e3 {
    color: #c679e3;
    background: #edc3fc;
}
.single-services-box .icon.bg-eb6b3d {
    color: #eb6b3d;
    background: rgba(235, 107, 61, 0.3);
}
.single-services-box:after,
.single-services-box:before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background: #44ce6f;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-services-box:before {
    left: 0;
}
.single-services-box:after {
    right: 0;
}
.single-services-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-services-box:hover .icon {
    background: #44ce6f;
    color: #fff;
}
.single-services-box:hover .icon.bg-c679e3 {
    background: #c679e3;
}
.single-services-box:hover .icon.bg-eb6b3d {
    background: #eb6b3d;
}
.single-services-box:hover:after,
.single-services-box:hover:before {
    opacity: 1;
    visibility: visible;
    width: 50%;
}
.services-area-two {
    padding-bottom: 50px;
}
.services-details-desc h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.services-details-desc .services-details-accordion {
    margin-top: 25px;
}
.services-details-desc .services-details-accordion .faq-wrapper[data-v-dd43507e] {
    max-width: 100%;
}
.services-details-desc .services-details-accordion .faq {
    padding: 0;
}
.services-details-desc .services-details-accordion .accordion {
    list-style-type: none;
    padding: 0;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.services-details-desc .services-details-accordion .accordion .accordion__item {
    display: block;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 5px 0 #eee;
    box-shadow: 0 0 5px 0 #eee;
    border: 1px solid rgba(0, 0, 0, 0.125);
    background: #fff;
}
.services-details-desc .services-details-accordion .accordion .accordion__item:last-child {
    margin-bottom: 0 !important;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title {
    display: block;
    padding: 12px 20px 12px 51px;
    text-decoration: none;
    color: #0e314c;
    position: relative;
    border-bottom: 1px solid #fff;
    background: #f5f9ff;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    font-size: 15px;
    font-weight: 500;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title.accordion__title_active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title .accordion__title-text {
    margin-right: 0;
    line-height: normal;
    color: #0e314c;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    -webkit-transform: unset;
    transform: unset;
    text-align: center;
    height: 100%;
    background: #44ce6f;
    color: #fff;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:after,
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:before {
    right: 0;
    width: 40%;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button.accordion__toggle-button_active:before {
    opacity: 0;
    visibility: hidden;
}
.services-details-desc .services-details-accordion .accordion .accordion__item .accordion__value {
    position: relative;
    overflow: hidden;
    color: #6084a4;
    padding: 15px;
    line-height: 1.9;
}
.services-details-area .separate {
    margin-top: 80px;
}
.services-details-image {
    text-align: center;
}
.features-area {
    padding-bottom: 50px;
}
.features-area-two {
    overflow: hidden;
}
.single-features {
    position: relative;
    background: #fff;
    padding-left: 95px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-features h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.single-features .icon {
    position: absolute;
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 69px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
    left: 20px;
    top: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-features .icon.bg-c679e3 {
    color: #c679e3;
    background: #edc3fc;
}
.single-features .icon.bg-eb6b3d {
    color: #eb6b3d;
    background: rgba(235, 107, 61, 0.3);
}
.single-features:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-features:hover .icon {
    background: #44ce6f;
    color: #fff;
}
.single-features:hover .icon.bg-c679e3 {
    background: #c679e3;
}
.single-features:hover .icon.bg-eb6b3d {
    background: #eb6b3d;
}
.hosting-features-area {
    padding-bottom: 50px;
}
.single-hosting-features {
    position: relative;
    background: #fff;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 5px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding-left: 20px;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 30px;
}
.single-hosting-features h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}
.single-hosting-features .icon {
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 68px;
    background: #cdf1d8;
    display: inline-block;
    border-radius: 50%;
    color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-hosting-features .icon.bg-c679e3 {
    color: #c679e3;
    background: #edc3fc;
}
.single-hosting-features .icon.bg-eb6b3d {
    color: #eb6b3d;
    background: rgba(235, 107, 61, 0.3);
}
.single-hosting-features:after,
.single-hosting-features:before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    background: #44ce6f;
    opacity: 0;
    visibility: hidden;
    bottom: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-hosting-features:before {
    left: 0;
}
.single-hosting-features:after {
    right: 0;
}
.single-hosting-features:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-hosting-features:hover .icon {
    background: #44ce6f;
    color: #fff;
}
.single-hosting-features:hover .icon.bg-c679e3 {
    background: #c679e3;
}
.single-hosting-features:hover .icon.bg-eb6b3d {
    background: #eb6b3d;
}
.single-hosting-features:hover:after,
.single-hosting-features:hover:before {
    opacity: 1;
    visibility: visible;
    width: 50%;
}
.features-details-desc h3 {
    font-size: 20px;
    margin-bottom: 13px;
}
.features-details-desc .features-details-list {
    padding: 0;
    margin: 20px 0 0;
    list-style-type: none;
}
.features-details-desc .features-details-list li {
    margin-bottom: 12px;
    color: #6084a4;
    position: relative;
    padding-left: 15px;
}
.features-details-desc .features-details-list li:before {
    background: #44ce6f;
    width: 8px;
    height: 8px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    content: "";
}
.features-details-desc .features-details-list li:last-child {
    margin-bottom: 0;
}
.features-details-desc .features-details-accordion {
    margin-top: 25px;
}
.features-details-desc .features-details-accordion .faq-wrapper[data-v-dd43507e] {
    max-width: 100%;
}
.features-details-desc .features-details-accordion .faq {
    padding: 0;
}
.features-details-desc .features-details-accordion .accordion {
    list-style-type: none;
    padding: 0;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.features-details-desc .features-details-accordion .accordion .accordion__item {
    display: block;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 5px 0 #eee;
    box-shadow: 0 0 5px 0 #eee;
    border: 1px solid rgba(0, 0, 0, 0.125);
    background: #fff;
}
.features-details-desc .features-details-accordion .accordion .accordion__item:last-child {
    margin-bottom: 0 !important;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title {
    display: block;
    padding: 12px 20px 12px 51px;
    text-decoration: none;
    color: #0e314c;
    position: relative;
    border-bottom: 1px solid #fff;
    background: #f5f9ff;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    font-size: 15px;
    font-weight: 500;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title.accordion__title_active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title .accordion__title-text {
    margin-right: 0;
    line-height: normal;
    color: #0e314c;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    -webkit-transform: unset;
    transform: unset;
    text-align: center;
    height: 100%;
    background: #44ce6f;
    color: #fff;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:after,
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:before {
    right: 0;
    width: 40%;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button.accordion__toggle-button_active:before {
    opacity: 0;
    visibility: hidden;
}
.features-details-desc .features-details-accordion .accordion .accordion__item .accordion__value {
    position: relative;
    overflow: hidden;
    color: #6084a4;
    padding: 15px;
    line-height: 1.9;
}
.features-details-area .separate {
    margin-top: 80px;
}
.features-details-image {
    text-align: center;
}
.team-area {
    padding-bottom: 50px;
}
.team-area .VueCarousel-dot-container {
    margin-bottom: 30px;
}
.team-slides .single-team {
    margin-left: 15px;
    margin-right: 15px;
}
.single-team {
    background: #fff;
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
    text-align: center;
    padding-top: 35px;
    padding-bottom: 35px;
}
.single-team .team-image {
    position: relative;
    z-index: 1;
    padding-left: 35px;
    padding-right: 35px;
}
.single-team .team-image img {
    border: 3px solid #cdf1d8;
    width: auto !important;
    border-radius: 50%;
    display: inline-block !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-team .team-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    background: #f9f6f6;
    height: 10px;
    width: 100%;
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-team .team-content {
    padding-left: 35px;
    padding-right: 35px;
}
.single-team .team-content ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.single-team .team-content ul li {
    display: inline-block;
    margin: 0 5px;
}
.single-team .team-content ul li a {
    color: #c679e3;
}
.single-team .team-content ul li a:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: #44ce6f;
}
.single-team .team-content ul li a svg {
    width: 19px;
}
.single-team .team-content p {
    margin-top: 20px;
    margin-bottom: 0;
}
.single-team .team-info {
    background: linear-gradient(135deg, #23bdb8, #43e794);
    padding: 10px 15px;
    border-radius: 75px;
    margin-bottom: 25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-team .team-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
}
.single-team .team-info span {
    color: #fff;
    font-size: 13px;
}
.single-team:hover {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-color: #fff !important;
}
.single-team:hover .team-image:before {
    height: 0;
}
.single-team:hover .team-image img {
    border-color: #44ce6f;
}
.single-team:hover .team-info {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
}
.works-area {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}
.single-works {
    position: relative;
    margin-bottom: 30px;
}
.single-works:before {
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.single-works .icon,
.single-works:before {
    position: absolute;
    top: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-works .icon {
    border-radius: 50%;
    right: 25px;
    background: #fff;
    width: 45px;
    text-align: center;
    height: 45px;
    line-height: 54px;
}
.single-works .icon svg {
    width: 19px;
}
.single-works .icon:hover {
    background: #0e314c;
    color: #fff;
}
.single-works .works-content {
    position: absolute;
    bottom: -60px;
    left: 0;
    padding: 20px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-works .works-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
}
.single-works .works-content h3 a,
.single-works .works-content p {
    color: #fff;
}
.single-works:hover:before {
    opacity: 0.8;
    visibility: visible;
}
.single-works:hover .icon {
    opacity: 1;
    visibility: visible;
    top: 25px;
}
.single-works:hover .works-content {
    opacity: 1;
    visibility: visible;
    bottom: 0;
}
.works-slides .single-works {
    margin-left: 15px;
    margin-right: 15px;
}
.funfacts-area {
    position: relative;
    z-index: 1;
}
.funfacts-area .section-title h2 {
    max-width: 520px;
    margin: 0 auto;
    line-height: 37px;
}
.funfacts-area .map-bg {
    position: absolute;
    z-index: -1;
    top: 120px;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
}
.funfact {
    text-align: center;
}
.funfact h3 {
    color: #44ce6f;
    font-size: 32px;
    margin-bottom: 7px;
}
.funfact p {
    line-height: normal;
}
.contact-cta-box {
    margin: 80px auto 0;
    max-width: 600px;
    border: 1px dashed #ebebeb;
    padding: 30px 210px 30px 30px;
    border-radius: 5px;
    position: relative;
}
.contact-cta-box h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.contact-cta-box p {
    margin-bottom: 0;
}
.contact-cta-box .btn {
    position: absolute;
    right: 30px;
    top: 50%;
    margin-top: -27px;
}
.contact-cta-box .btn:after,
.contact-cta-box .btn:before {
    background: #44ce6f;
}
.contact-cta-box .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.contact-cta-box .btn-primary:focus,
.contact-cta-box .btn-primary:hover {
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.funfacts-area.bg-image {
    position: relative;
    z-index: 1;
    background-image: url(../img/funfacts-bg.74bc43d1.jpg);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.funfacts-area.bg-image:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-color: #011f43;
    opacity: 0.86;
}
.funfacts-area.bg-image .section-title h2,
.funfacts-area.bg-image .section-title p {
    color: #fff;
}
.funfacts-area.bg-image .contact-cta-box {
    border-color: #406883;
}
.funfacts-area.bg-image .contact-cta-box h3,
.funfacts-area.bg-image .contact-cta-box p {
    color: #fff;
}
.single-funfact {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 5px;
}
.single-funfact h3 {
    color: #44ce6f;
    font-size: 32px;
    margin-bottom: 7px;
}
.single-funfact p {
    line-height: normal;
    color: #fff;
}
.pricing-area {
    position: relative;
    z-index: 1;
}
.pricing-table {
    text-align: center;
    -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding-bottom: 35px;
}
.pricing-table,
.pricing-table .pricing-header {
    background: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.pricing-table .pricing-header {
    position: relative;
    padding: 30px 20px;
    border-radius: 5px 5px 0 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    z-index: 1;
}
.pricing-table .pricing-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: -1;
}
.pricing-table .pricing-header h3 {
    font-size: 18px;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 0;
}
.pricing-table .price {
    margin-bottom: 30px;
}
.pricing-table .price span {
    color: #44ce6f;
    font-size: 30px;
    font-weight: 600;
}
.pricing-table .price span sup {
    font-weight: 500;
}
.pricing-table .price span span {
    font-size: 14px;
    font-weight: 500;
}
.pricing-table .pricing-features ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 30px;
}
.pricing-table .pricing-features ul li {
    color: #ccdcea;
    margin-bottom: 12px;
    text-decoration: line-through;
}
.pricing-table .pricing-features ul li:last-child {
    margin-bottom: 0;
}
.pricing-table .pricing-features ul li.active {
    color: #6084a4;
    text-decoration: none;
}
.pricing-table:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.pricing-table:hover .pricing-header:before {
    opacity: 1;
    visibility: visible;
}
.pricing-table:hover .pricing-header h3 {
    color: #fff;
}
.pricing-table.active-plan .pricing-header:before {
    opacity: 1;
    visibility: visible;
}
.pricing-table.active-plan .pricing-header h3 {
    color: #fff;
}
.pricing-table.active-plan .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.pricing-table.active-plan .btn-primary:after,
.pricing-table.active-plan .btn-primary:before {
    background: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.single-pricing-table {
    text-align: center;
    background: #fff;
    -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 35px;
}
.single-pricing-table,
.single-pricing-table .pricing-header i {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-pricing-table .pricing-header i:before {
    font-size: 45px;
}
.single-pricing-table .pricing-header h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 15px 0 20px;
}
.single-pricing-table .price {
    margin-bottom: 20px;
}
.single-pricing-table .price span {
    color: #44ce6f;
    font-size: 30px;
    font-weight: 600;
}
.single-pricing-table .price span sup {
    font-weight: 500;
}
.single-pricing-table .price span span {
    font-size: 14px;
    font-weight: 500;
}
.single-pricing-table .pricing-features ul {
    padding: 0;
    margin: 0 0 30px;
    list-style-type: none;
}
.single-pricing-table .pricing-features ul li {
    color: #6084a4;
    margin-bottom: 12px;
}
.single-pricing-table .pricing-features ul li:last-child {
    margin-bottom: 0;
}
.single-pricing-table .pricing-features ul li i {
    width: 15px;
    position: relative;
    top: 2px;
}
.single-pricing-table.active-plan .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.single-pricing-table.active-plan .btn-primary:after,
.single-pricing-table.active-plan .btn-primary:before {
    background: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.tab .tabs_item {
    display: none;
}
.tab .tabs_item:first-child {
    display: block;
}
.tab .tabs_item:nth-child(2) .pricing-box {
    background: -webkit-gradient(linear, left bottom, right top, from(#fffcff), color-stop(#fbfaff), color-stop(#effbff), color-stop(#e0fdff), to(#d5fefd));
    background: linear-gradient(to right top, #fffcff, #fbfaff, #effbff, #e0fdff, #d5fefd);
}
.pricing-tab .card {
    border: none;
    background-color: transparent;
}
.pricing-tab .card .nav-tabs {
    margin-bottom: 45px;
    border: none;
}
.pricing-tab .tabs {
    padding-left: 0;
    list-style-type: none;
    text-align: center;
    margin-bottom: 0;
}
.pricing-tab .tabs li {
    display: inline-block;
    margin-bottom: 0;
}
.pricing-tab .tabs li a {
    padding: 10px 30px 9.5px;
    border: none;
    margin-left: -2px;
    margin-right: -2px;
    font-weight: 500;
    font-size: 15px;
}
.pricing-tab .tabs li a,
.pricing-tab .tabs li a:hover {
    background: -webkit-gradient(linear, right top, left bottom, from(#fffcff), color-stop(#fbfaff), color-stop(#effbff), color-stop(#e0fdff), to(#d5fefd));
    background: linear-gradient(to left bottom, #fffcff, #fbfaff, #effbff, #e0fdff, #d5fefd);
}
.pricing-tab .tabs li a:hover {
    color: #0e314c;
}
.pricing-tab .tabs li a.active {
    color: #fff;
    background: #0e314c;
}
.pricing-tab .tabs li:first-child a,
.pricing-tab .tabs li:first-child a:before {
    border-radius: 5px 0 0 5px;
}
.pricing-tab .tabs li:nth-child(2) a,
.pricing-tab .tabs li:nth-child(2) a:before {
    border-radius: 0 5px 5px 0;
}
.pricing-box {
    background: -webkit-gradient(linear, right top, left bottom, from(#fffcff), color-stop(#fbfaff), color-stop(#effbff), color-stop(#e0fdff), to(#d5fefd));
    background: linear-gradient(to left bottom, #fffcff, #fbfaff, #effbff, #e0fdff, #d5fefd);
    text-align: center;
    padding: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
}
.pricing-box .pricing-header h3 {
    margin-bottom: 0;
    font-size: 20px;
}
.pricing-box .pricing-header p {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}
.pricing-box .price {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 20px;
}
.pricing-box .price span {
    display: inline-block;
    margin-left: -7px;
    font-size: 20px;
    font-weight: 600;
}
.pricing-box .buy-btn {
    margin-bottom: 30px;
}
.pricing-box .buy-btn .btn {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    -webkit-transform: unset !important;
    transform: unset !important;
}
.pricing-box .buy-btn .btn-primary {
    border-radius: 30px;
    background: -webkit-gradient(linear, left bottom, right top, from(#a3a3a3), color-stop(#9a9a9a), color-stop(#909090), color-stop(#878787), to(#7e7e7e));
    background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
    text-transform: capitalize;
    padding: 11px 30px;
    font-weight: 500;
}
.pricing-box .buy-btn .btn-primary:after {
    border-radius: 30px;
    background: #44ce6f;
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.pricing-box .buy-btn .btn-primary:before {
    display: none;
}
.pricing-box .buy-btn .btn-primary .show > .pricing-box .buy-btn .btn-primary.dropdown-toggle,
.pricing-box .buy-btn .btn-primary:not(:disabled):not(.disabled).active,
.pricing-box .buy-btn .btn-primary:not(:disabled):not(.disabled):active {
    background: -webkit-gradient(linear, left bottom, right top, from(#a3a3a3), color-stop(#9a9a9a), color-stop(#909090), color-stop(#878787), to(#7e7e7e));
    background: linear-gradient(to right top, #a3a3a3, #9a9a9a, #909090, #878787, #7e7e7e);
}
.pricing-box .buy-btn .btn-primary:focus:after,
.pricing-box .buy-btn .btn-primary:hover:after {
    opacity: 0;
    visibility: hidden;
}
.pricing-box .pricing-features {
    margin-bottom: 0;
    list-style-type: none;
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}
.pricing-box .pricing-features li {
    margin-bottom: 12px;
    color: #495771;
    position: relative;
    padding-left: 27px;
    display: block;
}
.pricing-box .pricing-features li:last-child {
    margin-bottom: 0;
}
.pricing-box .pricing-features li i {
    color: #44ce6f;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
}
.domain-search-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}
.domain-search-content h2 {
    text-transform: capitalize;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
}
.domain-search-content form {
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
    border-radius: 30px;
}
.domain-search-content form .form-control {
    background-color: #fff;
    border: none;
    height: 55px;
    padding-left: 20px;
    float: left;
    width: 63%;
}
.domain-search-content form .domain-select {
    float: left;
    width: 15%;
    padding-right: 20px;
}
.domain-search-content form .domain-select .form-control {
    padding: 0;
    float: unset;
    width: 100%;
    cursor: pointer;
    height: 55px;
}
.domain-search-content form button {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    float: left;
    width: 22%;
    height: 55px;
    border-radius: 30px;
    background-color: #44ce6f;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    outline: 0;
    cursor: pointer;
    border: none;
    padding: 15px 40px;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.domain-search-content form button:focus,
.domain-search-content form button:hover {
    background-color: #c679e3;
}
.domain-search-content ul {
    padding: 0;
    margin: 30px 0 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.domain-search-content ul li {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 500;
    border-left: 1px solid #eee;
}
.domain-search-content ul li:first-child {
    border-left: none;
}
.feedback-area {
    position: relative;
    z-index: 1;
}
.feedback-slides {
    max-width: 750px;
    margin: 0 auto;
}
.feedback-slides,
.feedback-slides .client-feedback {
    position: relative;
}
.feedback-slides .client-feedback .single-feedback {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 60px;
    position: relative;
    padding-left: 170px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.feedback-slides .client-feedback .single-feedback .client-img {
    position: absolute;
    left: 40px;
    top: 40px;
}
.feedback-slides .client-feedback .single-feedback .client-img img {
    border-radius: 50%;
    border: 2px solid #44ce6f;
    padding: 3px;
    width: auto !important;
    display: inline-block !important;
}
.feedback-slides .client-feedback .single-feedback h3 {
    font-size: 18px;
    margin: 0;
}
.feedback-slides .client-feedback .single-feedback span {
    display: block;
    color: #c679e3;
    margin-top: 8px;
    margin-bottom: 18px;
}
.feedback-slides .client-feedback .single-feedback p {
    font-size: 15px;
}
.feedback-slides .client-feedback .single-feedback:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    right: 0;
    margin: 0 auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.feedback-slides .client-thumbnails {
    position: relative;
    margin: 0 85px;
}
.feedback-slides .client-thumbnails .item .img-fill {
    cursor: pointer;
    position: relative;
    text-align: center;
}
.feedback-slides .client-thumbnails .item .img-fill img {
    opacity: 0.4;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: inline-block;
    position: relative;
    border: 2px solid #44ce6f;
    border-radius: 50%;
    padding: 3px;
    width: 85px;
}
.feedback-slides .client-thumbnails .item:hover .img-fill img,
.feedback-slides .client-thumbnails .slick-center .item .img-fill img {
    opacity: 1;
}
.client-thumbnails .next-arrow,
.client-thumbnails .prev-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: transparent;
    color: #5e5e5e;
    border: 2px solid #5e5e5e;
    z-index: 1;
    border-radius: 50%;
    line-height: 44px;
    outline: 0 !important;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.client-thumbnails .next-arrow:before,
.client-thumbnails .prev-arrow:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
}
.client-thumbnails .next-arrow:hover,
.client-thumbnails .prev-arrow:hover {
    color: #fff;
    border-color: #44ce6f;
}
.client-thumbnails .next-arrow:hover:before,
.client-thumbnails .prev-arrow:hover:before {
    opacity: 1;
    visibility: visible;
}
.client-thumbnails .next-arrow svg,
.client-thumbnails .prev-arrow svg {
    width: 18px;
    height: 18px;
    position: relative;
}
.client-thumbnails .next-arrow {
    right: -20px;
}
.client-thumbnails .prev-arrow {
    left: -20px;
}
.testimonials-slides {
    background-color: #f7fbfe;
    max-width: 850px;
    margin: 90px auto 30px;
    position: relative;
    z-index: 1;
}
.testimonials-slides .single-feedback-item {
    margin: 0 15px;
}
.testimonials-slides:before {
    left: -30px;
    top: -30px;
}
.testimonials-slides:after,
.testimonials-slides:before {
    position: absolute;
    width: 260px;
    height: 260px;
    content: "";
    z-index: -1;
    background-image: url(../img/layer.e7c5b641.png);
}
.testimonials-slides:after {
    right: -30px;
    bottom: -30px;
}
.testimonials-slides .VueCarousel-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
}
.testimonials-slides .VueCarousel-pagination .VueCarousel-dot-container {
    margin-top: 0 !important;
}
.single-feedback-item {
    padding: 40px 130px 90px;
    text-align: center;
    background-color: #f7fbfe;
    position: relative;
}
.single-feedback-item .client-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-align: left;
    max-width: 280px;
    margin: 0 auto 25px;
}
.single-feedback-item .client-info .image {
    padding-right: 20px;
}
.single-feedback-item .client-info .image img {
    display: inline-block !important;
    width: 75px;
    border-radius: 50%;
    border: 3px solid #44ce6f;
}
.single-feedback-item .client-info .title h3 {
    font-size: 18px;
    margin: 0;
}
.single-feedback-item .client-info .title span {
    display: block;
    margin-top: 8px;
    color: #c679e3;
}
.single-feedback-item p {
    font-size: 16px;
    font-style: italic;
}
.single-feedback-item:before {
    content: "\f11b";
    color: #d9dcde;
    font-family: Flaticon;
    font-size: 30px;
    font-style: normal;
    font-size: 65px;
    position: absolute;
    top: 0;
    left: 25px;
}
.agency-portfolio-feedback-slides {
    max-width: 730px;
    margin-left: auto;
    margin-right: auto;
}
.agency-portfolio-feedback-item {
    margin-bottom: 20px;
    text-align: center;
}
.agency-portfolio-feedback-item img {
    width: auto !important;
    display: inline-block !important;
    border-radius: 50%;
    border: 3px solid #999;
}
.agency-portfolio-feedback-item p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 0;
}
.bigdata-feedback-area {
    background-color: #eef6fd;
}
.single-feedback-box {
    position: relative;
    margin-left: 25px;
    margin-top: 25px;
    margin-bottom: 30px;
}
.single-feedback-box .feedback-desc {
    background-color: #fff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-top: 40px;
}
.single-feedback-box .feedback-desc p {
    margin-bottom: 0;
    position: relative;
    color: #0e314c;
}
.single-feedback-box .feedback-desc p:before {
    content: '"';
    position: relative;
    display: inline-block;
    left: 0;
    color: #0e314c;
}
.single-feedback-box .feedback-desc p:after {
    content: '"';
    position: relative;
    display: inline-block;
    right: 0;
    color: #0e314c;
}
.single-feedback-box .feedback-desc:before {
    content: "";
    position: absolute;
    left: 35px;
    bottom: -12px;
    width: 25px;
    height: 25px;
    z-index: -1;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.single-feedback-box:before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "\f11b";
    position: absolute;
    left: 0;
    top: -25px;
    left: -25px;
    color: #fff;
    background: linear-gradient(135deg, #43e794, #23bdb8);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    z-index: 2;
    text-align: center;
    font-family: Flaticon;
    font-size: 30px;
}
.single-feedback-box .client-info {
    position: relative;
    padding-left: 65px;
    margin-top: 32px;
    margin-bottom: 25px;
    margin-left: 27px;
}
.single-feedback-box .client-info img {
    width: 50px !important;
    height: 50px !important;
    display: inline-block !important;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-feedback-box .client-info h3 {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600;
}
.single-feedback-box .client-info span {
    display: block;
    color: #6084a4;
    margin-top: 6px;
}
.ready-to-talk {
    text-align: center;
    position: relative;
    padding-top: 80px;
    padding-bottom: 160px;
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.ready-to-talk h3 {
    font-size: 28px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.ready-to-talk p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
}
.ready-to-talk .btn:after,
.ready-to-talk .btn:before {
    background: #fff;
}
.ready-to-talk .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 5px 20px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 5px 20px 0 rgba(198, 121, 227, 0.25);
}
.ready-to-talk .btn-primary:focus,
.ready-to-talk .btn-primary:hover {
    color: #0e314c;
    -webkit-box-shadow: 0 5px 20px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 5px 20px 0 rgba(68, 206, 111, 0.25);
}
.ready-to-talk span a {
    margin-left: 15px;
    color: #fff;
    text-decoration: underline;
}
.blog-area .style-two {
    text-align: left;
    margin-left: 15px;
}
.blog-area .style-two p {
    margin: 0;
}
.single-blog-post .blog-image .date i {
    width: 15px;
    margin-right: 3px;
    position: relative;
    top: 2px;
}
.single-blog-post .blog-post-content .read-more-btn i {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 15px;
    position: relative;
    top: 3.2px;
}
.single-blog-post .blog-post-content .read-more-btn:hover i {
    margin-left: 5px;
}
.single-blog-post-box .entry-post-content .learn-more-btn i {
    position: relative;
    top: 3.1px;
    width: 15px;
}
.blog-slides .single-blog-item {
    margin-left: 15px;
    margin-right: 15px;
}
.page-title-area {
    position: relative;
    z-index: 1;
    background: transparent url(../img/banner-bg1.c8e7f324.jpg) 100% 0 no-repeat;
    padding-top: 190px;
    padding-bottom: 100px;
    text-align: center;
}
.page-title-area h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}
.faq-accordion {
    -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    padding: 60px;
    background: #fff;
    border-radius: 10px;
}
.faq-accordion .accordion {
    list-style-type: none;
    padding: 0;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}
.faq-accordion .accordion .accordion__item {
    display: block;
    margin-bottom: 15px;
    -webkit-box-shadow: 0 0 5px 0 #eee;
    box-shadow: 0 0 5px 0 #eee;
    border: 1px solid rgba(0, 0, 0, 0.125);
    background: #fff;
}
.faq-accordion .accordion .accordion__item:last-child {
    margin-bottom: 0 !important;
}
.faq-accordion .accordion .accordion__item .accordion__title {
    display: block;
    padding: 12px 20px 12px 51px;
    text-decoration: none;
    color: #0e314c;
    position: relative;
    border-bottom: 1px solid #fff;
    background: #f5f9ff;
    -webkit-box-pack: unset;
    -ms-flex-pack: unset;
    justify-content: unset;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    font-size: 16px;
    font-weight: 500;
}
.faq-accordion .accordion .accordion__item .accordion__title.accordion__title_active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.faq-accordion .accordion .accordion__item .accordion__title .accordion__title-text {
    margin-right: 0;
    line-height: normal;
    color: #0e314c;
}
.faq-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    -webkit-transform: unset;
    transform: unset;
    text-align: center;
    height: 100%;
    background: #44ce6f;
    color: #fff;
}
.faq-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:after,
.faq-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button:before {
    right: 0;
    width: 50%;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}
.faq-accordion .accordion .accordion__item .accordion__title .accordion__toggle-button.accordion__toggle-button_active:before {
    opacity: 0;
    visibility: hidden;
}
.faq-accordion .accordion .accordion__item .accordion__value {
    position: relative;
    overflow: hidden;
    color: #6084a4;
    padding: 15px;
    line-height: 1.9;
}
.faq-contact {
    margin-top: 45px;
    -webkit-box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 18px 0 rgba(0, 0, 0, 0.08);
    padding: 60px;
    border-radius: 4px;
    background: #fff;
}
.faq-contact h3 {
    font-size: 24px;
    margin-bottom: 25px;
}
.faq-contact form .btn {
    margin-top: 10px;
}
.pagination-area {
    text-align: center;
    margin-top: 30px;
}
.pagination-area ul {
    padding: 0;
    margin: 0;
}
.pagination-area ul .page-item .page-link {
    padding: 11px 20px;
    margin: 0 -1px;
    color: #6f8ba4;
    background-color: #fff;
    border: none;
    border-radius: 0;
    -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
    box-shadow: 0 2px 10px 0 #d8dde6;
}
.pagination-area ul .page-item .page-link:focus,
.pagination-area ul .page-item .page-link:hover {
    color: #fff;
    background-color: #44ce6f;
    -webkit-box-shadow: unset;
    box-shadow: unset;
}
.pagination-area ul .page-item .page-link svg {
    width: 16px;
}
.pagination-area ul .page-item.active .page-link {
    color: #fff;
    background-color: #44ce6f;
}
.blog-details-desc .article-content {
    margin-top: 30px;
}
.blog-details-desc .article-content .entry-meta {
    margin-bottom: -8px;
}
.blog-details-desc .article-content .entry-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.blog-details-desc .article-content .entry-meta ul li {
    position: relative;
    display: inline-block;
    color: #0e314c;
    margin-right: 20px;
}
.blog-details-desc .article-content .entry-meta ul li a {
    display: inline-block;
    color: #6084a4;
}
.blog-details-desc .article-content .entry-meta ul li a:hover {
    color: #44ce6f;
}
.blog-details-desc .article-content .entry-meta ul li i {
    color: #c679e3;
    margin-right: 2px;
    position: relative;
    top: 2px;
    width: 15px;
}
.blog-details-desc .article-content .entry-meta ul li:before {
    content: "";
    position: absolute;
    top: 12px;
    right: -15px;
    width: 6px;
    height: 1px;
    background: #44ce6f;
}
.blog-details-desc .article-content .entry-meta ul li:last-child {
    margin-right: 0;
}
.blog-details-desc .article-content .entry-meta ul li:last-child:before {
    display: none;
}
.blog-details-desc .article-content h3 {
    margin-bottom: 15px;
    margin-top: 25px;
    font-size: 20px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 {
    padding-left: 0;
    list-style-type: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
    margin-bottom: 30px;
    margin-top: 30px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li {
    -ms-flex: 0 0 33.3333%;
    -webkit-box-flex: 0;
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding-right: 10px;
    padding-left: 10px;
}
.blog-details-desc .article-content .wp-block-gallery.columns-3 li figure {
    margin-bottom: 0;
}
.blog-details-desc .article-content .features-list {
    padding-left: 0;
    list-style-type: none;
    margin-top: 25px;
    margin-bottom: 30px;
}
.blog-details-desc .article-content .features-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #6084a4;
}
.blog-details-desc .article-content .features-list li i {
    color: #44ce6f;
    display: inline-block;
    width: 20px;
    position: absolute;
    left: 0;
    top: 0;
}
.blog-details-desc .article-content .features-list li:last-child {
    margin-bottom: 0;
}
.blog-details-desc .article-footer {
    margin-top: 30px;
}
.blog-details-desc .article-footer .article-tags a {
    display: inline-block;
    color: #fff;
    background-color: #c679e3;
    padding: 4px 12px;
    border-radius: 5px;
    margin-right: 5px;
    font-size: 14px;
}
.blog-details-desc .article-footer .article-tags a:hover {
    color: #fff;
    background-color: #44ce6f;
}
.comments-area {
    margin-top: 25px;
}
.comments-area .comments-title {
    margin-bottom: 30px;
    line-height: normal;
    font-size: 20px;
}
.comments-area .comment-list,
.comments-area ol,
.comments-area ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.comments-area .children {
    margin-left: 20px;
}
.comments-area .comment-body {
    border-bottom: 1px solid #eee;
    padding-left: 65px;
    color: #0e314c;
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.comments-area .comment-body .reply {
    margin-top: 15px;
}
.comments-area .comment-body .reply a {
    border: 1px solid #ded9d9;
    color: #0e314c;
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 500;
}
.comments-area .comment-body .reply a:hover {
    color: #fff;
    background-color: #44ce6f;
    border-color: #44ce6f;
}
.comments-area .comment-author {
    font-size: 16px;
    margin-bottom: 0.2em;
    position: relative;
    z-index: 2;
}
.comments-area .comment-author .avatar {
    height: 50px;
    left: -65px;
    position: absolute;
    width: 50px;
}
.comments-area .comment-author .fn {
    font-weight: 500;
}
.comments-area .comment-author .says {
    display: none;
}
.comments-area .comment-metadata {
    margin-bottom: 0.8em;
    color: #6084a4;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
}
.comments-area .comment-metadata a {
    color: #6084a4;
}
.comments-area .comment-metadata a:hover {
    color: #44ce6f;
}
.comments-area .comment-respond {
    margin-top: 30px;
}
.comments-area .comment-respond .comment-reply-title {
    margin-bottom: 0;
    font-size: 20px;
}
.comments-area .comment-respond .comment-reply-title #cancel-comment-reply-link {
    display: inline-block;
}
.comments-area .comment-respond .comment-form {
    overflow: hidden;
}
.comments-area .comment-respond .comment-notes {
    margin-bottom: 0;
    margin-top: 10px;
}
.comments-area .comment-respond .comment-notes .required {
    color: red;
}
.comments-area .comment-respond .comment-form-comment {
    margin-top: 15px;
    float: left;
    width: 100%;
}
.comments-area .comment-respond label {
    display: block;
    color: #0e314c;
    margin-bottom: 5px;
    font-size: 14px;
}
.comments-area .comment-respond input[type="date"],
.comments-area .comment-respond input[type="datetime-local"],
.comments-area .comment-respond input[type="email"],
.comments-area .comment-respond input[type="month"],
.comments-area .comment-respond input[type="number"],
.comments-area .comment-respond input[type="password"],
.comments-area .comment-respond input[type="search"],
.comments-area .comment-respond input[type="tel"],
.comments-area .comment-respond input[type="text"],
.comments-area .comment-respond input[type="time"],
.comments-area .comment-respond input[type="url"],
.comments-area .comment-respond input[type="week"],
.comments-area .comment-respond textarea {
    display: block;
    width: 100%;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 0.625em 0.7375em;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.comments-area .comment-respond input[type="date"]:focus,
.comments-area .comment-respond input[type="datetime-local"]:focus,
.comments-area .comment-respond input[type="email"]:focus,
.comments-area .comment-respond input[type="month"]:focus,
.comments-area .comment-respond input[type="number"]:focus,
.comments-area .comment-respond input[type="password"]:focus,
.comments-area .comment-respond input[type="search"]:focus,
.comments-area .comment-respond input[type="tel"]:focus,
.comments-area .comment-respond input[type="text"]:focus,
.comments-area .comment-respond input[type="time"]:focus,
.comments-area .comment-respond input[type="url"]:focus,
.comments-area .comment-respond input[type="week"]:focus,
.comments-area .comment-respond textarea:focus {
    border-color: #44ce6f;
}
.comments-area .comment-respond .comment-form-author {
    float: left;
    width: 50%;
    padding-right: 10px;
    margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-email {
    float: left;
    width: 50%;
    padding-left: 12px;
    margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-url {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent {
    width: 100%;
    float: left;
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form-cookies-consent input {
    position: absolute;
    left: 0;
    top: 5px;
}
.comments-area .comment-respond .comment-form-cookies-consent label {
    display: inline-block;
    margin: 0;
    color: #6084a4;
    font-weight: 400;
    position: relative;
    top: -2px;
}
.comments-area .comment-respond .form-submit {
    float: left;
    width: 100%;
}
.comments-area .comment-respond .form-submit input {
    background: #44ce6f;
    border: none;
    color: #fff;
    padding: 11px 25px 10px;
    display: inline-block;
    cursor: pointer;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}
.comments-area .comment-respond .form-submit input:focus,
.comments-area .comment-respond .form-submit input:hover {
    color: #fff;
    background-color: #c679e3;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.startp-post-navigation {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.prev-link-wrapper {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
}
.prev-link-wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.prev-link-wrapper a:hover .image-prev .post-nav-title,
.prev-link-wrapper a:hover .image-prev:after {
    opacity: 1;
    visibility: visible;
}
.prev-link-wrapper a:hover .prev-link-info-wrapper {
    color: #44ce6f;
}
.prev-link-wrapper .image-prev {
    display: inline-block;
    min-width: 100px;
    width: 100px;
    border-radius: 5px;
    overflow: hidden;
    vertical-align: top;
    margin-right: 20px;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.prev-link-wrapper .image-prev img {
    border-radius: 5px;
}
.prev-link-wrapper .image-prev:after {
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    border-radius: 5px;
    background-color: #44ce6f;
}
.prev-link-wrapper .image-prev .post-nav-title,
.prev-link-wrapper .image-prev:after {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.prev-link-wrapper .image-prev .post-nav-title {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.prev-link-wrapper .prev-link-info-wrapper {
    color: #0e314c;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.prev-link-wrapper .prev-title {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
}
.prev-link-wrapper .meta-wrapper {
    display: block;
    color: #6084a4;
    text-transform: capitalize;
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
}
.next-link-wrapper {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: right;
    padding-left: 15px;
}
.next-link-wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.next-link-wrapper a:hover .image-next .post-nav-title,
.next-link-wrapper a:hover .image-next:after {
    opacity: 1;
    visibility: visible;
}
.next-link-wrapper a:hover .next-link-info-wrapper {
    color: #44ce6f;
}
.next-link-wrapper .image-next {
    display: inline-block;
    min-width: 100px;
    width: 100px;
    border-radius: 5px;
    overflow: hidden;
    vertical-align: top;
    margin-left: 20px;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.next-link-wrapper .image-next img {
    border-radius: 5px;
}
.next-link-wrapper .image-next:after {
    display: block;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    border-radius: 5px;
    background-color: #44ce6f;
}
.next-link-wrapper .image-next .post-nav-title,
.next-link-wrapper .image-next:after {
    position: absolute;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.next-link-wrapper .image-next .post-nav-title {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.next-link-wrapper .next-link-info-wrapper {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #0e314c;
}
.next-link-wrapper .next-title {
    display: inline-block;
    font-weight: 500;
    font-size: 17px;
}
.next-link-wrapper .meta-wrapper {
    display: block;
    color: #6084a4;
    text-transform: capitalize;
    margin-top: 5px;
    font-weight: 400;
    font-size: 14px;
}
.blockquote,
blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 50px !important;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    margin-top: 20px;
}
.blockquote p,
blockquote p {
    color: #0e314c;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 20px !important;
}
.blockquote cite,
blockquote cite {
    display: none;
}
.blockquote:after,
blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #44ce6f;
    margin-top: 20px;
    margin-bottom: 20px;
}
.widget-area .widget {
    margin-top: 35px;
}
.widget-area .widget:first-child {
    margin-top: 0;
}
.widget-area .widget .widget-title {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
    position: relative;
    font-size: 19px;
}
.widget-area .widget .widget-title:before {
    content: "";
    position: absolute;
    background: #44ce6f;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
}
.widget-area .widget_search {
    -webkit-box-shadow: 0 0 29px 0 hsla(0, 0%, 40%, 0.1);
    box-shadow: 0 0 29px 0 hsla(0, 0%, 40%, 0.1);
    background-color: #fff;
    padding: 15px;
}
.widget-area .widget_search form {
    position: relative;
}
.widget-area .widget_search form label {
    display: block;
    margin-bottom: 0;
}
.widget-area .widget_search form .screen-reader-text {
    display: none;
}
.widget-area .widget_search form .search-field {
    background-color: transparent;
    height: 50px;
    padding: 6px 15px;
    border: 1px solid #eee;
    width: 100%;
    display: block;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.widget-area .widget_search form .search-field:focus {
    border-color: #44ce6f;
}
.widget-area .widget_search form button {
    position: absolute;
    right: 0;
    outline: 0;
    bottom: 0;
    height: 50px;
    width: 50px;
    z-index: 1;
    border: none;
    cursor: pointer;
    color: #fff;
    background-color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
}
.widget-area .widget_search form button svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    left: 0;
    width: 20px;
    margin-left: auto;
    margin-right: auto;
}
.widget-area .widget_search form button:hover {
    background-color: #c679e3;
    color: #fff;
}
.widget-area .widget_startp_posts_thumb {
    position: relative;
    overflow: hidden;
}
.widget-area .widget_startp_posts_thumb .item {
    overflow: hidden;
    margin-bottom: 15px;
}
.widget-area .widget_startp_posts_thumb .item:last-child {
    margin-bottom: 0;
}
.widget-area .widget_startp_posts_thumb .item .thumb {
    float: left;
    height: 80px;
    overflow: hidden;
    position: relative;
    width: 80px;
    margin-right: 15px;
}
.widget-area .widget_startp_posts_thumb .item .thumb .fullimage {
    width: 80px;
    height: 80px;
    display: inline-block;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: 50% !important;
}
.widget-area .widget_startp_posts_thumb .item .thumb .fullimage.bg1 {
    background-image: url(../img/7.94b75fa3.jpg);
}
.widget-area .widget_startp_posts_thumb .item .thumb .fullimage.bg2 {
    background-image: url(../img/8.b30b674a.jpg);
}
.widget-area .widget_startp_posts_thumb .item .thumb .fullimage.bg3 {
    background-image: url(../img/9.04430ab2.jpg);
}
.widget-area .widget_startp_posts_thumb .item .info {
    overflow: hidden;
    margin-top: 5px;
}
.widget-area .widget_startp_posts_thumb .item .info time {
    display: block;
    color: #6084a4;
    text-transform: uppercase;
    margin-top: 3px;
    margin-bottom: 5px;
    font-size: 12px;
}
.widget-area .widget_startp_posts_thumb .item .info .title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 15px;
    font-weight: 500;
}
.widget-area .widget_startp_posts_thumb .item .info .title a {
    display: inline-block;
}
.widget-area .widget_recent_entries ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.widget-area .widget_recent_entries ul li {
    position: relative;
    margin-bottom: 12px;
    color: #0e314c;
    padding-left: 14px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 14px;
}
.widget-area .widget_recent_entries ul li:last-child {
    margin-bottom: 0;
}
.widget-area .widget_recent_entries ul li:before {
    background: #44ce6f;
    position: absolute;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 8px;
}
.widget-area .widget_recent_entries ul li a {
    display: inline-block;
    color: #0e314c;
}
.widget-area .widget_recent_entries ul li a:hover {
    color: #44ce6f;
}
.widget-area .widget_recent_entries ul li .post-date {
    display: block;
    font-size: 13px;
    color: #6084a4;
    margin-top: 4px;
}
.widget-area .widget_recent_comments ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.widget-area .widget_recent_comments ul li {
    position: relative;
    margin-bottom: 12px;
    color: #6084a4;
    padding-left: 14px;
    line-height: 1.5;
    font-weight: 500;
    font-size: 14px;
}
.widget-area .widget_recent_comments ul li:last-child {
    margin-bottom: 0;
}
.widget-area .widget_recent_comments ul li:before {
    background: #44ce6f;
    position: absolute;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 8px;
}
.widget-area .widget_recent_comments ul li a {
    display: inline-block;
    color: #0e314c;
}
.widget-area .widget_recent_comments ul li a:hover {
    color: #44ce6f;
}
.widget-area .widget_archive ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.widget-area .widget_archive ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 14px;
    color: #0e314c;
    font-weight: 500;
    font-size: 14px;
}
.widget-area .widget_archive ul li:last-child {
    margin-bottom: 0;
}
.widget-area .widget_archive ul li:before {
    background: #44ce6f;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 8px;
    position: absolute;
}
.widget-area .widget_archive ul li a {
    display: inline-block;
    color: #0e314c;
}
.widget-area .widget_archive ul li a:hover {
    color: #44ce6f;
}
.widget-area .widget_categories ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.widget-area .widget_categories ul li {
    position: relative;
    margin-bottom: 12px;
    color: #6084a4;
    padding-left: 14px;
    font-weight: 500;
    font-size: 14px;
}
.widget-area .widget_categories ul li:last-child {
    margin-bottom: 0;
}
.widget-area .widget_categories ul li:before {
    background: #44ce6f;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 8px;
    position: absolute;
}
.widget-area .widget_categories ul li a {
    color: #0e314c;
    display: block;
}
.widget-area .widget_categories ul li a:hover {
    color: #44ce6f;
}
.widget-area .widget_categories ul li .post-count {
    float: right;
}
.widget-area .widget_meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.widget-area .widget_meta ul li {
    position: relative;
    margin-bottom: 12px;
    color: #0e314c;
    padding-left: 14px;
    font-weight: 500;
    font-size: 14px;
}
.widget-area .widget_meta ul li:last-child {
    margin-bottom: 0;
}
.widget-area .widget_meta ul li:before {
    background: #44ce6f;
    height: 7px;
    width: 7px;
    content: "";
    left: 0;
    top: 8px;
    position: absolute;
}
.widget-area .widget_meta ul li a {
    display: inline-block;
    color: #0e314c;
}
.widget-area .widget_meta ul li a:hover {
    color: #44ce6f;
}
.widget-area .tagcloud a {
    display: inline-block;
    color: #0e314c;
    font-weight: 500;
    font-size: 14px !important;
    padding: 6px 13px;
    border: 1px dashed #eee;
    margin-top: 8px;
    margin-right: 4px;
}
.widget-area .tagcloud a:focus,
.widget-area .tagcloud a:hover {
    color: #fff;
    background-color: #44ce6f;
    border-color: #44ce6f;
}
.project-details-image {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    text-align: center;
}
.project-details-image:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #0e314c;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.project-details-image a {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    color: #fff;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 25px;
}
.project-details-image a:hover {
    color: #44ce6f;
}
.project-details-image:hover:before {
    opacity: 0.9;
    visibility: visible;
}
.project-details-image:hover a {
    opacity: 1;
    visibility: visible;
    margin-top: -5px;
}
.project-details-desc h3 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.project-details-desc .project-details-information {
    overflow: hidden;
}
.project-details-desc .project-details-information .single-info-box {
    float: left;
    width: 20%;
    margin-top: 30px;
}
.project-details-desc .project-details-information .single-info-box h4 {
    font-size: 18px;
    margin-bottom: 15px;
}
.project-details-desc .project-details-information .single-info-box p {
    margin-bottom: 0;
}
.project-details-desc .project-details-information .single-info-box ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.project-details-desc .project-details-information .single-info-box ul li {
    display: inline-block;
}
.project-details-desc .project-details-information .single-info-box ul li a {
    margin-right: 7px;
    color: #6084a4;
}
.project-details-desc .project-details-information .single-info-box ul li a svg {
    width: 18px;
}
.project-details-desc .project-details-information .single-info-box ul li a:hover {
    color: #44ce6f;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.contact-info-box {
    text-align: center;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 30px;
}
.contact-info-box .icon {
    display: inline-block;
    width: 65px;
    height: 65px;
    line-height: 70px;
    background: #f7fafd;
    border-radius: 50%;
    font-size: 30px;
    color: #44ce6f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.contact-info-box h3 {
    margin: 25px 0 15px;
    font-size: 18px;
}
.contact-info-box p {
    margin-bottom: 0;
}
.contact-info-box p a {
    color: #6084a4;
}
.contact-info-box p a:hover {
    color: #44ce6f;
}
.contact-info-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.contact-info-box:hover .icon {
    color: #fff;
    background: #44ce6f;
}
#contactForm .btn {
    margin-top: 10px;
}
.coming-soon-area {
    position: relative;
    z-index: 1;
    height: 100vh;
    background-image: url(../img/coming-soon.fb54fc5f.jpg);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.coming-soon-area:before {
    z-index: -1;
    background: linear-gradient(-9deg, #6a82fb, #6a82fb 40%, #fc5c7d);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.8;
}
.coming-soon-area .social-list {
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: 30px;
}
.coming-soon-area .social-list li {
    display: inline-block;
}
.coming-soon-area .social-list li.list-heading {
    display: block;
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}
.coming-soon-area .social-list li a {
    width: 35px;
    height: 35px;
    line-height: 40px;
    background: #44ce6f;
    color: #fff;
    border-radius: 50%;
    margin: 0 2px;
}
.coming-soon-area .social-list li a svg {
    width: 15px;
}
.coming-soon-area .social-list li a.facebook {
    background-color: #3b5998;
}
.coming-soon-area .social-list li a.twitter {
    background-color: #1da1f2;
}
.coming-soon-area .social-list li a.linkedin {
    background-color: #0077b5;
}
.coming-soon-area .social-list li a.instagram {
    background-color: #c13584;
}
.coming-soon-area .social-list li a:focus,
.coming-soon-area .social-list li a:hover {
    background-color: #44ce6f;
}
.coming-soon-content {
    text-align: center;
    max-width: 820px;
    margin: -80px auto 0;
}
.coming-soon-content h1 {
    color: #fff;
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 15px;
}
.coming-soon-content p {
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    max-width: 620px;
}
.coming-soon-content form {
    position: relative;
    margin: 35px auto 55px;
    max-width: 520px;
}
.coming-soon-content form .email-input {
    display: block;
    width: 100%;
    height: 56px;
    border: none;
    -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 5px hsla(0, 0%, 100%, 0.3);
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 5px hsla(0, 0%, 100%, 0.3);
    border-radius: 40px;
    padding: 15px 25px;
    font-size: 16px;
    outline: 0 !important;
    background: #f1f2f3;
}
.coming-soon-content form .submit-btn {
    position: absolute;
    right: 3px;
    top: 3px;
    height: 50px;
    background: #44ce6f;
    color: #fff;
    border: none;
    border-radius: 40px;
    width: 130px;
    outline: 0 !important;
    cursor: pointer;
    text-transform: uppercase;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 15px;
    font-weight: 500;
}
.coming-soon-content form .submit-btn:focus,
.coming-soon-content form .submit-btn:hover {
    background-color: #c679e3;
}
.coming-soon-content #timer div {
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    color: #c679e3;
    -webkit-box-shadow: 0 0 0 5px hsla(0, 0%, 100%, 0.5);
    box-shadow: 0 0 0 5px hsla(0, 0%, 100%, 0.5);
    margin: 0 10px;
    padding-top: 18px;
    font-size: 35px;
    font-weight: 500;
}
.coming-soon-content #timer div span {
    display: block;
    margin-top: -4px;
    color: #6084a4;
    font-size: 15px;
}
.error-area {
    height: 100vh;
}
.error-content {
    text-align: center;
    margin-top: -70px;
}
.error-content .notfound-404 {
    position: relative;
    height: 280px;
    z-index: -1;
    margin-bottom: 30px;
}
.error-content .notfound-404 h1 {
    font-size: 230px;
    font-weight: 900;
    margin: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: url(../img/oops-bg.f7aaca37.jpg) no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    background-position: 50%;
}
.error-content h3 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 15px;
}
.error-content p {
    max-width: 550px;
    margin: 0 auto 25px;
}
.cta-area {
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.cta-area .container {
    max-width: 945px;
}
.cta-content h3 {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}
.cta-right-content {
    text-align: right;
}
.cta-right-content .hosting-price {
    display: inline-block;
}
.cta-right-content .hosting-price span {
    color: #f6fe6a;
    display: block;
}
.cta-right-content .hosting-price h4 {
    margin: 10px 0 0;
    color: #fff;
    font-size: 20px;
}
.cta-right-content .buy-btn {
    display: inline-block;
    padding-left: 35px;
    position: relative;
    top: -15px;
}
.cta-right-content .buy-btn .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.cta-right-content .buy-btn .btn-primary:after,
.cta-right-content .buy-btn .btn-primary:before {
    background: #fff;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.cta-right-content .buy-btn .btn-primary:focus,
.cta-right-content .buy-btn .btn-primary:hover {
    color: #44ce6f;
}
.repair-main-banner {
    overflow-x: hidden;
    padding-top: 200px;
    padding-bottom: 140px;
}
.repair-banner-content h1 {
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 500;
}
.repair-banner-content p {
    margin-bottom: 30px;
}
.repair-banner-image {
    position: relative;
    text-align: center;
}
.repair-banner-image img:nth-child(2) {
    position: absolute;
    left: 0;
    top: -65px;
    right: -30px;
    margin: 0 auto;
    z-index: -1;
}
.repair-banner-image img:nth-child(3) {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -69px;
    z-index: -2;
}
.repair-banner-image img:nth-child(4) {
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    z-index: -1;
    margin: 0 auto;
}
.repair-partner-area {
    padding-top: 45px;
    padding-bottom: 45px;
}
.single-repair-partner {
    text-align: center;
}
.single-repair-partner a {
    display: block;
    position: relative;
}
.single-repair-partner a img {
    width: auto !important;
    display: inline-block !important;
}
.single-repair-partner a img:last-child {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-repair-partner a:focus img:last-child,
.single-repair-partner a:hover img:last-child {
    opacity: 1;
    visibility: visible;
    top: 0;
}
.partner-slides.owl-theme .owl-dots {
    margin-top: 0;
}
.repair-about-content .sub-title {
    text-transform: uppercase;
    color: #44ce6f;
    display: block;
    font-size: 15px;
    font-weight: 400;
}
.repair-about-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 10px;
}
.repair-about-content ul {
    padding: 0;
    list-style-type: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -10px;
    margin-right: -10px;
    margin-left: -10px;
}
.repair-about-content ul li {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    max-width: 50%;
    width: 100%;
    margin-top: 25px;
    color: #6084a4;
    position: relative;
    padding-right: 10px;
    padding-left: 10px;
}
.repair-about-content ul li span {
    display: block;
    position: relative;
    z-index: 1;
    padding: 10px;
    border-radius: 3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.repair-about-content ul li span i {
    margin-right: 5px;
    display: inline-block;
    color: #44ce6f;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 18px;
    position: relative;
    top: 3px;
}
.repair-about-content ul li span:before {
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.repair-about-content ul li span:focus,
.repair-about-content ul li span:hover {
    color: #fff;
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.repair-about-content ul li span:focus:before,
.repair-about-content ul li span:hover:before {
    opacity: 1;
    visibility: visible;
}
.repair-about-content ul li span:focus svg,
.repair-about-content ul li span:hover svg {
    color: #fff;
}
.repair-about-image {
    position: relative;
    width: 100%;
    height: 100%;
}
.repair-about-image img {
    position: absolute;
}
.repair-about-image img:first-child {
    left: 0;
    top: 0;
    z-index: 1;
}
.repair-about-image img:nth-child(2) {
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    text-align: center;
    z-index: 2;
    margin: 0 auto;
    border: 5px solid #f8fbff;
    width: 350px;
}
.repair-about-image img:nth-child(3) {
    right: 0;
    bottom: 0;
    z-index: 1;
}
.repair-about-image img:nth-child(4) {
    right: 0;
    top: 0;
}
.repair-about-image img:nth-child(5) {
    left: 0;
    bottom: 0;
}
.repair-services-area {
    padding-bottom: 50px;
}
.single-repair-services {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    text-align: center;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.single-repair-services.bg1 {
    background-image: url(../img/1.d57fb50e.jpg);
}
.single-repair-services.bg2 {
    background-image: url(../img/2.e32dc11f.jpg);
}
.single-repair-services.bg3 {
    background-image: url(../img/3.6c1fdc52.jpg);
}
.single-repair-services.bg4 {
    background-image: url(../img/4.8debcaac.jpg);
}
.single-repair-services.bg5 {
    background-image: url(../img/5.959868c4.jpg);
}
.single-repair-services.bg6 {
    background-image: url(../img/6.92f8b52e.jpg);
}
.single-repair-services:before {
    background: #fff;
}
.single-repair-services:after,
.single-repair-services:before {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border: 1px dashed #cdf1d8;
}
.single-repair-services:after {
    background: linear-gradient(135deg, #23bdb8, #43e794);
    opacity: 0;
    visibility: hidden;
}
.single-repair-services h3 {
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 22px;
    margin-bottom: 17px;
}
.single-repair-services .icon {
    display: inline-block;
    color: #44ce6f;
    width: 85px;
    height: 85px;
    line-height: 83px;
    border: 1px solid #e3f7e9;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-repair-services .icon i:before {
    font-size: 35px;
}
.single-repair-services p {
    margin-bottom: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-repair-services a {
    width: 35px;
    background-color: #f9fafb;
    height: 35px;
    line-height: 35px;
    color: #0e314c;
    border-radius: 50%;
}
.single-repair-services a svg {
    width: 15px;
}
.single-repair-services a i {
    position: relative;
    top: 5px;
}
.single-repair-services:focus:before,
.single-repair-services:hover:before {
    opacity: 0;
    visibility: hidden;
}
.single-repair-services:focus:after,
.single-repair-services:hover:after {
    opacity: 0.85;
    visibility: visible;
}
.single-repair-services:focus h3,
.single-repair-services:focus p,
.single-repair-services:hover h3,
.single-repair-services:hover p {
    color: #fff;
}
.single-repair-services:focus .icon,
.single-repair-services:hover .icon {
    border-color: #fff;
    color: #fff;
}
.single-repair-services:focus a,
.single-repair-services:hover a {
    background-color: #fff;
    color: #44ce6f;
}
.repair-cta-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cta-repair-content h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 17px;
}
.cta-repair-content p {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 25px;
}
.cta-repair-img {
    text-align: right;
}
.circle-box {
    top: 0;
    left: 0;
}
.circle-box,
.cta-shape {
    position: absolute;
    z-index: -1;
}
.cta-shape {
    bottom: 0;
    right: 0;
}
.repair-team-area .container {
    max-width: 1175px;
}
.repair-team-area .single-team .team-content {
    padding-left: 25px;
    padding-right: 25px;
}
.repair-why-choose-us {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.repair-why-choose-us .section-title h2 {
    color: #fff;
}
.repair-why-choose-us .section-title .bar:before {
    background: #fff;
}
.repair-why-choose-us .section-title p {
    color: #fff;
    opacity: 0.95;
}
.repair-why-choose-us:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 37%;
    width: 100%;
    background: #fff;
    z-index: -1;
}
.single-repair-box {
    text-align: center;
    background-color: #fff;
    border: 1px dashed #cdf1d8;
    padding: 30px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-repair-box h3 {
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 17px;
}
.single-repair-box p {
    margin-bottom: 25px;
}
.single-repair-box a {
    width: 40px;
    background-color: #eef0f3;
    height: 40px;
    line-height: 47px;
    color: #0e314c;
    border-radius: 50%;
}
.single-repair-box a i {
    width: 18px;
}
.single-repair-box .icon {
    display: inline-block;
    border: 1px solid #6ee9fa;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    position: relative;
    color: #fff;
    z-index: 1;
}
.single-repair-box .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    background: -webkit-gradient(linear, left top, right bottom, from(#1fa2ff), color-stop(#00c0ff), color-stop(#00d9f2), color-stop(#53eedd), to(#a6ffcb));
    background: linear-gradient(to right bottom, #1fa2ff, #00c0ff, #00d9f2, #53eedd, #a6ffcb);
    border-radius: 50%;
    margin: 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-repair-box .icon i:before {
    font-size: 35px;
}
.single-repair-box .back-icon {
    position: absolute;
    top: 58%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #4457c3;
    opacity: 0.06;
    z-index: -1;
}
.single-repair-box .back-icon i:before {
    font-size: 200px;
}
.single-repair-box:focus,
.single-repair-box:hover {
    border-color: #44ce6f;
}
.single-repair-box:focus a,
.single-repair-box:hover a {
    background-color: #44ce6f;
    color: #fff;
}
.single-repair-feedback {
    background: #fff;
    border-radius: 5px;
    margin-bottom: 55px;
    position: relative;
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.single-repair-feedback .client-img {
    position: relative;
    text-align: left;
    margin-bottom: 40px;
    display: inline-block;
    padding-left: 108px;
    padding-top: 18px;
}
.single-repair-feedback .client-img img {
    border-radius: 50%;
    border: 2px solid #44ce6f;
    padding: 3px;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
}
.single-repair-feedback .client-img h3 {
    font-size: 18px;
    margin: 0;
}
.single-repair-feedback .client-img span {
    display: block;
    color: #c679e3;
    margin-top: 8px;
}
.single-repair-feedback p {
    font-size: 15px;
}
.single-repair-feedback:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 50px;
    height: 50px;
    background: #fff;
    right: 0;
    margin: 0 auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.single-repair-feedback:after {
    content: "\f11b";
    color: #d9dcde;
    font-family: Flaticon;
    font-size: 30px;
    font-style: normal;
    font-size: 65px;
    position: absolute;
    top: 0;
    left: 25px;
}
.iot-main-banner {
    position: relative;
    z-index: 1;
    padding-top: 215px;
    padding-bottom: 150px;
}
.iot-banner-content {
    max-width: 445px;
}
.iot-banner-content span {
    color: #44ce6f;
    font-size: 15px;
    display: block;
}
.iot-banner-content h2 {
    font-size: 40px;
    margin-top: 7px;
    margin-bottom: 17px;
    line-height: 1.3;
}
.iot-banner-content .btn {
    margin-top: 10px;
}
.iot-banner-image {
    position: absolute;
    text-align: center;
    right: 30px;
    top: 56%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.iot-banner-image img:first-child {
    max-width: 730px;
}
.iot-banner-image img:last-child {
    position: absolute;
    left: -118px;
    right: 0;
    margin: 0 auto;
    top: 39px;
    z-index: -1;
}
.animate-border span {
    position: absolute;
    display: block;
    width: 5%;
    padding-bottom: 5%;
    top: 51%;
    left: 67%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    border-radius: 50%;
    z-index: -2;
}
.animate-border span:first-child {
    -webkit-animation: pulsei 4.2s ease-out 0.5s infinite normal none running;
    animation: pulsei 4.2s ease-out 0.5s infinite normal none running;
}
.animate-border span:nth-child(2) {
    -webkit-animation: pulsei 4.2s ease-out 1.5s infinite normal none running;
    animation: pulsei 4.2s ease-out 1.5s infinite normal none running;
}
.animate-border span:nth-child(3) {
    -webkit-animation: pulsei 4.2s ease-out 2.5s infinite normal none running;
    animation: pulsei 4.2s ease-out 2.5s infinite normal none running;
}
.animate-border span:nth-child(4) {
    -webkit-animation: pulsei 4.2s ease-out 3.5s infinite normal none running;
    animation: pulsei 4.2s ease-out 3.5s infinite normal none running;
}
@-webkit-keyframes pulsei {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        border: 1.5px solid #b3eaf8;
        opacity: 1;
        width: 5%;
        padding-bottom: 5%;
    }
    to {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
        width: 50%;
        border: 1.5px solid #b3eaf8;
        padding-bottom: 50%;
    }
}
@keyframes pulsei {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        border: 1.5px solid #b3eaf8;
        opacity: 1;
        width: 5%;
        padding-bottom: 5%;
    }
    to {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 0;
        width: 50%;
        border: 1.5px solid #b3eaf8;
        padding-bottom: 50%;
    }
}
.iot-partner-area {
    padding-top: 45px;
    padding-bottom: 45px;
}
.single-iot-partner {
    text-align: center;
}
.single-iot-partner a {
    display: block;
    position: relative;
}
.single-iot-partner a img {
    width: auto !important;
    display: inline-block !important;
}
.single-iot-partner a img:last-child {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-iot-partner a:focus img:last-child,
.single-iot-partner a:hover img:last-child {
    opacity: 1;
    visibility: visible;
    top: 0;
}
.iot-services-area {
    padding-bottom: 50px;
}
.single-iot-services {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    text-align: center;
    background-color: #fff;
    border: 1px dashed #cdf1d8;
}
.single-iot-services:after {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.single-iot-services h3 {
    font-size: 18px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-top: 22px;
    margin-bottom: 17px;
    line-height: 1.5;
}
.single-iot-services .icon {
    display: inline-block;
    color: #44ce6f;
    width: 85px;
    height: 85px;
    line-height: 85px;
    border: 1px solid #e3f7e9;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-iot-services .icon i:before {
    font-size: 35px;
}
.single-iot-services p {
    margin-bottom: 25px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-iot-services a {
    width: 35px;
    background-color: #f9fafb;
    height: 35px;
    line-height: 35px;
    color: #0e314c;
    border-radius: 50%;
}
.single-iot-services a svg {
    width: 15px;
}
.single-iot-services a i {
    position: relative;
    top: 5px;
}
.single-iot-services:focus:after,
.single-iot-services:hover:after {
    opacity: 1;
    visibility: visible;
}
.single-iot-services:focus h3,
.single-iot-services:focus p,
.single-iot-services:hover h3,
.single-iot-services:hover p {
    color: #fff;
}
.single-iot-services:focus .icon,
.single-iot-services:hover .icon {
    border-color: #fff;
    color: #fff;
}
.single-iot-services:focus a,
.single-iot-services:hover a {
    background-color: #fff;
    color: #44ce6f;
}
.iot-cta-area {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cta-iot-content h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 17px;
}
.cta-iot-content p {
    color: #fff;
    opacity: 0.95;
    margin-bottom: 25px;
}
.cta-iot-img {
    text-align: center;
}
.iot-features-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
}
.iot-features-content .btn {
    margin-top: 15px;
}
.iot-features-image {
    position: relative;
    text-align: center;
}
.iot-team-area .container {
    max-width: 1175px;
}
.iot-team-area .single-team .team-content {
    padding-left: 25px;
    padding-right: 25px;
}
.iot-why-choose-us {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.iot-why-choose-us .section-title h2 {
    color: #fff;
}
.iot-why-choose-us .section-title .bar:before {
    background: #fff;
}
.iot-why-choose-us .section-title p {
    color: #fff;
    opacity: 0.95;
}
.iot-why-choose-us:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 37%;
    width: 100%;
    background: #fff;
    z-index: -1;
}
.single-iot-box {
    text-align: center;
    background-color: #fff;
    border: 1px dashed #cdf1d8;
    padding: 30px;
    position: relative;
    z-index: 1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-iot-box h3 {
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 17px;
}
.single-iot-box p {
    margin-bottom: 25px;
}
.single-iot-box a {
    width: 40px;
    background-color: #eef0f3;
    height: 40px;
    line-height: 40px;
    color: #0e314c;
    border-radius: 50%;
}
.single-iot-box a svg {
    width: 18px;
}
.single-iot-box a i {
    position: relative;
    top: 7px;
}
.single-iot-box .icon {
    display: inline-block;
    border: 1px solid #f3f8fd;
    width: 100px;
    height: 100px;
    line-height: 96px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}
.single-iot-box .icon:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    background: #f7fafd;
    border-radius: 50%;
    margin: 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-iot-box .icon i:before {
    font-size: 35px;
}
.single-iot-box .icon img {
    width: 45px;
}
.single-iot-box:focus,
.single-iot-box:hover {
    border-color: #44ce6f;
}
.single-iot-box:focus a,
.single-iot-box:hover a {
    background-color: #44ce6f;
    color: #fff;
}
.ml-main-banner {
    position: relative;
    z-index: 1;
    padding-top: 130px;
    padding-bottom: 140px;
    background-image: url(../img/banner-bg.dec701e1.jpg);
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.ml-main-banner .container-fluid,
.ml-main-banner .container-lg,
.ml-main-banner .container-md,
.ml-main-banner .container-sm,
.ml-main-banner .container-xl {
    padding-left: 70px;
    padding-right: 70px;
}
.ml-banner-content h1 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 500;
}
.ml-banner-content p {
    font-size: 15px;
    max-width: 490px;
}
.ml-banner-content .btn {
    margin-top: 5px;
}
.ml-banner-single-image {
    text-align: center;
}
.ml-main-section {
    position: relative;
    z-index: 1;
    padding-top: 125px;
    padding-bottom: 100px;
    /*background-image: url(../images/banner.jpg);*/
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.ml-main-section-new {
    position: relative;
    z-index: 1;
    padding-top: 110px;
    padding-bottom: 100px;
    /*background-image: url(../images/banner.jpg);*/
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.ml-main-section .ml-banner-content h1 {
    font-size: 65px;
    font-weight: 700;
}
.ml-main-section .ml-banner-content p {
    max-width: 100%;
}
.ml-banner-image {
    position: relative;
    width: 100%;
    height: 100%;
   
}
/*.ml-banner-image img {
    position: absolute;
}*/
.ml-banner-image img{
	/*top: -50px*/
   /* left: 195px;
    top: -125px;
    z-index: 2;*/
}

.ml-partner-area.mt-minus-top {
    margin-top: -80px;
}
.single-ml-partner {
    text-align: center;
}
.single-ml-partner a {
    display: block;
    position: relative;
}
.single-ml-partner a img {
    width: auto !important;
    display: inline-block !important;
}
.single-ml-partner a img:last-child {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-ml-partner a:focus img:last-child,
.single-ml-partner a:hover img:last-child {
    opacity: 1;
    visibility: visible;
    top: 0;
}
.solutions-area {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}
.single-solutions-box {
    padding: 20px 15px;
    text-align: center;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
    border: 1px solid #c5fffd;
    border-radius: 5px;
}
.single-solutions-box .icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.single-solutions-box .icon img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-solutions-box .icon:before {
    content: "";
    position: absolute;
    left: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
    background: #f0fdfe;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.09);
    border-radius: 30% 70% 70% 30%/40% 60% 40% 60%;
    width: 60px;
    height: 60px;
}
.single-solutions-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.single-solutions-box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    border-radius: 5px;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, right top, from(#d5fefd), color-stop(#e0fdff), color-stop(#effbff), color-stop(#fbfaff), to(#fffcff));
    background: linear-gradient(to right top, #d5fefd, #e0fdff, #effbff, #fbfaff, #fffcff);
}
.single-solutions-box .learn-more-btn {
    color: #365267;
    font-size: 14px;
    font-weight: 600;
}
.single-solutions-box .learn-more-btn i {
    width: 18px;
    position: relative;
    top: 5px;
    margin-right: 3px;
}
.single-solutions-box .learn-more-btn:hover {
    color: #44ce6f;
}
.single-solutions-box:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-solutions-box:hover .icon img {
    -webkit-transform: rotateY(-1turn);
    transform: rotateY(-1turn);
}
.about-area {
    position: relative;
    z-index: 1;
}
.ml-about-img {
    text-align: center;
}
.ml-about-content {
    max-width: 540px;
}
.ml-about-content .sub-title {
    display: inline-block;
    color: #c679e3;
    background-color: #f5dffd;
    margin-bottom: 18px;
    border-radius: 30px;
    padding: 5px 20px 4px;
    font-size: 13px;
}
.ml-about-content h2 {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}
.ml-about-content .bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 20px 0;
    position: relative;
    border-radius: 30px;
}
.ml-about-content .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}
.ml-about-content p {
    margin-bottom: 12px;
}
.ml-about-content .btn {
    margin-top: 10px;
}
.ml-services-area {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    background: -webkit-gradient(linear, right top, left bottom, from(#fffcff), color-stop(#fbfaff), color-stop(#effbff), color-stop(#e0fdff), to(#d5fefd));
    background: linear-gradient(to left bottom, #fffcff, #fbfaff, #effbff, #e0fdff, #d5fefd);
}
.single-ml-services-box {
    position: relative;
    z-index: 1;
    background-color: #fff;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 25px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-ml-services-box .image {
    margin-bottom: 25px;
}
.single-ml-services-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
}
.single-ml-services-box p {
    margin-bottom: 0;
}
.single-ml-services-box:before {
    content: "";
    position: absolute;
    left: -15px;
    bottom: -15px;
    width: 30px;
    height: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #44ce6f;
    visibility: hidden;
    opacity: 0;
}
.single-ml-services-box:hover:before {
    opacity: 1;
    visibility: visible;
}
.single-ml-services-box .read_more{margin-top:20px;color:#7a62ba;font-size:17px;}

.ml-feedback-area {
    background: -webkit-gradient(linear, left bottom, right top, from(#d5fefd), color-stop(#e0fdff), color-stop(#effbff), color-stop(#fbfaff), to(#fffcff));
    background: linear-gradient(to right top, #d5fefd, #e0fdff, #effbff, #fbfaff, #fffcff);
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}
.single-ml-feedback-item {
    -webkit-box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 45px;
    background-color: #fff;
    position: relative;
    padding: 60px 70px 60px 190px;
    border-radius: 5px;
}
.single-ml-feedback-item .client-info {
    position: absolute;
    left: 60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}
.single-ml-feedback-item .client-info img {
    border-radius: 5px;
    border: 2px solid #f4f5fe;
    width: 80px !important;
    height: 80px !important;
    padding: 5px;
    display: inline-block !important;
}
.single-ml-feedback-item .client-info h3 {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 17px;
}
.single-ml-feedback-item .client-info span {
    display: block;
    color: #c679e3;
    margin-top: 5px;
    font-size: 13px;
}
.single-ml-feedback-item p {
    margin-bottom: 0;
    color: #4a6f8a;
}
.single-ml-feedback-item .rating {
    margin-top: 10px;
}
.single-ml-feedback-item .rating i {
    color: #ff612f;
    width: 18px;
    margin-right: 3px;
}
.single-ml-feedback-item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 5px;
    bottom: -15px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
    z-index: -1;
    margin-left: 30px;
    margin-right: 30px;
}
.ml-feedback-slides {
    max-width: 750px;
    margin: -40px auto 30px;
}
.ml-feedback-slides .single-ml-feedback-item {
    margin-top: 40px;
}
.ml-feedback-slides .VueCarousel-slide {
    padding-left: 50px;
    padding-right: 50px;
}
.free-trial-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.free-trial-area:before {
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: -30%;
    top: 0;
    background: -webkit-gradient(linear, left top, right top, from(#d5fefd), color-stop(#e1fdff), color-stop(#effdff), color-stop(#fafdff), to(#fff));
    background: linear-gradient(90deg, #d5fefd, #e1fdff, #effdff, #fafdff, #fff);
}
.free-trial-area .shape6 {
    top: 75%;
}
.free-trial-image {
    text-align: center;
}
.free-trial-content {
    max-width: 540px;
}
.free-trial-content h2 {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 600;
}
.free-trial-content form {
    position: relative;
    margin-top: 25px;
    margin-bottom: 10px;
}
.free-trial-content form .input-newsletter {
    display: block;
    width: 99%;
    height: 50px;
    color: #fff;
    border: none;
    outline: 0;
    background-color: #0e314c;
    border-radius: 30px;
    padding-top: 3px;
    padding-left: 20px;
}
.free-trial-content form .input-newsletter::-webkit-input-placeholder {
    color: #d5d5d5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.free-trial-content form .input-newsletter::-moz-placeholder {
    color: #d5d5d5;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.free-trial-content form .input-newsletter:-ms-input-placeholder {
    color: #d5d5d5;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.free-trial-content form .input-newsletter::-ms-input-placeholder {
    color: #d5d5d5;
    -ms-transition: 0.5s;
    transition: 0.5s;
}
.free-trial-content form .input-newsletter::placeholder {
    color: #d5d5d5;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.free-trial-content form .input-newsletter:focus::-webkit-input-placeholder {
    color: transparent;
}
.free-trial-content form .input-newsletter:focus::-moz-placeholder {
    color: transparent;
}
.free-trial-content form .input-newsletter:focus:-ms-input-placeholder {
    color: transparent;
}
.free-trial-content form .input-newsletter:focus::-ms-input-placeholder {
    color: transparent;
}
.free-trial-content form .input-newsletter:focus::placeholder {
    color: transparent;
}
.free-trial-content form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    cursor: pointer;
    border: none;
    padding: 0 30px;
    line-height: 50px;
    background-color: #44ce6f;
    border-radius: 0 30px 30px 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    font-size: 16px;
}
.free-trial-content form button:hover {
    background-color: #c679e3;
    color: #fff;
}
.free-trial-content p {
    margin-bottom: 0;
}
.ml-projects-area {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom: 50px;
}
.ml-projects-area .section-title {
    text-align: left;
    max-width: 530px;
}
.ml-projects-area .section-title h2 {
    max-width: 470px;
    line-height: 1.3;
}
.ml-projects-area .section-title .bar {
    margin-left: 0;
    margin-right: 0;
}
.ml-projects-area .container-fluid,
.ml-projects-area .container-lg,
.ml-projects-area .container-md,
.ml-projects-area .container-sm,
.ml-projects-area .container-xl {
    position: relative;
}
.single-ml-projects-box {
    position: relative;
    border-radius: 5px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175);
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.175);
    background-color: #fff;
}
.single-ml-projects-box img {
    border-radius: 5px;
}
.single-ml-projects-box .plus-icon a {
    background-color: #44ce6f;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 20px;
    right: 20px;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    overflow: hidden;
    border-radius: 50%;
}
.single-ml-projects-box .plus-icon a span {
    width: 25px;
    height: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.single-ml-projects-box .plus-icon a span:after,
.single-ml-projects-box .plus-icon a span:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.single-ml-projects-box .plus-icon a span:after {
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.single-ml-projects-box .plus-icon a:hover {
    background-color: #c679e3;
}
.single-ml-projects-box:hover .plus-icon a {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.ml-projects-slides.owl-theme .VueCarousel-pagination[data-v-438fd353] {
    width: auto;
    text-align: center;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination {
    position: absolute;
    right: 12.5%;
    top: -100px;
    z-index: 1;
    margin-top: 0 !important;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination:before {
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    background: -webkit-gradient(linear, right top, left bottom, from(#dee4f3), color-stop(#e7eaf6), color-stop(#f0f1f9), color-stop(#f8f8fc), to(#fff));
    background: linear-gradient(to left bottom, #dee4f3, #e7eaf6, #f0f1f9, #f8f8fc, #fff);
    border-radius: 70% 30% 30% 70%/60% 40% 60% 40%;
    width: 80px;
    height: 70px;
    z-index: -1;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container {
    margin: 0 !important;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot {
    width: 15px !important;
    height: 15px !important;
    margin: 0 3px !important;
    background: transparent !important;
    -webkit-transition: 0.5s !important;
    transition: 0.5s !important;
    border: 1px solid #8d95a7;
    border-radius: 50% !important;
    position: relative;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #44ce6f;
    margin: 2px;
    content: "";
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot.VueCarousel-dot--active {
    border-color: #44ce6f !important;
    background-color: transparent !important;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot.VueCarousel-dot--active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container:hover .VueCarousel-dot {
    border-color: #44ce6f !important;
    background-color: transparent !important;
}
.ml-projects-slides.owl-theme .VueCarousel-pagination .VueCarousel-dot-container:hover .VueCarousel-dot:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.ml-projects-slides .single-ml-projects-box {
    margin-left: 15px;
    margin-right: 15px;
}
.agency-main-banner {
    position: relative;
    z-index: 1;
}
.agency-main-banner .container-fluid,
.agency-main-banner .container-lg,
.agency-main-banner .container-md,
.agency-main-banner .container-sm,
.agency-main-banner .container-xl {
    padding-left: 0;
    padding-right: 0;
}
.agency-main-banner .container-fluid .row,
.agency-main-banner .container-lg .row,
.agency-main-banner .container-md .row,
.agency-main-banner .container-sm .row,
.agency-main-banner .container-xl .row {
    margin-left: 0;
    margin-right: 0;
}
.agency-main-banner .container-fluid .row .col-lg-6,
.agency-main-banner .container-lg .row .col-lg-6,
.agency-main-banner .container-md .row .col-lg-6,
.agency-main-banner .container-sm .row .col-lg-6,
.agency-main-banner .container-xl .row .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}
.agency-main-banner .shape2 {
    left: 5%;
}
.agency-main-banner .shape4,
.agency-main-banner .shape8 {
    right: 50%;
}
.agency-banner-content {
    margin-left: auto;
    max-width: 650px;
}
.agency-banner-content .sub-title {
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    color: #6084a4;
    margin-bottom: 8px;
}
.agency-banner-content h1 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 50px;
    font-weight: 500;
}
.agency-banner-content p {
    font-size: 15px;
    max-width: 450px;
}
.agency-banner-content .btn {
    margin-top: 5px;
}
.agency-banner-image {
    text-align: right;
}
.solutions-area .shape2 {
    left: 5%;
}
.solutions-box {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.solutions-box,
.solutions-box .icon {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}
.solutions-box .icon {
    color: #44ce6f;
    padding-left: 20px;
}
.solutions-box .icon i {
    font-size: 45px;
}
.solutions-box .icon img {
    position: absolute;
    left: 0;
    z-index: -1;
    top: -25px;
}
.solutions-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.solutions-box .learn-more-btn {
    color: #365267;
    font-size: 14px;
    font-weight: 600;
}
.solutions-box .learn-more-btn i {
    width: 18px;
    position: relative;
    top: 5px;
    margin-right: 3px;
}
.solutions-box .learn-more-btn:hover {
    color: #44ce6f;
}
.agency-about-area {
    position: relative;
    z-index: 1;
}
.agency-about-area .container-fluid,
.agency-about-area .container-lg,
.agency-about-area .container-md,
.agency-about-area .container-sm,
.agency-about-area .container-xl {
    padding-left: 0;
    padding-right: 0;
}
.agency-about-area .container-fluid .row,
.agency-about-area .container-lg .row,
.agency-about-area .container-md .row,
.agency-about-area .container-sm .row,
.agency-about-area .container-xl .row {
    margin-left: 0;
    margin-right: 0;
}
.agency-about-area .container-fluid .row .col-lg-6,
.agency-about-area .container-lg .row .col-lg-6,
.agency-about-area .container-md .row .col-lg-6,
.agency-about-area .container-sm .row .col-lg-6,
.agency-about-area .container-xl .row .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}
.agency-about-img {
    padding-right: 100px;
}
.agency-about-img img {
    width: 100%;
}
.agency-about-content {
    max-width: 540px;
}
.agency-about-content .sub-title {
    display: inline-block;
    color: #c679e3;
    background-color: #f5dffd;
    margin-bottom: 18px;
    border-radius: 30px;
    padding: 5px 20px 4px;
    font-size: 13px;
}
.agency-about-content h2 {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 28px;
    font-weight: 600;
    text-transform: capitalize;
}
.agency-about-content .bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 20px 0;
    position: relative;
    border-radius: 30px;
}
.agency-about-content .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}
.agency-about-content p {
    margin-bottom: 12px;
}
.agency-about-content .btn {
    margin-top: 10px;
}
.shape10 {
    position: absolute;
    right: 0;
    top: -40%;
    z-index: -1;
}
.agency-services-area {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    background: -webkit-gradient(linear, left bottom, left top, from(#d5fefd), color-stop(#e1fdff), color-stop(#effdff), color-stop(#fafdff), to(#fff));
    background: linear-gradient(0deg, #d5fefd, #e1fdff, #effdff, #fafdff, #fff);
}
.agency-services-box {
    margin-bottom: 30px;
    text-align: center;
}
.agency-services-box img {
    border-radius: 7px;
}
.agency-services-box .content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #fff;
    position: relative;
    border-radius: 7px;
    padding: 25px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
}
.agency-services-box .content h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    margin-bottom: 0;
}
.agency-services-box .content .read-more-btn {
    display: inline-block;
    border-radius: 30px;
    padding: 9px 25px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -22px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    font-weight: 500;
}
.agency-services-box .content .read-more-btn i {
    position: relative;
    top: 3px;
}
.agency-services-box .content .read-more-btn svg {
    width: 15px;
    margin-left: 2px;
}
.agency-services-box .content .read-more-btn:hover {
    background-color: #44ce6f;
    border-color: #44ce6f;
    color: #fff;
}
.agency-services-box:hover .content {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}
.agency-services-box:hover .content h3 {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.agency-services-box:hover .content .read-more-btn {
    opacity: 1;
    visibility: visible;
}
.single-testimonials-item {
    -webkit-box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 25px 3px rgba(0, 0, 0, 0.04);
    margin-bottom: 45px;
    background-color: #fff;
    position: relative;
    padding: 110px 65px 60px;
    border-radius: 5px;
    text-align: center;
}
.single-testimonials-item p {
    margin-bottom: 0;
    color: #4a6f8a;
    font-size: 15px;
}
.single-testimonials-item .client-info {
    text-align: left;
    position: relative;
    padding-left: 95px;
    margin-top: 25px;
    max-width: 235px;
    margin-left: auto;
    margin-right: auto;
}
.single-testimonials-item .client-info img {
    border-radius: 5px;
    border: 2px solid #f4f5fe;
    width: 80px !important;
    height: 80px !important;
    padding: 5px;
    display: inline-block !important;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.single-testimonials-item .client-info .rating i {
    margin-right: 3px;
    color: #ff612f;
    width: 16px;
}
.single-testimonials-item .client-info h3 {
    margin-bottom: 0;
    margin-top: 8px;
    font-size: 17px;
}
.single-testimonials-item .client-info span {
    display: block;
    color: #c679e3;
    margin-top: 5px;
    font-size: 13px;
}
.single-testimonials-item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    border-radius: 5px;
    bottom: -15px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 10px -15px rgba(0, 0, 0, 0.04);
    z-index: -1;
    margin-left: 30px;
    margin-right: 30px;
}
.single-testimonials-item:before {
    content: "\f11b";
    color: #d9dcde;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: Flaticon;
    font-style: normal;
    font-size: 65px;
}
.ml-feedback-slides .single-testimonials-item {
    margin-top: 40px;
}
.user-shape1 {
    top: 12%;
    left: 10%;
    -webkit-animation: movebounce 9s linear infinite;
    animation: movebounce 9s linear infinite;
}
.user-shape1,
.user-shape2 {
    position: absolute;
    z-index: -1;
}
.user-shape2 {
    left: 7%;
    -webkit-animation: moveleftbounce 7s linear infinite;
    animation: moveleftbounce 7s linear infinite;
    top: 47%;
}
.user-shape3 {
    bottom: 12%;
    left: 15%;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
}
.user-shape3,
.user-shape4 {
    position: absolute;
    z-index: -1;
}
.user-shape4 {
    top: 12%;
    right: 10%;
    -webkit-animation: movebounce 9s linear infinite;
    animation: movebounce 9s linear infinite;
}
.user-shape5 {
    right: 7%;
    top: 45%;
    -webkit-animation: moveleftbounce 7s linear infinite;
    animation: moveleftbounce 7s linear infinite;
}
.user-shape5,
.user-shape6 {
    position: absolute;
    z-index: -1;
}
.user-shape6 {
    bottom: 12%;
    right: 15%;
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
}
.shape9 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.shape9 img {
    -webkit-animation: movebounce 5s linear infinite;
    animation: movebounce 5s linear infinite;
}
.single-blog-post-item .post-content .read-more-btn i {
    position: relative;
    top: 3px;
}
.agency-cta-area {
    position: relative;
    z-index: 1;
    background-image: url(../img/gradient-bg.ca579877.jpg);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.agency-cta-content {
    text-align: center;
}
.agency-cta-content h2 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}
.btn-gradient {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #ee0979), to(#ff6a00));
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    -webkit-transform: unset !important;
    transform: unset !important;
}
.btn-gradient:after {
    display: none;
}
.btn-gradient:before {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    left: 0;
    border-radius: 4px;
}
.btn-gradient:active,
.btn-gradient:focus,
.btn-gradient:hover {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #ee0979), to(#ff6a00));
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}
.btn-gradient:active:before,
.btn-gradient:focus:before,
.btn-gradient:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.btn-gradient .show > .btn-primary.dropdown-toggle,
.btn-gradient:not(:disabled):not(.disabled).active,
.btn-gradient:not(:disabled):not(.disabled):active {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #ee0979), to(#ff6a00));
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}
.btn-gradient .show > .btn-primary.dropdown-toggle:before,
.btn-gradient:not(:disabled):not(.disabled).active:before,
.btn-gradient:not(:disabled):not(.disabled):active:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.btn-gradient.disabled,
.btn-gradient:disabled {
    color: #fff;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #ee0979), to(#ff6a00));
    background: linear-gradient(90deg, #ee0979, #ff6a00);
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
}
.btn-gradient.disabled:before,
.btn-gradient:disabled:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.footer-area {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}
.footer-area .map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: -1;
    bottom: 0;
    opacity: 0.7;
}
.single-footer-widget .logo {
    margin-bottom: 20px;
}
.single-footer-widget .logo a {
    display: block;
}
.single-footer-widget h3 {
    font-size: 18px;
    margin-bottom: 30px;
}
.single-footer-widget ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.single-footer-widget ul.list li {
    margin-bottom: 10px;
}
.single-footer-widget ul.list li a {
    color: #6084a4;
}
.single-footer-widget ul.list li a:hover {
    color: #44ce6f;
    padding-left: 7px;
}
.single-footer-widget ul.list li:last-child {
    margin-bottom: 0;
}
.single-footer-widget ul.footer-contact-info {
    margin-bottom: 20px;
}
.single-footer-widget ul.footer-contact-info li {
    position: relative;
    color: #6084a4;
    margin-bottom: 8px;
    padding-left: 25px;
}
.single-footer-widget ul.footer-contact-info li i {
    position: absolute;
    left: 0;
    width: 15px;
    top: 5px;
}
.single-footer-widget ul.footer-contact-info li:last-child {
    margin-bottom: 0;
}
.single-footer-widget ul.footer-contact-info li a {
    color: #6084a4;
}
.single-footer-widget ul.footer-contact-info li a:hover {
    color: #44ce6f;
}
.single-footer-widget ul.social-links li {
    display: inline-block;
    margin-right: 5px;
}
.single-footer-widget ul.social-links li a {
    width: 32px;
    text-align: center;
    line-height: 35px;
    height: 32px;
    border: 1px solid #44ce6f;
    border-radius: 50%;
    color: #44ce6f;
}
.single-footer-widget ul.social-links li a i {
    width: 15px;
}
.single-footer-widget ul.social-links li a.facebook {
    border-color: #4267b2;
    color: #4267b2;
}
.single-footer-widget ul.social-links li a.facebook:hover {
    background: #4267b2;
    color: #fff;
}
.single-footer-widget ul.social-links li a.twitter {
    border-color: #38a1f3;
    color: #38a1f3;
}
.single-footer-widget ul.social-links li a.twitter:hover {
    background: #38a1f3;
    color: #fff;
}
.single-footer-widget ul.social-links li a.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}
.single-footer-widget ul.social-links li a.linkedin:hover {
    background: #0077b5;
    color: #fff;
}
.single-footer-widget ul.social-links li a.instagram {
    border-color: #231f20;
    color: #231f20;
}
.single-footer-widget ul.social-links li a.instagram:hover {
    background: #231f20;
    color: #fff;
}
.single-footer-widget ul.social-links li a:hover {
    background: #44ce6f;
    color: #fff;
}
.copyright-area {
    margin-top: 80px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #d8ebfd;
    text-align: center;
}
.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 30px;
    right: 0;
    color: #fff;
    background-color: #c679e3;
    z-index: 1;
    width: 45px;
    text-align: center;
    height: 45px;
    border-radius: 10px 0 0 10px;
    line-height: 61px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.go-top:hover {
    color: #fff;
    background: #44ce6f;
}
.woocommerce-topbar {
    background-color: #fcfbfb;
    padding: 10px 40px;
    margin-bottom: 30px;
}
.woocommerce-topbar .woocommerce-topbar-ordering .form-control {
    cursor: pointer;
    background-color: transparent;
    border-color: #ebebeb;
    border-radius: 4px;
}
.single-products {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.single-products .products-content {
    margin-top: 20px;
}
.single-products .products-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.single-products .products-content ul {
    padding: 0;
    margin: 10px 0 12px;
    list-style-type: none;
}
.single-products .products-content ul li {
    display: inline-block;
    color: #eac11d;
}
.single-products .products-content ul li i:before {
    font-size: 15px;
}
.single-products .products-content .add-to-cart-btn {
    display: block;
    width: 100%;
    color: #0e314c;
    border: 1px solid #0e314c;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 500;
}
.single-products .sale-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff2d2d;
    color: #fff;
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    z-index: 2;
}
.single-products .products-image {
    overflow: hidden;
    position: relative;
}
.single-products .products-image img {
    -webkit-transition: all 1.5s ease-out;
    transition: all 1.5s ease-out;
    width: 100%;
}
.single-products .products-image:before {
    top: 0;
    width: 100%;
    height: 100%;
    background: grey;
    content: "";
    z-index: 1;
}
.single-products .products-image:before,
.single-products .products-image ul {
    position: absolute;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
}
.single-products .products-image ul {
    padding: 0;
    z-index: 2;
    list-style-type: none;
    margin: 0;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.single-products .products-image ul li {
    display: inline-block;
}
.single-products .products-image ul li a {
    display: block;
    background: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
}
.single-products .products-image ul li a svg {
    width: 20px;
}
.single-products .products-image ul li a:focus,
.single-products .products-image ul li a:hover {
    background-color: #44ce6f;
    color: #fff;
}
.single-products .products-image ul li a:first-child {
    margin-left: -15px;
}
.single-products .products-image ul li a:nth-child(3) {
    margin-right: -15px;
}
.single-products:focus .products-content .add-to-cart-btn,
.single-products:hover .products-content .add-to-cart-btn {
    background-color: #0e314c;
    color: #fff;
}
.single-products:focus .products-image img,
.single-products:hover .products-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.single-products:focus .products-image:before,
.single-products:hover .products-image:before {
    opacity: 0.4;
    visibility: visible;
}
.single-products:focus .products-image ul,
.single-products:hover .products-image ul {
    opacity: 1;
    visibility: visible;
}
.single-products:focus .products-image ul li a:first-child,
.single-products:hover .products-image ul li a:first-child {
    margin-left: 0;
}
.single-products:focus .products-image ul li a:nth-child(3),
.single-products:hover .products-image ul li a:nth-child(3) {
    margin-right: 0;
}
#productsModalCenter .modal-dialog {
    max-width: 900px;
}
#productsModalCenter .modal-content {
    border: none;
    border-radius: 0;
}
#productsModalCenter .modal-content button.close {
    position: absolute;
    right: 2%;
    display: inline-block;
    opacity: 1;
    top: 2%;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 32px;
    border: 1px solid #eee;
    border-radius: 50%;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#productsModalCenter .modal-content button.close span {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#productsModalCenter .modal-content button.close:focus,
#productsModalCenter .modal-content button.close:hover {
    background-color: #44ce6f;
    color: #fff;
}
#productsModalCenter .modal-content button.close:focus span,
#productsModalCenter .modal-content button.close:hover span {
    color: #fff;
}
#productsModalCenter .modal-content .products-image {
    overflow: hidden;
}
#productsModalCenter .modal-content .products-image img {
    width: 100%;
}
#productsModalCenter .modal-content .products-content p {
    margin-bottom: 20px;
}
#productsModalCenter .modal-content .products-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
#productsModalCenter .modal-content .products-content .price {
    margin-bottom: 15px;
}
#productsModalCenter .modal-content .products-content .price span {
    text-decoration: line-through;
    color: #6084a4;
}
#productsModalCenter .modal-content .products-content form .quantity {
    display: inline-block;
    margin-right: 8px;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter {
    max-width: 110px;
    min-width: 110px;
    text-align: center;
    display: inline-block;
    position: relative;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #6084a4;
    width: 40px;
    height: 100%;
    line-height: 47px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 0;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter span.minus-btn {
    left: 0;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter span.plus-btn {
    right: 0;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter span svg {
    width: 20px;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter span:hover {
    color: #44ce6f;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input {
    height: 47px;
    color: #0e314c;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input::-webkit-input-placeholder {
    color: #0e314c;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input::-moz-placeholder {
    color: #0e314c;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input:-ms-input-placeholder {
    color: #0e314c;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input::-ms-input-placeholder {
    color: #0e314c;
}
#productsModalCenter .modal-content .products-content form .quantity .input-counter input::placeholder {
    color: #0e314c;
}
#productsModalCenter .modal-content .products-content form button {
    background: #44ce6f;
    color: #fff;
    border: none;
    height: 46px;
    padding: 0 20px;
    position: relative;
    top: -2px;
    cursor: pointer;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
#productsModalCenter .modal-content .products-content form button:focus,
#productsModalCenter .modal-content .products-content form button:hover {
    background-color: #c679e3;
    color: #fff;
}
#productsModalCenter .modal-content .products-content .product-meta {
    margin-top: 15px;
}
#productsModalCenter .modal-content .products-content .product-meta span {
    display: inline-block;
    margin-right: 8px;
}
.products-details-image .slickslide {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.products-details-image .slickslide li img {
    width: 100%;
}
.products-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
}
.products-details .price {
    margin-bottom: 15px;
}
.products-details .price span {
    text-decoration: line-through;
    color: #6084a4;
}
.products-details .rating {
    padding: 0;
    margin: 0 0 12px;
    list-style-type: none;
}
.products-details .rating li {
    display: inline-block;
    color: #eac11d;
}
.products-details .rating li i:before {
    font-size: 15px;
}
.products-details .availability {
    margin-bottom: 20px;
}
.products-details .availability span {
    color: #44ce6f;
}
.products-details form .quantity {
    display: inline-block;
    padding-right: 10px;
}
.products-details form .quantity span {
    padding-right: 10px;
}
.products-details form .quantity .input-counter {
    max-width: 110px;
    min-width: 110px;
    text-align: center;
    display: inline-block;
    position: relative;
    border: 1px solid #eee;
    padding-top: 8px;
    padding-bottom: 8px;
}
.products-details form .quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #6084a4;
    width: 40px;
    height: 100%;
    line-height: 47px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 0;
}
.products-details form .quantity .input-counter span.minus-btn {
    left: 0;
}
.products-details form .quantity .input-counter span.plus-btn {
    right: 0;
}
.products-details form .quantity .input-counter span svg {
    width: 20px;
}
.products-details form .quantity .input-counter span:hover {
    color: #44ce6f;
}
.products-details form button {
    background: #44ce6f;
    color: #fff;
    border: none;
    height: 46px;
    padding: 0 20px;
    position: relative;
    top: -3px;
    cursor: pointer;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.products-details form button:focus,
.products-details form button:hover {
    background-color: #c679e3;
    color: #fff;
}
.products-details form .add-to-wishlist-btn {
    margin-left: 5px;
    background: transparent;
    color: #0e314c;
    border: 1px solid #eee;
    position: relative;
    top: -3px;
    cursor: pointer;
    outline: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
}
.products-details form .add-to-wishlist-btn:focus,
.products-details form .add-to-wishlist-btn:hover {
    background-color: #c679e3;
    color: #fff;
    border-color: #c679e3;
}
.products-details form .add-to-wishlist-btn .feather {
    position: relative;
    top: 4px;
    overflow: unset;
}
.products-details form .buy-btn {
    margin-top: 20px;
}
.products-details form .buy-btn .btn-primary {
    background: #c679e3;
    -webkit-box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, 0.25);
}
.products-details form .buy-btn .btn-primary:after,
.products-details form .buy-btn .btn-primary:before {
    background: #44ce6f;
    -webkit-box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, 0.25);
}
.products-details .custom-payment-options {
    margin-top: 20px;
}
.products-details .custom-payment-options span {
    display: block;
    margin-bottom: 10px;
}
.products-details .custom-payment-options .payment-methods img {
    display: inline-block;
    margin-right: 5px;
}
.products-details .products-share-social {
    margin-top: 25px;
}
.products-details .products-share-social span {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -3px;
}
.products-details .products-share-social ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-block;
}
.products-details .products-share-social ul li {
    display: inline-block;
    margin-right: 5px;
}
.products-details .products-share-social ul li a {
    width: 32px;
    text-align: center;
    line-height: 37px;
    height: 32px;
    border: 1px solid #44ce6f;
    border-radius: 50%;
    color: #44ce6f;
}
.products-details .products-share-social ul li a svg {
    width: 15px;
}
.products-details .products-share-social ul li a.facebook {
    border-color: #4267b2;
    color: #4267b2;
}
.products-details .products-share-social ul li a.facebook:hover {
    background: #4267b2;
    color: #fff;
}
.products-details .products-share-social ul li a.twitter {
    border-color: #38a1f3;
    color: #38a1f3;
}
.products-details .products-share-social ul li a.twitter:hover {
    background: #38a1f3;
    color: #fff;
}
.products-details .products-share-social ul li a.linkedin {
    border-color: #0077b5;
    color: #0077b5;
}
.products-details .products-share-social ul li a.linkedin:hover {
    background: #0077b5;
    color: #fff;
}
.products-details .products-share-social ul li a.instagram {
    border-color: #231f20;
    color: #231f20;
}
.products-details .products-share-social ul li a.instagram:hover {
    background: #231f20;
    color: #fff;
}
.products-details .products-share-social ul li a:hover {
    background: #44ce6f;
    color: #fff;
}
.products-details-tabs {
    margin-top: 40px;
    text-align: center;
}
.products-details-tabs #tabs {
    padding: 0;
    margin: 0 0 30px;
    list-style-type: none;
}
.products-details-tabs #tabs li {
    display: inline-block;
    padding: 12px 50px 8px;
    cursor: pointer;
    margin-right: -4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: #eaeaea;
    font-weight: 500;
}
.products-details-tabs #tabs li.active {
    background-color: #fff;
    position: relative;
}
.products-details-tabs #tabs li.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: #44ce6f;
}
.products-details-tabs #tabs li.inactive {
    background-color: #eee;
    padding: 12px 50px;
}
.products-details-tabs .content {
    display: none;
}
.products-details-tabs .content.show {
    display: block;
}
.products-details-tabs .content h3 {
    margin-bottom: 12px;
    font-size: 18px;
}
.products-details-tabs .content .additional-information {
    padding: 0;
    margin: 25px 0 0;
    list-style-type: none;
    text-align: left;
}
.products-details-tabs .content .additional-information li {
    border: 1px solid #eee;
    border-bottom: none;
    padding: 10px 15px;
    color: #6084a4;
}
.products-details-tabs .content .additional-information li:last-child {
    border-bottom: 1px solid #eee;
}
.products-details-tabs .content .additional-information li span {
    display: inline-block;
    width: 45%;
}
.products-details-tabs .content .products-reviews {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}
.products-details-tabs .content .products-reviews p {
    margin-bottom: 0;
}
.products-details-tabs .content .products-reviews .review-form {
    margin-top: 20px;
    max-width: 620px;
}
.products-details-tabs .content .products-reviews .review-form p {
    margin-bottom: 0;
}
.products-details-tabs .content .products-reviews .review-form .form-control {
    background: transparent;
}
.products-details-tabs .content .products-reviews .star-source {
    width: 0;
    height: 0;
    margin-top: 5px;
    visibility: hidden;
}
.products-details-tabs .content .products-reviews .star-source svg {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.15rem;
}
.products-details-tabs .content .products-reviews .star-rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 105px;
    margin-bottom: 10px;
}
.products-details-tabs .content .products-reviews .star-rating label {
    cursor: pointer;
}
.products-details-tabs .content .products-reviews .star-rating label .star {
    color: transparent;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.products-details-tabs .content .products-reviews .star-rating input[name="star"]:checked ~ label .star,
.products-details-tabs .content .products-reviews .star-rating input[name="star"]:focus ~ label .star,
.products-details-tabs .content .products-reviews .star-rating label:hover ~ label .star,
.products-details-tabs .content .products-reviews .star-rating svg.star:hover {
    color: #f2b01e;
}
.products-details-tabs .content .products-reviews .star-rating svg {
    width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.15rem;
}
.products-details-tabs .content .products-reviews .star-rating input[name="star"] {
    display: inline-block;
    width: 0;
    opacity: 0;
    margin-left: -2px;
}
.products-details-tabs .content .products-reviews .star-rating input[name="star"]:checked + label {
    -webkit-animation: scaleup 1s;
    animation: scaleup 1s;
}
.products-details-tabs .content .products-reviews .star-rating input[name="star"]:checked + label .star {
    -webkit-animation: starred 0.5s;
    animation: starred 0.5s;
}
@-webkit-keyframes scaleup {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scaleup {
    0% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes starred {
    0% {
        color: #f2b01e;
    }
    to {
        color: #f2b01e;
    }
}
@keyframes starred {
    0% {
        color: #f2b01e;
    }
    to {
        color: #f2b01e;
    }
}
.cart-table table {
    margin-bottom: 0;
}
.cart-table table thead tr th {
    border-bottom-width: 0;
    vertical-align: middle;
    font-weight: 500;
    padding: 15px 0;
    font-size: 15px;
    border: none;
}
.cart-table table tbody tr td {
    vertical-align: middle;
    color: #6084a4;
    padding-left: 0;
    padding-right: 0;
    border-color: #eaedff;
    border-left: none;
    border-right: none;
}
.cart-table table tbody tr td.product-thumbnail a {
    display: block;
}
.cart-table table tbody tr td.product-thumbnail a img {
    width: 80px;
}
.cart-table table tbody tr td.product-name a {
    color: #6084a4;
    font-weight: 500;
    display: inline-block;
}
.cart-table table tbody tr td.product-name a:hover {
    color: #44ce6f;
}
.cart-table table tbody tr td.product-subtotal .remove {
    color: red;
    margin-left: 25px;
    position: relative;
    top: -1px;
    float: right;
}
.cart-table table tbody tr td.product-subtotal .remove svg {
    width: 19px;
}
.cart-table table tbody tr td.product-quantity .input-counter {
    max-width: 110px;
    min-width: 110px;
    text-align: center;
    display: inline-block;
    position: relative;
}
.cart-table table tbody tr td.product-quantity .input-counter span {
    position: absolute;
    top: 0;
    background-color: transparent;
    cursor: pointer;
    color: #6084a4;
    width: 40px;
    height: 100%;
    line-height: 47px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.cart-table table tbody tr td.product-quantity .input-counter span.minus-btn {
    left: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span.plus-btn {
    right: 0;
}
.cart-table table tbody tr td.product-quantity .input-counter span svg {
    width: 20px;
}
.cart-table table tbody tr td.product-quantity .input-counter span:hover {
    color: #44ce6f;
}
.cart-table table tbody tr td.product-quantity .input-counter input {
    height: 45px;
    color: #0e314c;
    outline: 0;
    display: block;
    border: none;
    background-color: #f8f8f8;
    text-align: center;
    width: 100%;
    font-size: 17px;
    font-weight: 500;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-webkit-input-placeholder {
    color: #0e314c;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-moz-placeholder {
    color: #0e314c;
}
.cart-table table tbody tr td.product-quantity .input-counter input:-ms-input-placeholder {
    color: #0e314c;
}
.cart-table table tbody tr td.product-quantity .input-counter input::-ms-input-placeholder {
    color: #0e314c;
}
.cart-table table tbody tr td.product-quantity .input-counter input::placeholder {
    color: #0e314c;
}
.cart-buttons {
    margin-top: 30px;
}
.cart-buttons .btn-light {
    background-color: #eaedff;
}
.cart-buttons .btn-light:focus,
.cart-buttons .btn-light:focus .show > .btn-light.dropdown-toggle,
.cart-buttons .btn-light:focus:not(:disabled):not(.disabled).active,
.cart-buttons .btn-light:focus:not(:disabled):not(.disabled):active,
.cart-buttons .btn-light:hover,
.cart-buttons .btn-light:hover .show > .btn-light.dropdown-toggle,
.cart-buttons .btn-light:hover:not(:disabled):not(.disabled).active,
.cart-buttons .btn-light:hover:not(:disabled):not(.disabled):active {
    color: #fff;
}
.cart-totals {
    background: #fff;
    padding: 40px;
    max-width: 600px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    margin-left: auto;
}
.cart-totals h3 {
    font-size: 18px;
    margin-bottom: 25px;
}
.cart-totals ul {
    padding: 0;
    margin: 0 0 25px;
    list-style-type: none;
}
.cart-totals ul li {
    border: 1px solid #eaedff;
    padding: 10px 15px;
    color: #0e314c;
    overflow: hidden;
}
.cart-totals ul li:first-child {
    border-bottom: none;
}
.cart-totals ul li:last-child {
    border-top: none;
}
.cart-totals ul li span {
    float: right;
    color: #6084a4;
}
.user-actions {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 18px 25px 15px;
    margin-bottom: 35px;
    border-top: 3px solid #44ce6f;
}
.user-actions svg {
    color: #44ce6f;
    margin-right: 4px;
    width: 16px;
}
.user-actions span {
    display: inline-block;
    color: #44ce6f;
}
.user-actions span a {
    font-weight: 500;
    display: inline-block;
    color: #0e314c;
}
.user-actions span a:focus,
.user-actions span a:hover {
    color: #44ce6f;
}
.checkout-area .title {
    font-size: 18px;
    margin-bottom: 25px;
}
.billing-details {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.billing-details .form-group label {
    display: block;
    color: #6084a4;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}
.billing-details .form-group label .required {
    color: red;
}
.billing-details .form-group .form-control {
    background: transparent;
}
.billing-details .form-group select {
    cursor: pointer;
}
.billing-details .form-check {
    margin-bottom: 15px;
}
.billing-details .form-check .form-check-label {
    color: #6084a4;
}
.billing-details .form-check label {
    font-size: 14px;
    font-weight: 400;
}
.order-details {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.order-details .order-table table {
    margin-bottom: 0;
    text-align: left;
}
.order-details .order-table table thead tr th {
    border-bottom-width: 0;
    vertical-align: middle;
    font-weight: 500;
    border-color: #eaedff;
    padding: 15px 20px;
}
.order-details .order-table table tbody tr td {
    vertical-align: middle;
    color: #6084a4;
    border-color: #eaedff;
    font-size: 14px;
}
.order-details .order-table table tbody tr td.product-name a {
    color: #6084a4;
    display: inline-block;
}
.order-details .order-table table tbody tr td.product-name a:hover {
    color: #44ce6f;
}
.order-details .order-table table tbody tr td.order-shipping span,
.order-details .order-table table tbody tr td.order-subtotal span,
.order-details .order-table table tbody tr td.total-price span {
    color: #0e314c;
    font-weight: 500;
}
.order-details .payment-method {
    margin-top: 40px;
    border-top: 1px solid #eaedff;
    padding-top: 35px;
}
.order-details .payment-method p {
    font-size: 14px;
}
.order-details .payment-method p [type="radio"]:checked,
.order-details .payment-method p [type="radio"]:not(:checked) {
    display: none;
}
.order-details .payment-method p [type="radio"]:checked + label,
.order-details .payment-method p [type="radio"]:not(:checked) + label {
    padding-left: 27px;
    cursor: pointer;
    display: block;
    color: #0e314c;
    position: relative;
    margin-bottom: 8px;
    font-weight: 500;
}
.order-details .payment-method p [type="radio"]:checked + label:before,
.order-details .payment-method p [type="radio"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
}
.order-details .payment-method p [type="radio"]:checked + label:after,
.order-details .payment-method p [type="radio"]:not(:checked) + label:after {
    content: "";
    width: 12px;
    height: 12px;
    background: #44ce6f;
    position: absolute;
    top: 7px;
    left: 3px;
    border-radius: 50%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.order-details .payment-method p [type="radio"]:not(:checked) + label:after {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
}
.order-details .payment-method p [type="radio"]:checked + label:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.order-details .btn.order-btn {
    display: block;
    margin-top: 25px;
}
.agency-portfolio-main-banner {
    height: 100vh;
    position: relative;
    z-index: 1;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
}
.agency-portfolio-main-banner.portfolio-banner-bg1 {
    background-image: url(../img/img1.2cddd684.jpg);
}
.agency-portfolio-main-banner.portfolio-banner-bg2 {
    background-image: url(../img/img2.edca07d5.jpg);
}
.agency-portfolio-main-banner.portfolio-banner-bg3 {
    background-image: url(../img/img3.2d5a8ac1.jpg);
}
.portfolio-banner-content {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -50px;
}
.portfolio-banner-content .sub-title {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6084a4;
    margin-bottom: 10px;
}
.portfolio-banner-content h1 {
    margin-bottom: 15px;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 500;
}
.portfolio-banner-content p {
    font-size: 15px;
    max-width: 490px;
    margin-left: auto;
    margin-right: auto;
}
.portfolio-banner-content .btn {
    margin-top: 5px;
}
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation {
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-next,
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-prev {
    margin: 0;
    padding: 0 !important;
    background-color: #e1e1e1;
    color: #0e314c;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 55px;
    position: absolute;
    left: 40px;
    top: 50%;
    border-radius: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 30px;
}
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-next:hover,
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-prev:hover {
    background-color: #44ce6f;
    color: #fff;
}
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-next.VueCarousel-navigation-next,
.agency-portfolio-home-slides.owl-theme .VueCarousel-navigation .VueCarousel-navigation-prev.VueCarousel-navigation-next {
    left: auto;
    right: 40px;
}
.agency-portfolio-home-slides.owl-theme:hover .VueCarousel-navigation {
    opacity: 1;
    visibility: visible;
}
.our-latest-projects {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}
.projects-items {
    margin-left: -15px;
    margin-right: -15px;
}
.projects-items .single-latest-projects {
    margin-bottom: 30px;
    position: relative;
}
.projects-items .single-latest-projects .link-btn {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
.projects-items .single-latest-projects .content {
    position: absolute;
    left: -5%;
    top: 60%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    padding: 25px;
    margin-top: 20px;
}
.projects-items .single-latest-projects .content span {
    display: block;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 8px;
}
.projects-items .single-latest-projects .content h3 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
}
.projects-items .single-latest-projects:hover .content {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}
.shorting-menu {
    text-align: end;
}
.shorting-menu button {
    background-color: transparent;
    cursor: pointer;
    color: #848484;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-right: 15px;
    padding: 0;
    outline: 0;
    border: none;
    font-size: 14px;
    font-weight: 600;
}
.shorting-menu button.active,
.shorting-menu button:hover {
    color: #0e314c;
}
.shorting-menu button:last-child {
    margin-right: 0;
}
.agency-portfolio-about-area {
    background-color: #f4f4f4;
}
.single-text-box h3 {
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
    font-size: 22px;
}
.single-text-box .learn-more-btn {
    color: #365267;
    font-size: 14px;
    font-weight: 600;
}
.single-text-box .learn-more-btn svg {
    width: 18px;
    position: relative;
    top: -1px;
    margin-right: 3px;
}
.single-text-box .learn-more-btn:hover {
    color: #44ce6f;
}
.agency-portfolio-partner-area {
    background-color: #0e314c;
}
.single-agency-portfolio-partner {
    text-align: center;
}
.single-agency-portfolio-partner a {
    display: block;
}
.single-agency-portfolio-partner a img {
    width: auto !important;
    display: inline-block !important;
}
.creative-area {
    height: 650px;
    background-image: url(../img/creative-bg.16cce3da.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.creative-area .container {
    position: relative;
}
.creative-area .d-table-cell {
    vertical-align: bottom;
}
.creative-inner-area {
    max-width: 600px;
    margin-left: auto;
}
.creative-inner-area .single-counter {
    background-color: #0e314c;
    padding: 60px;
}
.creative-inner-area .single-counter h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 32px;
    font-weight: 700;
}
.creative-inner-area .single-counter h3 .odometer-formatting-mark {
    display: none;
}
.creative-inner-area .single-counter p {
    margin-bottom: 0;
    line-height: normal;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.creative-inner-area .row {
    margin-left: 0;
    margin-right: 0;
}
.creative-inner-area .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}
.creative-inner-area .col-lg-6:first-child .single-counter {
    background-color: #44ce6f;
}
.creative-inner-area .col-lg-6:nth-child(2) .single-counter {
    background-color: #0e314c;
}
.bigdata-analytics-banner {
    background-image: url(../img/main-banner.a52bfbe9.jpg);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 280px;
    padding-bottom: 25px;
}
.bigdata-analytics-content {
    max-width: 555px;
}
.bigdata-analytics-content h1 {
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.4;
    font-size: 50px;
    font-weight: 700;
}
.bigdata-analytics-content p {
    color: #e9e9e9;
    max-width: 470px;
    font-size: 15px;
}
.bigdata-analytics-content .btn {
    margin-top: 18px;
}
.banner-boxes-area {
    margin-top: 230px;
}
.single-banner-boxes {
    margin-bottom: 30px;
    border: 1px dashed #687b6f;
    position: relative;
    border-radius: 5px;
    padding: 25px 25px 25px 95px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
}
.single-banner-boxes:before {
    content: "";
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    z-index: -1;
    opacity: 0;
    margin: -1px;
    visibility: hidden;
}
.single-banner-boxes .icon,
.single-banner-boxes:before {
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-banner-boxes .icon {
    display: inline-block;
    text-align: center;
    width: 55px;
    height: 55px;
    left: 20px;
    top: 25px;
    line-height: 70px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
}
.single-banner-boxes h3 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
}
.single-banner-boxes p {
    color: #dadada;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-banner-boxes:hover {
    background-color: transparent;
    border-color: transparent;
}
.single-banner-boxes:hover .icon {
    color: #44ce6f;
    background-color: #fff;
}
.single-banner-boxes:hover:before {
    opacity: 1;
    visibility: visible;
}
.single-banner-boxes:hover p {
    color: #fff;
}
.col-lg-4:nth-child(2) .single-banner-boxes .icon {
    color: #f78acb;
    background: #f9f4f7;
}
.col-lg-4:nth-child(2) .single-banner-boxes:hover .icon {
    background-color: #fff;
    color: #f78acb;
}
.col-lg-4:nth-child(3) .single-banner-boxes .icon {
    color: #c679e3;
    background: #edc3fc;
}
.col-lg-4:nth-child(3) .single-banner-boxes:hover .icon {
    background-color: #fff;
    color: #c679e3;
}
.what-we-do-area {
    padding-bottom: 50px;
}
.single-what-we-do-box {
    margin-bottom: 30px;
    position: relative;
    padding-left: 88px;
}
.single-what-we-do-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 65px;
    height: 65px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #23bdb8, #43e794);
}
.single-what-we-do-box .icon i {
    position: absolute;
    left: 0;
    right: 0;
    top: 40%;
    -webkit-transform: translateY(-40%);
    transform: translateY(-40%);
}
.single-what-we-do-box .icon i:before {
    font-size: 40px;
}
.single-what-we-do-box h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}
.single-what-we-do-box .link {
    display: block;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 10px;
}
.single-what-we-do-box .read-more-btn {
    display: inline-block;
    font-weight: 600;
    padding-top: 10px;
    padding-left: -4px;
}
.single-what-we-do-box .read-more-btn svg {
    margin-right: 5px;
}
.discover-area {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #43e794, #23bdb8);
}
.discover-image {
    position: relative;
    padding-bottom: 100px;
    margin-right: 15px;
}
.discover-image img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: 0;
}
.discover-content {
    padding-left: 15px;
}
.discover-content h2 {
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 28px;
    font-weight: 600;
}
.discover-content p {
    color: #fff;
}
.discover-content .btn-primary {
    -webkit-box-shadow: unset !important;
    box-shadow: unset !important;
    margin-top: 15px;
    background-color: #fff;
    color: #0e314c;
}
.discover-content .btn-primary:hover {
    color: #fff;
}
.analytics-shape1 {
    left: 0;
}
.analytics-shape1,
.analytics-shape2 {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
.analytics-shape2 {
    right: 0;
}
.partner-section {
    text-align: center;
    position: relative;
    margin-top: -120px;
    background: transparent;
}
.partner-section h5 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
}
.partner-section .partner-inner {
    background: #fff;
    padding-top: 5px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    margin-top: 25px;
}
.partner-section .partner-inner a {
    display: block;
    margin-top: 25px;
    position: relative;
}
.partner-section .partner-inner a img:last-child {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.partner-section .partner-inner a:hover img:last-child {
    opacity: 1;
    top: 0;
    visibility: visible;
}
.industries-serve-area {
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #43e794, #23bdb8);
}
.industries-serve-area .section-title h2,
.industries-serve-area .section-title p {
    color: #fff;
}
.industries-serve-area .section-title .bar:before {
    background: #fff;
}
.single-industries-serve-box {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    color: #0e314c;
    border-radius: 5px;
    background-color: #f4f4fb;
    padding: 20px 15px 20px 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 1;
    font-size: 18px;
    font-weight: 600;
}
.single-industries-serve-box .icon {
    position: absolute;
    left: -15px;
    top: 50%;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #c3c3c9;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 55px;
    font-weight: 400;
}
.single-industries-serve-box:before {
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    content: "";
    z-index: -1;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #0e314c;
}
.single-industries-serve-box .link-btn {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    z-index: 2;
}
.single-industries-serve-box:hover,
.single-industries-serve-box:hover .icon {
    color: #fff;
}
.single-industries-serve-box:hover:before {
    width: 100%;
}
.blog-area {
    position: relative;
    z-index: 1;
    padding-bottom: 50px;
}
.blog-area .pagination-area,
.single-blog-post {
    margin-bottom: 30px;
}
.single-blog-post {
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-blog-post .blog-image {
    position: relative;
}
.single-blog-post .blog-image a {
    display: block;
}
.single-blog-post .blog-image .date {
    position: absolute;
    left: 20px;
    bottom: -20px;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 50px;
}
.single-blog-post .blog-image .date svg {
    width: 15px;
    margin-right: 3px;
}
.single-blog-post .blog-post-content {
    padding-top: 40px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
    background: #f7fafd;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-blog-post .blog-post-content h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}
.single-blog-post .blog-post-content span {
    display: block;
    color: #0e314c;
    margin: 15px 0;
}
.single-blog-post .blog-post-content span a {
    color: #6084a4;
}
.single-blog-post .blog-post-content span a:hover {
    color: #44ce6f;
}
.single-blog-post .blog-post-content .read-more-btn {
    color: #0e314c;
}
.single-blog-post .blog-post-content .read-more-btn svg {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    width: 15px;
}
.single-blog-post .blog-post-content .read-more-btn:hover {
    color: #44ce6f;
}
.single-blog-post .blog-post-content .read-more-btn:hover svg {
    margin-left: 5px;
}
.single-blog-post:hover {
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
}
.single-blog-post:hover .blog-post-content {
    background: #fff;
}
.single-blog-post-box {
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
}
.single-blog-post-box .entry-thumbnail a {
    display: block;
}
.single-blog-post-box .entry-thumbnail a img {
    border-radius: 5px 5px 0 0;
}
.single-blog-post-box .entry-post-content {
    background: -webkit-gradient(linear, left bottom, right top, from(#d5fefd), color-stop(#e0fdff), color-stop(#effbff), color-stop(#fbfaff), to(#fffcff));
    background: linear-gradient(to right top, #d5fefd, #e0fdff, #effbff, #fbfaff, #fffcff);
    padding: 20px;
}
.single-blog-post-box .entry-post-content .entry-meta {
    margin-bottom: 10px;
}
.single-blog-post-box .entry-post-content .entry-meta ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.single-blog-post-box .entry-post-content .entry-meta ul li {
    display: inline-block;
    position: relative;
    margin-right: 12px;
    color: #6084a4;
    font-size: 14px;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:before {
    content: "";
    position: absolute;
    right: -7px;
    top: 50%;
    -webkit-transform: rotate(14deg) translateY(-50%);
    transform: rotate(14deg) translateY(-50%);
    background: #6084a4;
    width: 1px;
    height: 13px;
}
.single-blog-post-box .entry-post-content .entry-meta ul li a {
    display: inline-block;
    color: #6084a4;
}
.single-blog-post-box .entry-post-content .entry-meta ul li a:hover {
    color: #44ce6f;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:last-child {
    margin-right: 0;
}
.single-blog-post-box .entry-post-content .entry-meta ul li:last-child:before {
    display: none;
}
.single-blog-post-box .entry-post-content h3 {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 18px;
}
.single-blog-post-box .entry-post-content p {
    margin-top: 8px;
    margin-bottom: 0;
}
.single-blog-post-box .entry-post-content .learn-more-btn {
    margin-top: 15px;
    font-weight: 600;
}
.single-blog-post-box .entry-post-content .learn-more-btn svg {
    width: 15px;
}
.single-blog-item {
    margin-bottom: 30px;
}
.single-blog-item .post-image {
    text-align: center;
}
.single-blog-item .post-image a {
    display: block;
}
.single-blog-item .post-content {
    margin-top: 20px;
}
.single-blog-item .post-content .post-meta {
    padding-left: 0;
    margin-bottom: 10px;
    list-style-type: none;
}
.single-blog-item .post-content .post-meta li {
    display: inline-block;
    margin-right: 25px;
    position: relative;
}
.single-blog-item .post-content .post-meta li:before {
    content: "";
    position: absolute;
    top: 10px;
    right: -20px;
    width: 10px;
    height: 1px;
    background-color: #6084a4;
}
.single-blog-item .post-content .post-meta li:last-child {
    margin-right: 0;
}
.single-blog-item .post-content .post-meta li:last-child:before {
    display: none;
}
.single-blog-item .post-content h3 {
    line-height: 30px;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
}
.blog-slides,
.single-blog-post-item {
    margin-bottom: 30px;
}
.single-blog-post-item .post-image {
    border-radius: 5px;
    overflow: hidden;
}
.single-blog-post-item .post-image a {
    display: block;
    border-radius: 5px;
}
.single-blog-post-item .post-image a img {
    border-radius: 5px;
}
.single-blog-post-item .post-content {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background: -webkit-gradient(linear, left bottom, right top, from(#d5fefd), color-stop(#e0fdff), color-stop(#effbff), color-stop(#fbfaff), to(#fffcff));
    background: linear-gradient(to right top, #d5fefd, #e0fdff, #effbff, #fbfaff, #fffcff);
    position: relative;
    border-radius: 5px;
    padding: 30px 25px;
    -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.05);
    margin-left: 15px;
    margin-right: 15px;
    margin-top: -30px;
}
.single-blog-post-item .post-content .post-meta {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 10px;
    list-style-type: none;
    padding-left: 0;
}
.single-blog-post-item .post-content .post-meta li {
    display: inline-block;
    margin-right: 15px;
    position: relative;
    color: #6084a4;
}
.single-blog-post-item .post-content .post-meta li a {
    color: #6084a4;
}
.single-blog-post-item .post-content .post-meta li a:hover {
    color: #44ce6f;
}
.single-blog-post-item .post-content .post-meta li:before {
    content: "";
    position: absolute;
    right: -10px;
    top: 4px;
    height: 12px;
    background-color: #6084a4;
    width: 1px;
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
}
.single-blog-post-item .post-content .post-meta li:last-child {
    margin-right: 0;
}
.single-blog-post-item .post-content .post-meta li:last-child:before {
    display: none;
}
.single-blog-post-item .post-content h3 {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
}
.single-blog-post-item .post-content .read-more-btn {
    display: inline-block;
    border-radius: 30px;
    padding: 9px 25px;
    border: 1px solid #e6e6e6;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    left: 25px;
    bottom: -22px;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    font-weight: 500;
}
.single-blog-post-item .post-content .read-more-btn svg {
    width: 15px;
    margin-left: 2px;
}
.single-blog-post-item .post-content .read-more-btn:hover {
    background-color: #44ce6f;
    border-color: #44ce6f;
    color: #fff;
}
.single-blog-post-item:hover .post-content {
    -webkit-transform: translateY(-22px);
    transform: translateY(-22px);
}
.single-blog-post-item:hover .post-content .post-meta,
.single-blog-post-item:hover .post-content h3 {
    -webkit-transform: translateY(-12px);
    transform: translateY(-12px);
}
.single-blog-post-item:hover .post-content .read-more-btn {
    opacity: 1;
    visibility: visible;
}
.single-blog-post-box.bg-f4faff .entry-post-content {
    background: #f4faff;
}
.single-services-box-item {
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 90px 35px 70px;
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.single-services-box-item .icon {
    width: 90px;
    height: 90px;
    position: relative;
    background-color: #80c54d;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
}
.single-services-box-item .icon img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
}
.single-services-box-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}
.single-services-box-item h3 a {
    display: inline-block;
}
.single-services-box-item .shape {
    position: absolute;
    right: 0;
    top: -15px;
    z-index: -1;
}
.single-services-box-item .learn-more-btn {
    color: #44ce6f;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
    position: relative;
    padding-left: 28px;
}
.single-services-box-item .learn-more-btn svg {
    position: absolute;
    left: 0;
    top: -2px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.single-services-box-item .learn-more-btn:hover {
    color: #0e314c;
    padding-left: 0;
    padding-right: 5px;
}
.single-services-box-item .learn-more-btn:hover svg {
    left: 100%;
    color: #44ce6f;
}
.single-services-box-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.col-lg-4:nth-child(2) .single-services-box-item .icon {
    background-color: #4267d1;
}
.col-lg-4:nth-child(3) .single-services-box-item .icon {
    background-color: #ca8220;
}
.col-lg-4:nth-child(4) .single-services-box-item .icon {
    background-color: #b92fb1;
}
.col-lg-4:nth-child(5) .single-services-box-item .icon {
    background-color: #de6742;
}
.col-lg-4:nth-child(6) .single-services-box-item .icon {
    background-color: #59eed0;
}
.newsletter-area {
    position: relative;
    z-index: 1;
}
.newsletter-area .container-fluid,
.newsletter-area .container-lg,
.newsletter-area .container-md,
.newsletter-area .container-sm,
.newsletter-area .container-xl {
    padding-left: 0;
    padding-right: 0;
}
.newsletter-area .container-fluid .row,
.newsletter-area .container-lg .row,
.newsletter-area .container-md .row,
.newsletter-area .container-sm .row,
.newsletter-area .container-xl .row {
    margin-left: 0;
    margin-right: 0;
}
.newsletter-area .container-fluid .row .col-lg-6,
.newsletter-area .container-lg .row .col-lg-6,
.newsletter-area .container-md .row .col-lg-6,
.newsletter-area .container-sm .row .col-lg-6,
.newsletter-area .container-xl .row .col-lg-6 {
    padding-left: 0;
    padding-right: 0;
}
.newsletter-area:before {
    content: "";
    position: absolute;
    right: 0;
    width: 65%;
    height: 100%;
    bottom: 0;
    z-index: 1;
    -webkit-clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    background: linear-gradient(135deg, #43e794, #23bdb8);
}
.newsletter-image img {
    width: 100%;
}
.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
}
.newsletter-content h2 {
    color: #fff;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 28px;
    font-weight: 600;
}
.newsletter-content .newsletter-form {
    position: relative;
    padding-right: 160px;
    margin-bottom: 15px;
    margin-top: 20px;
}
.newsletter-content .newsletter-form .input-newsletter {
    display: block;
    width: 100%;
    height: 50px;
    color: #fff;
    border: none;
    outline: 0;
    background-color: #333;
    border-radius: 30px;
    padding-left: 20px;
    padding-top: 2px;
}
.newsletter-content .newsletter-form .input-newsletter::-webkit-input-placeholder {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}
.newsletter-content .newsletter-form .input-newsletter::-moz-placeholder {
    -moz-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}
.newsletter-content .newsletter-form .input-newsletter:-ms-input-placeholder {
    -ms-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}
.newsletter-content .newsletter-form .input-newsletter::-ms-input-placeholder {
    -ms-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}
.newsletter-content .newsletter-form .input-newsletter::placeholder {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
}
.newsletter-content .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
    color: transparent;
}
.newsletter-content .newsletter-form .input-newsletter:focus::-moz-placeholder {
    color: transparent;
}
.newsletter-content .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
    color: transparent;
}
.newsletter-content .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
    color: transparent;
}
.newsletter-content .newsletter-form .input-newsletter:focus::placeholder {
    color: transparent;
}
.newsletter-content .newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    border: none;
    padding: 0 30px;
    line-height: 50px;
    background-color: #fff;
    border-radius: 30px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    color: #0e314c;
    font-size: 14px;
    font-weight: 600;
}
.newsletter-content .newsletter-form button:hover {
    background-color: #0e314c;
    color: #fff;
}
.newsletter-content p {
    color: #fff;
    max-width: 400px;
}
.newsletter-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: linear-gradient(135deg, #23bdb8, #43e794);
    display: none;
}
@media only screen and (max-width: 767px) {
    .btn {
        font-size: 13px;
        padding: 13px 33px;
    }
    .ptb-80 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .section-title {
        margin-bottom: 40px;
    }
    .section-title h2 {
        font-size: 20px;
    }
    .owl-theme .owl-dots {
        margin-top: 5px;
    }
    .owl-theme .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 0 3px;
    }
    .main-banner {
        height: 100%;
        padding-top: 150px;
        padding-bottom: 80px;
        background-position: 50%;
    }
    .main-banner .hero-content {
        margin-bottom: 45px;
        text-align: center;
    }
    .main-banner .hero-content h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 15px;
    }
    .main-banner .banner-image {
        text-align: center;
    }
    .main-banner .banner-image img {
        display: none;
        position: relative;
    }
    .main-banner .banner-image img:last-child {
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .main-banner .banner-form {
        padding: 30px 20px;
        margin: 0 !important;
    }
    .hosting-main-banner {
        height: 100%;
        padding-top: 170px;
        padding-bottom: 75px;
    }
    .hosting-main-banner .hosting-banner-content h1 {
        font-size: 25px;
    }
    .hosting-main-banner .hosting-banner-content ul li {
        font-size: 13px;
    }
    .hosting-main-banner .hosting-banner-content p {
        font-size: 16px;
        margin-bottom: 25px;
        margin-top: 20px;
    }
    .hosting-main-banner .hosting-banner-image {
        text-align: center;
        margin-top: 50px;
    }
    .hosting-main-banner .hosting-banner-image img {
        display: none;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(10) {
        display: block;
        position: relative;
    }
    .shape1,
    .shape2,
    .shape3,
    .shape4,
    .shape5,
    .shape6,
    .shape7,
    .shape8,
    .shape9,
    .shape10 {
        display: none;
    }
    .boxes-area {
        margin-top: 0;
        padding-bottom: 20px;
    }
    .single-box {
        margin-bottom: 30px;
    }
    .single-box h3 {
        font-size: 17px;
    }
    .domain-search-content h2 {
        font-size: 20px;
    }
    .domain-search-content form {
        border-radius: 0;
    }
    .domain-search-content form .form-control {
        width: 75%;
    }
    .domain-search-content form .domain-select {
        width: 25%;
        padding-right: 0;
    }
    .domain-search-content form button {
        float: unset;
        width: unset;
        height: unset;
        padding: 13px 40px;
    }
    .domain-search-content ul {
        display: block;
        margin-top: 15px;
    }
    .domain-search-content ul li {
        display: inline-block;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        padding: 0 15px;
        margin-top: 15px;
    }
    .why-choose-us-image {
        margin-bottom: 15px;
    }
    .why-choose-us-image img {
        display: none;
    }
    .why-choose-us-image img:last-child {
        display: inline-block;
    }
    .single-why-choose-us {
        margin-top: 30px !important;
    }
    .single-why-choose-us .icon i:before {
        font-size: 35px;
    }
    .single-why-choose-us h3 {
        font-size: 17px;
    }
    .services-content .box {
        margin-top: 20px;
        padding: 14px 10px;
    }
    .services-right-image {
        text-align: center;
        margin-top: 45px;
    }
    .services-right-image img {
        display: none;
        position: relative;
    }
    .services-right-image img:last-child {
        display: inline-block;
    }
    .services-right-image.single-right-image img.bg-image {
        display: none;
    }
    .services-left-image {
        text-align: center;
        margin-bottom: 45px;
    }
    .services-left-image img {
        display: none;
        position: relative;
    }
    .services-left-image img:last-child {
        display: inline-block;
    }
    .services-left-image.single-left-image img.bg-image {
        display: none;
    }
    .services-area-two {
        padding-bottom: 20px;
    }
    .single-services-box h3 {
        font-size: 17px;
    }
    .features-area {
        padding-bottom: 20px;
    }
    .single-features {
        padding-left: 20px;
    }
    .single-features .icon {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 25px;
    }
    .single-features h3 {
        font-size: 17px;
    }
    .hosting-features-area {
        padding-bottom: 20px;
    }
    .single-hosting-features h3 {
        font-size: 17px;
    }
    .cta-content {
        text-align: center;
        margin-bottom: 25px;
    }
    .cta-content h3 {
        font-size: 20px;
    }
    .cta-right-content {
        text-align: center;
    }
    .cta-right-content .buy-btn {
        display: block;
        top: 0;
        padding-left: 0;
        margin-top: 20px;
    }
    .team-area {
        padding-bottom: 20px;
    }
    .single-team {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .single-team .team-content,
    .single-team .team-image {
        padding-left: 20px;
        padding-right: 20px;
    }
    .single-team .team-content .team-info {
        margin-right: 10px;
        margin-left: 10px;
    }
    .single-team .team-content .team-info h3 {
        font-size: 17px;
    }
    .funfact {
        margin-bottom: 30px;
    }
    .funfact h3 {
        font-size: 25px;
        margin-bottom: 3px;
    }
    .contact-cta-box {
        text-align: center;
        margin: 20px 0 0;
        max-width: 100%;
        padding: 30px 20px;
    }
    .contact-cta-box h3 {
        font-size: 17px;
    }
    .contact-cta-box .btn {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 15px;
    }
    .works-area {
        padding-bottom: 20px;
    }
    .single-works .icon {
        right: 10px;
        width: 38px;
        height: 38px;
        line-height: 44px;
    }
    .single-works .icon svg {
        width: 15px;
    }
    .single-works .works-content {
        padding: 15px;
    }
    .single-works .works-content h3 {
        font-size: 17px;
    }
    .single-works:hover .icon {
        top: 10px;
    }
    .pricing-area {
        padding-bottom: 20px;
    }
    .pricing-table {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .pricing-table .pricing-header h3 {
        font-size: 17px;
    }
    .pricing-table .price {
        margin-bottom: 25px;
    }
    .pricing-table .price span {
        font-size: 27px;
    }
    .single-pricing-table {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    .single-pricing-table .pricing-header h3 {
        font-size: 17px;
    }
    .single-pricing-table .pricing-header i:before {
        font-size: 40px;
    }
    .single-pricing-table .price span {
        font-size: 27px;
    }
    .feedback-slides .client-feedback .single-feedback {
        text-align: center;
        margin-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .feedback-slides .client-feedback .single-feedback .client-img {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    .feedback-slides .client-feedback .single-feedback h3 {
        font-size: 17px;
    }
    .feedback-slides .client-feedback .single-feedback p {
        font-size: 14px;
    }
    .feedback-slides .client-feedback .single-feedback:before {
        display: none;
    }
    .feedback-slides .client-thumbnails {
        margin: 0;
    }
    .feedback-slides .client-thumbnails .next-arrow {
        right: 0;
    }
    .feedback-slides .client-thumbnails .prev-arrow {
        left: 0;
    }
    .feedback-slides .client-thumbnails .next-arrow,
    .feedback-slides .client-thumbnails .prev-arrow {
        background: rgba(0, 0, 0, 0.55);
        color: #fff;
        border: none;
    }
    .testimonials-slides {
        max-width: 100%;
        margin: 0;
    }
    .testimonials-slides:after,
    .testimonials-slides:before {
        display: none;
    }
    .testimonials-slides .client-info .image {
        padding-right: 15px;
    }
    .testimonials-slides .client-info .title h3 {
        font-size: 17px;
    }
    .testimonials-slides p {
        font-size: 14px;
    }
    .single-feedback-item {
        padding: 40px 20px 90px;
    }
    .single-feedback-item:before {
        font-size: 30px;
        left: 15px;
    }
    .ready-to-talk {
        padding-top: 50px;
        padding-bottom: 145px;
    }
    .ready-to-talk h3 {
        font-size: 20px;
    }
    .ready-to-talk span {
        display: block;
        margin-top: 25px;
    }
    .partner-section h5 {
        font-size: 17px;
        line-height: 23px;
    }
    .partner-section .partner-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .blog-area {
        padding-bottom: 20px;
    }
    .blog-area .widget-area {
        margin-top: 10px;
    }
    .single-blog-post .blog-post-content h3 {
        font-size: 17px;
    }
    .single-blog-post .blog-image a img {
        width: 100%;
    }
    .page-title-area {
        background-position: 50%;
        padding-top: 150px;
        padding-bottom: 65px;
    }
    .page-title-area .shape8 {
        top: auto;
        right: auto;
        left: 15px;
        display: block;
        bottom: 20px;
    }
    .page-title-area .shape7 {
        left: 15%;
        top: 29%;
        display: block;
    }
    .about-image {
        margin-bottom: 45px;
    }
    .about-inner-area {
        margin-top: 0;
    }
    .about-inner-area .about-text {
        margin-top: 30px;
    }
    .about-inner-area .about-text h3 {
        font-size: 17px;
    }
    .project-details-desc h3 {
        font-size: 17px;
        margin-top: 0;
    }
    .project-details-desc .project-details-information .single-info-box {
        float: left;
        width: 50%;
        margin-top: 20px;
    }
    .project-details-desc .project-details-information .single-info-box h4 {
        font-size: 17px;
    }
    .faq-accordion {
        padding: 0;
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }
    .faq-accordion .accordion .accordion-item .accordion-title {
        font-size: 15px;
    }
    .faq-contact {
        padding: 30px 20px;
    }
    .faq-contact h3 {
        font-size: 20px;
    }
    .pagination-area {
        margin-top: 15px;
    }
    .blog-details-desc .article-content h3 {
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 12px;
        margin-top: 20px;
    }
    .blog-details-desc .article-footer {
        margin-top: 25px;
    }
    .blog-details-desc .article-footer .article-tags a {
        margin-top: 5px;
    }
    .blockquote,
    blockquote {
        padding: 20px !important;
    }
    .blockquote p,
    blockquote p {
        font-size: 16px !important;
    }
    .comments-area .comments-title {
        font-size: 17px;
    }
    .comments-area .comment-author {
        font-size: 14px;
    }
    .comments-area .comment-content p {
        font-size: 13px;
    }
    .comments-area .comment-respond .comment-reply-title {
        font-size: 17px;
    }
    .comments-area .comment-respond .comment-form-author {
        width: 100%;
        padding-right: 0;
    }
    .comments-area .comment-respond .comment-form-email {
        width: 100%;
        padding-left: 0;
    }
    .prev-link-wrapper {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
    }
    .prev-link-wrapper .prev-title {
        font-size: 14px;
    }
    .prev-link-wrapper .meta-wrapper {
        font-size: 13px;
    }
    .next-link-wrapper {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
    .next-link-wrapper .next-title {
        font-size: 14px;
    }
    .next-link-wrapper .meta-wrapper {
        font-size: 13px;
    }
    .contact-info-area {
        padding-bottom: 20px;
    }
    .contact-info-box {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    .contact-info-box h3 {
        font-size: 17px;
    }
    #contactForm {
        margin-top: 45px;
    }
    .coming-soon-area {
        height: 100%;
        padding-top: 170px;
        padding-bottom: 170px;
    }
    .coming-soon-area .social-list {
        bottom: 20px;
    }
    .coming-soon-content h1 {
        font-size: 30px;
    }
    .coming-soon-content p {
        font-size: 14px;
    }
    .coming-soon-content form .submit-btn {
        position: relative;
        right: 0;
        top: 0;
        height: 45px;
        border-radius: 40px;
        width: 130px;
        font-size: 14px;
        margin-top: 18px;
        -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 4px hsla(0, 0%, 100%, 0.3);
        box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 0 0 4px hsla(0, 0%, 100%, 0.3);
    }
    .coming-soon-content #timer div {
        width: 100px;
        height: 100px;
        margin: 0 10px;
        padding-top: 18px;
        font-size: 30px;
        margin-bottom: 25px;
    }
    .coming-soon-content #timer div span {
        font-size: 13px;
    }
    .error-content {
        margin-top: 0;
    }
    .error-content .notfound-404 {
        height: 95px;
        margin-bottom: 25px;
    }
    .error-content .notfound-404 h1 {
        font-size: 75px;
    }
    .error-content h3 {
        font-size: 19px;
        margin-bottom: 15px;
    }
    .error-content p {
        font-size: 13px;
    }
    .woocommerce-topbar {
        text-align: center;
    }
    .woocommerce-topbar .woocommerce-result-count {
        margin-bottom: 10px;
    }
    .woocommerce-topbar .woocommerce-topbar-ordering .form-control {
        height: 40px;
        font-size: 12px;
        text-align: center;
    }
    .single-products .products-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .single-products .products-content .add-to-cart-btn {
        font-size: 13px;
    }
    #productsModalCenter {
        z-index: 999999;
    }
    #productsModalCenter .modal-content button.close {
        z-index: 2;
    }
    #productsModalCenter .modal-content .products-content {
        text-align: center;
        padding: 25px 10px;
    }
    #productsModalCenter .modal-content .products-content h3 {
        font-size: 17px;
    }
    .products-details {
        margin-top: 20px;
    }
    .products-details h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }
    .products-details form button {
        padding: 0 13px;
    }
    .products-details form .quantity {
        display: block;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .products-details form .quantity input {
        height: 45px;
    }
    .products-details form .add-to-wishlist-btn {
        width: 40px;
    }
    .products-details-tabs #tabs li {
        display: block;
        margin-bottom: 2px;
    }
    .cart-table table thead tr th {
        padding: 15px 15px;
        white-space: nowrap;
    }
    .cart-table table tbody tr td {
        white-space: nowrap;
        padding-left: 10px;
        padding-right: 10px;
    }
    .cart-table table tbody tr td.product-subtotal .remove {
        float: unset;
    }
    .cart-buttons {
        text-align: center;
    }
    .cart-buttons .continue-shopping-box {
        margin-bottom: 12px;
    }
    .cart-buttons .text-right {
        text-align: center !important;
    }
    .cart-totals {
        padding: 20px;
        margin-left: 0;
        text-align: left;
        max-width: 100%;
    }
    .cart-totals h3,
    .checkout-area .title {
        font-size: 17px;
    }
    .billing-details {
        padding: 20px;
    }
    .order-details {
        padding: 20px;
        margin-top: 30px;
    }
    .widget-area {
        margin-top: 40px;
    }
    .widget-area .widget .widget-title {
        font-size: 17px;
    }
    .widget-area .widget_startp_posts_thumb .item .info .title {
        font-size: 14px;
    }
    .widget-area .widget_archive ul li,
    .widget-area .widget_categories ul li,
    .widget-area .widget_meta ul li {
        font-size: 13px;
    }
    .widget-area .tagcloud a {
        font-size: 13px !important;
    }
    .services-details-desc h3 {
        font-size: 18px;
    }
    .services-details-desc .services-details-accordion .accordion .accordion-title {
        font-size: 14px;
    }
    .services-details-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px;
    }
    .services-details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .services-details-area .separate {
        margin-top: 30px;
    }
    .features-details-desc h3 {
        font-size: 18px;
    }
    .features-details-desc .features-details-accordion .accordion .accordion-title {
        font-size: 14px;
    }
    .features-details-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px;
    }
    .features-details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .features-details-area .separate {
        margin-top: 30px;
    }
    .repair-main-banner {
        padding-top: 150px;
        padding-bottom: 85px;
    }
    .repair-banner-content {
        text-align: center;
    }
    .repair-banner-content h1 {
        line-height: 1.4;
        margin-bottom: 17px;
        font-size: 25px;
    }
    .repair-banner-image {
        margin-top: 60px;
    }
    .repair-banner-image img:nth-child(2) {
        top: 0;
        right: 0;
    }
    .repair-banner-image img:nth-child(3) {
        top: -35px;
    }
    .repair-banner-image img:nth-child(4) {
        display: none;
    }
    .repair-about-content {
        margin-bottom: 40px;
    }
    .repair-about-content .sub-title {
        font-size: 14px;
    }
    .repair-about-content h2 {
        font-size: 20px;
    }
    .repair-about-content ul li {
        -ms-flex: 0 0 100%;
        -webkit-box-flex: 0;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 15px;
    }
    .repair-about-image {
        text-align: center;
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .repair-about-image img:nth-child(2) {
        width: 250px;
        position: relative;
    }
    .repair-about-image img:nth-child(4),
    .repair-about-image img:nth-child(5) {
        display: none;
    }
    .repair-services-area {
        padding-bottom: 20px;
    }
    .single-repair-services {
        padding: 30px 20px;
    }
    .single-repair-services h3 {
        font-size: 17px;
    }
    .single-repair-services .icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    .single-repair-services .icon i:before {
        font-size: 25px;
    }
    .repair-cta-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cta-repair-content {
        text-align: center;
        margin-bottom: 30px;
    }
    .cta-repair-content h3 {
        font-size: 21px;
        margin-bottom: 17px;
    }
    .cta-repair-content p {
        font-size: 13px;
    }
    .cta-repair-img {
        text-align: center;
    }
    .single-repair-feedback {
        border-radius: 5px;
        margin-bottom: 50px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .single-repair-feedback:after {
        font-size: 30px;
        left: 10px;
    }
    .single-repair-feedback .client-img {
        margin-bottom: 29px;
        padding-left: 85px;
        padding-top: 13px;
    }
    .single-repair-feedback .client-img img {
        width: 70px;
        height: 70px;
    }
    .single-repair-feedback .client-img span {
        margin-top: 5px;
    }
    .single-repair-feedback .client-img h3 {
        font-size: 17px;
    }
    .single-repair-feedback p {
        font-size: 14px;
    }
    .single-repair-box {
        padding: 20px;
    }
    .single-repair-box .icon {
        width: 75px;
        height: 75px;
        line-height: 75px;
    }
    .single-repair-box .icon i:before {
        font-size: 25px;
    }
    .single-repair-box .icon h3 {
        font-size: 17px;
    }
    .single-repair-box .back-icon i:before {
        font-size: 170px;
    }
    .iot-main-banner {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    .iot-banner-content {
        text-align: center;
        max-width: 100%;
    }
    .iot-banner-content span {
        font-size: 14px;
    }
    .iot-banner-content h2 {
        font-size: 25px;
        margin-bottom: 17px;
        line-height: 1.4;
    }
    .iot-banner-image {
        position: relative;
        right: 0;
        top: 0;
        -webkit-transform: unset;
        transform: unset;
        margin-top: 50px;
    }
    .iot-banner-image img:first-child {
        max-width: 100%;
    }
    .iot-banner-image img:last-child {
        display: none;
    }
    .animate-border span {
        top: 78%;
        left: 41%;
    }
    .iot-services-area {
        padding-bottom: 20px;
    }
    .single-iot-services {
        padding: 30px 20px;
    }
    .single-iot-services .icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
    }
    .single-iot-services .icon i:before {
        font-size: 25px;
    }
    .single-iot-services h3 {
        font-size: 17px;
    }
    .iot-cta-area {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .cta-iot-content {
        text-align: center;
        margin-top: 35px;
    }
    .cta-iot-content h3 {
        font-size: 20px;
        line-height: 1.5;
    }
    .iot-features-content {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 30px;
    }
    .iot-features-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
        line-height: 1.5;
    }
    .iot-features-image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .single-iot-box {
        padding: 20px;
    }
    .single-iot-box .icon {
        width: 85px;
        height: 85px;
        line-height: 85px;
    }
    .single-iot-box .icon img {
        width: 40px;
    }
    .single-iot-box .icon i:before {
        font-size: 25px;
    }
    .single-iot-box h3 {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .ml-main-banner {
        background-position: 50%;
        padding-top: 130px;
        padding-bottom: 140px;
    }
    .ml-main-banner .container-fluid,
    .ml-main-banner .container-lg,
    .ml-main-banner .container-md,
    .ml-main-banner .container-sm,
    .ml-main-banner .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    .ml-banner-content {
        text-align: center;
    }
    .ml-banner-content h1 {
        font-size: 25px;
        margin-bottom: 14px;
    }
    .ml-banner-content p {
        max-width: 100%;
        font-size: 13px;
    }
    .ml-banner-single-image {
        margin-top: 30px;
    }
    .ml-main-section {
        background-position: 50%;
        padding-top: 130px;
        padding-bottom: 80px;
    }
    .ml-main-section .ml-banner-content h1 {
        font-size: 25px;
    }
    .ml-banner-image {
        height: auto;
        top: 0;
        margin-top: 30px;
        text-align: center;
    }
    .ml-banner-image img {
        /*display: none;*/
        position: relative;
    }
    .ml-banner-image img:nth-child(12) {
        display: inline-block;
    }
    .ml-partner-area.mt-minus-top {
        margin-top: -125px;
    }
    .solutions-area {
        padding-bottom: 20px;
    }
    .single-solutions-box h3 {
        font-size: 17px;
    }
    .single-solutions-box .learn-more-btn {
        font-size: 13px;
    }
    .single-solutions-box .learn-more-btn svg {
        width: 15px;
    }
    .section-title .sub-title {
        margin-bottom: 15px;
        padding: 4px 15px 3px;
        font-size: 12px;
    }
    .ml-feedback-slides .VueCarousel-slide {
        padding-left: 0;
        padding-right: 0;
    }
    .ml-about-content {
        max-width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .ml-about-content h2 {
        font-size: 20px;
    }
    .ml-about-content .bar {
        margin-left: auto;
        margin-right: auto;
    }
    .ml-services-area {
        padding-bottom: 20px;
    }
    .single-ml-services-box {
        padding: 25px 20px;
    }
    .single-ml-services-box h3 {
        font-size: 17px;
    }
    .ml-projects-area {
        padding-bottom: 20px;
    }
    .ml-projects-area .section-title {
        text-align: center;
        max-width: 100%;
    }
    .ml-projects-area .section-title h2 {
        max-width: 100%;
    }
    .ml-projects-area .section-title .bar {
        margin-left: auto;
        margin-right: auto;
    }
    .ml-projects-slides.owl-theme .owl-dots {
        position: relative;
        right: 0;
        top: 0;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .ml-projects-slides.owl-theme .owl-dots:before {
        display: none;
    }
    .pricing-tab .tabs {
        margin-bottom: 30px;
    }
    .pricing-tab .tabs li a {
        padding: 10px 25px 9.5px;
        font-size: 14px;
    }
    .pricing-box {
        margin-bottom: 30px;
        padding: 25px;
    }
    .pricing-box .pricing-header h3 {
        font-size: 18px;
    }
    .pricing-box .price {
        font-size: 25px;
        margin-bottom: 15px;
        margin-top: 15px;
    }
    .pricing-box .pricing-features {
        padding-left: 0;
        padding-right: 0;
    }
    .pricing-box .pricing-features li {
        padding-left: 24px;
        font-size: 13px;
    }
    .pricing-box .pricing-features li svg {
        width: 17px;
    }
    .ml-feedback-area {
        padding-bottom: 20px;
    }
    .ml-feedback-slides {
        max-width: 100%;
        margin: -40px 0 0;
    }
    .ml-feedback-slides .owl-item {
        padding-left: 0;
        padding-right: 0;
    }
    .single-ml-feedback-item {
        padding: 20px;
        text-align: center;
    }
    .single-ml-feedback-item .client-info {
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: unset;
        transform: unset;
        text-align: center;
        margin-bottom: 15px;
    }
    .single-ml-feedback-item .client-info h3 {
        font-size: 17px;
    }
    .single-ml-feedback-item p {
        font-size: 13px;
    }
    .single-ml-feedback-item:after {
        margin-left: 20px;
        margin-right: 20px;
    }
    .single-blog-post-box .entry-post-content h3 {
        font-size: 17px;
    }
    .single-blog-post-box .entry-post-content .learn-more-btn {
        font-size: 13px;
    }
    .funfacts-area .section-title h2 {
        line-height: 30px;
    }
    .free-trial-area {
        padding-bottom: 50px;
    }
    .free-trial-area:before {
        display: none;
    }
    .free-trial-content {
        max-width: 100%;
        text-align: center;
        margin-top: 30px;
    }
    .free-trial-content h2 {
        font-size: 20px;
    }
    .free-trial-content form {
        margin-top: 20px;
    }
    .free-trial-content form .input-newsletter {
        width: 100%;
    }
    .free-trial-content form button {
        position: relative;
        font-size: 15px;
        border-radius: 30px;
        margin-top: 15px;
    }
    .agency-main-banner {
        padding-top: 120px;
    }
    .agency-main-banner .container-fluid,
    .agency-main-banner .container-lg,
    .agency-main-banner .container-md,
    .agency-main-banner .container-sm,
    .agency-main-banner .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    .agency-banner-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        margin-left: 0;
    }
    .agency-banner-content .sub-title {
        font-size: 13px;
    }
    .agency-banner-content h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .agency-banner-content p {
        font-size: 14px;
        max-width: 100%;
    }
    .solutions-box {
        margin-bottom: 40px;
    }
    .solutions-box .icon {
        margin-bottom: 20px;
        padding-left: 15px;
    }
    .solutions-box .icon i {
        font-size: 40px;
    }
    .solutions-box .icon img {
        width: 80px;
    }
    .solutions-box h3 {
        font-size: 17px;
    }
    .solutions-box .learn-more-btn {
        font-size: 13px;
    }
    .agency-about-area .container-fluid,
    .agency-about-area .container-lg,
    .agency-about-area .container-md,
    .agency-about-area .container-sm,
    .agency-about-area .container-xl {
        padding-left: 15px;
        padding-right: 15px;
    }
    .agency-about-img {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .agency-about-content {
        max-width: 100%;
        text-align: center;
    }
    .agency-about-content h2 {
        font-size: 20px;
    }
    .agency-about-content .bar {
        margin-left: auto;
        margin-right: auto;
    }
    .agency-services-area {
        padding-bottom: 20px;
    }
    .agency-services-box .content {
        padding: 20px;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -20px;
    }
    .agency-services-box .content h3 {
        font-size: 17px;
    }
    .agency-services-box:hover .content h3 {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    .agency-services-box:hover .content .read-more-btn,
    .user-shape1,
    .user-shape2,
    .user-shape3,
    .user-shape4,
    .user-shape5,
    .user-shape6 {
        display: none;
    }
    .single-testimonials-item {
        padding: 64px 20px 20px;
        text-align: center;
    }
    .single-testimonials-item p {
        font-size: 13px;
    }
    .single-testimonials-item:before {
        top: 8px;
        font-size: 35px;
    }
    .single-testimonials-item .client-info {
        margin-top: 20px;
        max-width: 200px;
    }
    .single-testimonials-item .client-info .rating svg {
        width: 14px;
    }
    .single-testimonials-item .client-info span {
        font-size: 12px;
    }
    .single-testimonials-item .client-info h3 {
        margin-top: 5px;
        font-size: 15px;
    }
    .single-blog-post-item .post-content {
        padding: 25px;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: -20px;
    }
    .single-blog-post-item .post-content h3 {
        font-size: 17px;
        line-height: 25px;
    }
    .faq-accordion .accordion .accordion__item .accordion__title {
        font-size: 14px;
    }
    .agency-cta-content h2 {
        margin-bottom: 25px;
        font-size: 20px;
    }
    .footer-area {
        padding-top: 50px;
    }
    .single-footer-widget {
        padding: 0 !important;
        margin-bottom: 30px;
    }
    .single-footer-widget h3 {
        font-size: 17px;
        margin-bottom: 20px;
    }
    .copyright-area {
        margin-top: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .repair-about-content ul li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .single-feedback-item:before,
    .single-repair-feedback:after {
        font-size: 65px;
    }
    .woocommerce-topbar {
        text-align: left;
    }
    .woocommerce-topbar .woocommerce-result-count {
        margin-bottom: 0;
    }
    #productsModalCenter .modal-content .products-content {
        text-align: left;
    }
    .products-details form .quantity {
        display: inline-block;
        padding-right: 10px;
        margin-bottom: 0;
    }
    .cart-buttons {
        text-align: left;
    }
    .cart-buttons .text-right {
        text-align: right !important;
    }
    .cart-buttons .continue-shopping-box {
        margin-bottom: 0;
    }
    .repair-why-choose-us:before {
        height: 45%;
    }
    .cart-totals {
        margin-top: 40px;
    }
    .iot-why-choose-us:before {
        height: 45%;
    }
    .about-area .container-fluid,
    .about-area .container-lg,
    .about-area .container-md,
    .about-area .container-sm,
    .about-area .container-xl,
    .free-trial-area .container-fluid,
    .free-trial-area .container-lg,
    .free-trial-area .container-md,
    .free-trial-area .container-sm,
    .free-trial-area .container-xl,
    .ml-main-banner .container-fluid,
    .ml-main-banner .container-lg,
    .ml-main-banner .container-md,
    .ml-main-banner .container-sm,
    .ml-main-banner .container-xl {
        max-width: 540px;
    }
    .free-trial-content form button {
        position: absolute;
        border-radius: 0 30px 30px 0;
        margin-top: 0;
    }
    .agency-about-area .container-fluid,
    .agency-about-area .container-lg,
    .agency-about-area .container-md,
    .agency-about-area .container-sm,
    .agency-about-area .container-xl,
    .agency-main-banner .container-fluid,
    .agency-main-banner .container-lg,
    .agency-main-banner .container-md,
    .agency-main-banner .container-sm,
    .agency-main-banner .container-xl {
        max-width: 540px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .startp-nav nav .others-option {
        display: none;
    }
    .startp-nav nav .navbar-nav .nav-item .dropdown_menu {
        left: auto;
        right: 0;
    }
    .startp-nav nav .navbar-nav .nav-item .dropdown_menu li .dropdown_menu {
        left: -250px;
    }
    .main-banner {
        height: 100%;
        padding-top: 185px;
        padding-bottom: 165px;
    }
    .main-banner .banner-image {
        text-align: center;
        margin-top: 45px;
    }
    .main-banner .banner-image img {
        position: relative;
        display: none;
    }
    .main-banner .banner-image img:last-child {
        display: block;
    }
    .main-banner .hero-content h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    .main-banner .banner-form {
        padding: 50px;
        margin: 45px 0 !important;
    }
    .hosting-main-banner {
        height: 100%;
        padding-top: 185px;
        padding-bottom: 165px;
    }
    .hosting-main-banner .hosting-banner-content h1 {
        font-size: 30px;
    }
    .hosting-main-banner .hosting-banner-content ul li {
        font-size: 13px;
    }
    .hosting-main-banner .hosting-banner-content p {
        font-size: 16px;
    }
    .hosting-main-banner .hosting-banner-image {
        margin-top: 50px;
    }
    .hosting-main-banner .hosting-banner-image img {
        position: relative;
        display: none;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(10) {
        display: block;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .shape1,
    .shape2,
    .shape3,
    .shape4,
    .shape5,
    .shape7 {
        display: none;
    }
    .iot-banner-content {
        max-width: 100%;
    }
    .section-title h2 {
        font-size: 25px;
    }
    .boxes-area {
        padding-bottom: 50px;
        margin-top: -65px;
    }
    .single-box {
        margin-bottom: 30px;
    }
    .why-choose-us-image {
        margin-bottom: 65px;
    }
    .why-choose-us-image img {
        display: none;
    }
    .why-choose-us-image img:nth-child(3) {
        display: block;
    }
    .why-choose-us-image img:last-child {
        display: block;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    .services-right-image {
        text-align: center;
        margin-top: 45px;
    }
    .services-right-image img {
        display: none;
        position: relative;
    }
    .services-right-image img:last-child {
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .services-right-image.single-right-image img.bg-image {
        display: none;
    }
    .services-left-image {
        text-align: center;
        margin-bottom: 45px;
    }
    .services-left-image img {
        display: none;
        position: relative;
    }
    .services-left-image img:last-child {
        display: block;
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .services-left-image.single-left-image img.bg-image {
        display: none;
    }
    .single-features {
        padding-left: 20px;
    }
    .single-features .icon {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 25px;
    }
    .about-image {
        margin-bottom: 45px;
    }
    .about-inner-area,
    .about-inner-area .about-text {
        margin-top: 30px;
    }
    .single-feedback-item {
        padding: 40px 80px 90px;
    }
    .cta-content h3 {
        line-height: 1.5;
    }
    .pricing-area {
        padding-bottom: 50px;
    }
    .pricing-table,
    .single-pricing-table {
        margin-bottom: 30px;
    }
    .page-title-area {
        padding-top: 130px;
        padding-bottom: 50px;
    }
    .page-title-area .shape8 {
        top: auto;
        right: auto;
        left: 20px;
        bottom: 20px;
    }
    .project-details-desc .project-details-information .single-info-box {
        width: 33.3333%;
    }
    .contact-info-area {
        padding-bottom: 50px;
    }
    .contact-info-box {
        margin-bottom: 30px;
    }
    #contactForm {
        margin-top: 45px;
    }
    .coming-soon-content h1 {
        font-size: 35px;
    }
    .coming-soon-content p {
        font-size: 15px;
    }
    .coming-soon-content #timer div {
        padding-top: 20px;
        font-size: 30px;
    }
    .coming-soon-content #timer div span {
        font-size: 14px;
    }
    .error-content .notfound-404 {
        height: 205px;
    }
    .error-content .notfound-404 h1 {
        font-size: 170px;
    }
    .products-details {
        margin-top: 25px;
    }
    .services-details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .services-details-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 40px;
    }
    .services-details-area .separate {
        margin-top: 40px;
    }
    .features-details {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .features-details-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin-bottom: 40px;
    }
    .features-details-area .separate {
        margin-top: 40px;
    }
    .repair-main-banner {
        padding-top: 155px;
    }
    .repair-banner-content {
        text-align: center;
        margin-bottom: 115px;
    }
    .repair-banner-content h1 {
        margin-bottom: 18px;
        font-size: 30px;
    }
    .repair-banner-image img:nth-child(4) {
        left: 0;
        top: -40px;
        margin: 0 auto;
    }
    .repair-about-content {
        margin-bottom: 45px;
    }
    .repair-about-image {
        text-align: center;
        padding: 35px 0;
    }
    .repair-about-image img:nth-child(2) {
        position: relative;
    }
    .repair-about-image img:nth-child(4),
    .repair-about-image img:nth-child(5) {
        display: none;
    }
    .repair-cta-area {
        padding-top: 80px;
    }
    .cta-repair-content {
        margin-bottom: 30px;
    }
    .repair-why-choose-us:before {
        height: 40%;
    }
    .iot-main-banner {
        padding-top: 190px;
        padding-bottom: 100px;
    }
    .iot-banner-content span {
        font-size: 14px;
    }
    .iot-banner-content h2 {
        font-size: 30px;
    }
    .iot-banner-image {
        position: relative;
        right: 0;
        top: 0;
        -webkit-transform: unset;
        transform: unset;
        margin-top: 80px;
    }
    .iot-banner-image img:first-child {
        max-width: 100%;
    }
    .animate-border span {
        top: 70%;
        left: 42%;
    }
    .iot-cta-area {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .cta-iot-content {
        text-align: center;
        margin-top: 40px;
    }
    .iot-features-content {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .iot-features-image {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-top: 40px;
    }
    .iot-why-choose-us:before {
        height: 40%;
    }
    .blog-area .widget-area {
        margin-top: 10px;
    }
    .widget-area {
        margin-top: 40px;
    }
    .single-footer-widget {
        margin-bottom: 30px;
    }
    .copyright-area {
        margin-top: 50px;
    }
    .ml-main-banner {
        background-position: 50%;
        padding-top: 150px;
    }
    .ml-main-banner .container-fluid,
    .ml-main-banner .container-lg,
    .ml-main-banner .container-md,
    .ml-main-banner .container-sm,
    .ml-main-banner .container-xl {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .ml-banner-single-image {
        margin-top: 30px;
    }
    .ml-banner-content {
        text-align: center;
    }
    .ml-banner-content h1 {
        font-size: 30px;
    }
    .ml-banner-content p {
        max-width: 100%;
        font-size: 14px;
    }
    .ml-main-section {
        background-position: 50%;
        padding-top: 150px;
        padding-bottom: 70px;
    }
    .ml-main-section .ml-banner-content h1 {
        font-size: 30px;
    }
    .ml-banner-image {
        height: auto;
        top: 0;
        margin-top: 30px;
        text-align: center;
    }
    .ml-banner-image img {
        display: none;
        position: relative;
    }
    .ml-banner-image img:nth-child(12) {
        display: inline-block;
    }
    .ml-partner-area.mt-minus-top {
        margin-top: -120px;
    }
    .about-area .container-fluid,
    .about-area .container-lg,
    .about-area .container-md,
    .about-area .container-sm,
    .about-area .container-xl {
        max-width: 720px;
    }
    .ml-about-content {
        text-align: center;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
    .ml-about-content h2 {
        font-size: 25px;
    }
    .ml-about-content .bar {
        margin-left: auto;
        margin-right: auto;
    }
    .ml-projects-slides.owl-theme .owl-dots {
        right: 2.5%;
    }
    .ml-projects-slides.owl-theme .owl-dots:before {
        left: -8px;
    }
    .pricing-box {
        margin-bottom: 30px;
    }
    .free-trial-area {
        padding-bottom: 80px;
    }
    .free-trial-area .container-fluid,
    .free-trial-area .container-lg,
    .free-trial-area .container-md,
    .free-trial-area .container-sm,
    .free-trial-area .container-xl {
        max-width: 720px;
    }
    .free-trial-area:before {
        display: none;
    }
    .free-trial-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
    }
    .free-trial-content h2 {
        font-size: 25px;
    }
    .free-trial-content form {
        margin-top: 20px;
    }
    .agency-main-banner {
        padding-top: 120px;
    }
    .agency-main-banner .container-fluid,
    .agency-main-banner .container-lg,
    .agency-main-banner .container-md,
    .agency-main-banner .container-sm,
    .agency-main-banner .container-xl {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .agency-main-banner .shape8 {
        display: none;
    }
    .agency-banner-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
        margin-left: 0;
    }
    .agency-banner-content .sub-title {
        font-size: 14px;
    }
    .agency-banner-content h1 {
        font-size: 35px;
        line-height: 32px;
        margin-bottom: 12px;
    }
    .agency-banner-content p {
        font-size: 15px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .agency-about-area .container-fluid,
    .agency-about-area .container-lg,
    .agency-about-area .container-md,
    .agency-about-area .container-sm,
    .agency-about-area .container-xl {
        max-width: 720px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .agency-about-img {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .agency-about-content {
        max-width: 540px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .agency-about-content h2 {
        font-size: 25px;
    }
    .agency-about-content .bar {
        margin-left: auto;
        margin-right: auto;
    }
    .shape9,
    .user-shape1,
    .user-shape2,
    .user-shape3,
    .user-shape4,
    .user-shape5,
    .user-shape6 {
        display: none;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-banner .hero-content h1 {
        font-size: 35px;
    }
    .main-banner .banner-image img:first-child {
        top: -140px;
        left: -120px;
    }
    .main-banner .banner-image img:nth-child(2) {
        right: 160px;
        top: -286px;
    }
    .main-banner .banner-image img:nth-child(3) {
        left: -30px;
        top: -15px;
    }
    .main-banner .banner-image img:nth-child(4) {
        right: 15%;
        top: 105px;
    }
    .main-banner .banner-image img:nth-child(5) {
        left: 15%;
        top: -120px;
    }
    .main-banner .banner-image img:nth-child(6) {
        right: 37%;
        top: -160px;
    }
    .main-banner .banner-image img:nth-child(7) {
        right: 20px;
        top: -110px;
    }
    .main-banner .banner-image img:nth-child(8) {
        right: 25px;
        top: -140px;
    }
    .main-banner .banner-image img:nth-child(9) {
        right: 28%;
        top: -25px;
    }
    .main-banner .banner-image img:nth-child(10) {
        left: 29%;
        top: -35px;
    }
    .main-banner .banner-image img:nth-child(11) {
        left: 26%;
        top: -160px;
    }
    .main-banner .banner-image img:nth-child(12) {
        left: 15px;
        top: -110px;
    }
    .main-banner .banner-image img:nth-child(13) {
        left: 50%;
        top: -18px;
    }
    .main-banner .banner-image img:nth-child(14) {
        right: 98px;
        top: -20px;
    }
    .hosting-main-banner .hosting-banner-content h1 {
        font-size: 35px;
    }
    .hosting-main-banner .hosting-banner-image img:first-child {
        top: -85px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(2) {
        top: 175px;
        left: 30px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(3) {
        top: 170px;
        right: 30px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(4) {
        left: 18%;
        top: -23px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(5) {
        right: 0;
        top: -115px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(6) {
        left: 2%;
        top: -173px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(7) {
        top: -244px;
        left: -73px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(8) {
        left: 11%;
        top: -200px;
    }
    .hosting-main-banner .hosting-banner-image img:nth-child(9) {
        top: 40px;
        left: 0;
    }
    .shape1 {
        display: none;
    }
    .startp-nav nav .navbar-nav .nav-item a {
        margin-left: 10px;
        margin-right: 10px;
    }
    .navbar-style-three .startp-nav {
        padding-left: 0;
        padding-right: 0;
    }
    .services-left-image.single-left-image img:first-child,
    .services-right-image.single-right-image img:first-child {
        top: -30px;
    }
    .repair-main-banner {
        padding-top: 185px;
        padding-bottom: 110px;
    }
    .repair-banner-image img:nth-child(4) {
        display: none;
    }
    .repair-banner-image img:nth-child(3) {
        top: -35px;
    }
    .repair-banner-image img:nth-child(2) {
        top: -30px;
    }
    .repair-team-area .single-team .team-content {
        padding-left: 0;
        padding-right: 0;
    }
    .iot-main-banner {
        padding-top: 200px;
        padding-bottom: 120px;
    }
    .iot-banner-image img:first-child {
        max-width: 470px;
    }
    .iot-banner-image img:last-child {
        top: -10px;
    }
    .iot-team-area .single-team .team-content {
        padding-left: 0;
        padding-right: 0;
    }
    .ml-projects-slides.owl-theme .owl-dots {
        right: 4.5%;
    }
    .ml-main-section {
        padding-top: 130px;
        padding-bottom: 70px;
    }
    .ml-main-section .ml-banner-content h1 {
        font-size: 40px;
    }
    .ml-main-section .row {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }
    .ml-banner-image {
        height: auto;
        top: 0;
        text-align: center;
    }
    .ml-banner-image img {
        display: none;
        position: relative;
    }
    .ml-banner-image img:nth-child(12) {
        display: inline-block;
    }
    .agency-banner-content {
        max-width: 465px;
        position: relative;
        top: 50px;
    }
    .agency-banner-content h1 {
        font-size: 40px;
    }
    .agency-about-img {
        padding-right: 30px;
    }
    .agency-about-content {
        max-width: 475px;
    }
}
@media only screen and (min-width: 1550px) {
    .iot-banner-image {
        right: 90px;
        top: 56%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .iot-banner-image img:first-child {
        max-width: 90%;
    }
    .iot-banner-image img:last-child {
        left: -128px;
        top: 50px;
    }
    .animate-border span {
        top: 51%;
        left: 70%;
    }
    .navbar-style-three .startp-nav {
        padding-left: 100px;
        padding-right: 100px;
    }
    .ml-main-banner .container-fluid,
    .ml-main-banner .container-lg,
    .ml-main-banner .container-md,
    .ml-main-banner .container-sm,
    .ml-main-banner .container-xl {
        padding-left: 170px;
        padding-right: 170px;
    }
}
.list-item[data-v-06bfa918] {
    display: inline-block;
    margin-right: 10px;
}
.list-enter-active[data-v-06bfa918],
.list-leave-active[data-v-06bfa918] {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.list-enter[data-v-06bfa918],
.list-leave-to[data-v-06bfa918] {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}


.top-bar{background:#54C5F4;padding:10px 0px;}
.top-bar{font-size:15px;}
.top-bar ul{padding:0;margin:0;list-style:none;}
.top-bar ul li{display:inline-block;margin-right:30px;}
.top-bar ul li a{color:#fff;text-decoration:none;}
.carousel-indicators [type="button"]{width: 15px;
    height: 15px;
    margin: 0 3px;
    background: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    border: none;
    border-radius: 50%;
    position: relative;}
.carousel-indicators .active{background:#775eba;}	
.project_section h2{font-size:37px;font-weight:700;line-height:44px;}
.footer_section{background:#7a62ba;}
.footer_section .contact_address{padding:0;margin:0;list-style:none;}
.footer_section .contact_address li{margin-bottom:7px;}
.footer_section .contact_address li a{color:#fff;font-size:14px;}
.footer_title{font-size: 18px;color:#fff;margin-bottom:15px;}
.footer_section p{color:#fff;}
.footer_section hr{ }

#to-the-top {
    display: none;
    position: fixed;
    text-align: center;
    right: 30px;
    bottom: 30px;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    z-index: 10000;
    height: 40px;
    width: 40px;
    line-height: 45px;
    background-color: #775eba;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 2px 15px 0px rgb(6 6 6 / 54%);
}

.about-section{background:url(../images/shape1.png) no-repeat;background-position:left 100%;}
.Methodology-section{background:url(../images/shape-ai.png) no-repeat;background-position:right 50%;}
.project-section{background:url(../images/vector-shape3.png) no-repeat;background-position:right 100%;}