/*!
 * Font Awesome Free 6.5.1 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2023 Fonticons, Inc.
 */
.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900)
}

.fa,
.fa-solid,
.fab,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto
}

.fa-solid,
.far,
.fas {
    font-family: "Font Awesome 6 Free"
}

.fab {
    font-family: "Font Awesome 6 Brands"
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-sm {
    font-size: .875em;
    line-height: .07143em;
    vertical-align: .05357em
}

.fa-lg {
    font-size: 1.25em;
    line-height: .05em;
    vertical-align: -.075em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: var(--fa-li-margin, 2.5em);
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: calc(var(--fa-li-width, 2em)*-1);
    position: absolute;
    text-align: center;
    width: var(--fa-li-width, 2em);
    line-height: inherit
}

.fa-border {
    border-radius: var(--fa-border-radius, .1em);
    border: var(--fa-border-width, .08em) var(--fa-border-style, solid) var(--fa-border-color, #eee);
    padding: var(--fa-border-padding, .2em .25em .15em)
}

.fa-beat {
    -webkit-animation-name: fa-beat;
    animation-name: fa-beat;
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s);
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);
    animation-timing-function: var(--fa-animation-timing, ease-in-out)
}

.fa-fade {
    -webkit-animation-name: fa-fade;
    animation-name: fa-fade;
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))
}

.fa-beat-fade,
.fa-fade {
    -webkit-animation-delay: var(--fa-animation-delay, 0s);
    animation-delay: var(--fa-animation-delay, 0s);
    -webkit-animation-direction: var(--fa-animation-direction, normal);
    animation-direction: var(--fa-animation-direction, normal);
    -webkit-animation-duration: var(--fa-animation-duration, 1s);
    animation-duration: var(--fa-animation-duration, 1s)
}

.fa-beat-fade {
    -webkit-animation-name: fa-beat-fade;
    animation-name: fa-beat-fade;
    -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    animation-iteration-count: var(--fa-animation-iteration-count, infinite);
    -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1));
    animation-timing-function: var(--fa-animation-timing, cubic-bezier(.4, 0, .6, 1))
}

@media (prefers-reduced-motion:reduce) {

    .fa-beat,
    .fa-beat-fade,
    .fa-fade {
        -webkit-animation-delay: -1ms;
        animation-delay: -1ms;
        -webkit-animation-duration: 1ms;
        animation-duration: 1ms;
        -webkit-animation-iteration-count: 1;
        animation-iteration-count: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transition-duration: 0s;
        transition-duration: 0s
    }
}

@-webkit-keyframes fa-beat {

    0%,
    90% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    45% {
        -webkit-transform: scale(var(--fa-beat-scale, 1.25));
        transform: scale(var(--fa-beat-scale, 1.25))
    }
}

@keyframes fa-beat {

    0%,
    90% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    45% {
        -webkit-transform: scale(var(--fa-beat-scale, 1.25));
        transform: scale(var(--fa-beat-scale, 1.25))
    }
}

@-webkit-keyframes fa-bounce {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }

    10% {
        -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
        transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0)
    }

    30% {
        -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
        transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))
    }

    50% {
        -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
        transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0)
    }

    57% {
        -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
        transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em))
    }

    64% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }

    to {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }
}

@keyframes fa-bounce {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }

    10% {
        -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0);
        transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, .9)) translateY(0)
    }

    30% {
        -webkit-transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em));
        transform: scale(var(--fa-bounce-jump-scale-x, .9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -.5em))
    }

    50% {
        -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0);
        transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, .95)) translateY(0)
    }

    57% {
        -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em));
        transform: scale(1) translateY(var(--fa-bounce-rebound, -.125em))
    }

    64% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }

    to {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0)
    }
}

@-webkit-keyframes fa-fade {
    50% {
        opacity: var(--fa-fade-opacity, .4)
    }
}

@keyframes fa-fade {
    50% {
        opacity: var(--fa-fade-opacity, .4)
    }
}

@-webkit-keyframes fa-beat-fade {

    0%,
    to {
        opacity: var(--fa-beat-fade-opacity, .4);
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
        transform: scale(var(--fa-beat-fade-scale, 1.125))
    }
}

@keyframes fa-beat-fade {

    0%,
    to {
        opacity: var(--fa-beat-fade-opacity, .4);
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
        transform: scale(var(--fa-beat-fade-scale, 1.125))
    }
}

@-webkit-keyframes fa-flip {
    50% {
        -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
        transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg))
    }
}

@keyframes fa-flip {
    50% {
        -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
        transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg))
    }
}

@-webkit-keyframes fa-shake {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    4% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    24%,
    8% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    12%,
    28% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    20% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    32% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    36% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    40%,
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes fa-shake {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    4% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    24%,
    8% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    12%,
    28% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    20% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    32% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    36% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    40%,
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fa-0:before {
    content: "\30"
}

.fa-1:before {
    content: "\31"
}

.fa-2:before {
    content: "\32"
}

.fa-3:before {
    content: "\33"
}

.fa-4:before {
    content: "\34"
}

.fa-5:before {
    content: "\35"
}

.fa-6:before {
    content: "\36"
}

.fa-7:before {
    content: "\37"
}

.fa-8:before {
    content: "\38"
}

.fa-9:before {
    content: "\39"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-comment-alt:before,
.fa-message:before {
    content: "\f27a"
}

.fa-info:before {
    content: "\f129"
}

.fa-down-left-and-up-right-to-center:before {
    content: "\f422"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-arrow-up-long:before,
.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-person:before {
    content: "\f183"
}

.fa-comments:before {
    content: "\f086"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-arrow-down-9-1:before {
    content: "\f886"
}

.fa-w:before {
    content: "\57"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-square-up-right:before {
    content: "\f360"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-check-square:before,
.fa-square-check:before {
    content: "\f14a"
}

.fa-header:before,
.fa-heading:before {
    content: "\f1dc"
}

.fa-list:before {
    content: "\f03a"
}

.fa-phone-square-alt:before {
    content: "\f87b"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-arrow-down-z-a:before {
    content: "\f881"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-i:before {
    content: "\49"
}

.fa-v:before {
    content: "\56"
}

.fa-bangladeshi-taka-sign:before {
    content: "\e2e6"
}

.fa-school:before {
    content: "\f549"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-q:before {
    content: "\51"
}

.fa-g:before {
    content: "\47"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-e:before {
    content: "\45"
}

.fa-key:before {
    content: "\f084"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-c:before {
    content: "\43"
}

.fa-star:before {
    content: "\f005"
}

.fa-repeat:before {
    content: "\f363"
}

.fa-box:before {
    content: "\f466"
}

.fa-arrow-pointer:before {
    content: "\f245"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-weight-scale:before,
.fa-weight:before {
    content: "\f496"
}

.fa-arrow-up-a-z:before {
    content: "\f15e"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-l:before {
    content: "\4c"
}

.fa-bold:before {
    content: "\f032"
}

.fa-border-style:before,
.fa-border-top-left:before {
    content: "\f853"
}

.fa-plus-square:before,
.fa-square-plus:before {
    content: "\f0fe"
}

.fa-image:before {
    content: "\f03e"
}

.fa-arrow-down-long:before,
.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-square-arrow-up-right:before {
    content: "\f14c"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-address-card:before,
.fa-contact-card:before {
    content: "\f2bb"
}

.fa-left-right:before {
    content: "\f337"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-z:before {
    content: "\5a"
}

.fa-a:before {
    content: "\41"
}

.fa-p:before {
    content: "\50"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-list-1-2:before {
    content: "\f0cb"
}

.fa-up-down-left-right:before {
    content: "\f0b2"
}

.fa-code:before {
    content: "\f121"
}

.fa-arrow-up-right-from-square:before {
    content: "\f08e"
}

.fa-f:before {
    content: "\46"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-h:before {
    content: "\48"
}

.fa-r:before {
    content: "\52"
}

.fa-mobile-alt:before,
.fa-mobile-screen-button:before {
    content: "\f3cd"
}

.fa-phone-alt:before {
    content: "\f879"
}

.fa-mobile-button:before {
    content: "\f10b"
}

.fa-home-lg:before {
    content: "\e3af"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-location:before {
    content: "\f601"
}

.fa-phone:before {
    content: "\f095"
}

.fa-arrow-up-1-9:before {
    content: "\f163"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-up-right-from-square:before {
    content: "\f35d"
}

.fa-th:before {
    content: "\f00a"
}

.fa-o:before {
    content: "\4f"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-comment:before {
    content: "\f075"
}

.fa-arrow-up-9-1:before {
    content: "\f887"
}

.fa-border-none:before {
    content: "\f850"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-arrow-down-1-9:before {
    content: "\f162"
}

.fa-arrow-down-a-z:before {
    content: "\f15d"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-left-long:before,
.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-arrow-left-long:before,
.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-cart-shopping:before,
.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-u:before {
    content: "\55"
}

.fa-s:before {
    content: "\53"
}

.fa-mobile-screen:before {
    content: "\f3cf"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-long-arrow-alt-right:before,
.fa-right-long:before {
    content: "\f30b"
}

.fa-images:before {
    content: "\f302"
}

.fa-n:before {
    content: "\4e"
}

.fa-download:before {
    content: "\f019"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f3ce"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-home-alt:before,
.fa-home-lg-alt:before,
.fa-home:before {
    content: "\f015"
}

.fa-b:before {
    content: "\42"
}

.fa-arrow-right-arrow-left:before {
    content: "\f0ec"
}

.fa-long-arrow-alt-up:before,
.fa-up-long:before {
    content: "\f30c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-upload:before {
    content: "\f093"
}

.fa-less-than:before {
    content: "\3c"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-arrow-right-long:before,
.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-h-square:before,
.fa-square-h:before {
    content: "\f0fd"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-section:before {
    content: "\e447"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-font:before {
    content: "\f031"
}

.fa-search:before {
    content: "\f002"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-list-dots:before,
.fa-list-ul:before {
    content: "\f0ca"
}

.fa-down-long:before,
.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-list-check:before {
    content: "\f0ae"
}

.fa-y:before {
    content: "\59"
}

.fa-phone-square:before,
.fa-square-phone:before {
    content: "\f098"
}

.fa-add:before,
.fa-plus:before {
    content: "\2b"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: "\f00d"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-fill:before {
    content: "\f575"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-radio:before {
    content: "\f8d7"
}

.fa-display:before {
    content: "\e163"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-arrow-up-right-dots:before {
    content: "\e4b7"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-history:before {
    content: "\f1da"
}

.fa-times-square:before {
    content: "\f2d3"
}

.fa-up-right-and-down-left-from-center:before {
    content: "\f424"
}

.fa-t:before {
    content: "\54"
}

.fa-up-down:before {
    content: "\f338"
}

.fa-arrow-up-z-a:before {
    content: "\f882"
}

.fa-border-all:before {
    content: "\f84c"
}

.fa-m:before {
    content: "\4d"
}

.fa-table-list:before,
.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-right-left:before {
    content: "\f362"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-print:before {
    content: "\f02f"
}

.fa-x:before {
    content: "\58"
}

.fa-d:before {
    content: "\44"
}

.fa-video:before {
    content: "\f03d"
}

:host,
:root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands"
}

@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.ttf) format("truetype")
}

.fab {
    font-weight: 400
}

.fa-cloudflare:before {
    content: "\e07d"
}

.fa-js-square:before,
.fa-square-js:before {
    content: "\f3b9"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-square-font-awesome:before {
    content: "\e5ad"
}

.fa-instagram-square:before,
.fa-square-instagram:before {
    content: "\e055"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-square-twitter:before,
.fa-twitter-square:before {
    content: "\f081"
}

.fa-square-youtube:before,
.fa-youtube-square:before {
    content: "\f431"
}

.fa-meta:before {
    content: "\e49b"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-font-awesome-logo-full:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-less:before {
    content: "\f41d"
}

.fa-bootstrap:before {
    content: "\f836"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-google-plus-square:before,
.fa-square-google-plus:before {
    content: "\f0d4"
}

.fa-x-twitter:before {
    content: "\e61b"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-facebook-square:before,
.fa-square-facebook:before {
    content: "\f082"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-space-awesome:before {
    content: "\e5ac"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-php:before {
    content: "\f457"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-square-whatsapp:before,
.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-square-x-twitter:before {
    content: "\e61a"
}

:host,
:root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf) format("truetype")
}

.far {
    font-weight: 400
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free"
}

@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf) format("truetype")
}

.fa-solid,
.fas {
    font-weight: 900
}

@font-face {
    font-family: "Font Awesome 5 Brands";
    font-display: block;
    font-weight: 400;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: block;
    font-weight: 900;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-display: block;
    font-weight: 400;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf) format("truetype")
}

@font-face {
    font-family: FontAwesome;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.ttf) format("truetype")
}

@font-face {
    font-family: FontAwesome;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.ttf) format("truetype")
}

@font-face {
    font-family: FontAwesome;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.ttf) format("truetype");
    unicode-range: u+f003, u+f006, u+f014, u+f016-f017, u+f01a-f01b, u+f01d, u+f022, u+f03e, u+f044, u+f046, u+f05c-f05d, u+f06e, u+f070, u+f087-f088, u+f08a, u+f094, u+f096-f097, u+f09d, u+f0a0, u+f0a2, u+f0a4-f0a7, u+f0c5, u+f0c7, u+f0e5-f0e6, u+f0eb, u+f0f6-f0f8, u+f10c, u+f114-f115, u+f118-f11a, u+f11c-f11d, u+f133, u+f147, u+f14e, u+f150-f152, u+f185-f186, u+f18e, u+f190-f192, u+f196, u+f1c1-f1c9, u+f1d9, u+f1db, u+f1e3, u+f1ea, u+f1f7, u+f1f9, u+f20a, u+f247-f248, u+f24a, u+f24d, u+f255-f25b, u+f25d, u+f271-f274, u+f278, u+f27b, u+f28c, u+f28e, u+f29c, u+f2b5, u+f2b7, u+f2ba, u+f2bc, u+f2be, u+f2c0-f2c1, u+f2c3, u+f2d0, u+f2d2, u+f2d4, u+f2dc
}

@font-face {
    font-family: FontAwesome;
    font-display: block;
    src: url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-v4compatibility.woff2) format("woff2"), url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-v4compatibility.ttf) format("truetype");
    unicode-range: u+f041, u+f047, u+f065-f066, u+f07d-f07e, u+f080, u+f08b, u+f08e, u+f090, u+f09a, u+f0ac, u+f0ae, u+f0b2, u+f0d0, u+f0d6, u+f0e4, u+f0ec, u+f10a-f10b, u+f123, u+f13e, u+f148-f149, u+f14c, u+f156, u+f15e, u+f160-f161, u+f163, u+f175-f178, u+f195, u+f1f8, u+f219, u+f27a
}

@charset "UTF-8";

/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0))
}

*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2
}

.h1,
h1 {
    font-size: calc(1.375rem + 1.5vw)
}

@media (min-width: 1200px) {

    .h1,
    h1 {
        font-size: 2.5rem
    }
}

.h2,
h2 {
    font-size: calc(1.325rem + .9vw)
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 2rem
    }
}

.h3,
h3 {
    font-size: calc(1.3rem + .6vw)
}

@media (min-width: 1200px) {

    .h3,
    h3 {
        font-size: 1.75rem
    }
}

.h4,
h4 {
    font-size: calc(1.275rem + .3vw)
}

@media (min-width: 1200px) {

    .h4,
    h4 {
        font-size: 1.5rem
    }
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

ul {
    padding-left: 2rem
}

ul {
    margin-top: 0;
    margin-bottom: 1rem
}

ul ul {
    margin-bottom: 0
}

dd {
    margin-bottom: .5rem;
    margin-left: 0
}

b,
strong {
    font-weight: bolder
}

a {
    color: #0d6efd;
    text-decoration: underline
}

a:hover {
    color: #0a58ca
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none
}

code {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override
}

code {
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word
}

a>code {
    color: inherit
}

img,
svg {
    vertical-align: middle
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
th,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button {
    text-transform: none
}

[role=button] {
    cursor: pointer
}

[list]::-webkit-calendar-picker-indicator {
    display: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer
}

::-moz-focus-inner {
    padding: 0;
    border-style: none
}

textarea {
    resize: vertical
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0
}

::-webkit-inner-spin-button {
    height: auto
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-color-swatch-wrapper {
    padding: 0
}

::file-selector-button {
    font: inherit
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button
}

iframe {
    border: 0
}

[hidden] {
    display: none !important
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-1 {
        font-size: 5rem
    }
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-2 {
        font-size: 4.5rem
    }
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem
    }
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 3.5rem
    }
}

.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-5 {
        font-size: 3rem
    }
}

.display-6 {
    font-size: calc(1.375rem + 1.5vw);
    font-weight: 300;
    line-height: 1.2
}

@media (min-width: 1200px) {
    .display-6 {
        font-size: 2.5rem
    }
}

.list-inline {
    padding-left: 0;
    list-style: none
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.img-thumbnail {
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    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 {
        max-width: 1140px
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5)
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto>* {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1>* {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2>* {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4>* {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5>* {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.g-0 {
    --bs-gutter-x: 0
}

.g-0 {
    --bs-gutter-y: 0
}

.g-1 {
    --bs-gutter-x: 0.25rem
}

.g-1 {
    --bs-gutter-y: 0.25rem
}

.g-2 {
    --bs-gutter-x: 0.5rem
}

.g-2 {
    --bs-gutter-y: 0.5rem
}

.g-3 {
    --bs-gutter-x: 1rem
}

.g-3 {
    --bs-gutter-y: 1rem
}

.g-4 {
    --bs-gutter-x: 1.5rem
}

.g-4 {
    --bs-gutter-y: 1.5rem
}

.g-5 {
    --bs-gutter-x: 3rem
}

.g-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .g-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .g-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .g-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5 {
        --bs-gutter-y: 3rem
    }
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6
}

.table>:not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg)
}

.table>tbody {
    vertical-align: inherit
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: currentColor
}

.table-sm>:not(caption)>*>* {
    padding: .25rem .25rem
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bacbe6
}

.table-secondary {
    --bs-table-bg: #e2e3e5;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #cbccce
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #bcd0c7
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #badce3
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: #000;
    border-color: #dfc2c4
}

.table-dark {
    --bs-table-bg: #212529;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #373b3e
}

.form-label {
    margin-bottom: .5rem
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control[type=file] {
    overflow: hidden
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

.form-control::file-selector-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::file-selector-button {
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3
}

.form-control::-webkit-file-upload-button {
    padding: .375rem .75rem;
    margin: -.375rem -.75rem;
    -webkit-margin-end: .75rem;
    margin-inline-end: .75rem;
    color: #212529;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3
}

.form-control-sm {
    min-height: calc(1.5em + (.5rem + 2px));
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.form-control-sm::file-selector-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end: .5rem
}

.form-control-sm::-webkit-file-upload-button {
    padding: .25rem .5rem;
    margin: -.25rem -.5rem;
    -webkit-margin-end: .5rem;
    margin-inline-end: .5rem
}

.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px));
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.form-control-lg::file-selector-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem
}

.form-control-lg::-webkit-file-upload-button {
    padding: .5rem 1rem;
    margin: -.5rem -1rem;
    -webkit-margin-end: 1rem;
    margin-inline-end: 1rem
}

textarea.form-control {
    min-height: calc(1.5em + (.75rem + 2px))
}

textarea.form-control-sm {
    min-height: calc(1.5em + (.5rem + 2px))
}

textarea.form-control-lg {
    min-height: calc(1.5em + (1rem + 2px))
}

.form-control-color {
    max-width: 3rem;
    height: auto;
    padding: .375rem
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer
}

.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: .25rem
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
    margin-bottom: .125rem
}

.form-check .form-check-input {
    float: left;
    margin-left: -1.5em
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, .25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact
}

.form-check-input[type=checkbox] {
    border-radius: .25em
}

.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    opacity: .5
}

.form-check-inline {
    display: inline-block;
    margin-right: 1rem
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.btn-check:disabled+.btn,
.btn-check[disabled]+.btn {
    pointer-events: none;
    filter: none;
    opacity: .65
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .btn {
        transition: none
    }
}

.btn:hover {
    color: #212529
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.btn.disabled,
.btn:disabled {
    pointer-events: none;
    opacity: .65
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
    color: #fff;
    background-color: #5c636a;
    border-color: #565e64;
    box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #565e64;
    border-color: #51585e
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(130, 138, 145, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43
}

.btn-check:focus+.btn-success,
.btn-success:focus {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #146c43;
    border-color: #13653f
}

.btn-check:active+.btn-success:focus,
.btn-check:checked+.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(60, 153, 110, .5)
}

.btn-success.disabled,
.btn-success:disabled {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-info {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-info:hover {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2
}

.btn-check:focus+.btn-info,
.btn-info:focus {
    color: #000;
    background-color: #31d2f2;
    border-color: #25cff2;
    box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-check:active+.btn-info,
.btn-check:checked+.btn-info,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
    color: #000;
    background-color: #3dd5f3;
    border-color: #25cff2
}

.btn-check:active+.btn-info:focus,
.btn-check:checked+.btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(11, 172, 204, .5)
}

.btn-info.disabled,
.btn-info:disabled {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:focus+.btn-warning {
    color: #000;
    background-color: #ffca2c;
    border-color: #ffc720;
    box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-check:active+.btn-warning,
.btn-check:checked+.btn-warning {
    color: #000;
    background-color: #ffcd39;
    border-color: #ffc720
}

.btn-check:active+.btn-warning:focus,
.btn-check:checked+.btn-warning:focus {
    box-shadow: 0 0 0 .25rem rgba(217, 164, 6, .5)
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-check:active+.btn-danger,
.btn-check:checked+.btn-danger,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(225, 83, 97, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:focus+.btn-light {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb;
    box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-check:active+.btn-light,
.btn-check:checked+.btn-light {
    color: #000;
    background-color: #f9fafb;
    border-color: #f9fafb
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus {
    box-shadow: 0 0 0 .25rem rgba(211, 212, 213, .5)
}

.btn-dark {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-dark:hover {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
    color: #fff;
    background-color: #1c1f23;
    border-color: #1a1e21;
    box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-check:active+.btn-dark,
.btn-check:checked+.btn-dark,
.btn-dark.active,
.btn-dark:active,
.show>.btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1a1e21;
    border-color: #191c1f
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .25rem rgba(66, 70, 73, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #0d6efd;
    background-color: transparent
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
    box-shadow: 0 0 0 .25rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-success {
    color: #198754;
    border-color: #198754
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
    color: #fff;
    background-color: #198754;
    border-color: #198754
}

.btn-check:active+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #198754;
    background-color: transparent
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-outline-info:hover {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
    color: #000;
    background-color: #0dcaf0;
    border-color: #0dcaf0
}

.btn-check:active+.btn-outline-info:focus,
.btn-check:checked+.btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
    box-shadow: 0 0 0 .25rem rgba(13, 202, 240, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #0dcaf0;
    background-color: transparent
}

.btn-check:focus+.btn-outline-warning {
    box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning {
    color: #000;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus {
    box-shadow: 0 0 0 .25rem rgba(255, 193, 7, .5)
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-check:focus+.btn-outline-light {
    box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light {
    color: #000;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-check:active+.btn-outline-light:focus,
.btn-check:checked+.btn-outline-light:focus {
    box-shadow: 0 0 0 .25rem rgba(248, 249, 250, .5)
}

.btn-outline-dark {
    color: #212529;
    border-color: #212529
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
    box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
    color: #fff;
    background-color: #212529;
    border-color: #212529
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
    box-shadow: 0 0 0 .25rem rgba(33, 37, 41, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #212529;
    background-color: transparent
}

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline
}

.btn-link:hover {
    color: #0a58ca
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    border-radius: .3rem
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem
}

.fade {
    transition: opacity .15s linear
}

@media (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

.dropdown {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: .25rem
}

.dropdown-menu[data-bs-popper] {
    top: -10px;
    left: 0;
    margin-top: .125rem;
    background: #eee;
}

.dropdown-menu-start {
    --bs-position: start
}

.dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0
}

.dropdown-menu-end {
    --bs-position: end
}

.dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto
}

@media (min-width: 576px) {
    .dropdown-menu-sm-start {
        --bs-position: start
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-sm-end {
        --bs-position: end
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 768px) {
    .dropdown-menu-md-start {
        --bs-position: start
    }

    .dropdown-menu-md-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-md-end {
        --bs-position: end
    }

    .dropdown-menu-md-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

@media (min-width: 992px) {
    .dropdown-menu-lg-start {
        --bs-position: start
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        right: auto;
        left: 0
    }

    .dropdown-menu-lg-end {
        --bs-position: end
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        right: 0;
        left: auto
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #1e2125;
    background-color: #e9ecef
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.dropdown-header {
    display: block;
    padding: .5rem 1rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-item-text {
    display: block;
    padding: .25rem 1rem;
    color: #212529
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(0, 0, 0, .15)
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, .15)
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: #0d6efd
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .nav-link {
        transition: none
    }
}

.nav-link:focus,
.nav-link:hover {
    color: #0a58ca
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
    flex: 1 1 auto;
    text-align: center
}

.nav-fill .nav-item .nav-link {
    width: 100%
}

.tab-content>.active {
    display: block
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem 1rem
}

.card-title {
    margin-bottom: .5rem
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link+.card-link {
    margin-left: 1rem
}

.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card-footer {
    padding: .5rem 1rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125)
}

.card-footer:last-child {
    border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card-img-top {
    width: 100%
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: .5rem
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/")
}

.breadcrumb-item.active {
    color: #6c757d
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .page-link {
        transition: none
    }
}

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6
}

.page-link {
    padding: .375rem .75rem
}

.page-item:first-child .page-link {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe
}

.alert-primary .alert-link {
    color: #06357a
}

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8
}

.alert-secondary .alert-link {
    color: #34383c
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc
}

.alert-success .alert-link {
    color: #0c4128
}

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb
}

.alert-info .alert-link {
    color: #04414d
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7
}

.alert-danger .alert-link {
    color: #6a1a21
}

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf
}

.alert-dark .alert-link {
    color: #101214
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem
    }
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity: .5
}

.btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: .75
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
    opacity: 1
}

.btn-close.disabled,
.btn-close:disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: .25
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%)
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translate(0, -50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
    padding: .5rem .5rem;
    margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: .75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(.3rem - 1px);
    border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
    margin: .25rem
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px
    }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: 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: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.carousel {
    position: relative
}

.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;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion:reduce) {

    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease
}

@media (prefers-reduced-motion:reduce) {

    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

@-webkit-keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0)
    }

    50% {
        opacity: 1;
        transform: none
    }
}

.link-primary {
    color: #0d6efd
}

.link-primary:focus,
.link-primary:hover {
    color: #0a58ca
}

.link-secondary {
    color: #6c757d
}

.link-secondary:focus,
.link-secondary:hover {
    color: #565e64
}

.link-success {
    color: #198754
}

.link-success:focus,
.link-success:hover {
    color: #146c43
}

.link-info {
    color: #0dcaf0
}

.link-info:focus,
.link-info:hover {
    color: #3dd5f3
}

.link-danger {
    color: #dc3545
}

.link-danger:focus,
.link-danger:hover {
    color: #b02a37
}

.link-dark {
    color: #212529
}

.link-dark:focus,
.link-dark:hover {
    color: #1a1e21
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

.align-top {
    vertical-align: top !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

.float-start {
    float: left !important
}

.float-end {
    float: right !important
}

.float-none {
    float: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !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-flex {
    display: flex !important
}

.d-inline-flex {
    display: inline-flex !important
}

.d-none {
    display: none !important
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
}

.shadow-none {
    box-shadow: none !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.top-0 {
    top: 0 !important
}

.top-50 {
    top: 50% !important
}

.top-100 {
    top: 100% !important
}

.bottom-0 {
    bottom: 0 !important
}

.bottom-50 {
    bottom: 50% !important
}

.bottom-100 {
    bottom: 100% !important
}

.start-0 {
    left: 0 !important
}

.start-50 {
    left: 50% !important
}

.start-100 {
    left: 100% !important
}

.end-0 {
    right: 0 !important
}

.end-50 {
    right: 50% !important
}

.end-100 {
    right: 100% !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-end {
    border-right: 1px solid #dee2e6 !important
}

.border-end-0 {
    border-right: 0 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-start {
    border-left: 1px solid #dee2e6 !important
}

.border-start-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #0d6efd !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #198754 !important
}

.border-info {
    border-color: #0dcaf0 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-dark {
    border-color: #212529 !important
}

.border-white {
    border-color: #fff !important
}

.border-1 {
    border-width: 1px !important
}

.border-2 {
    border-width: 2px !important
}

.border-3 {
    border-width: 3px !important
}

.border-4 {
    border-width: 4px !important
}

.border-5 {
    border-width: 5px !important
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.vw-100 {
    width: 100vw !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.flex-fill {
    flex: 1 1 auto !important
}

.flex-row {
    flex-direction: row !important
}

.flex-column {
    flex-direction: column !important
}

.flex-grow-0 {
    flex-grow: 0 !important
}

.flex-grow-1 {
    flex-grow: 1 !important
}

.flex-shrink-0 {
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    flex-shrink: 1 !important
}

.flex-wrap {
    flex-wrap: wrap !important
}

.flex-nowrap {
    flex-wrap: nowrap !important
}

.gap-0 {
    gap: 0 !important
}

.gap-1 {
    gap: .25rem !important
}

.gap-2 {
    gap: .5rem !important
}

.gap-3 {
    gap: 1rem !important
}

.gap-4 {
    gap: 1.5rem !important
}

.gap-5 {
    gap: 3rem !important
}

.justify-content-start {
    justify-content: flex-start !important
}

.justify-content-end {
    justify-content: flex-end !important
}

.justify-content-center {
    justify-content: center !important
}

.align-items-start {
    align-items: flex-start !important
}

.align-items-end {
    align-items: flex-end !important
}

.align-items-center {
    align-items: center !important
}

.align-content-start {
    align-content: flex-start !important
}

.align-content-end {
    align-content: flex-end !important
}

.align-content-center {
    align-content: center !important
}

.order-0 {
    order: 0 !important
}

.order-1 {
    order: 1 !important
}

.order-2 {
    order: 2 !important
}

.order-3 {
    order: 3 !important
}

.order-4 {
    order: 4 !important
}

.order-5 {
    order: 5 !important
}

.m-0 {
    margin: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.m-auto {
    margin: auto !important
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.my-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important
}

.my-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important
}

.my-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.me-0 {
    margin-right: 0 !important
}

.me-1 {
    margin-right: .25rem !important
}

.me-2 {
    margin-right: .5rem !important
}

.me-3 {
    margin-right: 1rem !important
}

.me-4 {
    margin-right: 1.5rem !important
}

.me-5 {
    margin-right: 3rem !important
}

.me-auto {
    margin-right: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.mb-auto {
    margin-bottom: auto !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important
}

.fs-2 {
    font-size: calc(1.325rem + .9vw) !important
}

.fs-3 {
    font-size: calc(1.3rem + .6vw) !important
}

.fs-4 {
    font-size: calc(1.275rem + .3vw) !important
}

.fs-5 {
    font-size: 1.25rem !important
}

.fs-6 {
    font-size: 1rem !important
}

.fw-bold {
    font-weight: 700 !important
}

.text-start {
    text-align: left !important
}

.text-end {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

.text-decoration-none {
    text-decoration: none !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-primary {
    color: #0d6efd !important
}

.text-secondary {
    color: #6c757d !important
}

.text-success {
    color: #198754 !important
}

.text-info {
    color: #0dcaf0 !important
}

.text-danger {
    color: #dc3545 !important
}

.text-dark {
    color: #212529 !important
}

.text-white {
    color: #fff !important
}

.text-body {
    color: #212529 !important
}

.text-black-50 {
    color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
    color: rgba(255, 255, 255, .5) !important
}

.bg-primary {
    background-color: #0d6efd !important
}

.bg-secondary {
    background-color: #6c757d !important
}

.bg-success {
    background-color: #198754 !important
}

.bg-info {
    background-color: #0dcaf0 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

.bg-dark {
    background-color: #212529 !important
}

.bg-body {
    background-color: #fff !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.bg-gradient {
    background-image: var(--bs-gradient) !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.rounded-1 {
    border-radius: .2rem !important
}

.rounded-2 {
    border-radius: .25rem !important
}

.rounded-3 {
    border-radius: .3rem !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-end {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-start {
    border-bottom-left-radius: .25rem !important;
    border-top-left-radius: .25rem !important
}

@media (min-width: 576px) {
    .float-sm-start {
        float: left !important
    }

    .float-sm-end {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .d-sm-inline {
        display: inline !important
    }

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-flex {
        display: flex !important
    }

    .d-sm-inline-flex {
        display: inline-flex !important
    }

    .d-sm-none {
        display: none !important
    }

    .flex-sm-fill {
        flex: 1 1 auto !important
    }

    .flex-sm-row {
        flex-direction: row !important
    }

    .flex-sm-column {
        flex-direction: column !important
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important
    }

    .gap-sm-0 {
        gap: 0 !important
    }

    .gap-sm-1 {
        gap: .25rem !important
    }

    .gap-sm-2 {
        gap: .5rem !important
    }

    .gap-sm-3 {
        gap: 1rem !important
    }

    .gap-sm-4 {
        gap: 1.5rem !important
    }

    .gap-sm-5 {
        gap: 3rem !important
    }

    .justify-content-sm-start {
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        justify-content: center !important
    }

    .align-items-sm-start {
        align-items: flex-start !important
    }

    .align-items-sm-end {
        align-items: flex-end !important
    }

    .align-items-sm-center {
        align-items: center !important
    }

    .align-content-sm-start {
        align-content: flex-start !important
    }

    .align-content-sm-end {
        align-content: flex-end !important
    }

    .align-content-sm-center {
        align-content: center !important
    }

    .order-sm-0 {
        order: 0 !important
    }

    .order-sm-1 {
        order: 1 !important
    }

    .order-sm-2 {
        order: 2 !important
    }

    .order-sm-3 {
        order: 3 !important
    }

    .order-sm-4 {
        order: 4 !important
    }

    .order-sm-5 {
        order: 5 !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-sm-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-sm-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-sm-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-sm-0 {
        margin-top: 0 !important
    }

    .mt-sm-1 {
        margin-top: .25rem !important
    }

    .mt-sm-2 {
        margin-top: .5rem !important
    }

    .mt-sm-3 {
        margin-top: 1rem !important
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important
    }

    .mt-sm-5 {
        margin-top: 3rem !important
    }

    .mt-sm-auto {
        margin-top: auto !important
    }

    .me-sm-0 {
        margin-right: 0 !important
    }

    .me-sm-1 {
        margin-right: .25rem !important
    }

    .me-sm-2 {
        margin-right: .5rem !important
    }

    .me-sm-3 {
        margin-right: 1rem !important
    }

    .me-sm-4 {
        margin-right: 1.5rem !important
    }

    .me-sm-5 {
        margin-right: 3rem !important
    }

    .me-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-0 {
        margin-bottom: 0 !important
    }

    .mb-sm-1 {
        margin-bottom: .25rem !important
    }

    .mb-sm-2 {
        margin-bottom: .5rem !important
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-sm-5 {
        margin-bottom: 3rem !important
    }

    .mb-sm-auto {
        margin-bottom: auto !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .px-sm-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-sm-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-sm-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-sm-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-sm-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-sm-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .pt-sm-0 {
        padding-top: 0 !important
    }

    .pt-sm-1 {
        padding-top: .25rem !important
    }

    .pt-sm-2 {
        padding-top: .5rem !important
    }

    .pt-sm-3 {
        padding-top: 1rem !important
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important
    }

    .pt-sm-5 {
        padding-top: 3rem !important
    }

    .text-sm-start {
        text-align: left !important
    }

    .text-sm-end {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width: 768px) {
    .float-md-start {
        float: left !important
    }

    .float-md-end {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .d-md-inline {
        display: inline !important
    }

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-flex {
        display: flex !important
    }

    .d-md-inline-flex {
        display: inline-flex !important
    }

    .d-md-none {
        display: none !important
    }

    .flex-md-fill {
        flex: 1 1 auto !important
    }

    .flex-md-row {
        flex-direction: row !important
    }

    .flex-md-column {
        flex-direction: column !important
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-md-wrap {
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important
    }

    .gap-md-0 {
        gap: 0 !important
    }

    .gap-md-1 {
        gap: .25rem !important
    }

    .gap-md-2 {
        gap: .5rem !important
    }

    .gap-md-3 {
        gap: 1rem !important
    }

    .gap-md-4 {
        gap: 1.5rem !important
    }

    .gap-md-5 {
        gap: 3rem !important
    }

    .justify-content-md-start {
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        justify-content: center !important
    }

    .align-items-md-start {
        align-items: flex-start !important
    }

    .align-items-md-end {
        align-items: flex-end !important
    }

    .align-items-md-center {
        align-items: center !important
    }

    .align-content-md-start {
        align-content: flex-start !important
    }

    .align-content-md-end {
        align-content: flex-end !important
    }

    .align-content-md-center {
        align-content: center !important
    }

    .order-md-0 {
        order: 0 !important
    }

    .order-md-1 {
        order: 1 !important
    }

    .order-md-2 {
        order: 2 !important
    }

    .order-md-3 {
        order: 3 !important
    }

    .order-md-4 {
        order: 4 !important
    }

    .order-md-5 {
        order: 5 !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-md-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-md-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-md-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-md-0 {
        margin-top: 0 !important
    }

    .mt-md-1 {
        margin-top: .25rem !important
    }

    .mt-md-2 {
        margin-top: .5rem !important
    }

    .mt-md-3 {
        margin-top: 1rem !important
    }

    .mt-md-4 {
        margin-top: 1.5rem !important
    }

    .mt-md-5 {
        margin-top: 3rem !important
    }

    .mt-md-auto {
        margin-top: auto !important
    }

    .me-md-0 {
        margin-right: 0 !important
    }

    .me-md-1 {
        margin-right: .25rem !important
    }

    .me-md-2 {
        margin-right: .5rem !important
    }

    .me-md-3 {
        margin-right: 1rem !important
    }

    .me-md-4 {
        margin-right: 1.5rem !important
    }

    .me-md-5 {
        margin-right: 3rem !important
    }

    .me-md-auto {
        margin-right: auto !important
    }

    .mb-md-0 {
        margin-bottom: 0 !important
    }

    .mb-md-1 {
        margin-bottom: .25rem !important
    }

    .mb-md-2 {
        margin-bottom: .5rem !important
    }

    .mb-md-3 {
        margin-bottom: 1rem !important
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-md-5 {
        margin-bottom: 3rem !important
    }

    .mb-md-auto {
        margin-bottom: auto !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-md-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-md-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-md-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-md-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-md-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .pt-md-0 {
        padding-top: 0 !important
    }

    .pt-md-1 {
        padding-top: .25rem !important
    }

    .pt-md-2 {
        padding-top: .5rem !important
    }

    .pt-md-3 {
        padding-top: 1rem !important
    }

    .pt-md-4 {
        padding-top: 1.5rem !important
    }

    .pt-md-5 {
        padding-top: 3rem !important
    }

    .text-md-start {
        text-align: left !important
    }

    .text-md-end {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width: 992px) {
    .float-lg-start {
        float: left !important
    }

    .float-lg-end {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .d-lg-inline {
        display: inline !important
    }

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-flex {
        display: flex !important
    }

    .d-lg-inline-flex {
        display: inline-flex !important
    }

    .d-lg-none {
        display: none !important
    }

    .flex-lg-fill {
        flex: 1 1 auto !important
    }

    .flex-lg-row {
        flex-direction: row !important
    }

    .flex-lg-column {
        flex-direction: column !important
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important
    }

    .gap-lg-0 {
        gap: 0 !important
    }

    .gap-lg-1 {
        gap: .25rem !important
    }

    .gap-lg-2 {
        gap: .5rem !important
    }

    .gap-lg-3 {
        gap: 1rem !important
    }

    .gap-lg-4 {
        gap: 1.5rem !important
    }

    .gap-lg-5 {
        gap: 3rem !important
    }

    .justify-content-lg-start {
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        justify-content: center !important
    }

    .align-items-lg-start {
        align-items: flex-start !important
    }

    .align-items-lg-end {
        align-items: flex-end !important
    }

    .align-items-lg-center {
        align-items: center !important
    }

    .align-content-lg-start {
        align-content: flex-start !important
    }

    .align-content-lg-end {
        align-content: flex-end !important
    }

    .align-content-lg-center {
        align-content: center !important
    }

    .order-lg-0 {
        order: 0 !important
    }

    .order-lg-1 {
        order: 1 !important
    }

    .order-lg-2 {
        order: 2 !important
    }

    .order-lg-3 {
        order: 3 !important
    }

    .order-lg-4 {
        order: 4 !important
    }

    .order-lg-5 {
        order: 5 !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important
    }

    .my-lg-1 {
        margin-top: .25rem !important;
        margin-bottom: .25rem !important
    }

    .my-lg-2 {
        margin-top: .5rem !important;
        margin-bottom: .5rem !important
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important
    }

    .my-lg-5 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important
    }

    .mt-lg-0 {
        margin-top: 0 !important
    }

    .mt-lg-1 {
        margin-top: .25rem !important
    }

    .mt-lg-2 {
        margin-top: .5rem !important
    }

    .mt-lg-3 {
        margin-top: 1rem !important
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important
    }

    .mt-lg-5 {
        margin-top: 3rem !important
    }

    .mt-lg-auto {
        margin-top: auto !important
    }

    .me-lg-0 {
        margin-right: 0 !important
    }

    .me-lg-1 {
        margin-right: .25rem !important
    }

    .me-lg-2 {
        margin-right: .5rem !important
    }

    .me-lg-3 {
        margin-right: 1rem !important
    }

    .me-lg-4 {
        margin-right: 1.5rem !important
    }

    .me-lg-5 {
        margin-right: 3rem !important
    }

    .me-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-0 {
        margin-bottom: 0 !important
    }

    .mb-lg-1 {
        margin-bottom: .25rem !important
    }

    .mb-lg-2 {
        margin-bottom: .5rem !important
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .mb-lg-5 {
        margin-bottom: 3rem !important
    }

    .mb-lg-auto {
        margin-bottom: auto !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .px-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important
    }

    .px-lg-1 {
        padding-right: .25rem !important;
        padding-left: .25rem !important
    }

    .px-lg-2 {
        padding-right: .5rem !important;
        padding-left: .5rem !important
    }

    .px-lg-3 {
        padding-right: 1rem !important;
        padding-left: 1rem !important
    }

    .px-lg-4 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important
    }

    .px-lg-5 {
        padding-right: 3rem !important;
        padding-left: 3rem !important
    }

    .pt-lg-0 {
        padding-top: 0 !important
    }

    .pt-lg-1 {
        padding-top: .25rem !important
    }

    .pt-lg-2 {
        padding-top: .5rem !important
    }

    .pt-lg-3 {
        padding-top: 1rem !important
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important
    }

    .pt-lg-5 {
        padding-top: 3rem !important
    }

    .text-lg-start {
        text-align: left !important
    }

    .text-lg-end {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important
    }

    .fs-2 {
        font-size: 2rem !important
    }

    .fs-3 {
        font-size: 1.75rem !important
    }

    .fs-4 {
        font-size: 1.5rem !important
    }
}

@media print {
    .d-print-inline {
        display: inline !important
    }

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-flex {
        display: flex !important
    }

    .d-print-inline-flex {
        display: inline-flex !important
    }

    .d-print-none {
        display: none !important
    }
}

/*! normalize.css v8.0.1
 * Licensed under MIT License
 * github.com/necolas/normalize.css
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

a {
    background-color: transparent
}

b,
strong {
    font-weight: bolder
}

code {
    font-family: monospace, monospace;
    font-size: 1em
}

img {
    border-style: none
}

button,
input,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

[hidden] {
    display: none
}

/*!
 * Font Awesome Free 5.6.3 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
@font-face {
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 400;
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-regular-400.eot);
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-regular-400.woff2) format("woff2"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-regular-400.woff) format("woff"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-regular-400.ttf) format("truetype")
}

.far {
    font-weight: 400
}

@font-face {
    font-family: Font Awesome\ 5 Free;
    font-style: normal;
    font-weight: 900;
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-solid-900.eot);
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-solid-900.woff2) format("woff2"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-solid-900.woff) format("woff"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-solid-900.ttf) format("truetype")
}

.fa,
.far,
.fas {
    font-family: Font Awesome\ 5 Free
}

.fa,
.fas {
    font-weight: 900
}

@font-face {
    font-family: Font Awesome\ 5 Brands;
    font-style: normal;
    font-weight: 400;
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-brands-400.eot);
    src: url(https://webbazarbd.com/show-panel/script/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-brands-400.woff2) format("woff2"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-brands-400.woff) format("woff"), url(https://webbazarbd.com/show-panel/script/webfonts/fa-brands-400.ttf) format("truetype")
}

.fab {
    font-family: Font Awesome\ 5 Brands
}

.fa,
.fab,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

@keyframes fa-spin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(1turn)
    }
}

.fa-500px:before {
    content: "\f26e"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-bold:before {
    content: "\f032"
}

.fa-box:before {
    content: "\f466"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-code:before {
    content: "\f121"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comments:before {
    content: "\f086"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-download:before {
    content: "\f019"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fill:before {
    content: "\f575"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-history:before {
    content: "\f1da"
}

.fa-home:before {
    content: "\f015"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-info:before {
    content: "\f129"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-key:before {
    content: "\f084"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-php:before {
    content: "\f457"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-print:before {
    content: "\f02f"
}

.fa-school:before {
    content: "\f549"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-location:before {
    content: "\f689"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-star:before {
    content: "\f005"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-upload:before {
    content: "\f093"
}

.fa-video:before {
    content: "\f03d"
}

.fa-weight:before {
    content: "\f496"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

/*!
 * Bootstrap v4.2.1 with components grid, nav, modal, tooltip & transitions. (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
}

.col-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    flex: 0 0 25%;
    max-width: 25%
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%
}

.col-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    flex: 0 0 75%;
    max-width: 75%
}

.col-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.order-0 {
    order: 0
}

.order-1 {
    order: 1
}

.order-2 {
    order: 2
}

.order-3 {
    order: 3
}

.order-4 {
    order: 4
}

.order-5 {
    order: 5
}

.order-6 {
    order: 6
}

.order-7 {
    order: 7
}

.order-8 {
    order: 8
}

.order-9 {
    order: 9
}

.order-10 {
    order: 10
}

.order-11 {
    order: 11
}

.order-12 {
    order: 12
}

@media (min-width: 576px) {
    .col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-sm-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-sm-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-sm-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-sm-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-0 {
        order: 0
    }

    .order-sm-1 {
        order: 1
    }

    .order-sm-2 {
        order: 2
    }

    .order-sm-3 {
        order: 3
    }

    .order-sm-4 {
        order: 4
    }

    .order-sm-5 {
        order: 5
    }

    .order-sm-6 {
        order: 6
    }

    .order-sm-7 {
        order: 7
    }

    .order-sm-8 {
        order: 8
    }

    .order-sm-9 {
        order: 9
    }

    .order-sm-10 {
        order: 10
    }

    .order-sm-11 {
        order: 11
    }

    .order-sm-12 {
        order: 12
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-md-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-0 {
        order: 0
    }

    .order-md-1 {
        order: 1
    }

    .order-md-2 {
        order: 2
    }

    .order-md-3 {
        order: 3
    }

    .order-md-4 {
        order: 4
    }

    .order-md-5 {
        order: 5
    }

    .order-md-6 {
        order: 6
    }

    .order-md-7 {
        order: 7
    }

    .order-md-8 {
        order: 8
    }

    .order-md-9 {
        order: 9
    }

    .order-md-10 {
        order: 10
    }

    .order-md-11 {
        order: 11
    }

    .order-md-12 {
        order: 12
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%
    }

    .col-lg-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%
    }

    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%
    }

    .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%
    }

    .col-lg-11 {
        flex: 0 0 91.66667%;
        max-width: 91.66667%
    }

    .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-0 {
        order: 0
    }

    .order-lg-1 {
        order: 1
    }

    .order-lg-2 {
        order: 2
    }

    .order-lg-3 {
        order: 3
    }

    .order-lg-4 {
        order: 4
    }

    .order-lg-5 {
        order: 5
    }

    .order-lg-6 {
        order: 6
    }

    .order-lg-7 {
        order: 7
    }

    .order-lg-8 {
        order: 8
    }

    .order-lg-9 {
        order: 9
    }

    .order-lg-10 {
        order: 10
    }

    .order-lg-11 {
        order: 11
    }

    .order-lg-12 {
        order: 12
    }
}

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:focus,
.nav-link:hover {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default
}

.nav-fill .nav-item {
    flex: 1 1 auto;
    text-align: center
}

.tab-content>.active {
    display: block
}

.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: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    transition: transform .3s ease-out;
    transform: translateY(-50px)
}

@media screen and (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        transition: none
    }
}

.modal.show .modal-dialog {
    transform: none
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.modal-footer>:not(:first-child) {
    margin-left: .25rem
}

.modal-footer>:not(:last-child) {
    margin-right: .25rem
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered:before {
        height: calc(100vh - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto 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: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.fade {
    transition: opacity .15s linear
}

@media screen and (prefers-reduced-motion:reduce) {
    .fade {
        transition: none
    }
}

.fade:not(.show) {
    opacity: 0
}

.collapse:not(.show) {
    display: none
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        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(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }

    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@-webkit-keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@-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)
    }
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .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, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-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)
    }
}

@-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)
    }
}

@-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(0);
        transform: rotate(0)
    }
}

@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(0);
        transform: rotate(0)
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    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: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {

    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        -webkit-transform: scaleX(1);
        opacity: 1;
        transform: scaleX(1)
    }
}

@-webkit-keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, -3000px, 0);
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, 25px, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, -3000px, 0);
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, 25px, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(-3000px, 0, 0);
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(25px, 0, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(-3000px, 0, 0);
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(25px, 0, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(3000px, 0, 0);
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(-25px, 0, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(3000px, 0, 0);
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        -webkit-transform: translate3d(-25px, 0, 0);
        opacity: 1;
        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: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, 3000px, 0);
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        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(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        -webkit-transform: translate3d(0, 3000px, 0);
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        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)
    }
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    50%,
    55% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }

    to {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, -20px, 0);
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes bounceOutLeft {
    20% {
        -webkit-transform: translate3d(20px, 0, 0);
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        -webkit-transform: translate3d(20px, 0, 0);
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutRight {
    20% {
        -webkit-transform: translate3d(-20px, 0, 0);
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        -webkit-transform: translate3d(-20px, 0, 0);
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, 20px, 0);
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    40%,
    45% {
        -webkit-transform: translate3d(0, 20px, 0);
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInDownBig {
    0% {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInRightBig {
    0% {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeInUpBig {
    0% {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, 2000px, 0);
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(-2000px, 0, 0);
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(2000px, 0, 0);
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0, -2000px, 0);
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
    }
}

@keyframes flip {
    0% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
    }

    40% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
    }

    80% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
    }

    to {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
        animation-timing-function: ease-in;
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg)
    }

    60% {
        -webkit-transform: skewX(20deg);
        opacity: 1;
        transform: skewX(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(-30deg)
    }

    60% {
        -webkit-transform: skewX(20deg);
        opacity: 1;
        transform: skewX(20deg)
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(30deg)
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) skewX(30deg)
    }
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: center;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: center
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: center;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: center
    }
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: left bottom
    }
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        -webkit-transform: translateZ(0);
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform: translateZ(0);
        transform-origin: right bottom
    }
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        opacity: 1;
        transform-origin: center
    }

    to {
        -webkit-transform: rotate(200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        opacity: 1;
        transform-origin: center
    }

    to {
        -webkit-transform: rotate(200deg);
        -webkit-transform-origin: center;
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center
    }
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: right bottom
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: right bottom
    }
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        -webkit-transform: rotate(-45deg);
        -webkit-transform-origin: left bottom;
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        -webkit-transform: rotate(90deg);
        -webkit-transform-origin: right bottom;
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform-origin: top left
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg);
        transform-origin: top left
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        opacity: 0;
        transform: translate3d(0, 700px, 0)
    }
}

@keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform-origin: top left
    }

    20%,
    60% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,
    80% {
        -webkit-animation-timing-function: ease-in-out;
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
        transform: rotate(60deg);
        transform-origin: top left
    }

    to {
        -webkit-transform: translate3d(0, 700px, 0);
        opacity: 0;
        transform: translate3d(0, 700px, 0)
    }
}

@-webkit-keyframes jackInTheBox {
    0% {
        -webkit-transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        -webkit-transform: scale(1);
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        -webkit-transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        -webkit-transform: scale(1);
        opacity: 1;
        transform: scale(1)
    }
}

@-webkit-keyframes rollIn {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        -webkit-transform: translateZ(0);
        opacity: 1;
        transform: translateZ(0)
    }
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@-webkit-keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

@keyframes zoomInDown {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }
}

@-webkit-keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

@keyframes zoomInLeft {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0)
    }
}

@-webkit-keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

@keyframes zoomInRight {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0)
    }
}

@-webkit-keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

@keyframes zoomInUp {
    0% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0)
    }

    60% {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3, .3, .3);
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom
    }
}

@keyframes zoomOutDown {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom
    }
}

@-webkit-keyframes zoomOutLeft {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

@-webkit-keyframes zoomOutRight {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }

    to {
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

@-webkit-keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom
    }
}

@keyframes zoomOutUp {
    40% {
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
    }

    to {
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom
    }
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: hidden
    }
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: hidden
    }
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden
    }
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: hidden
    }
}

/*!
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,
.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),
.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

/*!
 * Slick v1.8.1
 * Author: Ken Wheeler
 * Website: http://kenwheeler.github.io
 */
.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-arrow.slick-hidden {
    display: none
}

/*! lightgallery - v1.6.11 - 2018-05-22
 * http://sachinchoolur.github.io/lightGallery/
 * Copyright (c) 2018 Sachin N; Licensed GPLv3
 */
@font-face {
    font-family: lg;
    src: url(https://webbazarbd.com/show-panel/script/webfonts/lg.eot?n1z373);
    src: url(https://webbazarbd.com/show-panel/script/webfonts/lg.eot?#iefixn1z373) format("embedded-opentype"), url(https://webbazarbd.com/show-panel/script/webfonts/lg.woff?n1z373) format("woff"), url(https://webbazarbd.com/show-panel/script/webfonts/lg.ttf?n1z373) format("truetype"), url(https://webbazarbd.com/show-panel/script/webfonts/lg.svg?n1z373#lg) format("svg");
    font-weight: 400;
    font-style: normal
}

.lg-icon {
    font-family: lg;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

@-webkit-keyframes lg-right-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -30px
    }
}

@-moz-keyframes lg-right-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -30px
    }
}

@-ms-keyframes lg-right-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -30px
    }
}

@keyframes lg-right-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: -30px
    }
}

@-webkit-keyframes lg-left-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 30px
    }
}

@-moz-keyframes lg-left-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 30px
    }
}

@-ms-keyframes lg-left-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 30px
    }
}

@keyframes lg-left-end {

    0%,
    100% {
        left: 0
    }

    50% {
        left: 30px
    }
}

.lg-next,
.lg-prev {
    opacity: 1;
    -webkit-transition: -webkit-transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
    -moz-transition: -moz-transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
    -o-transition: -o-transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear;
    transition: transform .35s cubic-bezier(0, 0, .25, 1) 0s, opacity .35s cubic-bezier(0, 0, .25, 1) 0s, color .2s linear
}

.lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
}

.lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
}

.lg-outer .lg-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative
}

.lg-outer .lg-has-iframe .lg-video {
    -webkit-overflow-scrolling: touch;
    overflow: auto
}

#lg-zoom-in:after {
    content: "\e311"
}

#lg-zoom-out {
    opacity: .5;
    pointer-events: none
}

#lg-zoom-out:after {
    content: "\e312"
}

.lg-outer.lg-dropdown-active .lg-dropdown {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible
}

.lg-outer .lg-dropdown {
    background-color: #fff;
    border-radius: 2px;
    font-size: 14px;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    -moz-transform: translate3d(0, 5px, 0);
    -o-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    -webkit-transition: -webkit-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
    -moz-transition: -moz-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
    -o-transition: -o-transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s;
    transition: transform .18s linear 0s, visibility 0s linear .5s, opacity .18s linear 0s
}

.lg-outer .lg-dropdown:after {
    content: "";
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #fff;
    right: 16px;
    top: -16px
}

.lg-outer .lg-dropdown>li:last-child {
    margin-bottom: 0
}

.lg-outer .lg-dropdown>li:hover .lg-icon,
.lg-outer .lg-dropdown>li:hover a {
    color: #333
}

.lg-outer .lg-dropdown a {
    color: #333;
    display: block;
    white-space: pre;
    padding: 4px 12px;
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px
}

.lg-outer .lg-dropdown a:hover {
    background-color: rgba(0, 0, 0, .07)
}

.lg-outer .lg-dropdown .lg-dropdown-text {
    display: inline-block;
    line-height: 1;
    margin-top: -3px;
    vertical-align: middle
}

.lg-outer .lg-dropdown .lg-icon {
    color: #333;
    display: inline-block;
    float: none;
    font-size: 20px;
    height: auto;
    line-height: 1;
    margin-right: 8px;
    padding: 0;
    vertical-align: middle;
    width: auto
}

.lg-outer,
.lg-outer .lg,
.lg-outer .lg-inner {
    width: 100%;
    height: 100%
}

.lg-outer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    text-align: left;
    opacity: 0;
    -webkit-transition: opacity .15s ease 0s;
    -o-transition: opacity .15s ease 0s;
    transition: opacity .15s ease 0s
}

.lg-outer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.lg-outer.lg-css3 .lg-item.lg-current,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-prev-slide {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important
}

.lg-outer .lg {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%
}

.lg-outer .lg-inner {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap
}

.lg-outer .lg-item {
    background: url(https://webbazarbd.com/show-panel/script/images/loading.gif) center center no-repeat;
    display: none !important
}

.lg-outer.lg-css .lg-current,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
    display: inline-block !important
}

.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%
}

.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px
}

.lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.lg-outer .lg-item.lg-current {
    z-index: 1060
}

.lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important
}

.lg-outer.lg-hide-download #lg-download {
    display: none
}

.lg-css3.lg-use-css3 .lg-item,
.lg-css3.lg-use-left .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden
}

.lg-css3.lg-fade .lg-item {
    opacity: 0
}

.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1
}

.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
    -webkit-transition: opacity .1s ease 0s;
    -moz-transition: opacity .1s ease 0s;
    -o-transition: opacity .1s ease 0s;
    transition: opacity .1s ease 0s
}

.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s
}

.lg-css3.lg-slide.lg-use-left .lg-item {
    opacity: 0;
    position: absolute;
    left: 0
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1
}

.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    -webkit-transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    -moz-transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, .25, 1) 0s, opacity .1s ease 0s
}

@charset "UTF-8";

.u-s-m-t-auto {
    margin-top: auto
}

.u-s-m-r-auto {
    margin-right: auto
}

.u-s-m-b-auto {
    margin-bottom: auto
}

.u-s-m-l-auto {
    margin-left: auto
}

.u-s-m-x-auto {
    margin-left: auto;
    margin-right: auto
}

.u-s-m-y-auto {
    margin-top: auto;
    margin-bottom: auto
}

.u-s-m-t-0 {
    margin-top: 0
}

.u-s-m-r-0 {
    margin-right: 0
}

.u-s-m-b-0 {
    margin-bottom: 0
}

.u-s-m-l-0 {
    margin-left: 0
}

.u-s-m-x-0 {
    margin-left: 0;
    margin-right: 0
}

.u-s-m-y-0 {
    margin-top: 0;
    margin-bottom: 0
}

.u-s-p-t-0 {
    padding-top: 0
}

.u-s-p-r-0 {
    padding-right: 0
}

.u-s-p-b-0 {
    padding-bottom: 0
}

.u-s-p-l-0 {
    padding-left: 0
}

.u-s-p-x-0 {
    padding-left: 0;
    padding-right: 0
}

.u-s-p-y-0 {
    padding-top: 0;
    padding-bottom: 0
}

.u-s-m-t-1 {
    margin-top: .0625rem
}

.u-s-m-r-1 {
    margin-right: .0625rem
}

.u-s-m-b-1 {
    margin-bottom: .0625rem
}

.u-s-m-l-1 {
    margin-left: .0625rem
}

.u-s-m-x-1 {
    margin-left: .0625rem;
    margin-right: .0625rem
}

.u-s-m-y-1 {
    margin-top: .0625rem;
    margin-bottom: .0625rem
}

.u-s-p-t-1 {
    padding-top: .0625rem
}

.u-s-p-r-1 {
    padding-right: .0625rem
}

.u-s-p-b-1 {
    padding-bottom: .0625rem
}

.u-s-p-l-1 {
    padding-left: .0625rem
}

.u-s-p-x-1 {
    padding-left: .0625rem;
    padding-right: .0625rem
}

.u-s-p-y-1 {
    padding-top: .0625rem;
    padding-bottom: .0625rem
}

.u-s-m-t-2 {
    margin-top: .125rem
}

.u-s-m-r-2 {
    margin-right: .125rem
}

.u-s-m-b-2 {
    margin-bottom: .125rem
}

.u-s-m-l-2 {
    margin-left: .125rem
}

.u-s-m-x-2 {
    margin-left: .125rem;
    margin-right: .125rem
}

.u-s-m-y-2 {
    margin-top: .125rem;
    margin-bottom: .125rem
}

.u-s-p-t-2 {
    padding-top: .125rem
}

.u-s-p-r-2 {
    padding-right: .125rem
}

.u-s-p-b-2 {
    padding-bottom: .125rem
}

.u-s-p-l-2 {
    padding-left: .125rem
}

.u-s-p-x-2 {
    padding-left: .125rem;
    padding-right: .125rem
}

.u-s-p-y-2 {
    padding-top: .125rem;
    padding-bottom: .125rem
}

.u-s-m-t-3 {
    margin-top: .1875rem
}

.u-s-m-r-3 {
    margin-right: .1875rem
}

.u-s-m-b-3 {
    margin-bottom: .1875rem
}

.u-s-m-l-3 {
    margin-left: .1875rem
}

.u-s-m-x-3 {
    margin-left: .1875rem;
    margin-right: .1875rem
}

.u-s-m-y-3 {
    margin-top: .1875rem;
    margin-bottom: .1875rem
}

.u-s-p-t-3 {
    padding-top: .1875rem
}

.u-s-p-r-3 {
    padding-right: .1875rem
}

.u-s-p-b-3 {
    padding-bottom: .1875rem
}

.u-s-p-l-3 {
    padding-left: .1875rem
}

.u-s-p-x-3 {
    padding-left: .1875rem;
    padding-right: .1875rem
}

.u-s-p-y-3 {
    padding-top: .1875rem;
    padding-bottom: .1875rem
}

.u-s-m-t-4 {
    margin-top: .25rem
}

.u-s-m-r-4 {
    margin-right: .25rem
}

.u-s-m-b-4 {
    margin-bottom: .25rem
}

.u-s-m-l-4 {
    margin-left: .25rem
}

.u-s-m-x-4 {
    margin-left: .25rem;
    margin-right: .25rem
}

.u-s-m-y-4 {
    margin-top: .25rem;
    margin-bottom: .25rem
}

.u-s-p-t-4 {
    padding-top: .25rem
}

.u-s-p-r-4 {
    padding-right: .25rem
}

.u-s-p-b-4 {
    padding-bottom: .25rem
}

.u-s-p-l-4 {
    padding-left: .25rem
}

.u-s-p-x-4 {
    padding-left: .25rem;
    padding-right: .25rem
}

.u-s-p-y-4 {
    padding-top: .25rem;
    padding-bottom: .25rem
}

.u-s-m-t-5 {
    margin-top: .3125rem
}

.u-s-m-r-5 {
    margin-right: .3125rem
}

.u-s-m-b-5 {
    margin-bottom: .3125rem
}

.u-s-m-l-5 {
    margin-left: .3125rem
}

.u-s-m-x-5 {
    margin-left: .3125rem;
    margin-right: .3125rem
}

.u-s-m-y-5 {
    margin-top: .3125rem;
    margin-bottom: .3125rem
}

.u-s-p-t-5 {
    padding-top: .3125rem
}

.u-s-p-r-5 {
    padding-right: .3125rem
}

.u-s-p-b-5 {
    padding-bottom: .3125rem
}

.u-s-p-l-5 {
    padding-left: .3125rem
}

.u-s-p-x-5 {
    padding-left: .3125rem;
    padding-right: .3125rem
}

.u-s-p-y-5 {
    padding-top: .3125rem;
    padding-bottom: .3125rem
}

.u-s-m-t-6 {
    margin-top: .375rem
}

.u-s-m-r-6 {
    margin-right: .375rem
}

.u-s-m-b-6 {
    margin-bottom: .375rem
}

.u-s-m-l-6 {
    margin-left: .375rem
}

.u-s-m-x-6 {
    margin-left: .375rem;
    margin-right: .375rem
}

.u-s-m-y-6 {
    margin-top: .375rem;
    margin-bottom: .375rem
}

.u-s-p-t-6 {
    padding-top: .375rem
}

.u-s-p-r-6 {
    padding-right: .375rem
}

.u-s-p-b-6 {
    padding-bottom: .375rem
}

.u-s-p-l-6 {
    padding-left: .375rem
}

.u-s-p-x-6 {
    padding-left: .375rem;
    padding-right: .375rem
}

.u-s-p-y-6 {
    padding-top: .375rem;
    padding-bottom: .375rem
}

.u-s-m-t-7 {
    margin-top: .4375rem
}

.u-s-m-r-7 {
    margin-right: .4375rem
}

.u-s-m-b-7 {
    margin-bottom: .4375rem
}

.u-s-m-l-7 {
    margin-left: .4375rem
}

.u-s-m-x-7 {
    margin-left: .4375rem;
    margin-right: .4375rem
}

.u-s-m-y-7 {
    margin-top: .4375rem;
    margin-bottom: .4375rem
}

.u-s-p-t-7 {
    padding-top: .4375rem
}

.u-s-p-r-7 {
    padding-right: .4375rem
}

.u-s-p-b-7 {
    padding-bottom: .4375rem
}

.u-s-p-l-7 {
    padding-left: .4375rem
}

.u-s-p-x-7 {
    padding-left: .4375rem;
    padding-right: .4375rem
}

.u-s-p-y-7 {
    padding-top: .4375rem;
    padding-bottom: .4375rem
}

.u-s-m-t-8 {
    margin-top: .5rem
}

.u-s-m-r-8 {
    margin-right: .5rem
}

.u-s-m-b-8 {
    margin-bottom: .5rem
}

.u-s-m-l-8 {
    margin-left: .5rem
}

.u-s-m-x-8 {
    margin-left: .5rem;
    margin-right: .5rem
}

.u-s-m-y-8 {
    margin-top: .5rem;
    margin-bottom: .5rem
}

.u-s-p-t-8 {
    padding-top: .5rem
}

.u-s-p-r-8 {
    padding-right: .5rem
}

.u-s-p-b-8 {
    padding-bottom: .5rem
}

.u-s-p-l-8 {
    padding-left: .5rem
}

.u-s-p-x-8 {
    padding-left: .5rem;
    padding-right: .5rem
}

.u-s-p-y-8 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.u-s-m-t-9 {
    margin-top: .5625rem
}

.u-s-m-r-9 {
    margin-right: .5625rem
}

.u-s-m-b-9 {
    margin-bottom: .5625rem
}

.u-s-m-l-9 {
    margin-left: .5625rem
}

.u-s-m-x-9 {
    margin-left: .5625rem;
    margin-right: .5625rem
}

.u-s-m-y-9 {
    margin-top: .5625rem;
    margin-bottom: .5625rem
}

.u-s-p-t-9 {
    padding-top: .5625rem
}

.u-s-p-r-9 {
    padding-right: .5625rem
}

.u-s-p-b-9 {
    padding-bottom: .5625rem
}

.u-s-p-l-9 {
    padding-left: .5625rem
}

.u-s-p-x-9 {
    padding-left: .5625rem;
    padding-right: .5625rem
}

.u-s-p-y-9 {
    padding-top: .5625rem;
    padding-bottom: .5625rem
}

.u-s-m-t-10 {
    margin-top: .625rem
}

.u-s-m-r-10 {
    margin-right: .625rem
}

.u-s-m-b-10 {
    margin-bottom: .625rem
}

.u-s-m-l-10 {
    margin-left: .625rem
}

.u-s-m-x-10 {
    margin-left: .625rem;
    margin-right: .625rem
}

.u-s-m-y-10 {
    margin-top: .625rem;
    margin-bottom: .625rem
}

.u-s-p-t-10 {
    padding-top: .625rem
}

.u-s-p-r-10 {
    padding-right: .625rem
}

.u-s-p-b-10 {
    padding-bottom: .625rem
}

.u-s-p-l-10 {
    padding-left: .625rem
}

.u-s-p-x-10 {
    padding-left: .625rem;
    padding-right: .625rem
}

.u-s-p-y-10 {
    padding-top: .625rem;
    padding-bottom: .625rem
}

.u-s-m-t-11 {
    margin-top: .6875rem
}

.u-s-m-r-11 {
    margin-right: .6875rem
}

.u-s-m-b-11 {
    margin-bottom: .6875rem
}

.u-s-m-l-11 {
    margin-left: .6875rem
}

.u-s-m-x-11 {
    margin-left: .6875rem;
    margin-right: .6875rem
}

.u-s-m-y-11 {
    margin-top: .6875rem;
    margin-bottom: .6875rem
}

.u-s-p-t-11 {
    padding-top: .6875rem
}

.u-s-p-r-11 {
    padding-right: .6875rem
}

.u-s-p-b-11 {
    padding-bottom: .6875rem
}

.u-s-p-l-11 {
    padding-left: .6875rem
}

.u-s-p-x-11 {
    padding-left: .6875rem;
    padding-right: .6875rem
}

.u-s-p-y-11 {
    padding-top: .6875rem;
    padding-bottom: .6875rem
}

.u-s-m-t-12 {
    margin-top: .75rem
}

.u-s-m-r-12 {
    margin-right: .75rem
}

.u-s-m-b-12 {
    margin-bottom: .75rem
}

.u-s-m-l-12 {
    margin-left: .75rem
}

.u-s-m-x-12 {
    margin-left: .75rem;
    margin-right: .75rem
}

.u-s-m-y-12 {
    margin-top: .75rem;
    margin-bottom: .75rem
}

.u-s-p-t-12 {
    padding-top: .75rem
}

.u-s-p-r-12 {
    padding-right: .75rem
}

.u-s-p-b-12 {
    padding-bottom: .75rem
}

.u-s-p-l-12 {
    padding-left: .75rem
}

.u-s-p-x-12 {
    padding-left: .75rem;
    padding-right: .75rem
}

.u-s-p-y-12 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.u-s-m-t-13 {
    margin-top: .8125rem
}

.u-s-m-r-13 {
    margin-right: .8125rem
}

.u-s-m-b-13 {
    margin-bottom: .8125rem
}

.u-s-m-l-13 {
    margin-left: .8125rem
}

.u-s-m-x-13 {
    margin-left: .8125rem;
    margin-right: .8125rem
}

.u-s-m-y-13 {
    margin-top: .8125rem;
    margin-bottom: .8125rem
}

.u-s-p-t-13 {
    padding-top: .8125rem
}

.u-s-p-r-13 {
    padding-right: .8125rem
}

.u-s-p-b-13 {
    padding-bottom: .8125rem
}

.u-s-p-l-13 {
    padding-left: .8125rem
}

.u-s-p-x-13 {
    padding-left: .8125rem;
    padding-right: .8125rem
}

.u-s-p-y-13 {
    padding-top: .8125rem;
    padding-bottom: .8125rem
}

.u-s-m-t-14 {
    margin-top: .875rem
}

.u-s-m-r-14 {
    margin-right: .875rem
}

.u-s-m-b-14 {
    margin-bottom: .875rem
}

.u-s-m-l-14 {
    margin-left: .875rem
}

.u-s-m-x-14 {
    margin-left: .875rem;
    margin-right: .875rem
}

.u-s-m-y-14 {
    margin-top: .875rem;
    margin-bottom: .875rem
}

.u-s-p-t-14 {
    padding-top: .875rem
}

.u-s-p-r-14 {
    padding-right: .875rem
}

.u-s-p-b-14 {
    padding-bottom: .875rem
}

.u-s-p-l-14 {
    padding-left: .875rem
}

.u-s-p-x-14 {
    padding-left: .875rem;
    padding-right: .875rem
}

.u-s-p-y-14 {
    padding-top: .875rem;
    padding-bottom: .875rem
}

.u-s-m-t-15 {
    margin-top: .9375rem
}

.u-s-m-r-15 {
    margin-right: .9375rem
}

.u-s-m-b-15 {
    margin-bottom: .9375rem
}

.u-s-m-l-15 {
    margin-left: .9375rem
}

.u-s-m-x-15 {
    margin-left: .9375rem;
    margin-right: .9375rem
}

.u-s-m-y-15 {
    margin-top: .9375rem;
    margin-bottom: .9375rem
}

.u-s-p-t-15 {
    padding-top: .9375rem
}

.u-s-p-r-15 {
    padding-right: .9375rem
}

.u-s-p-b-15 {
    padding-bottom: .9375rem
}

.u-s-p-l-15 {
    padding-left: .9375rem
}

.u-s-p-x-15 {
    padding-left: .9375rem;
    padding-right: .9375rem
}

.u-s-p-y-15 {
    padding-top: .9375rem;
    padding-bottom: .9375rem
}

.u-s-m-t-16 {
    margin-top: 1rem
}

.u-s-m-r-16 {
    margin-right: 1rem
}

.u-s-m-b-16 {
    margin-bottom: 1rem
}

.u-s-m-l-16 {
    margin-left: 1rem
}

.u-s-m-x-16 {
    margin-left: 1rem;
    margin-right: 1rem
}

.u-s-m-y-16 {
    margin-top: 1rem;
    margin-bottom: 1rem
}

.u-s-p-t-16 {
    padding-top: 1rem
}

.u-s-p-r-16 {
    padding-right: 1rem
}

.u-s-p-b-16 {
    padding-bottom: 1rem
}

.u-s-p-l-16 {
    padding-left: 1rem
}

.u-s-p-x-16 {
    padding-left: 1rem;
    padding-right: 1rem
}

.u-s-p-y-16 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.u-s-m-t-17 {
    margin-top: 1.0625rem
}

.u-s-m-r-17 {
    margin-right: 1.0625rem
}

.u-s-m-b-17 {
    margin-bottom: 1.0625rem
}

.u-s-m-l-17 {
    margin-left: 1.0625rem
}

.u-s-m-x-17 {
    margin-left: 1.0625rem;
    margin-right: 1.0625rem
}

.u-s-m-y-17 {
    margin-top: 1.0625rem;
    margin-bottom: 1.0625rem
}

.u-s-p-t-17 {
    padding-top: 1.0625rem
}

.u-s-p-r-17 {
    padding-right: 1.0625rem
}

.u-s-p-b-17 {
    padding-bottom: 1.0625rem
}

.u-s-p-l-17 {
    padding-left: 1.0625rem
}

.u-s-p-x-17 {
    padding-left: 1.0625rem;
    padding-right: 1.0625rem
}

.u-s-p-y-17 {
    padding-top: 1.0625rem;
    padding-bottom: 1.0625rem
}

.u-s-m-t-18 {
    margin-top: 1.125rem
}

.u-s-m-r-18 {
    margin-right: 1.125rem
}

.u-s-m-b-18 {
    margin-bottom: 1.125rem
}

.u-s-m-l-18 {
    margin-left: 1.125rem
}

.u-s-m-x-18 {
    margin-left: 1.125rem;
    margin-right: 1.125rem
}

.u-s-m-y-18 {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem
}

.u-s-p-t-18 {
    padding-top: 1.125rem
}

.u-s-p-r-18 {
    padding-right: 1.125rem
}

.u-s-p-b-18 {
    padding-bottom: 1.125rem
}

.u-s-p-l-18 {
    padding-left: 1.125rem
}

.u-s-p-x-18 {
    padding-left: 1.125rem;
    padding-right: 1.125rem
}

.u-s-p-y-18 {
    padding-top: 1.125rem;
    padding-bottom: 1.125rem
}

.u-s-m-t-19 {
    margin-top: 1.1875rem
}

.u-s-m-r-19 {
    margin-right: 1.1875rem
}

.u-s-m-b-19 {
    margin-bottom: 1.1875rem
}

.u-s-m-l-19 {
    margin-left: 1.1875rem
}

.u-s-m-x-19 {
    margin-left: 1.1875rem;
    margin-right: 1.1875rem
}

.u-s-m-y-19 {
    margin-top: 1.1875rem;
    margin-bottom: 1.1875rem
}

.u-s-p-t-19 {
    padding-top: 1.1875rem
}

.u-s-p-r-19 {
    padding-right: 1.1875rem
}

.u-s-p-b-19 {
    padding-bottom: 1.1875rem
}

.u-s-p-l-19 {
    padding-left: 1.1875rem
}

.u-s-p-x-19 {
    padding-left: 1.1875rem;
    padding-right: 1.1875rem
}

.u-s-p-y-19 {
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem
}

.u-s-m-t-20 {
    margin-top: 1.25rem
}

.u-s-m-r-20 {
    margin-right: 1.25rem
}

.u-s-m-b-20 {
    margin-bottom: 1.25rem
}

.u-s-m-l-20 {
    margin-left: 1.25rem
}

.u-s-m-x-20 {
    margin-left: 1.25rem;
    margin-right: 1.25rem
}

.u-s-m-y-20 {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem
}

.u-s-p-t-20 {
    padding-top: 1.25rem
}

.u-s-p-r-20 {
    padding-right: 1.25rem
}

.u-s-p-b-20 {
    padding-bottom: 1.25rem
}

.u-s-p-l-20 {
    padding-left: 1.25rem
}

.u-s-p-x-20 {
    padding-left: 1.25rem;
    padding-right: 1.25rem
}

.u-s-p-y-20 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem
}

.u-s-m-t-21 {
    margin-top: 1.3125rem
}

.u-s-m-r-21 {
    margin-right: 1.3125rem
}

.u-s-m-b-21 {
    margin-bottom: 1.3125rem
}

.u-s-m-l-21 {
    margin-left: 1.3125rem
}

.u-s-m-x-21 {
    margin-left: 1.3125rem;
    margin-right: 1.3125rem
}

.u-s-m-y-21 {
    margin-top: 1.3125rem;
    margin-bottom: 1.3125rem
}

.u-s-p-t-21 {
    padding-top: 1.3125rem
}

.u-s-p-r-21 {
    padding-right: 1.3125rem
}

.u-s-p-b-21 {
    padding-bottom: 1.3125rem
}

.u-s-p-l-21 {
    padding-left: 1.3125rem
}

.u-s-p-x-21 {
    padding-left: 1.3125rem;
    padding-right: 1.3125rem
}

.u-s-p-y-21 {
    padding-top: 1.3125rem;
    padding-bottom: 1.3125rem
}

.u-s-m-t-22 {
    margin-top: 1.375rem
}

.u-s-m-r-22 {
    margin-right: 1.375rem
}

.u-s-m-b-22 {
    margin-bottom: 1.375rem
}

.u-s-m-l-22 {
    margin-left: 1.375rem
}

.u-s-m-x-22 {
    margin-left: 1.375rem;
    margin-right: 1.375rem
}

.u-s-m-y-22 {
    margin-top: 1.375rem;
    margin-bottom: 1.375rem
}

.u-s-p-t-22 {
    padding-top: 1.375rem
}

.u-s-p-r-22 {
    padding-right: 1.375rem
}

.u-s-p-b-22 {
    padding-bottom: 1.375rem
}

.u-s-p-l-22 {
    padding-left: 1.375rem
}

.u-s-p-x-22 {
    padding-left: 1.375rem;
    padding-right: 1.375rem
}

.u-s-p-y-22 {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem
}

.u-s-m-t-23 {
    margin-top: 1.4375rem
}

.u-s-m-r-23 {
    margin-right: 1.4375rem
}

.u-s-m-b-23 {
    margin-bottom: 1.4375rem
}

.u-s-m-l-23 {
    margin-left: 1.4375rem
}

.u-s-m-x-23 {
    margin-left: 1.4375rem;
    margin-right: 1.4375rem
}

.u-s-m-y-23 {
    margin-top: 1.4375rem;
    margin-bottom: 1.4375rem
}

.u-s-p-t-23 {
    padding-top: 1.4375rem
}

.u-s-p-r-23 {
    padding-right: 1.4375rem
}

.u-s-p-b-23 {
    padding-bottom: 1.4375rem
}

.u-s-p-l-23 {
    padding-left: 1.4375rem
}

.u-s-p-x-23 {
    padding-left: 1.4375rem;
    padding-right: 1.4375rem
}

.u-s-p-y-23 {
    padding-top: 1.4375rem;
    padding-bottom: 1.4375rem
}

.u-s-m-t-24 {
    margin-top: 1.5rem
}

.u-s-m-r-24 {
    margin-right: 1.5rem
}

.u-s-m-b-24 {
    margin-bottom: 1.5rem
}

.u-s-m-l-24 {
    margin-left: 1.5rem
}

.u-s-m-x-24 {
    margin-left: 1.5rem;
    margin-right: 1.5rem
}

.u-s-m-y-24 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem
}

.u-s-p-t-24 {
    padding-top: 1.5rem
}

.u-s-p-r-24 {
    padding-right: 1.5rem
}

.u-s-p-b-24 {
    padding-bottom: 1.5rem
}

.u-s-p-l-24 {
    padding-left: 1.5rem
}

.u-s-p-x-24 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.u-s-p-y-24 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem
}

.u-s-m-t-25 {
    margin-top: 1.5625rem
}

.u-s-m-r-25 {
    margin-right: 1.5625rem
}

.u-s-m-b-25 {
    margin-bottom: 1.5625rem
}

.u-s-m-l-25 {
    margin-left: 1.5625rem
}

.u-s-m-x-25 {
    margin-left: 1.5625rem;
    margin-right: 1.5625rem
}

.u-s-m-y-25 {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem
}

.u-s-p-t-25 {
    padding-top: 1.5625rem
}

.u-s-p-r-25 {
    padding-right: 1.5625rem
}

.u-s-p-b-25 {
    padding-bottom: 1.5625rem
}

.u-s-p-l-25 {
    padding-left: 1.5625rem
}

.u-s-p-x-25 {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem
}

.u-s-p-y-25 {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem
}

.u-s-m-t-26 {
    margin-top: 1.625rem
}

.u-s-m-r-26 {
    margin-right: 1.625rem
}

.u-s-m-b-26 {
    margin-bottom: 1.625rem
}

.u-s-m-l-26 {
    margin-left: 1.625rem
}

.u-s-m-x-26 {
    margin-left: 1.625rem;
    margin-right: 1.625rem
}

.u-s-m-y-26 {
    margin-top: 1.625rem;
    margin-bottom: 1.625rem
}

.u-s-p-t-26 {
    padding-top: 1.625rem
}

.u-s-p-r-26 {
    padding-right: 1.625rem
}

.u-s-p-b-26 {
    padding-bottom: 1.625rem
}

.u-s-p-l-26 {
    padding-left: 1.625rem
}

.u-s-p-x-26 {
    padding-left: 1.625rem;
    padding-right: 1.625rem
}

.u-s-p-y-26 {
    padding-top: 1.625rem;
    padding-bottom: 1.625rem
}

.u-s-m-t-27 {
    margin-top: 1.6875rem
}

.u-s-m-r-27 {
    margin-right: 1.6875rem
}

.u-s-m-b-27 {
    margin-bottom: 1.6875rem
}

.u-s-m-l-27 {
    margin-left: 1.6875rem
}

.u-s-m-x-27 {
    margin-left: 1.6875rem;
    margin-right: 1.6875rem
}

.u-s-m-y-27 {
    margin-top: 1.6875rem;
    margin-bottom: 1.6875rem
}

.u-s-p-t-27 {
    padding-top: 1.6875rem
}

.u-s-p-r-27 {
    padding-right: 1.6875rem
}

.u-s-p-b-27 {
    padding-bottom: 1.6875rem
}

.u-s-p-l-27 {
    padding-left: 1.6875rem
}

.u-s-p-x-27 {
    padding-left: 1.6875rem;
    padding-right: 1.6875rem
}

.u-s-p-y-27 {
    padding-top: 1.6875rem;
    padding-bottom: 1.6875rem
}

.u-s-m-t-28 {
    margin-top: 1.75rem
}

.u-s-m-r-28 {
    margin-right: 1.75rem
}

.u-s-m-b-28 {
    margin-bottom: 1.75rem
}

.u-s-m-l-28 {
    margin-left: 1.75rem
}

.u-s-m-x-28 {
    margin-left: 1.75rem;
    margin-right: 1.75rem
}

.u-s-m-y-28 {
    margin-top: 1.75rem;
    margin-bottom: 1.75rem
}

.u-s-p-t-28 {
    padding-top: 1.75rem
}

.u-s-p-r-28 {
    padding-right: 1.75rem
}

.u-s-p-b-28 {
    padding-bottom: 1.75rem
}

.u-s-p-l-28 {
    padding-left: 1.75rem
}

.u-s-p-x-28 {
    padding-left: 1.75rem;
    padding-right: 1.75rem
}

.u-s-p-y-28 {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem
}

.u-s-m-t-29 {
    margin-top: 1.8125rem
}

.u-s-m-r-29 {
    margin-right: 1.8125rem
}

.u-s-m-b-29 {
    margin-bottom: 1.8125rem
}

.u-s-m-l-29 {
    margin-left: 1.8125rem
}

.u-s-m-x-29 {
    margin-left: 1.8125rem;
    margin-right: 1.8125rem
}

.u-s-m-y-29 {
    margin-top: 1.8125rem;
    margin-bottom: 1.8125rem
}

.u-s-p-t-29 {
    padding-top: 1.8125rem
}

.u-s-p-r-29 {
    padding-right: 1.8125rem
}

.u-s-p-b-29 {
    padding-bottom: 1.8125rem
}

.u-s-p-l-29 {
    padding-left: 1.8125rem
}

.u-s-p-x-29 {
    padding-left: 1.8125rem;
    padding-right: 1.8125rem
}

.u-s-p-y-29 {
    padding-top: 1.8125rem;
    padding-bottom: 1.8125rem
}

.u-s-m-t-30 {
    margin-top: 1.875rem
}

.u-s-m-r-30 {
    margin-right: 1.875rem
}

.u-s-m-b-30 {
    margin-bottom: 1.875rem
}

.u-s-m-l-30 {
    margin-left: 1.875rem
}

.u-s-m-x-30 {
    margin-left: 1.875rem;
    margin-right: 1.875rem
}

.u-s-m-y-30 {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem
}

.u-s-p-t-30 {
    padding-top: 1.875rem
}

.u-s-p-r-30 {
    padding-right: 1.875rem
}

.u-s-p-b-30 {
    padding-bottom: 1.875rem
}

.u-s-p-l-30 {
    padding-left: 1.875rem
}

.u-s-p-x-30 {
    padding-left: 1.875rem;
    padding-right: 1.875rem
}

.u-s-p-y-30 {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem
}

.u-s-m-t-31 {
    margin-top: 1.9375rem
}

.u-s-m-r-31 {
    margin-right: 1.9375rem
}

.u-s-m-b-31 {
    margin-bottom: 1.9375rem
}

.u-s-m-l-31 {
    margin-left: 1.9375rem
}

.u-s-m-x-31 {
    margin-left: 1.9375rem;
    margin-right: 1.9375rem
}

.u-s-m-y-31 {
    margin-top: 1.9375rem;
    margin-bottom: 1.9375rem
}

.u-s-p-t-31 {
    padding-top: 1.9375rem
}

.u-s-p-r-31 {
    padding-right: 1.9375rem
}

.u-s-p-b-31 {
    padding-bottom: 1.9375rem
}

.u-s-p-l-31 {
    padding-left: 1.9375rem
}

.u-s-p-x-31 {
    padding-left: 1.9375rem;
    padding-right: 1.9375rem
}

.u-s-p-y-31 {
    padding-top: 1.9375rem;
    padding-bottom: 1.9375rem
}

.u-s-m-t-32 {
    margin-top: 2rem
}

.u-s-m-r-32 {
    margin-right: 2rem
}

.u-s-m-b-32 {
    margin-bottom: 2rem
}

.u-s-m-l-32 {
    margin-left: 2rem
}

.u-s-m-x-32 {
    margin-left: 2rem;
    margin-right: 2rem
}

.u-s-m-y-32 {
    margin-top: 2rem;
    margin-bottom: 2rem
}

.u-s-p-t-32 {
    padding-top: 2rem
}

.u-s-p-r-32 {
    padding-right: 2rem
}

.u-s-p-b-32 {
    padding-bottom: 2rem
}

.u-s-p-l-32 {
    padding-left: 2rem
}

.u-s-p-x-32 {
    padding-left: 2rem;
    padding-right: 2rem
}

.u-s-p-y-32 {
    padding-top: 2rem;
    padding-bottom: 2rem
}

.u-s-m-t-33 {
    margin-top: 2.0625rem
}

.u-s-m-r-33 {
    margin-right: 2.0625rem
}

.u-s-m-b-33 {
    margin-bottom: 2.0625rem
}

.u-s-m-l-33 {
    margin-left: 2.0625rem
}

.u-s-m-x-33 {
    margin-left: 2.0625rem;
    margin-right: 2.0625rem
}

.u-s-m-y-33 {
    margin-top: 2.0625rem;
    margin-bottom: 2.0625rem
}

.u-s-p-t-33 {
    padding-top: 2.0625rem
}

.u-s-p-r-33 {
    padding-right: 2.0625rem
}

.u-s-p-b-33 {
    padding-bottom: 2.0625rem
}

.u-s-p-l-33 {
    padding-left: 2.0625rem
}

.u-s-p-x-33 {
    padding-left: 2.0625rem;
    padding-right: 2.0625rem
}

.u-s-p-y-33 {
    padding-top: 2.0625rem;
    padding-bottom: 2.0625rem
}

.u-s-m-t-34 {
    margin-top: 2.125rem
}

.u-s-m-r-34 {
    margin-right: 2.125rem
}

.u-s-m-b-34 {
    margin-bottom: 2.125rem
}

.u-s-m-l-34 {
    margin-left: 2.125rem
}

.u-s-m-x-34 {
    margin-left: 2.125rem;
    margin-right: 2.125rem
}

.u-s-m-y-34 {
    margin-top: 2.125rem;
    margin-bottom: 2.125rem
}

.u-s-p-t-34 {
    padding-top: 2.125rem
}

.u-s-p-r-34 {
    padding-right: 2.125rem
}

.u-s-p-b-34 {
    padding-bottom: 2.125rem
}

.u-s-p-l-34 {
    padding-left: 2.125rem
}

.u-s-p-x-34 {
    padding-left: 2.125rem;
    padding-right: 2.125rem
}

.u-s-p-y-34 {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem
}

.u-s-m-t-35 {
    margin-top: 2.1875rem
}

.u-s-m-r-35 {
    margin-right: 2.1875rem
}

.u-s-m-b-35 {
    margin-bottom: 2.1875rem
}

.u-s-m-l-35 {
    margin-left: 2.1875rem
}

.u-s-m-x-35 {
    margin-left: 2.1875rem;
    margin-right: 2.1875rem
}

.u-s-m-y-35 {
    margin-top: 2.1875rem;
    margin-bottom: 2.1875rem
}

.u-s-p-t-35 {
    padding-top: 2.1875rem
}

.u-s-p-r-35 {
    padding-right: 2.1875rem
}

.u-s-p-b-35 {
    padding-bottom: 2.1875rem
}

.u-s-p-l-35 {
    padding-left: 2.1875rem
}

.u-s-p-x-35 {
    padding-left: 2.1875rem;
    padding-right: 2.1875rem
}

.u-s-p-y-35 {
    padding-top: 2.1875rem;
    padding-bottom: 2.1875rem
}

.u-s-m-t-36 {
    margin-top: 2.25rem
}

.u-s-m-r-36 {
    margin-right: 2.25rem
}

.u-s-m-b-36 {
    margin-bottom: 2.25rem
}

.u-s-m-l-36 {
    margin-left: 2.25rem
}

.u-s-m-x-36 {
    margin-left: 2.25rem;
    margin-right: 2.25rem
}

.u-s-m-y-36 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem
}

.u-s-p-t-36 {
    padding-top: 2.25rem
}

.u-s-p-r-36 {
    padding-right: 2.25rem
}

.u-s-p-b-36 {
    padding-bottom: 2.25rem
}

.u-s-p-l-36 {
    padding-left: 2.25rem
}

.u-s-p-x-36 {
    padding-left: 2.25rem;
    padding-right: 2.25rem
}

.u-s-p-y-36 {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem
}

.u-s-m-t-37 {
    margin-top: 2.3125rem
}

.u-s-m-r-37 {
    margin-right: 2.3125rem
}

.u-s-m-b-37 {
    margin-bottom: 2.3125rem
}

.u-s-m-l-37 {
    margin-left: 2.3125rem
}

.u-s-m-x-37 {
    margin-left: 2.3125rem;
    margin-right: 2.3125rem
}

.u-s-m-y-37 {
    margin-top: 2.3125rem;
    margin-bottom: 2.3125rem
}

.u-s-p-t-37 {
    padding-top: 2.3125rem
}

.u-s-p-r-37 {
    padding-right: 2.3125rem
}

.u-s-p-b-37 {
    padding-bottom: 2.3125rem
}

.u-s-p-l-37 {
    padding-left: 2.3125rem
}

.u-s-p-x-37 {
    padding-left: 2.3125rem;
    padding-right: 2.3125rem
}

.u-s-p-y-37 {
    padding-top: 2.3125rem;
    padding-bottom: 2.3125rem
}

.u-s-m-t-38 {
    margin-top: 2.375rem
}

.u-s-m-r-38 {
    margin-right: 2.375rem
}

.u-s-m-b-38 {
    margin-bottom: 2.375rem
}

.u-s-m-l-38 {
    margin-left: 2.375rem
}

.u-s-m-x-38 {
    margin-left: 2.375rem;
    margin-right: 2.375rem
}

.u-s-m-y-38 {
    margin-top: 2.375rem;
    margin-bottom: 2.375rem
}

.u-s-p-t-38 {
    padding-top: 2.375rem
}

.u-s-p-r-38 {
    padding-right: 2.375rem
}

.u-s-p-b-38 {
    padding-bottom: 2.375rem
}

.u-s-p-l-38 {
    padding-left: 2.375rem
}

.u-s-p-x-38 {
    padding-left: 2.375rem;
    padding-right: 2.375rem
}

.u-s-p-y-38 {
    padding-top: 2.375rem;
    padding-bottom: 2.375rem
}

.u-s-m-t-39 {
    margin-top: 2.4375rem
}

.u-s-m-r-39 {
    margin-right: 2.4375rem
}

.u-s-m-b-39 {
    margin-bottom: 2.4375rem
}

.u-s-m-l-39 {
    margin-left: 2.4375rem
}

.u-s-m-x-39 {
    margin-left: 2.4375rem;
    margin-right: 2.4375rem
}

.u-s-m-y-39 {
    margin-top: 2.4375rem;
    margin-bottom: 2.4375rem
}

.u-s-p-t-39 {
    padding-top: 2.4375rem
}

.u-s-p-r-39 {
    padding-right: 2.4375rem
}

.u-s-p-b-39 {
    padding-bottom: 2.4375rem
}

.u-s-p-l-39 {
    padding-left: 2.4375rem
}

.u-s-p-x-39 {
    padding-left: 2.4375rem;
    padding-right: 2.4375rem
}

.u-s-p-y-39 {
    padding-top: 2.4375rem;
    padding-bottom: 2.4375rem
}

.u-s-m-t-40 {
    margin-top: 2.5rem
}

.u-s-m-r-40 {
    margin-right: 2.5rem
}

.u-s-m-b-40 {
    margin-bottom: 2.5rem
}

.u-s-m-l-40 {
    margin-left: 2.5rem
}

.u-s-m-x-40 {
    margin-left: 2.5rem;
    margin-right: 2.5rem
}

.u-s-m-y-40 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
}

.u-s-p-t-40 {
    padding-top: 2.5rem
}

.u-s-p-r-40 {
    padding-right: 2.5rem
}

.u-s-p-b-40 {
    padding-bottom: 2.5rem
}

.u-s-p-l-40 {
    padding-left: 2.5rem
}

.u-s-p-x-40 {
    padding-left: 2.5rem;
    padding-right: 2.5rem
}

.u-s-p-y-40 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
}

.u-s-m-t-41 {
    margin-top: 2.5625rem
}

.u-s-m-r-41 {
    margin-right: 2.5625rem
}

.u-s-m-b-41 {
    margin-bottom: 2.5625rem
}

.u-s-m-l-41 {
    margin-left: 2.5625rem
}

.u-s-m-x-41 {
    margin-left: 2.5625rem;
    margin-right: 2.5625rem
}

.u-s-m-y-41 {
    margin-top: 2.5625rem;
    margin-bottom: 2.5625rem
}

.u-s-p-t-41 {
    padding-top: 2.5625rem
}

.u-s-p-r-41 {
    padding-right: 2.5625rem
}

.u-s-p-b-41 {
    padding-bottom: 2.5625rem
}

.u-s-p-l-41 {
    padding-left: 2.5625rem
}

.u-s-p-x-41 {
    padding-left: 2.5625rem;
    padding-right: 2.5625rem
}

.u-s-p-y-41 {
    padding-top: 2.5625rem;
    padding-bottom: 2.5625rem
}

.u-s-m-t-42 {
    margin-top: 2.625rem
}

.u-s-m-r-42 {
    margin-right: 2.625rem
}

.u-s-m-b-42 {
    margin-bottom: 2.625rem
}

.u-s-m-l-42 {
    margin-left: 2.625rem
}

.u-s-m-x-42 {
    margin-left: 2.625rem;
    margin-right: 2.625rem
}

.u-s-m-y-42 {
    margin-top: 2.625rem;
    margin-bottom: 2.625rem
}

.u-s-p-t-42 {
    padding-top: 2.625rem
}

.u-s-p-r-42 {
    padding-right: 2.625rem
}

.u-s-p-b-42 {
    padding-bottom: 2.625rem
}

.u-s-p-l-42 {
    padding-left: 2.625rem
}

.u-s-p-x-42 {
    padding-left: 2.625rem;
    padding-right: 2.625rem
}

.u-s-p-y-42 {
    padding-top: 2.625rem;
    padding-bottom: 2.625rem
}

.u-s-m-t-43 {
    margin-top: 2.6875rem
}

.u-s-m-r-43 {
    margin-right: 2.6875rem
}

.u-s-m-b-43 {
    margin-bottom: 2.6875rem
}

.u-s-m-l-43 {
    margin-left: 2.6875rem
}

.u-s-m-x-43 {
    margin-left: 2.6875rem;
    margin-right: 2.6875rem
}

.u-s-m-y-43 {
    margin-top: 2.6875rem;
    margin-bottom: 2.6875rem
}

.u-s-p-t-43 {
    padding-top: 2.6875rem
}

.u-s-p-r-43 {
    padding-right: 2.6875rem
}

.u-s-p-b-43 {
    padding-bottom: 2.6875rem
}

.u-s-p-l-43 {
    padding-left: 2.6875rem
}

.u-s-p-x-43 {
    padding-left: 2.6875rem;
    padding-right: 2.6875rem
}

.u-s-p-y-43 {
    padding-top: 2.6875rem;
    padding-bottom: 2.6875rem
}

.u-s-m-t-44 {
    margin-top: 2.75rem
}

.u-s-m-r-44 {
    margin-right: 2.75rem
}

.u-s-m-b-44 {
    margin-bottom: 2.75rem
}

.u-s-m-l-44 {
    margin-left: 2.75rem
}

.u-s-m-x-44 {
    margin-left: 2.75rem;
    margin-right: 2.75rem
}

.u-s-m-y-44 {
    margin-top: 2.75rem;
    margin-bottom: 2.75rem
}

.u-s-p-t-44 {
    padding-top: 2.75rem
}

.u-s-p-r-44 {
    padding-right: 2.75rem
}

.u-s-p-b-44 {
    padding-bottom: 2.75rem
}

.u-s-p-l-44 {
    padding-left: 2.75rem
}

.u-s-p-x-44 {
    padding-left: 2.75rem;
    padding-right: 2.75rem
}

.u-s-p-y-44 {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem
}

.u-s-m-t-45 {
    margin-top: 2.8125rem
}

.u-s-m-r-45 {
    margin-right: 2.8125rem
}

.u-s-m-b-45 {
    margin-bottom: 2.8125rem
}

.u-s-m-l-45 {
    margin-left: 2.8125rem
}

.u-s-m-x-45 {
    margin-left: 2.8125rem;
    margin-right: 2.8125rem
}

.u-s-m-y-45 {
    margin-top: 2.8125rem;
    margin-bottom: 2.8125rem
}

.u-s-p-t-45 {
    padding-top: 2.8125rem
}

.u-s-p-r-45 {
    padding-right: 2.8125rem
}

.u-s-p-b-45 {
    padding-bottom: 2.8125rem
}

.u-s-p-l-45 {
    padding-left: 2.8125rem
}

.u-s-p-x-45 {
    padding-left: 2.8125rem;
    padding-right: 2.8125rem
}

.u-s-p-y-45 {
    padding-top: 2.8125rem;
    padding-bottom: 2.8125rem
}

.u-s-m-t-46 {
    margin-top: 2.875rem
}

.u-s-m-r-46 {
    margin-right: 2.875rem
}

.u-s-m-b-46 {
    margin-bottom: 2.875rem
}

.u-s-m-l-46 {
    margin-left: 2.875rem
}

.u-s-m-x-46 {
    margin-left: 2.875rem;
    margin-right: 2.875rem
}

.u-s-m-y-46 {
    margin-top: 2.875rem;
    margin-bottom: 2.875rem
}

.u-s-p-t-46 {
    padding-top: 2.875rem
}

.u-s-p-r-46 {
    padding-right: 2.875rem
}

.u-s-p-b-46 {
    padding-bottom: 2.875rem
}

.u-s-p-l-46 {
    padding-left: 2.875rem
}

.u-s-p-x-46 {
    padding-left: 2.875rem;
    padding-right: 2.875rem
}

.u-s-p-y-46 {
    padding-top: 2.875rem;
    padding-bottom: 2.875rem
}

.u-s-m-t-47 {
    margin-top: 2.9375rem
}

.u-s-m-r-47 {
    margin-right: 2.9375rem
}

.u-s-m-b-47 {
    margin-bottom: 2.9375rem
}

.u-s-m-l-47 {
    margin-left: 2.9375rem
}

.u-s-m-x-47 {
    margin-left: 2.9375rem;
    margin-right: 2.9375rem
}

.u-s-m-y-47 {
    margin-top: 2.9375rem;
    margin-bottom: 2.9375rem
}

.u-s-p-t-47 {
    padding-top: 2.9375rem
}

.u-s-p-r-47 {
    padding-right: 2.9375rem
}

.u-s-p-b-47 {
    padding-bottom: 2.9375rem
}

.u-s-p-l-47 {
    padding-left: 2.9375rem
}

.u-s-p-x-47 {
    padding-left: 2.9375rem;
    padding-right: 2.9375rem
}

.u-s-p-y-47 {
    padding-top: 2.9375rem;
    padding-bottom: 2.9375rem
}

.u-s-m-t-48 {
    margin-top: 3rem
}

.u-s-m-r-48 {
    margin-right: 3rem
}

.u-s-m-b-48 {
    margin-bottom: 3rem
}

.u-s-m-l-48 {
    margin-left: 3rem
}

.u-s-m-x-48 {
    margin-left: 3rem;
    margin-right: 3rem
}

.u-s-m-y-48 {
    margin-top: 3rem;
    margin-bottom: 3rem
}

.u-s-p-t-48 {
    padding-top: 3rem
}

.u-s-p-r-48 {
    padding-right: 3rem
}

.u-s-p-b-48 {
    padding-bottom: 3rem
}

.u-s-p-l-48 {
    padding-left: 3rem
}

.u-s-p-x-48 {
    padding-left: 3rem;
    padding-right: 3rem
}

.u-s-p-y-48 {
    padding-top: 3rem;
    padding-bottom: 3rem
}

.u-s-m-t-49 {
    margin-top: 3.0625rem
}

.u-s-m-r-49 {
    margin-right: 3.0625rem
}

.u-s-m-b-49 {
    margin-bottom: 3.0625rem
}

.u-s-m-l-49 {
    margin-left: 3.0625rem
}

.u-s-m-x-49 {
    margin-left: 3.0625rem;
    margin-right: 3.0625rem
}

.u-s-m-y-49 {
    margin-top: 3.0625rem;
    margin-bottom: 3.0625rem
}

.u-s-p-t-49 {
    padding-top: 3.0625rem
}

.u-s-p-r-49 {
    padding-right: 3.0625rem
}

.u-s-p-b-49 {
    padding-bottom: 3.0625rem
}

.u-s-p-l-49 {
    padding-left: 3.0625rem
}

.u-s-p-x-49 {
    padding-left: 3.0625rem;
    padding-right: 3.0625rem
}

.u-s-p-y-49 {
    padding-top: 3.0625rem;
    padding-bottom: 3.0625rem
}

.u-s-m-t-50 {
    margin-top: 3.125rem
}

.u-s-m-r-50 {
    margin-right: 3.125rem
}

.u-s-m-b-50 {
    margin-bottom: 3.125rem
}

.u-s-m-l-50 {
    margin-left: 3.125rem
}

.u-s-m-x-50 {
    margin-left: 3.125rem;
    margin-right: 3.125rem
}

.u-s-m-y-50 {
    margin-top: 3.125rem;
    margin-bottom: 3.125rem
}

.u-s-p-t-50 {
    padding-top: 3.125rem
}

.u-s-p-r-50 {
    padding-right: 3.125rem
}

.u-s-p-b-50 {
    padding-bottom: 3.125rem
}

.u-s-p-l-50 {
    padding-left: 3.125rem
}

.u-s-p-x-50 {
    padding-left: 3.125rem;
    padding-right: 3.125rem
}

.u-s-p-y-50 {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem
}

.u-s-m-t-51 {
    margin-top: 3.1875rem
}

.u-s-m-r-51 {
    margin-right: 3.1875rem
}

.u-s-m-b-51 {
    margin-bottom: 3.1875rem
}

.u-s-m-l-51 {
    margin-left: 3.1875rem
}

.u-s-m-x-51 {
    margin-left: 3.1875rem;
    margin-right: 3.1875rem
}

.u-s-m-y-51 {
    margin-top: 3.1875rem;
    margin-bottom: 3.1875rem
}

.u-s-p-t-51 {
    padding-top: 3.1875rem
}

.u-s-p-r-51 {
    padding-right: 3.1875rem
}

.u-s-p-b-51 {
    padding-bottom: 3.1875rem
}

.u-s-p-l-51 {
    padding-left: 3.1875rem
}

.u-s-p-x-51 {
    padding-left: 3.1875rem;
    padding-right: 3.1875rem
}

.u-s-p-y-51 {
    padding-top: 3.1875rem;
    padding-bottom: 3.1875rem
}

.u-s-m-t-52 {
    margin-top: 3.25rem
}

.u-s-m-r-52 {
    margin-right: 3.25rem
}

.u-s-m-b-52 {
    margin-bottom: 3.25rem
}

.u-s-m-l-52 {
    margin-left: 3.25rem
}

.u-s-m-x-52 {
    margin-left: 3.25rem;
    margin-right: 3.25rem
}

.u-s-m-y-52 {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem
}

.u-s-p-t-52 {
    padding-top: 3.25rem
}

.u-s-p-r-52 {
    padding-right: 3.25rem
}

.u-s-p-b-52 {
    padding-bottom: 3.25rem
}

.u-s-p-l-52 {
    padding-left: 3.25rem
}

.u-s-p-x-52 {
    padding-left: 3.25rem;
    padding-right: 3.25rem
}

.u-s-p-y-52 {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem
}

.u-s-m-t-53 {
    margin-top: 3.3125rem
}

.u-s-m-r-53 {
    margin-right: 3.3125rem
}

.u-s-m-b-53 {
    margin-bottom: 3.3125rem
}

.u-s-m-l-53 {
    margin-left: 3.3125rem
}

.u-s-m-x-53 {
    margin-left: 3.3125rem;
    margin-right: 3.3125rem
}

.u-s-m-y-53 {
    margin-top: 3.3125rem;
    margin-bottom: 3.3125rem
}

.u-s-p-t-53 {
    padding-top: 3.3125rem
}

.u-s-p-r-53 {
    padding-right: 3.3125rem
}

.u-s-p-b-53 {
    padding-bottom: 3.3125rem
}

.u-s-p-l-53 {
    padding-left: 3.3125rem
}

.u-s-p-x-53 {
    padding-left: 3.3125rem;
    padding-right: 3.3125rem
}

.u-s-p-y-53 {
    padding-top: 3.3125rem;
    padding-bottom: 3.3125rem
}

.u-s-m-t-54 {
    margin-top: 3.375rem
}

.u-s-m-r-54 {
    margin-right: 3.375rem
}

.u-s-m-b-54 {
    margin-bottom: 3.375rem
}

.u-s-m-l-54 {
    margin-left: 3.375rem
}

.u-s-m-x-54 {
    margin-left: 3.375rem;
    margin-right: 3.375rem
}

.u-s-m-y-54 {
    margin-top: 3.375rem;
    margin-bottom: 3.375rem
}

.u-s-p-t-54 {
    padding-top: 3.375rem
}

.u-s-p-r-54 {
    padding-right: 3.375rem
}

.u-s-p-b-54 {
    padding-bottom: 3.375rem
}

.u-s-p-l-54 {
    padding-left: 3.375rem
}

.u-s-p-x-54 {
    padding-left: 3.375rem;
    padding-right: 3.375rem
}

.u-s-p-y-54 {
    padding-top: 3.375rem;
    padding-bottom: 3.375rem
}

.u-s-m-t-55 {
    margin-top: 3.4375rem
}

.u-s-m-r-55 {
    margin-right: 3.4375rem
}

.u-s-m-b-55 {
    margin-bottom: 3.4375rem
}

.u-s-m-l-55 {
    margin-left: 3.4375rem
}

.u-s-m-x-55 {
    margin-left: 3.4375rem;
    margin-right: 3.4375rem
}

.u-s-m-y-55 {
    margin-top: 3.4375rem;
    margin-bottom: 3.4375rem
}

.u-s-p-t-55 {
    padding-top: 3.4375rem
}

.u-s-p-r-55 {
    padding-right: 3.4375rem
}

.u-s-p-b-55 {
    padding-bottom: 3.4375rem
}

.u-s-p-l-55 {
    padding-left: 3.4375rem
}

.u-s-p-x-55 {
    padding-left: 3.4375rem;
    padding-right: 3.4375rem
}

.u-s-p-y-55 {
    padding-top: 3.4375rem;
    padding-bottom: 3.4375rem
}

.u-s-m-t-56 {
    margin-top: 3.5rem
}

.u-s-m-r-56 {
    margin-right: 3.5rem
}

.u-s-m-b-56 {
    margin-bottom: 3.5rem
}

.u-s-m-l-56 {
    margin-left: 3.5rem
}

.u-s-m-x-56 {
    margin-left: 3.5rem;
    margin-right: 3.5rem
}

.u-s-m-y-56 {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem
}

.u-s-p-t-56 {
    padding-top: 3.5rem
}

.u-s-p-r-56 {
    padding-right: 3.5rem
}

.u-s-p-b-56 {
    padding-bottom: 3.5rem
}

.u-s-p-l-56 {
    padding-left: 3.5rem
}

.u-s-p-x-56 {
    padding-left: 3.5rem;
    padding-right: 3.5rem
}

.u-s-p-y-56 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem
}

.u-s-m-t-57 {
    margin-top: 3.5625rem
}

.u-s-m-r-57 {
    margin-right: 3.5625rem
}

.u-s-m-b-57 {
    margin-bottom: 3.5625rem
}

.u-s-m-l-57 {
    margin-left: 3.5625rem
}

.u-s-m-x-57 {
    margin-left: 3.5625rem;
    margin-right: 3.5625rem
}

.u-s-m-y-57 {
    margin-top: 3.5625rem;
    margin-bottom: 3.5625rem
}

.u-s-p-t-57 {
    padding-top: 3.5625rem
}

.u-s-p-r-57 {
    padding-right: 3.5625rem
}

.u-s-p-b-57 {
    padding-bottom: 3.5625rem
}

.u-s-p-l-57 {
    padding-left: 3.5625rem
}

.u-s-p-x-57 {
    padding-left: 3.5625rem;
    padding-right: 3.5625rem
}

.u-s-p-y-57 {
    padding-top: 3.5625rem;
    padding-bottom: 3.5625rem
}

.u-s-m-t-58 {
    margin-top: 3.625rem
}

.u-s-m-r-58 {
    margin-right: 3.625rem
}

.u-s-m-b-58 {
    margin-bottom: 3.625rem
}

.u-s-m-l-58 {
    margin-left: 3.625rem
}

.u-s-m-x-58 {
    margin-left: 3.625rem;
    margin-right: 3.625rem
}

.u-s-m-y-58 {
    margin-top: 3.625rem;
    margin-bottom: 3.625rem
}

.u-s-p-t-58 {
    padding-top: 3.625rem
}

.u-s-p-r-58 {
    padding-right: 3.625rem
}

.u-s-p-b-58 {
    padding-bottom: 3.625rem
}

.u-s-p-l-58 {
    padding-left: 3.625rem
}

.u-s-p-x-58 {
    padding-left: 3.625rem;
    padding-right: 3.625rem
}

.u-s-p-y-58 {
    padding-top: 3.625rem;
    padding-bottom: 3.625rem
}

.u-s-m-t-59 {
    margin-top: 3.6875rem
}

.u-s-m-r-59 {
    margin-right: 3.6875rem
}

.u-s-m-b-59 {
    margin-bottom: 3.6875rem
}

.u-s-m-l-59 {
    margin-left: 3.6875rem
}

.u-s-m-x-59 {
    margin-left: 3.6875rem;
    margin-right: 3.6875rem
}

.u-s-m-y-59 {
    margin-top: 3.6875rem;
    margin-bottom: 3.6875rem
}

.u-s-p-t-59 {
    padding-top: 3.6875rem
}

.u-s-p-r-59 {
    padding-right: 3.6875rem
}

.u-s-p-b-59 {
    padding-bottom: 3.6875rem
}

.u-s-p-l-59 {
    padding-left: 3.6875rem
}

.u-s-p-x-59 {
    padding-left: 3.6875rem;
    padding-right: 3.6875rem
}

.u-s-p-y-59 {
    padding-top: 3.6875rem;
    padding-bottom: 3.6875rem
}

.u-s-m-t-60 {
    margin-top: 3.75rem
}

.u-s-m-r-60 {
    margin-right: 3.75rem
}

.u-s-m-b-60 {
    margin-bottom: 3.75rem
}

.u-s-m-l-60 {
    margin-left: 3.75rem
}

.u-s-m-x-60 {
    margin-left: 3.75rem;
    margin-right: 3.75rem
}

.u-s-m-y-60 {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem
}

.u-s-p-t-60 {
    padding-top: 3.75rem
}

.u-s-p-r-60 {
    padding-right: 3.75rem
}

.u-s-p-b-60 {
    padding-bottom: 3.75rem
}

.u-s-p-l-60 {
    padding-left: 3.75rem
}

.u-s-p-x-60 {
    padding-left: 3.75rem;
    padding-right: 3.75rem
}

.u-s-p-y-60 {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem
}

.u-s-m-t-61 {
    margin-top: 3.8125rem
}

.u-s-m-r-61 {
    margin-right: 3.8125rem
}

.u-s-m-b-61 {
    margin-bottom: 3.8125rem
}

.u-s-m-l-61 {
    margin-left: 3.8125rem
}

.u-s-m-x-61 {
    margin-left: 3.8125rem;
    margin-right: 3.8125rem
}

.u-s-m-y-61 {
    margin-top: 3.8125rem;
    margin-bottom: 3.8125rem
}

.u-s-p-t-61 {
    padding-top: 3.8125rem
}

.u-s-p-r-61 {
    padding-right: 3.8125rem
}

.u-s-p-b-61 {
    padding-bottom: 3.8125rem
}

.u-s-p-l-61 {
    padding-left: 3.8125rem
}

.u-s-p-x-61 {
    padding-left: 3.8125rem;
    padding-right: 3.8125rem
}

.u-s-p-y-61 {
    padding-top: 3.8125rem;
    padding-bottom: 3.8125rem
}

.u-s-m-t-62 {
    margin-top: 3.875rem
}

.u-s-m-r-62 {
    margin-right: 3.875rem
}

.u-s-m-b-62 {
    margin-bottom: 3.875rem
}

.u-s-m-l-62 {
    margin-left: 3.875rem
}

.u-s-m-x-62 {
    margin-left: 3.875rem;
    margin-right: 3.875rem
}

.u-s-m-y-62 {
    margin-top: 3.875rem;
    margin-bottom: 3.875rem
}

.u-s-p-t-62 {
    padding-top: 3.875rem
}

.u-s-p-r-62 {
    padding-right: 3.875rem
}

.u-s-p-b-62 {
    padding-bottom: 3.875rem
}

.u-s-p-l-62 {
    padding-left: 3.875rem
}

.u-s-p-x-62 {
    padding-left: 3.875rem;
    padding-right: 3.875rem
}

.u-s-p-y-62 {
    padding-top: 3.875rem;
    padding-bottom: 3.875rem
}

.u-s-m-t-63 {
    margin-top: 3.9375rem
}

.u-s-m-r-63 {
    margin-right: 3.9375rem
}

.u-s-m-b-63 {
    margin-bottom: 3.9375rem
}

.u-s-m-l-63 {
    margin-left: 3.9375rem
}

.u-s-m-x-63 {
    margin-left: 3.9375rem;
    margin-right: 3.9375rem
}

.u-s-m-y-63 {
    margin-top: 3.9375rem;
    margin-bottom: 3.9375rem
}

.u-s-p-t-63 {
    padding-top: 3.9375rem
}

.u-s-p-r-63 {
    padding-right: 3.9375rem
}

.u-s-p-b-63 {
    padding-bottom: 3.9375rem
}

.u-s-p-l-63 {
    padding-left: 3.9375rem
}

.u-s-p-x-63 {
    padding-left: 3.9375rem;
    padding-right: 3.9375rem
}

.u-s-p-y-63 {
    padding-top: 3.9375rem;
    padding-bottom: 3.9375rem
}

.u-s-m-t-64 {
    margin-top: 4rem
}

.u-s-m-r-64 {
    margin-right: 4rem
}

.u-s-m-b-64 {
    margin-bottom: 4rem
}

.u-s-m-l-64 {
    margin-left: 4rem
}

.u-s-m-x-64 {
    margin-left: 4rem;
    margin-right: 4rem
}

.u-s-m-y-64 {
    margin-top: 4rem;
    margin-bottom: 4rem
}

.u-s-p-t-64 {
    padding-top: 4rem
}

.u-s-p-r-64 {
    padding-right: 4rem
}

.u-s-p-b-64 {
    padding-bottom: 4rem
}

.u-s-p-l-64 {
    padding-left: 4rem
}

.u-s-p-x-64 {
    padding-left: 4rem;
    padding-right: 4rem
}

.u-s-p-y-64 {
    padding-top: 4rem;
    padding-bottom: 4rem
}

.u-s-m-t-65 {
    margin-top: 4.0625rem
}

.u-s-m-r-65 {
    margin-right: 4.0625rem
}

.u-s-m-b-65 {
    margin-bottom: 4.0625rem
}

.u-s-m-l-65 {
    margin-left: 4.0625rem
}

.u-s-m-x-65 {
    margin-left: 4.0625rem;
    margin-right: 4.0625rem
}

.u-s-m-y-65 {
    margin-top: 4.0625rem;
    margin-bottom: 4.0625rem
}

.u-s-p-t-65 {
    padding-top: 4.0625rem
}

.u-s-p-r-65 {
    padding-right: 4.0625rem
}

.u-s-p-b-65 {
    padding-bottom: 4.0625rem
}

.u-s-p-l-65 {
    padding-left: 4.0625rem
}

.u-s-p-x-65 {
    padding-left: 4.0625rem;
    padding-right: 4.0625rem
}

.u-s-p-y-65 {
    padding-top: 4.0625rem;
    padding-bottom: 4.0625rem
}

.u-s-m-t-66 {
    margin-top: 4.125rem
}

.u-s-m-r-66 {
    margin-right: 4.125rem
}

.u-s-m-b-66 {
    margin-bottom: 4.125rem
}

.u-s-m-l-66 {
    margin-left: 4.125rem
}

.u-s-m-x-66 {
    margin-left: 4.125rem;
    margin-right: 4.125rem
}

.u-s-m-y-66 {
    margin-top: 4.125rem;
    margin-bottom: 4.125rem
}

.u-s-p-t-66 {
    padding-top: 4.125rem
}

.u-s-p-r-66 {
    padding-right: 4.125rem
}

.u-s-p-b-66 {
    padding-bottom: 4.125rem
}

.u-s-p-l-66 {
    padding-left: 4.125rem
}

.u-s-p-x-66 {
    padding-left: 4.125rem;
    padding-right: 4.125rem
}

.u-s-p-y-66 {
    padding-top: 4.125rem;
    padding-bottom: 4.125rem
}

.u-s-m-t-67 {
    margin-top: 4.1875rem
}

.u-s-m-r-67 {
    margin-right: 4.1875rem
}

.u-s-m-b-67 {
    margin-bottom: 4.1875rem
}

.u-s-m-l-67 {
    margin-left: 4.1875rem
}

.u-s-m-x-67 {
    margin-left: 4.1875rem;
    margin-right: 4.1875rem
}

.u-s-m-y-67 {
    margin-top: 4.1875rem;
    margin-bottom: 4.1875rem
}

.u-s-p-t-67 {
    padding-top: 4.1875rem
}

.u-s-p-r-67 {
    padding-right: 4.1875rem
}

.u-s-p-b-67 {
    padding-bottom: 4.1875rem
}

.u-s-p-l-67 {
    padding-left: 4.1875rem
}

.u-s-p-x-67 {
    padding-left: 4.1875rem;
    padding-right: 4.1875rem
}

.u-s-p-y-67 {
    padding-top: 4.1875rem;
    padding-bottom: 4.1875rem
}

.u-s-m-t-68 {
    margin-top: 4.25rem
}

.u-s-m-r-68 {
    margin-right: 4.25rem
}

.u-s-m-b-68 {
    margin-bottom: 4.25rem
}

.u-s-m-l-68 {
    margin-left: 4.25rem
}

.u-s-m-x-68 {
    margin-left: 4.25rem;
    margin-right: 4.25rem
}

.u-s-m-y-68 {
    margin-top: 4.25rem;
    margin-bottom: 4.25rem
}

.u-s-p-t-68 {
    padding-top: 4.25rem
}

.u-s-p-r-68 {
    padding-right: 4.25rem
}

.u-s-p-b-68 {
    padding-bottom: 4.25rem
}

.u-s-p-l-68 {
    padding-left: 4.25rem
}

.u-s-p-x-68 {
    padding-left: 4.25rem;
    padding-right: 4.25rem
}

.u-s-p-y-68 {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem
}

.u-s-m-t-69 {
    margin-top: 4.3125rem
}

.u-s-m-r-69 {
    margin-right: 4.3125rem
}

.u-s-m-b-69 {
    margin-bottom: 4.3125rem
}

.u-s-m-l-69 {
    margin-left: 4.3125rem
}

.u-s-m-x-69 {
    margin-left: 4.3125rem;
    margin-right: 4.3125rem
}

.u-s-m-y-69 {
    margin-top: 4.3125rem;
    margin-bottom: 4.3125rem
}

.u-s-p-t-69 {
    padding-top: 4.3125rem
}

.u-s-p-r-69 {
    padding-right: 4.3125rem
}

.u-s-p-b-69 {
    padding-bottom: 4.3125rem
}

.u-s-p-l-69 {
    padding-left: 4.3125rem
}

.u-s-p-x-69 {
    padding-left: 4.3125rem;
    padding-right: 4.3125rem
}

.u-s-p-y-69 {
    padding-top: 4.3125rem;
    padding-bottom: 4.3125rem
}

.u-s-m-t-70 {
    margin-top: 4.375rem
}

.u-s-m-r-70 {
    margin-right: 4.375rem
}

.u-s-m-b-70 {
    margin-bottom: 4.375rem
}

.u-s-m-l-70 {
    margin-left: 4.375rem
}

.u-s-m-x-70 {
    margin-left: 4.375rem;
    margin-right: 4.375rem
}

.u-s-m-y-70 {
    margin-top: 4.375rem;
    margin-bottom: 4.375rem
}

.u-s-p-t-70 {
    padding-top: 4.375rem
}

.u-s-p-r-70 {
    padding-right: 4.375rem
}

.u-s-p-b-70 {
    padding-bottom: 4.375rem
}

.u-s-p-l-70 {
    padding-left: 4.375rem
}

.u-s-p-x-70 {
    padding-left: 4.375rem;
    padding-right: 4.375rem
}

.u-s-p-y-70 {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem
}

.u-s-m-t-71 {
    margin-top: 4.4375rem
}

.u-s-m-r-71 {
    margin-right: 4.4375rem
}

.u-s-m-b-71 {
    margin-bottom: 4.4375rem
}

.u-s-m-l-71 {
    margin-left: 4.4375rem
}

.u-s-m-x-71 {
    margin-left: 4.4375rem;
    margin-right: 4.4375rem
}

.u-s-m-y-71 {
    margin-top: 4.4375rem;
    margin-bottom: 4.4375rem
}

.u-s-p-t-71 {
    padding-top: 4.4375rem
}

.u-s-p-r-71 {
    padding-right: 4.4375rem
}

.u-s-p-b-71 {
    padding-bottom: 4.4375rem
}

.u-s-p-l-71 {
    padding-left: 4.4375rem
}

.u-s-p-x-71 {
    padding-left: 4.4375rem;
    padding-right: 4.4375rem
}

.u-s-p-y-71 {
    padding-top: 4.4375rem;
    padding-bottom: 4.4375rem
}

.u-s-m-t-72 {
    margin-top: 4.5rem
}

.u-s-m-r-72 {
    margin-right: 4.5rem
}

.u-s-m-b-72 {
    margin-bottom: 4.5rem
}

.u-s-m-l-72 {
    margin-left: 4.5rem
}

.u-s-m-x-72 {
    margin-left: 4.5rem;
    margin-right: 4.5rem
}

.u-s-m-y-72 {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem
}

.u-s-p-t-72 {
    padding-top: 4.5rem
}

.u-s-p-r-72 {
    padding-right: 4.5rem
}

.u-s-p-b-72 {
    padding-bottom: 4.5rem
}

.u-s-p-l-72 {
    padding-left: 4.5rem
}

.u-s-p-x-72 {
    padding-left: 4.5rem;
    padding-right: 4.5rem
}

.u-s-p-y-72 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem
}

.u-s-m-t-73 {
    margin-top: 4.5625rem
}

.u-s-m-r-73 {
    margin-right: 4.5625rem
}

.u-s-m-b-73 {
    margin-bottom: 4.5625rem
}

.u-s-m-l-73 {
    margin-left: 4.5625rem
}

.u-s-m-x-73 {
    margin-left: 4.5625rem;
    margin-right: 4.5625rem
}

.u-s-m-y-73 {
    margin-top: 4.5625rem;
    margin-bottom: 4.5625rem
}

.u-s-p-t-73 {
    padding-top: 4.5625rem
}

.u-s-p-r-73 {
    padding-right: 4.5625rem
}

.u-s-p-b-73 {
    padding-bottom: 4.5625rem
}

.u-s-p-l-73 {
    padding-left: 4.5625rem
}

.u-s-p-x-73 {
    padding-left: 4.5625rem;
    padding-right: 4.5625rem
}

.u-s-p-y-73 {
    padding-top: 4.5625rem;
    padding-bottom: 4.5625rem
}

.u-s-m-t-74 {
    margin-top: 4.625rem
}

.u-s-m-r-74 {
    margin-right: 4.625rem
}

.u-s-m-b-74 {
    margin-bottom: 4.625rem
}

.u-s-m-l-74 {
    margin-left: 4.625rem
}

.u-s-m-x-74 {
    margin-left: 4.625rem;
    margin-right: 4.625rem
}

.u-s-m-y-74 {
    margin-top: 4.625rem;
    margin-bottom: 4.625rem
}

.u-s-p-t-74 {
    padding-top: 4.625rem
}

.u-s-p-r-74 {
    padding-right: 4.625rem
}

.u-s-p-b-74 {
    padding-bottom: 4.625rem
}

.u-s-p-l-74 {
    padding-left: 4.625rem
}

.u-s-p-x-74 {
    padding-left: 4.625rem;
    padding-right: 4.625rem
}

.u-s-p-y-74 {
    padding-top: 4.625rem;
    padding-bottom: 4.625rem
}

.u-s-m-t-75 {
    margin-top: 4.6875rem
}

.u-s-m-r-75 {
    margin-right: 4.6875rem
}

.u-s-m-b-75 {
    margin-bottom: 4.6875rem
}

.u-s-m-l-75 {
    margin-left: 4.6875rem
}

.u-s-m-x-75 {
    margin-left: 4.6875rem;
    margin-right: 4.6875rem
}

.u-s-m-y-75 {
    margin-top: 4.6875rem;
    margin-bottom: 4.6875rem
}

.u-s-p-t-75 {
    padding-top: 4.6875rem
}

.u-s-p-r-75 {
    padding-right: 4.6875rem
}

.u-s-p-b-75 {
    padding-bottom: 4.6875rem
}

.u-s-p-l-75 {
    padding-left: 4.6875rem
}

.u-s-p-x-75 {
    padding-left: 4.6875rem;
    padding-right: 4.6875rem
}

.u-s-p-y-75 {
    padding-top: 4.6875rem;
    padding-bottom: 4.6875rem
}

.u-s-m-t-76 {
    margin-top: 4.75rem
}

.u-s-m-r-76 {
    margin-right: 4.75rem
}

.u-s-m-b-76 {
    margin-bottom: 4.75rem
}

.u-s-m-l-76 {
    margin-left: 4.75rem
}

.u-s-m-x-76 {
    margin-left: 4.75rem;
    margin-right: 4.75rem
}

.u-s-m-y-76 {
    margin-top: 4.75rem;
    margin-bottom: 4.75rem
}

.u-s-p-t-76 {
    padding-top: 4.75rem
}

.u-s-p-r-76 {
    padding-right: 4.75rem
}

.u-s-p-b-76 {
    padding-bottom: 4.75rem
}

.u-s-p-l-76 {
    padding-left: 4.75rem
}

.u-s-p-x-76 {
    padding-left: 4.75rem;
    padding-right: 4.75rem
}

.u-s-p-y-76 {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem
}

.u-s-m-t-77 {
    margin-top: 4.8125rem
}

.u-s-m-r-77 {
    margin-right: 4.8125rem
}

.u-s-m-b-77 {
    margin-bottom: 4.8125rem
}

.u-s-m-l-77 {
    margin-left: 4.8125rem
}

.u-s-m-x-77 {
    margin-left: 4.8125rem;
    margin-right: 4.8125rem
}

.u-s-m-y-77 {
    margin-top: 4.8125rem;
    margin-bottom: 4.8125rem
}

.u-s-p-t-77 {
    padding-top: 4.8125rem
}

.u-s-p-r-77 {
    padding-right: 4.8125rem
}

.u-s-p-b-77 {
    padding-bottom: 4.8125rem
}

.u-s-p-l-77 {
    padding-left: 4.8125rem
}

.u-s-p-x-77 {
    padding-left: 4.8125rem;
    padding-right: 4.8125rem
}

.u-s-p-y-77 {
    padding-top: 4.8125rem;
    padding-bottom: 4.8125rem
}

.u-s-m-t-78 {
    margin-top: 4.875rem
}

.u-s-m-r-78 {
    margin-right: 4.875rem
}

.u-s-m-b-78 {
    margin-bottom: 4.875rem
}

.u-s-m-l-78 {
    margin-left: 4.875rem
}

.u-s-m-x-78 {
    margin-left: 4.875rem;
    margin-right: 4.875rem
}

.u-s-m-y-78 {
    margin-top: 4.875rem;
    margin-bottom: 4.875rem
}

.u-s-p-t-78 {
    padding-top: 4.875rem
}

.u-s-p-r-78 {
    padding-right: 4.875rem
}

.u-s-p-b-78 {
    padding-bottom: 4.875rem
}

.u-s-p-l-78 {
    padding-left: 4.875rem
}

.u-s-p-x-78 {
    padding-left: 4.875rem;
    padding-right: 4.875rem
}

.u-s-p-y-78 {
    padding-top: 4.875rem;
    padding-bottom: 4.875rem
}

.u-s-m-t-79 {
    margin-top: 4.9375rem
}

.u-s-m-r-79 {
    margin-right: 4.9375rem
}

.u-s-m-b-79 {
    margin-bottom: 4.9375rem
}

.u-s-m-l-79 {
    margin-left: 4.9375rem
}

.u-s-m-x-79 {
    margin-left: 4.9375rem;
    margin-right: 4.9375rem
}

.u-s-m-y-79 {
    margin-top: 4.9375rem;
    margin-bottom: 4.9375rem
}

.u-s-p-t-79 {
    padding-top: 4.9375rem
}

.u-s-p-r-79 {
    padding-right: 4.9375rem
}

.u-s-p-b-79 {
    padding-bottom: 4.9375rem
}

.u-s-p-l-79 {
    padding-left: 4.9375rem
}

.u-s-p-x-79 {
    padding-left: 4.9375rem;
    padding-right: 4.9375rem
}

.u-s-p-y-79 {
    padding-top: 4.9375rem;
    padding-bottom: 4.9375rem
}

.u-s-m-t-80 {
    margin-top: 5rem
}

.u-s-m-r-80 {
    margin-right: 5rem
}

.u-s-m-b-80 {
    margin-bottom: 5rem
}

.u-s-m-l-80 {
    margin-left: 5rem
}

.u-s-m-x-80 {
    margin-left: 5rem;
    margin-right: 5rem
}

.u-s-m-y-80 {
    margin-top: 5rem;
    margin-bottom: 5rem
}

.u-s-p-t-80 {
    padding-top: 5rem
}

.u-s-p-r-80 {
    padding-right: 5rem
}

.u-s-p-b-80 {
    padding-bottom: 5rem
}

.u-s-p-l-80 {
    padding-left: 5rem
}

.u-s-p-x-80 {
    padding-left: 5rem;
    padding-right: 5rem
}

.u-s-p-y-80 {
    padding-top: 5rem;
    padding-bottom: 5rem
}

.u-s-m-t-81 {
    margin-top: 5.0625rem
}

.u-s-m-r-81 {
    margin-right: 5.0625rem
}

.u-s-m-b-81 {
    margin-bottom: 5.0625rem
}

.u-s-m-l-81 {
    margin-left: 5.0625rem
}

.u-s-m-x-81 {
    margin-left: 5.0625rem;
    margin-right: 5.0625rem
}

.u-s-m-y-81 {
    margin-top: 5.0625rem;
    margin-bottom: 5.0625rem
}

.u-s-p-t-81 {
    padding-top: 5.0625rem
}

.u-s-p-r-81 {
    padding-right: 5.0625rem
}

.u-s-p-b-81 {
    padding-bottom: 5.0625rem
}

.u-s-p-l-81 {
    padding-left: 5.0625rem
}

.u-s-p-x-81 {
    padding-left: 5.0625rem;
    padding-right: 5.0625rem
}

.u-s-p-y-81 {
    padding-top: 5.0625rem;
    padding-bottom: 5.0625rem
}

.u-s-m-t-82 {
    margin-top: 5.125rem
}

.u-s-m-r-82 {
    margin-right: 5.125rem
}

.u-s-m-b-82 {
    margin-bottom: 5.125rem
}

.u-s-m-l-82 {
    margin-left: 5.125rem
}

.u-s-m-x-82 {
    margin-left: 5.125rem;
    margin-right: 5.125rem
}

.u-s-m-y-82 {
    margin-top: 5.125rem;
    margin-bottom: 5.125rem
}

.u-s-p-t-82 {
    padding-top: 5.125rem
}

.u-s-p-r-82 {
    padding-right: 5.125rem
}

.u-s-p-b-82 {
    padding-bottom: 5.125rem
}

.u-s-p-l-82 {
    padding-left: 5.125rem
}

.u-s-p-x-82 {
    padding-left: 5.125rem;
    padding-right: 5.125rem
}

.u-s-p-y-82 {
    padding-top: 5.125rem;
    padding-bottom: 5.125rem
}

.u-s-m-t-83 {
    margin-top: 5.1875rem
}

.u-s-m-r-83 {
    margin-right: 5.1875rem
}

.u-s-m-b-83 {
    margin-bottom: 5.1875rem
}

.u-s-m-l-83 {
    margin-left: 5.1875rem
}

.u-s-m-x-83 {
    margin-left: 5.1875rem;
    margin-right: 5.1875rem
}

.u-s-m-y-83 {
    margin-top: 5.1875rem;
    margin-bottom: 5.1875rem
}

.u-s-p-t-83 {
    padding-top: 5.1875rem
}

.u-s-p-r-83 {
    padding-right: 5.1875rem
}

.u-s-p-b-83 {
    padding-bottom: 5.1875rem
}

.u-s-p-l-83 {
    padding-left: 5.1875rem
}

.u-s-p-x-83 {
    padding-left: 5.1875rem;
    padding-right: 5.1875rem
}

.u-s-p-y-83 {
    padding-top: 5.1875rem;
    padding-bottom: 5.1875rem
}

.u-s-m-t-84 {
    margin-top: 5.25rem
}

.u-s-m-r-84 {
    margin-right: 5.25rem
}

.u-s-m-b-84 {
    margin-bottom: 5.25rem
}

.u-s-m-l-84 {
    margin-left: 5.25rem
}

.u-s-m-x-84 {
    margin-left: 5.25rem;
    margin-right: 5.25rem
}

.u-s-m-y-84 {
    margin-top: 5.25rem;
    margin-bottom: 5.25rem
}

.u-s-p-t-84 {
    padding-top: 5.25rem
}

.u-s-p-r-84 {
    padding-right: 5.25rem
}

.u-s-p-b-84 {
    padding-bottom: 5.25rem
}

.u-s-p-l-84 {
    padding-left: 5.25rem
}

.u-s-p-x-84 {
    padding-left: 5.25rem;
    padding-right: 5.25rem
}

.u-s-p-y-84 {
    padding-top: 5.25rem;
    padding-bottom: 5.25rem
}

.u-s-m-t-85 {
    margin-top: 5.3125rem
}

.u-s-m-r-85 {
    margin-right: 5.3125rem
}

.u-s-m-b-85 {
    margin-bottom: 5.3125rem
}

.u-s-m-l-85 {
    margin-left: 5.3125rem
}

.u-s-m-x-85 {
    margin-left: 5.3125rem;
    margin-right: 5.3125rem
}

.u-s-m-y-85 {
    margin-top: 5.3125rem;
    margin-bottom: 5.3125rem
}

.u-s-p-t-85 {
    padding-top: 5.3125rem
}

.u-s-p-r-85 {
    padding-right: 5.3125rem
}

.u-s-p-b-85 {
    padding-bottom: 5.3125rem
}

.u-s-p-l-85 {
    padding-left: 5.3125rem
}

.u-s-p-x-85 {
    padding-left: 5.3125rem;
    padding-right: 5.3125rem
}

.u-s-p-y-85 {
    padding-top: 5.3125rem;
    padding-bottom: 5.3125rem
}

.u-s-m-t-86 {
    margin-top: 5.375rem
}

.u-s-m-r-86 {
    margin-right: 5.375rem
}

.u-s-m-b-86 {
    margin-bottom: 5.375rem
}

.u-s-m-l-86 {
    margin-left: 5.375rem
}

.u-s-m-x-86 {
    margin-left: 5.375rem;
    margin-right: 5.375rem
}

.u-s-m-y-86 {
    margin-top: 5.375rem;
    margin-bottom: 5.375rem
}

.u-s-p-t-86 {
    padding-top: 5.375rem
}

.u-s-p-r-86 {
    padding-right: 5.375rem
}

.u-s-p-b-86 {
    padding-bottom: 5.375rem
}

.u-s-p-l-86 {
    padding-left: 5.375rem
}

.u-s-p-x-86 {
    padding-left: 5.375rem;
    padding-right: 5.375rem
}

.u-s-p-y-86 {
    padding-top: 5.375rem;
    padding-bottom: 5.375rem
}

.u-s-m-t-87 {
    margin-top: 5.4375rem
}

.u-s-m-r-87 {
    margin-right: 5.4375rem
}

.u-s-m-b-87 {
    margin-bottom: 5.4375rem
}

.u-s-m-l-87 {
    margin-left: 5.4375rem
}

.u-s-m-x-87 {
    margin-left: 5.4375rem;
    margin-right: 5.4375rem
}

.u-s-m-y-87 {
    margin-top: 5.4375rem;
    margin-bottom: 5.4375rem
}

.u-s-p-t-87 {
    padding-top: 5.4375rem
}

.u-s-p-r-87 {
    padding-right: 5.4375rem
}

.u-s-p-b-87 {
    padding-bottom: 5.4375rem
}

.u-s-p-l-87 {
    padding-left: 5.4375rem
}

.u-s-p-x-87 {
    padding-left: 5.4375rem;
    padding-right: 5.4375rem
}

.u-s-p-y-87 {
    padding-top: 5.4375rem;
    padding-bottom: 5.4375rem
}

.u-s-m-t-88 {
    margin-top: 5.5rem
}

.u-s-m-r-88 {
    margin-right: 5.5rem
}

.u-s-m-b-88 {
    margin-bottom: 5.5rem
}

.u-s-m-l-88 {
    margin-left: 5.5rem
}

.u-s-m-x-88 {
    margin-left: 5.5rem;
    margin-right: 5.5rem
}

.u-s-m-y-88 {
    margin-top: 5.5rem;
    margin-bottom: 5.5rem
}

.u-s-p-t-88 {
    padding-top: 5.5rem
}

.u-s-p-r-88 {
    padding-right: 5.5rem
}

.u-s-p-b-88 {
    padding-bottom: 5.5rem
}

.u-s-p-l-88 {
    padding-left: 5.5rem
}

.u-s-p-x-88 {
    padding-left: 5.5rem;
    padding-right: 5.5rem
}

.u-s-p-y-88 {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem
}

.u-s-m-t-89 {
    margin-top: 5.5625rem
}

.u-s-m-r-89 {
    margin-right: 5.5625rem
}

.u-s-m-b-89 {
    margin-bottom: 5.5625rem
}

.u-s-m-l-89 {
    margin-left: 5.5625rem
}

.u-s-m-x-89 {
    margin-left: 5.5625rem;
    margin-right: 5.5625rem
}

.u-s-m-y-89 {
    margin-top: 5.5625rem;
    margin-bottom: 5.5625rem
}

.u-s-p-t-89 {
    padding-top: 5.5625rem
}

.u-s-p-r-89 {
    padding-right: 5.5625rem
}

.u-s-p-b-89 {
    padding-bottom: 5.5625rem
}

.u-s-p-l-89 {
    padding-left: 5.5625rem
}

.u-s-p-x-89 {
    padding-left: 5.5625rem;
    padding-right: 5.5625rem
}

.u-s-p-y-89 {
    padding-top: 5.5625rem;
    padding-bottom: 5.5625rem
}

.u-s-m-t-90 {
    margin-top: 5.625rem
}

.u-s-m-r-90 {
    margin-right: 5.625rem
}

.u-s-m-b-90 {
    margin-bottom: 5.625rem
}

.u-s-m-l-90 {
    margin-left: 5.625rem
}

.u-s-m-x-90 {
    margin-left: 5.625rem;
    margin-right: 5.625rem
}

.u-s-m-y-90 {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem
}

.u-s-p-t-90 {
    padding-top: 5.625rem
}

.u-s-p-r-90 {
    padding-right: 5.625rem
}

.u-s-p-b-90 {
    padding-bottom: 5.625rem
}

.u-s-p-l-90 {
    padding-left: 5.625rem
}

.u-s-p-x-90 {
    padding-left: 5.625rem;
    padding-right: 5.625rem
}

.u-s-p-y-90 {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem
}

.u-s-m-t-91 {
    margin-top: 5.6875rem
}

.u-s-m-r-91 {
    margin-right: 5.6875rem
}

.u-s-m-b-91 {
    margin-bottom: 5.6875rem
}

.u-s-m-l-91 {
    margin-left: 5.6875rem
}

.u-s-m-x-91 {
    margin-left: 5.6875rem;
    margin-right: 5.6875rem
}

.u-s-m-y-91 {
    margin-top: 5.6875rem;
    margin-bottom: 5.6875rem
}

.u-s-p-t-91 {
    padding-top: 5.6875rem
}

.u-s-p-r-91 {
    padding-right: 5.6875rem
}

.u-s-p-b-91 {
    padding-bottom: 5.6875rem
}

.u-s-p-l-91 {
    padding-left: 5.6875rem
}

.u-s-p-x-91 {
    padding-left: 5.6875rem;
    padding-right: 5.6875rem
}

.u-s-p-y-91 {
    padding-top: 5.6875rem;
    padding-bottom: 5.6875rem
}

.u-s-m-t-92 {
    margin-top: 5.75rem
}

.u-s-m-r-92 {
    margin-right: 5.75rem
}

.u-s-m-b-92 {
    margin-bottom: 5.75rem
}

.u-s-m-l-92 {
    margin-left: 5.75rem
}

.u-s-m-x-92 {
    margin-left: 5.75rem;
    margin-right: 5.75rem
}

.u-s-m-y-92 {
    margin-top: 5.75rem;
    margin-bottom: 5.75rem
}

.u-s-p-t-92 {
    padding-top: 5.75rem
}

.u-s-p-r-92 {
    padding-right: 5.75rem
}

.u-s-p-b-92 {
    padding-bottom: 5.75rem
}

.u-s-p-l-92 {
    padding-left: 5.75rem
}

.u-s-p-x-92 {
    padding-left: 5.75rem;
    padding-right: 5.75rem
}

.u-s-p-y-92 {
    padding-top: 5.75rem;
    padding-bottom: 5.75rem
}

.u-s-m-t-93 {
    margin-top: 5.8125rem
}

.u-s-m-r-93 {
    margin-right: 5.8125rem
}

.u-s-m-b-93 {
    margin-bottom: 5.8125rem
}

.u-s-m-l-93 {
    margin-left: 5.8125rem
}

.u-s-m-x-93 {
    margin-left: 5.8125rem;
    margin-right: 5.8125rem
}

.u-s-m-y-93 {
    margin-top: 5.8125rem;
    margin-bottom: 5.8125rem
}

.u-s-p-t-93 {
    padding-top: 5.8125rem
}

.u-s-p-r-93 {
    padding-right: 5.8125rem
}

.u-s-p-b-93 {
    padding-bottom: 5.8125rem
}

.u-s-p-l-93 {
    padding-left: 5.8125rem
}

.u-s-p-x-93 {
    padding-left: 5.8125rem;
    padding-right: 5.8125rem
}

.u-s-p-y-93 {
    padding-top: 5.8125rem;
    padding-bottom: 5.8125rem
}

.u-s-m-t-94 {
    margin-top: 5.875rem
}

.u-s-m-r-94 {
    margin-right: 5.875rem
}

.u-s-m-b-94 {
    margin-bottom: 5.875rem
}

.u-s-m-l-94 {
    margin-left: 5.875rem
}

.u-s-m-x-94 {
    margin-left: 5.875rem;
    margin-right: 5.875rem
}

.u-s-m-y-94 {
    margin-top: 5.875rem;
    margin-bottom: 5.875rem
}

.u-s-p-t-94 {
    padding-top: 5.875rem
}

.u-s-p-r-94 {
    padding-right: 5.875rem
}

.u-s-p-b-94 {
    padding-bottom: 5.875rem
}

.u-s-p-l-94 {
    padding-left: 5.875rem
}

.u-s-p-x-94 {
    padding-left: 5.875rem;
    padding-right: 5.875rem
}

.u-s-p-y-94 {
    padding-top: 5.875rem;
    padding-bottom: 5.875rem
}

.u-s-m-t-95 {
    margin-top: 5.9375rem
}

.u-s-m-r-95 {
    margin-right: 5.9375rem
}

.u-s-m-b-95 {
    margin-bottom: 5.9375rem
}

.u-s-m-l-95 {
    margin-left: 5.9375rem
}

.u-s-m-x-95 {
    margin-left: 5.9375rem;
    margin-right: 5.9375rem
}

.u-s-m-y-95 {
    margin-top: 5.9375rem;
    margin-bottom: 5.9375rem
}

.u-s-p-t-95 {
    padding-top: 5.9375rem
}

.u-s-p-r-95 {
    padding-right: 5.9375rem
}

.u-s-p-b-95 {
    padding-bottom: 5.9375rem
}

.u-s-p-l-95 {
    padding-left: 5.9375rem
}

.u-s-p-x-95 {
    padding-left: 5.9375rem;
    padding-right: 5.9375rem
}

.u-s-p-y-95 {
    padding-top: 5.9375rem;
    padding-bottom: 5.9375rem
}

.u-s-m-t-96 {
    margin-top: 6rem
}

.u-s-m-r-96 {
    margin-right: 6rem
}

.u-s-m-b-96 {
    margin-bottom: 6rem
}

.u-s-m-l-96 {
    margin-left: 6rem
}

.u-s-m-x-96 {
    margin-left: 6rem;
    margin-right: 6rem
}

.u-s-m-y-96 {
    margin-top: 6rem;
    margin-bottom: 6rem
}

.u-s-p-t-96 {
    padding-top: 6rem
}

.u-s-p-r-96 {
    padding-right: 6rem
}

.u-s-p-b-96 {
    padding-bottom: 6rem
}

.u-s-p-l-96 {
    padding-left: 6rem
}

.u-s-p-x-96 {
    padding-left: 6rem;
    padding-right: 6rem
}

.u-s-p-y-96 {
    padding-top: 6rem;
    padding-bottom: 6rem
}

.u-s-m-t-97 {
    margin-top: 6.0625rem
}

.u-s-m-r-97 {
    margin-right: 6.0625rem
}

.u-s-m-b-97 {
    margin-bottom: 6.0625rem
}

.u-s-m-l-97 {
    margin-left: 6.0625rem
}

.u-s-m-x-97 {
    margin-left: 6.0625rem;
    margin-right: 6.0625rem
}

.u-s-m-y-97 {
    margin-top: 6.0625rem;
    margin-bottom: 6.0625rem
}

.u-s-p-t-97 {
    padding-top: 6.0625rem
}

.u-s-p-r-97 {
    padding-right: 6.0625rem
}

.u-s-p-b-97 {
    padding-bottom: 6.0625rem
}

.u-s-p-l-97 {
    padding-left: 6.0625rem
}

.u-s-p-x-97 {
    padding-left: 6.0625rem;
    padding-right: 6.0625rem
}

.u-s-p-y-97 {
    padding-top: 6.0625rem;
    padding-bottom: 6.0625rem
}

.u-s-m-t-98 {
    margin-top: 6.125rem
}

.u-s-m-r-98 {
    margin-right: 6.125rem
}

.u-s-m-b-98 {
    margin-bottom: 6.125rem
}

.u-s-m-l-98 {
    margin-left: 6.125rem
}

.u-s-m-x-98 {
    margin-left: 6.125rem;
    margin-right: 6.125rem
}

.u-s-m-y-98 {
    margin-top: 6.125rem;
    margin-bottom: 6.125rem
}

.u-s-p-t-98 {
    padding-top: 6.125rem
}

.u-s-p-r-98 {
    padding-right: 6.125rem
}

.u-s-p-b-98 {
    padding-bottom: 6.125rem
}

.u-s-p-l-98 {
    padding-left: 6.125rem
}

.u-s-p-x-98 {
    padding-left: 6.125rem;
    padding-right: 6.125rem
}

.u-s-p-y-98 {
    padding-top: 6.125rem;
    padding-bottom: 6.125rem
}

.u-s-m-t-99 {
    margin-top: 6.1875rem
}

.u-s-m-r-99 {
    margin-right: 6.1875rem
}

.u-s-m-b-99 {
    margin-bottom: 6.1875rem
}

.u-s-m-l-99 {
    margin-left: 6.1875rem
}

.u-s-m-x-99 {
    margin-left: 6.1875rem;
    margin-right: 6.1875rem
}

.u-s-m-y-99 {
    margin-top: 6.1875rem;
    margin-bottom: 6.1875rem
}

.u-s-p-t-99 {
    padding-top: 6.1875rem
}

.u-s-p-r-99 {
    padding-right: 6.1875rem
}

.u-s-p-b-99 {
    padding-bottom: 6.1875rem
}

.u-s-p-l-99 {
    padding-left: 6.1875rem
}

.u-s-p-x-99 {
    padding-left: 6.1875rem;
    padding-right: 6.1875rem
}

.u-s-p-y-99 {
    padding-top: 6.1875rem;
    padding-bottom: 6.1875rem
}

.u-s-m-t-100 {
    margin-top: 6.25rem
}

.u-s-m-r-100 {
    margin-right: 6.25rem
}

.u-s-m-b-100 {
    margin-bottom: 6.25rem
}

.u-s-m-l-100 {
    margin-left: 6.25rem
}

.u-s-m-x-100 {
    margin-left: 6.25rem;
    margin-right: 6.25rem
}

.u-s-m-y-100 {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem
}

.u-s-p-t-100 {
    padding-top: 6.25rem
}

.u-s-p-r-100 {
    padding-right: 6.25rem
}

.u-s-p-b-100 {
    padding-bottom: 6.25rem
}

.u-s-p-l-100 {
    padding-left: 6.25rem
}

.u-s-p-x-100 {
    padding-left: 6.25rem;
    padding-right: 6.25rem
}

.u-s-p-y-100 {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem
}

.u-s-m-t-101 {
    margin-top: 6.3125rem
}

.u-s-m-r-101 {
    margin-right: 6.3125rem
}

.u-s-m-b-101 {
    margin-bottom: 6.3125rem
}

.u-s-m-l-101 {
    margin-left: 6.3125rem
}

.u-s-m-x-101 {
    margin-left: 6.3125rem;
    margin-right: 6.3125rem
}

.u-s-m-y-101 {
    margin-top: 6.3125rem;
    margin-bottom: 6.3125rem
}

.u-s-p-t-101 {
    padding-top: 6.3125rem
}

.u-s-p-r-101 {
    padding-right: 6.3125rem
}

.u-s-p-b-101 {
    padding-bottom: 6.3125rem
}

.u-s-p-l-101 {
    padding-left: 6.3125rem
}

.u-s-p-x-101 {
    padding-left: 6.3125rem;
    padding-right: 6.3125rem
}

.u-s-p-y-101 {
    padding-top: 6.3125rem;
    padding-bottom: 6.3125rem
}

.u-s-m-t-102 {
    margin-top: 6.375rem
}

.u-s-m-r-102 {
    margin-right: 6.375rem
}

.u-s-m-b-102 {
    margin-bottom: 6.375rem
}

.u-s-m-l-102 {
    margin-left: 6.375rem
}

.u-s-m-x-102 {
    margin-left: 6.375rem;
    margin-right: 6.375rem
}

.u-s-m-y-102 {
    margin-top: 6.375rem;
    margin-bottom: 6.375rem
}

.u-s-p-t-102 {
    padding-top: 6.375rem
}

.u-s-p-r-102 {
    padding-right: 6.375rem
}

.u-s-p-b-102 {
    padding-bottom: 6.375rem
}

.u-s-p-l-102 {
    padding-left: 6.375rem
}

.u-s-p-x-102 {
    padding-left: 6.375rem;
    padding-right: 6.375rem
}

.u-s-p-y-102 {
    padding-top: 6.375rem;
    padding-bottom: 6.375rem
}

.u-s-m-t-103 {
    margin-top: 6.4375rem
}

.u-s-m-r-103 {
    margin-right: 6.4375rem
}

.u-s-m-b-103 {
    margin-bottom: 6.4375rem
}

.u-s-m-l-103 {
    margin-left: 6.4375rem
}

.u-s-m-x-103 {
    margin-left: 6.4375rem;
    margin-right: 6.4375rem
}

.u-s-m-y-103 {
    margin-top: 6.4375rem;
    margin-bottom: 6.4375rem
}

.u-s-p-t-103 {
    padding-top: 6.4375rem
}

.u-s-p-r-103 {
    padding-right: 6.4375rem
}

.u-s-p-b-103 {
    padding-bottom: 6.4375rem
}

.u-s-p-l-103 {
    padding-left: 6.4375rem
}

.u-s-p-x-103 {
    padding-left: 6.4375rem;
    padding-right: 6.4375rem
}

.u-s-p-y-103 {
    padding-top: 6.4375rem;
    padding-bottom: 6.4375rem
}

.u-s-m-t-104 {
    margin-top: 6.5rem
}

.u-s-m-r-104 {
    margin-right: 6.5rem
}

.u-s-m-b-104 {
    margin-bottom: 6.5rem
}

.u-s-m-l-104 {
    margin-left: 6.5rem
}

.u-s-m-x-104 {
    margin-left: 6.5rem;
    margin-right: 6.5rem
}

.u-s-m-y-104 {
    margin-top: 6.5rem;
    margin-bottom: 6.5rem
}

.u-s-p-t-104 {
    padding-top: 6.5rem
}

.u-s-p-r-104 {
    padding-right: 6.5rem
}

.u-s-p-b-104 {
    padding-bottom: 6.5rem
}

.u-s-p-l-104 {
    padding-left: 6.5rem
}

.u-s-p-x-104 {
    padding-left: 6.5rem;
    padding-right: 6.5rem
}

.u-s-p-y-104 {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem
}

.u-s-m-t-105 {
    margin-top: 6.5625rem
}

.u-s-m-r-105 {
    margin-right: 6.5625rem
}

.u-s-m-b-105 {
    margin-bottom: 6.5625rem
}

.u-s-m-l-105 {
    margin-left: 6.5625rem
}

.u-s-m-x-105 {
    margin-left: 6.5625rem;
    margin-right: 6.5625rem
}

.u-s-m-y-105 {
    margin-top: 6.5625rem;
    margin-bottom: 6.5625rem
}

.u-s-p-t-105 {
    padding-top: 6.5625rem
}

.u-s-p-r-105 {
    padding-right: 6.5625rem
}

.u-s-p-b-105 {
    padding-bottom: 6.5625rem
}

.u-s-p-l-105 {
    padding-left: 6.5625rem
}

.u-s-p-x-105 {
    padding-left: 6.5625rem;
    padding-right: 6.5625rem
}

.u-s-p-y-105 {
    padding-top: 6.5625rem;
    padding-bottom: 6.5625rem
}

.u-s-m-t-106 {
    margin-top: 6.625rem
}

.u-s-m-r-106 {
    margin-right: 6.625rem
}

.u-s-m-b-106 {
    margin-bottom: 6.625rem
}

.u-s-m-l-106 {
    margin-left: 6.625rem
}

.u-s-m-x-106 {
    margin-left: 6.625rem;
    margin-right: 6.625rem
}

.u-s-m-y-106 {
    margin-top: 6.625rem;
    margin-bottom: 6.625rem
}

.u-s-p-t-106 {
    padding-top: 6.625rem
}

.u-s-p-r-106 {
    padding-right: 6.625rem
}

.u-s-p-b-106 {
    padding-bottom: 6.625rem
}

.u-s-p-l-106 {
    padding-left: 6.625rem
}

.u-s-p-x-106 {
    padding-left: 6.625rem;
    padding-right: 6.625rem
}

.u-s-p-y-106 {
    padding-top: 6.625rem;
    padding-bottom: 6.625rem
}

.u-s-m-t-107 {
    margin-top: 6.6875rem
}

.u-s-m-r-107 {
    margin-right: 6.6875rem
}

.u-s-m-b-107 {
    margin-bottom: 6.6875rem
}

.u-s-m-l-107 {
    margin-left: 6.6875rem
}

.u-s-m-x-107 {
    margin-left: 6.6875rem;
    margin-right: 6.6875rem
}

.u-s-m-y-107 {
    margin-top: 6.6875rem;
    margin-bottom: 6.6875rem
}

.u-s-p-t-107 {
    padding-top: 6.6875rem
}

.u-s-p-r-107 {
    padding-right: 6.6875rem
}

.u-s-p-b-107 {
    padding-bottom: 6.6875rem
}

.u-s-p-l-107 {
    padding-left: 6.6875rem
}

.u-s-p-x-107 {
    padding-left: 6.6875rem;
    padding-right: 6.6875rem
}

.u-s-p-y-107 {
    padding-top: 6.6875rem;
    padding-bottom: 6.6875rem
}

.u-s-m-t-108 {
    margin-top: 6.75rem
}

.u-s-m-r-108 {
    margin-right: 6.75rem
}

.u-s-m-b-108 {
    margin-bottom: 6.75rem
}

.u-s-m-l-108 {
    margin-left: 6.75rem
}

.u-s-m-x-108 {
    margin-left: 6.75rem;
    margin-right: 6.75rem
}

.u-s-m-y-108 {
    margin-top: 6.75rem;
    margin-bottom: 6.75rem
}

.u-s-p-t-108 {
    padding-top: 6.75rem
}

.u-s-p-r-108 {
    padding-right: 6.75rem
}

.u-s-p-b-108 {
    padding-bottom: 6.75rem
}

.u-s-p-l-108 {
    padding-left: 6.75rem
}

.u-s-p-x-108 {
    padding-left: 6.75rem;
    padding-right: 6.75rem
}

.u-s-p-y-108 {
    padding-top: 6.75rem;
    padding-bottom: 6.75rem
}

.u-s-m-t-109 {
    margin-top: 6.8125rem
}

.u-s-m-r-109 {
    margin-right: 6.8125rem
}

.u-s-m-b-109 {
    margin-bottom: 6.8125rem
}

.u-s-m-l-109 {
    margin-left: 6.8125rem
}

.u-s-m-x-109 {
    margin-left: 6.8125rem;
    margin-right: 6.8125rem
}

.u-s-m-y-109 {
    margin-top: 6.8125rem;
    margin-bottom: 6.8125rem
}

.u-s-p-t-109 {
    padding-top: 6.8125rem
}

.u-s-p-r-109 {
    padding-right: 6.8125rem
}

.u-s-p-b-109 {
    padding-bottom: 6.8125rem
}

.u-s-p-l-109 {
    padding-left: 6.8125rem
}

.u-s-p-x-109 {
    padding-left: 6.8125rem;
    padding-right: 6.8125rem
}

.u-s-p-y-109 {
    padding-top: 6.8125rem;
    padding-bottom: 6.8125rem
}

.u-s-m-t-110 {
    margin-top: 6.875rem
}

.u-s-m-r-110 {
    margin-right: 6.875rem
}

.u-s-m-b-110 {
    margin-bottom: 6.875rem
}

.u-s-m-l-110 {
    margin-left: 6.875rem
}

.u-s-m-x-110 {
    margin-left: 6.875rem;
    margin-right: 6.875rem
}

.u-s-m-y-110 {
    margin-top: 6.875rem;
    margin-bottom: 6.875rem
}

.u-s-p-t-110 {
    padding-top: 6.875rem
}

.u-s-p-r-110 {
    padding-right: 6.875rem
}

.u-s-p-b-110 {
    padding-bottom: 6.875rem
}

.u-s-p-l-110 {
    padding-left: 6.875rem
}

.u-s-p-x-110 {
    padding-left: 6.875rem;
    padding-right: 6.875rem
}

.u-s-p-y-110 {
    padding-top: 6.875rem;
    padding-bottom: 6.875rem
}

.u-s-m-t-111 {
    margin-top: 6.9375rem
}

.u-s-m-r-111 {
    margin-right: 6.9375rem
}

.u-s-m-b-111 {
    margin-bottom: 6.9375rem
}

.u-s-m-l-111 {
    margin-left: 6.9375rem
}

.u-s-m-x-111 {
    margin-left: 6.9375rem;
    margin-right: 6.9375rem
}

.u-s-m-y-111 {
    margin-top: 6.9375rem;
    margin-bottom: 6.9375rem
}

.u-s-p-t-111 {
    padding-top: 6.9375rem
}

.u-s-p-r-111 {
    padding-right: 6.9375rem
}

.u-s-p-b-111 {
    padding-bottom: 6.9375rem
}

.u-s-p-l-111 {
    padding-left: 6.9375rem
}

.u-s-p-x-111 {
    padding-left: 6.9375rem;
    padding-right: 6.9375rem
}

.u-s-p-y-111 {
    padding-top: 6.9375rem;
    padding-bottom: 6.9375rem
}

.u-s-m-t-112 {
    margin-top: 7rem
}

.u-s-m-r-112 {
    margin-right: 7rem
}

.u-s-m-b-112 {
    margin-bottom: 7rem
}

.u-s-m-l-112 {
    margin-left: 7rem
}

.u-s-m-x-112 {
    margin-left: 7rem;
    margin-right: 7rem
}

.u-s-m-y-112 {
    margin-top: 7rem;
    margin-bottom: 7rem
}

.u-s-p-t-112 {
    padding-top: 7rem
}

.u-s-p-r-112 {
    padding-right: 7rem
}

.u-s-p-b-112 {
    padding-bottom: 7rem
}

.u-s-p-l-112 {
    padding-left: 7rem
}

.u-s-p-x-112 {
    padding-left: 7rem;
    padding-right: 7rem
}

.u-s-p-y-112 {
    padding-top: 7rem;
    padding-bottom: 7rem
}

.u-s-m-t-113 {
    margin-top: 7.0625rem
}

.u-s-m-r-113 {
    margin-right: 7.0625rem
}

.u-s-m-b-113 {
    margin-bottom: 7.0625rem
}

.u-s-m-l-113 {
    margin-left: 7.0625rem
}

.u-s-m-x-113 {
    margin-left: 7.0625rem;
    margin-right: 7.0625rem
}

.u-s-m-y-113 {
    margin-top: 7.0625rem;
    margin-bottom: 7.0625rem
}

.u-s-p-t-113 {
    padding-top: 7.0625rem
}

.u-s-p-r-113 {
    padding-right: 7.0625rem
}

.u-s-p-b-113 {
    padding-bottom: 7.0625rem
}

.u-s-p-l-113 {
    padding-left: 7.0625rem
}

.u-s-p-x-113 {
    padding-left: 7.0625rem;
    padding-right: 7.0625rem
}

.u-s-p-y-113 {
    padding-top: 7.0625rem;
    padding-bottom: 7.0625rem
}

.u-s-m-t-114 {
    margin-top: 7.125rem
}

.u-s-m-r-114 {
    margin-right: 7.125rem
}

.u-s-m-b-114 {
    margin-bottom: 7.125rem
}

.u-s-m-l-114 {
    margin-left: 7.125rem
}

.u-s-m-x-114 {
    margin-left: 7.125rem;
    margin-right: 7.125rem
}

.u-s-m-y-114 {
    margin-top: 7.125rem;
    margin-bottom: 7.125rem
}

.u-s-p-t-114 {
    padding-top: 7.125rem
}

.u-s-p-r-114 {
    padding-right: 7.125rem
}

.u-s-p-b-114 {
    padding-bottom: 7.125rem
}

.u-s-p-l-114 {
    padding-left: 7.125rem
}

.u-s-p-x-114 {
    padding-left: 7.125rem;
    padding-right: 7.125rem
}

.u-s-p-y-114 {
    padding-top: 7.125rem;
    padding-bottom: 7.125rem
}

.u-s-m-t-115 {
    margin-top: 7.1875rem
}

.u-s-m-r-115 {
    margin-right: 7.1875rem
}

.u-s-m-b-115 {
    margin-bottom: 7.1875rem
}

.u-s-m-l-115 {
    margin-left: 7.1875rem
}

.u-s-m-x-115 {
    margin-left: 7.1875rem;
    margin-right: 7.1875rem
}

.u-s-m-y-115 {
    margin-top: 7.1875rem;
    margin-bottom: 7.1875rem
}

.u-s-p-t-115 {
    padding-top: 7.1875rem
}

.u-s-p-r-115 {
    padding-right: 7.1875rem
}

.u-s-p-b-115 {
    padding-bottom: 7.1875rem
}

.u-s-p-l-115 {
    padding-left: 7.1875rem
}

.u-s-p-x-115 {
    padding-left: 7.1875rem;
    padding-right: 7.1875rem
}

.u-s-p-y-115 {
    padding-top: 7.1875rem;
    padding-bottom: 7.1875rem
}

.u-s-m-t-116 {
    margin-top: 7.25rem
}

.u-s-m-r-116 {
    margin-right: 7.25rem
}

.u-s-m-b-116 {
    margin-bottom: 7.25rem
}

.u-s-m-l-116 {
    margin-left: 7.25rem
}

.u-s-m-x-116 {
    margin-left: 7.25rem;
    margin-right: 7.25rem
}

.u-s-m-y-116 {
    margin-top: 7.25rem;
    margin-bottom: 7.25rem
}

.u-s-p-t-116 {
    padding-top: 7.25rem
}

.u-s-p-r-116 {
    padding-right: 7.25rem
}

.u-s-p-b-116 {
    padding-bottom: 7.25rem
}

.u-s-p-l-116 {
    padding-left: 7.25rem
}

.u-s-p-x-116 {
    padding-left: 7.25rem;
    padding-right: 7.25rem
}

.u-s-p-y-116 {
    padding-top: 7.25rem;
    padding-bottom: 7.25rem
}

.u-s-m-t-117 {
    margin-top: 7.3125rem
}

.u-s-m-r-117 {
    margin-right: 7.3125rem
}

.u-s-m-b-117 {
    margin-bottom: 7.3125rem
}

.u-s-m-l-117 {
    margin-left: 7.3125rem
}

.u-s-m-x-117 {
    margin-left: 7.3125rem;
    margin-right: 7.3125rem
}

.u-s-m-y-117 {
    margin-top: 7.3125rem;
    margin-bottom: 7.3125rem
}

.u-s-p-t-117 {
    padding-top: 7.3125rem
}

.u-s-p-r-117 {
    padding-right: 7.3125rem
}

.u-s-p-b-117 {
    padding-bottom: 7.3125rem
}

.u-s-p-l-117 {
    padding-left: 7.3125rem
}

.u-s-p-x-117 {
    padding-left: 7.3125rem;
    padding-right: 7.3125rem
}

.u-s-p-y-117 {
    padding-top: 7.3125rem;
    padding-bottom: 7.3125rem
}

.u-s-m-t-118 {
    margin-top: 7.375rem
}

.u-s-m-r-118 {
    margin-right: 7.375rem
}

.u-s-m-b-118 {
    margin-bottom: 7.375rem
}

.u-s-m-l-118 {
    margin-left: 7.375rem
}

.u-s-m-x-118 {
    margin-left: 7.375rem;
    margin-right: 7.375rem
}

.u-s-m-y-118 {
    margin-top: 7.375rem;
    margin-bottom: 7.375rem
}

.u-s-p-t-118 {
    padding-top: 7.375rem
}

.u-s-p-r-118 {
    padding-right: 7.375rem
}

.u-s-p-b-118 {
    padding-bottom: 7.375rem
}

.u-s-p-l-118 {
    padding-left: 7.375rem
}

.u-s-p-x-118 {
    padding-left: 7.375rem;
    padding-right: 7.375rem
}

.u-s-p-y-118 {
    padding-top: 7.375rem;
    padding-bottom: 7.375rem
}

.u-s-m-t-119 {
    margin-top: 7.4375rem
}

.u-s-m-r-119 {
    margin-right: 7.4375rem
}

.u-s-m-b-119 {
    margin-bottom: 7.4375rem
}

.u-s-m-l-119 {
    margin-left: 7.4375rem
}

.u-s-m-x-119 {
    margin-left: 7.4375rem;
    margin-right: 7.4375rem
}

.u-s-m-y-119 {
    margin-top: 7.4375rem;
    margin-bottom: 7.4375rem
}

.u-s-p-t-119 {
    padding-top: 7.4375rem
}

.u-s-p-r-119 {
    padding-right: 7.4375rem
}

.u-s-p-b-119 {
    padding-bottom: 7.4375rem
}

.u-s-p-l-119 {
    padding-left: 7.4375rem
}

.u-s-p-x-119 {
    padding-left: 7.4375rem;
    padding-right: 7.4375rem
}

.u-s-p-y-119 {
    padding-top: 7.4375rem;
    padding-bottom: 7.4375rem
}

.u-s-m-t-120 {
    margin-top: 7.5rem
}

.u-s-m-r-120 {
    margin-right: 7.5rem
}

.u-s-m-b-120 {
    margin-bottom: 7.5rem
}

.u-s-m-l-120 {
    margin-left: 7.5rem
}

.u-s-m-x-120 {
    margin-left: 7.5rem;
    margin-right: 7.5rem
}

.u-s-m-y-120 {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem
}

.u-s-p-t-120 {
    padding-top: 7.5rem
}

.u-s-p-r-120 {
    padding-right: 7.5rem
}

.u-s-p-b-120 {
    padding-bottom: 7.5rem
}

.u-s-p-l-120 {
    padding-left: 7.5rem
}

.u-s-p-x-120 {
    padding-left: 7.5rem;
    padding-right: 7.5rem
}

.u-s-p-y-120 {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem
}

html {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html.boxed {
    background-color: #eee
}

*,
::after,
::before {
    box-sizing: inherit
}

body {
    color: #000 !important;
    line-height: 1.5;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased
}

.config {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0
}

h1 {
    font-size: 50px;
    line-height: 50px
}

h2 {
    font-size: 32px;
    line-height: 46px
}

h3 {
    font-size: 18px;
    line-height: 32px
}

h4 {
    font-size: 16px;
    line-height: 30px
}

h5 {
    font-size: 15px;
    line-height: 30px
}

p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px
}

a,
a:focus,
a:hover {
    outline: 0;
    text-decoration: none;
    cursor: pointer
}

img {
    border: 0
}

img:focus {
    outline: 0
}

iframe {
    border: none;
    overflow: hidden
}

iframe[src*=soundcloud] {
    width: 100%
}

@media (min-width: 576px) {
    html.boxed body {
        background-color: #fff;
        margin: 0 auto
    }
}

@media (min-width: 576px) {
    html.boxed body {
        max-width: 546px
    }
}

@media (min-width: 791px) {
    html.boxed body {
        max-width: 770px
    }
}

@media (min-width: 1025px) {
    html.boxed body {
        max-width: 990px
    }
}

@media (min-width: 1230px) {
    html.boxed body {
        max-width: 1200px
    }
}

@media (max-width: 799px) {
    html.boxed header .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width: 1025px) {
    html.boxed header .container {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media (min-width: 576px) {

    html.boxed footer,
    html.boxed header {
        margin-right: auto;
        margin-left: auto;
        width: 100%
    }
}

@media (min-width: 576px) {

    html.boxed footer,
    html.boxed header {
        max-width: 456px
    }
}

@media (min-width: 791px) {

    html.boxed footer,
    html.boxed header {
        max-width: 770px
    }
}

@media (min-width: 1025px) {

    html.boxed footer,
    html.boxed header {
        max-width: 990px
    }
}

@media (min-width: 1230px) {

    html.boxed footer,
    html.boxed header {
        max-width: 1200px
    }
}

@media (min-width: 576px) {
    html.boxed .app-content {
        margin: 0 auto;
        overflow: hidden
    }
}

@media (min-width: 576px) {
    html.boxed .app-content {
        max-width: 546px
    }
}

@media (min-width: 791px) {
    html.boxed .app-content {
        max-width: 770px
    }
}

@media (min-width: 1025px) {
    html.boxed .app-content {
        max-width: 990px
    }
}

@media (min-width: 1230px) {
    html.boxed .app-content {
        max-width: 1200px
    }
}

@media (max-width: 799px) {
    html.boxed .app-content .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width: 1025px) {
    html.boxed .app-content .container {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media (max-width: 799px) {
    html.boxed footer .container {
        padding-left: 20px;
        padding-right: 20px
    }
}

@media (min-width: 1025px) {
    html.boxed footer .container {
        padding-left: 40px;
        padding-right: 40px
    }
}

body {
    color: #7f7f7f;
    font-family: "Open Sans", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
}

.no-js #app {
    display: none
}

.app-setting {
    background-color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    position: fixed;
    z-index: 1000001;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.app-setting__wrap {
    text-align: center;
    padding: 2.1875rem;
    background-color: #fbfbfb;
    border-left: .1875rem solid #ff4500
}

.app-setting__h1 {
    font-size: 2.0625rem;
    font-weight: 700;
    line-height: 42px;
    color: #333
}

.app-setting__text {
    font-size: .8125rem;
    color: #ababab
}

.preloader.is-active {
    width: 100%;
    text-align: center;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000000;
    background: #fff;
    display: block
}

.preloader {
    display: none
}

.preloader__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%
}

.preloader__img {
    display: block
}

.row--center {
    -ms-flex-pack: center;
    justify-content: center
}

.fluid-width-video-wrapper {
    background-color: #f5f5f5
}

.s-fb--color-hover:hover {
    color: #4267b2
}

.s-fb--color {
    color: #4267b2
}

.s-tw--color-hover:hover {
    color: #38a1f3
}

.s-tw--color {
    color: #38a1f3
}

.s-insta--color-hover:hover {
    color: #f77737
}

.s-insta--color {
    color: #f77737
}

.s-youtube--color-hover:hover {
    color: #ed3833
}

.s-youtube--color {
    color: #ed3833
}

.s-gplus--color-hover:hover {
    color: #dd4b39
}

.s-gplus--color {
    color: #dd4b39
}

.s-wa--color {
    color: #25d366
}

.s-wa--color-hover:hover {
    color: #25d366
}

.gl-rating-style>i {
    margin-left: 2px;
    color: #ff9600
}

.gl-rating-style>i:first-child {
    margin-left: 0
}

.gl-rating-style-2>i {
    margin-left: 2px;
    color: #ff4500
}

.gl-rating-style-2>i:first-child {
    margin-left: 0
}

.gl-s-api {
    width: 80%;
    margin: 0 auto
}

.gl-s-api__btn {
    border: none;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: background-color .5s linear
}

.gl-s-api__btn:focus {
    outline: 0
}

.gl-s-api__btn span {
    margin-left: 10px
}

.gl-s-api__btn--fb {
    background-color: #4267b2
}

.gl-s-api__btn--fb:hover {
    background-color: #3b5c9f
}

.gl-s-api__btn--gplus {
    background-color: #dd4b39
}

.gl-s-api__btn--gplus:hover {
    background-color: #d73925
}

.gl-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center
}

.gl-inline div {
    -ms-flex: 1;
    flex: 1;
    margin-right: 14px
}

.gl-inline div:last-child {
    margin-right: 0
}

.gl-l-r {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.gl-link {
    font-size: 13px;
    font-weight: 600;
    color: #ff4500;
    transition: color .5s linear
}

.gl-link:hover {
    color: #fa4400
}

.gl-h1 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px
}

.gl-text {
    display: block;
    color: #333;
    font-size: 13px
}

.gl-label {
    margin-bottom: 8px;
    display: block;
    color: #333;
    font-size: 13px;
    font-weight: 600
}

.gl-modal-h1 {
    margin-bottom: 8px;
    line-height: 1;
    display: block;
    color: #333;
    font-size: 20px;
    font-weight: 600
}

.gl-modal-text {
    color: #333;
    font-size: 13px
}

@media (max-width: 575px) {
    .gl-inline {
        display: block
    }

    .gl-inline div {
        display: block;
        margin-right: 0
    }

    .gl-l-r {
        display: block
    }
}

@-webkit-keyframes mypulse {
    0% {
        box-shadow: 0 0 0 0 #bdc3c7
    }

    100% {
        box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0)
    }
}

@keyframes mypulse {
    0% {
        box-shadow: 0 0 0 0 #bdc3c7
    }

    100% {
        box-shadow: 0 0 0 1.5em rgba(189, 195, 199, 0)
    }
}

.u-c-brand {
    color: #ff4500 !important
}

.u-c-secondary {
    color: #333 !important
}

.u-c-white {
    color: #fff !important
}

.u-c-black {
    color: #000 !important
}

.u-c-grey {
    color: #7f7f7f !important
}

.u-d-block {
    display: block
}

.u-w-100 {
    width: 100%
}

.u-h-100 {
    height: 100%
}

.u-img-fluid {
    width: 100%;
    max-width: 100%;
    height: auto
}

.breadcrumb__wrap {
    background-color: #fbfbfb;
    padding: 1.125rem;
    border-radius: .1875rem
}

.breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    word-wrap: break-word
}

.breadcrumb__list>li {
    display: inline-block
}

.breadcrumb__list>li>a {
    color: #333;
    font-size: 13px;
    font-weight: 700;
    transition: color .5s
}

.breadcrumb__list>li>a:hover {
    color: #333
}

.breadcrumb__list>li.is-marked>a {
    color: #333
}

.breadcrumb__list>li.has-separator:after {
    content: '/';
    margin: 0 16px
}

.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    font-size: 14px
}

.btn:focus {
    outline: 0
}

.btn--icon {
    border: none;
    background-color: transparent;
    padding: 0
}

.btn--e-brand {
    color: #fff;
    border: 1px solid transparent;
    background-color: #ff4500;
    transition: background-color .5s ease-in
}

.btn--e-brand:hover {
    background-color: #fa4400
}

.btn--e-brand-b-2 {
    color: #fff;
    background-color: #ff4500;
    border: 2px solid #ff4500;
    transition: background-color .5s ease-in, border-color .5s ease-in
}

.btn--e-brand-b-2:hover {
    background-color: #fa4400;
    border-color: #fa4400
}

.btn--e-grey-b-2 {
    color: #333;
    background-color: #f5f5f5;
    border: 2px solid #f5f5f5;
    transition: background-color .5s ease-in, border-color .5s ease-in
}

.btn--e-grey-b-2:hover {
    background-color: #f2f2f2;
    border-color: #f2f2f2
}

.btn--e-secondary {
    color: #fff;
    border: 1px solid transparent;
    background-color: #333;
    transition: background-color .5s ease-in
}

.btn--e-secondary:hover {
    background-color: #303030
}

.btn--e-white-brand {
    border: 1px solid transparent;
    color: #333;
    background-color: #fff;
    transition: background-color .3s linear, color .3s linear
}

.btn--e-white-brand:hover {
    background-color: #ff4500;
    color: #fff
}

.btn--e-transparent-brand-b-2 {
    color: #ff4500;
    border: 2px solid #ff4500;
    background-color: transparent;
    transition: border-color .5s ease-in
}

.btn--e-transparent-brand-b-2:hover {
    border-color: #fa4400
}

.btn--e-transparent-hover-brand-b-2 {
    color: #ff4500;
    border: 2px solid #ff4500;
    background-color: transparent;
    transition: background-color .1s ease-in, border-color .1s ease-in
}

.btn--e-transparent-hover-brand-b-2:hover {
    background-color: #ff4500;
    color: #fff
}

.btn--e-transparent-secondary-b-2 {
    color: #333;
    border: 2px solid #333;
    background-color: transparent;
    transition: border-color .5s ease-in
}

.btn--e-transparent-secondary-b-2:hover {
    border-color: #303030
}

.btn--e-white-brand-shadow {
    border: 1px solid #eee;
    box-shadow: 1px 2px 8px 0 rgba(36, 37, 38, .08);
    background-color: #fff;
    color: #333;
    transition: background-color .3s linear, border-color .3s linear, color .3s linear
}

.btn--e-white-brand-shadow:hover {
    border-color: #ff4500;
    background-color: #ff4500;
    color: #fff
}

.btn--e-brand-shadow {
    border: 1px solid #ff4500;
    box-shadow: 1px 2px 8px 0 rgba(36, 37, 38, .08);
    background-color: #ff4500;
    color: #fff;
    transition: background-color .3s linear, border-color .3s linear
}

.btn--e-brand-shadow:hover {
    border-color: #fa4400;
    background-color: #fa4400
}

.countdown--style-banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center
}

.countdown--style-banner .countdown__content {
    margin: 0 10px 10px;
    text-align: center;
    padding: 5px 24px;
    background-color: #333
}

.countdown--style-banner .countdown__value {
    font-size: 48px;
    font-weight: 600;
    display: block;
    color: #fff
}

.countdown--style-banner .countdown__key {
    font-size: 12px;
    font-weight: 600;
    display: block;
    color: #fff
}

.countdown--style-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.countdown--style-section .countdown__content {
    margin: 18px 20px 20px 0;
    padding: 8px 22px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .06);
    background-color: rgba(255, 255, 255, .98)
}

.countdown--style-section .countdown__value {
    font-size: 26px;
    font-weight: 600;
    display: block;
    color: #333
}

.countdown--style-section .countdown__key {
    font-size: 10px;
    font-weight: 600;
    display: block;
    color: #ff4500
}

.input-text {
    font-size: 12px;
    background-clip: padding-box;
    padding: 0 18px;
    height: 40px
}

.input-text--border-radius {
    border-radius: 25px
}

.input-text--primary-style {
    color: #333;
    transition: all .6s linear;
    border: 2px solid transparent;
    background-color: #f1f1f1
}

.input-text--primary-style:focus {
    background-color: transparent;
    border-color: #ff4500
}

.input-text--style-1 {
    color: #5c636c;
    transition: all .6s linear;
    border: 1px solid transparent;
    background-color: #f1f1f1
}

.input-text--style-1:focus {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .1);
    background-color: transparent;
    border-color: #eee
}

.input-text--style-2 {
    color: #5c636c;
    border: 1px solid transparent;
    background-color: #f1f1f1;
    transition: all .6s linear
}

.input-text--style-2:focus {
    background-color: #fff
}

.input-text:focus {
    outline: 0
}

.input-text:disabled {
    background-color: #cecece
}

input::-ms-clear {
    display: none
}

.aspect {
    position: relative
}

.aspect--bg-grey {
    background-color: #f5f5f5
}

.aspect--bg-grey-fb {
    background-color: #fbfbfb
}

.aspect--square {
    padding-bottom: 100%
}

.aspect__img {
    position: absolute;
    width: 100%;
    height: 100%
}

.product-o {
    padding: 20px;
    background-color: #fff
}

.product-o--hover-off {
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, .1)
}

.product-o--radius {
    border-radius: 14px
}

.product-o--hover-on {
    transition: all .4s ease-in-out
}

.product-o--hover-on:hover {
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, .1)
}

.product-o:hover .product-o__wrap:before {
    opacity: 1
}

.product-o:hover .product-o__action-wrap {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1)
}

.product-o:hover .product-o__action-list>li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.product-o__wrap {
    position: relative
}

.product-o__wrap:before {
    content: "";
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
}

.product-o__action-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%) scale(.8);
    transform: translateY(-50%) scale(.8);
    transition: all .2s ease 0s
}

.product-o__action-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none
}

.product-o__action-list>li {
    margin: 0 4px 6px;
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    transition: all .3s ease .1s
}

.product-o__action-list>li>a {
    display: block;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    height: 35px;
    line-height: 35px;
    background-color: rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 12px;
    transition: all .3s ease 0s
}

.product-o__action-list>li>a:hover {
    background-color: #333;
    color: #fff
}

.product-o__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.product-o__name>a:hover {
    color: #ff4500
}

.product-o__rating {
    margin-bottom: 4px
}

.product-o__rating i {
    font-size: 12px
}

.product-o__review {
    margin-left: 4px;
    font-size: 12px;
    color: #333
}

.product-o__price {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600
}

.product-o__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #333;
    font-size: 14px;
    text-decoration: line-through
}

.product-o__countdown-wrap {
    margin-top: 16px
}

.x-product {
    padding: 20px;
    border-radius: 6px;
    transition: -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .06)
}

.x-product .row {
    -ms-flex-align: center;
    align-items: center
}

.x-product:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
}

.product-l {
    display: -ms-flexbox;
    display: flex
}

.product-l__img-wrap {
    margin-right: 20px
}

.product-l__rating i {
    font-size: 12px
}

.product-l__link {
    width: 110px;
    height: 110px
}

.product-l__name {
    display: block;
    margin-bottom: 4px
}

.product-l__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.product-l__name>a:hover {
    color: #ff4500
}

.product-l__price {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600
}

.product-l__discount {
    font-weight: 600;
    margin-left: 15px;
    color: #ff4500;
    font-size: 14px;
    text-decoration: line-through
}

.product-o2 {
    background-color: #fff;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .06)
}

.product-o2__wrap {
    position: relative;
    overflow: hidden
}

.product-o2__action-wrap {
    position: absolute;
    z-index: 2;
    opacity: 0;
    transition: all .6s linear;
    left: 20px;
    top: 20px
}

.product-o2__action-list {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none
}

.product-o2__action-list>li {
    margin-bottom: 6px
}

.product-o2__action-list>li>a {
    display: inline-block;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    height: 35px;
    line-height: 35px;
    background-color: #ff4500;
    color: #fff;
    font-size: 12px;
    transition: all .3s ease .1s
}

.product-o2__action-list>li>a:hover {
    background-color: #fff;
    color: #ff4500
}

.product-o2__action-list>li:last-child {
    margin-bottom: 0
}

.product-o2__countdown-wrap {
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .6);
    width: 60px;
    height: 100%
}

.product-o2__img {
    transition: all .6s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.product-o2__content {
    padding: 10px
}

.product-o2__name {
    display: block
}

.product-o2__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.product-o2__name>a:hover {
    color: #ff4500
}

.product-o2__rating {
    margin-bottom: 4px
}

.product-o2__rating i {
    font-size: 12px
}

.product-o2__review {
    margin-left: 4px;
    font-size: 12px;
    color: #333
}

.product-o2__price {
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600
}

.product-o2__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #333;
    font-size: 14px;
    text-decoration: line-through
}

.product-o2:hover .product-o2__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.product-o2:hover .product-o2__action-wrap {
    opacity: 1
}

.product-r {
    border-radius: 15px;
    overflow: hidden;
    background-color: #fff;
    transition: -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    box-shadow: 2px 2px 8px 3px rgba(36, 37, 38, .08)
}

.product-r__container {
    position: relative
}

.product-r__action-wrap {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    z-index: 2;
    -webkit-transform: translateY(-50%) scale(.8);
    transform: translateY(-50%) scale(.8);
    transition: all .2s ease 0s
}

.product-r__action-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none
}

.product-r__action-list>li {
    margin: 0 4px 6px;
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    transition: all .3s ease .1s
}

.product-r__action-list>li>a {
    display: block;
    width: 35px;
    text-align: center;
    border-radius: 50%;
    height: 35px;
    line-height: 35px;
    background-color: #fff;
    color: #ff4500;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .06);
    font-size: 12px;
    transition: all .3s ease 0s
}

.product-r__action-list>li>a:hover {
    background-color: #fff;
    color: #ff4500
}

.product-r__info-wrap {
    padding: 14px
}

.product-r__n-p-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 6px
}

.product-r__name,
.product-r__price {
    -ms-flex: 0 1 auto
}

.product-r__name {
    display: block
}

.product-r__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.product-r__name>a:hover {
    color: #ff4500
}

.product-r__price {
    display: block;
    font-weight: 600;
    color: #ff4500;
    font-size: 16px
}

.product-r__description {
    margin-bottom: 6px;
    display: block;
    color: #7f7f7f;
    font-size: 12px
}

.product-r:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
}

.product-r:hover .product-r__action-wrap {
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1)
}

.product-r:hover .product-r__action-list>li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.check-box [type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.radio-box [type=radio] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.check-box {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 1
}

.check-box__label {
    position: initial;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-left: 24px;
    white-space: normal
}

.check-box__label:after,
.check-box__label:before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid transparent;
    z-index: 0;
    transition: all .5s ease;
    position: absolute;
    left: 0;
    top: 0
}

.check-box__label:before {
    background-color: #f1f1f1
}

.check-box__label:after {
    -webkit-transform: scale(.6);
    transform: scale(.6)
}

.radio-box {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    line-height: 1
}

.radio-box__label {
    position: initial;
    display: inline-block;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    white-space: normal;
    margin-left: 24px
}

.radio-box__label:after,
.radio-box__label:before {
    content: '';
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    border: 2px solid transparent;
    z-index: 0;
    transition: all .5s ease;
    position: absolute;
    left: 0;
    top: 0
}

.radio-box__label:before {
    background-color: #f1f1f1
}

.radio-box__label:after {
    -webkit-transform: scale(.6);
    transform: scale(.6)
}

.dismiss-button {
    z-index: 2;
    position: absolute;
    top: 0;
    right: -50px;
    background-color: transparent;
    padding: 8px;
    font-size: 24px;
    border: 0;
    color: #fff;
    cursor: pointer;
    transition: color 110ms ease-in-out
}

.dismiss-button:hover {
    color: #ff4500
}

.d-modal__form {
    width: 100%
}

.d-modal__form .btn {
    padding: 14px 46px;
    font-size: 12px;
    font-weight: 600
}

.d-modal__form a {
    font-size: 15px;
    font-weight: 600;
    color: #ff4500;
    transition: color 110ms ease-in-out
}

.d-modal__form a:hover {
    color: #7f7f7f
}

.checkout-modal1__form,
.checkout-modal2__form {
    width: 100%
}

.checkout-modal1__form .btn,
.checkout-modal1__form .input-text,
.checkout-modal2__form .btn,
.checkout-modal2__form .input-text {
    border-radius: 6px
}

.checkout-modal1__form .input-text,
.checkout-modal2__form .input-text {
    width: 100%
}

.checkout-modal1__form .btn,
.checkout-modal2__form .btn {
    font-weight: 600;
    padding: 16px 46px
}

#add-to-cart .modal-dialog {
    width: 90%;
    max-width: 550px
}

#add-to-cart .row {
    -ms-flex-align: center;
    align-items: center
}

.success {
    text-align: center
}

.success__text-wrap {
    margin-bottom: 18px
}

.success__text-wrap i {
    margin-right: 8px;
    font-size: 16px;
    color: #ff4500
}

.success__text-wrap span {
    font-weight: 700;
    font-size: 14px;
    color: #333
}

.success__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px
}

.success__img-wrap img {
    min-width: 120px
}

.success__name {
    display: block;
    margin: 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333
}

.success__quantity {
    margin-bottom: 4px;
    display: block;
    font-size: 12px;
    color: #333
}

.success__price {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #ff4500
}

.s-option {
    text-align: center
}

.s-option__text {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    color: #333
}

.s-option__link-box {
    width: 85%;
    margin: 0 auto
}

.s-option__link {
    margin-bottom: 20px;
    display: block;
    padding: 12px 8px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 13px
}

.new-l--center {
    text-align: center
}

#newsletter-modal .modal-dialog {
    width: 100%;
    max-width: 990px
}

#newsletter-modal .modal-body {
    padding: 0
}

#newsletter-modal .new-l__dismiss {
    z-index: 2;
    position: absolute;
    top: 0;
    right: 10px;
    background-color: transparent;
    padding: 8px;
    font-size: 16px;
    border: 0;
    color: #515151;
    cursor: pointer
}

#newsletter-modal .row {
    -ms-flex-align: center;
    align-items: center
}

.new-l__img-wrap {
    background-color: #f5f5f5;
    position: relative
}

.new-l__img-wrap:before {
    transition: all .6s linear;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, .4)
}

.new-l__img-wrap:hover:before {
    opacity: 1
}

.new-l__h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #333
}

.new-l__p1 {
    font-size: 14px;
    line-height: 21px
}

.new-l__p2 {
    font-size: 12px;
    color: #333
}

.new-l__link {
    font-size: 13px;
    color: #7f7f7f;
    transition: all .3s
}

.new-l__link:hover {
    color: #ff4500;
    text-decoration: underline
}

.new-l__form {
    width: 100%
}

.new-l__form .btn {
    width: 100%
}

.new-l__form .btn {
    padding: 13px 30px;
    font-size: 14px;
    font-weight: 600
}

@media (max-width: 991px) {
    .new-l__col-1 {
        display: none
    }
}

.header-wrapper {
    position: relative
}

.header--style-1 {
    background-color: #fff
}

.header--style-2 {
    background-color: #242424
}

.header--style-3 {
    position: absolute;
    width: 100%;
    background-color: transparent;
    z-index: 2
}

.header--box-shadow {
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, .07)
}

.primary-nav-wrapper--border {
    border-bottom: 1px solid #f8f8f8
}

.primary-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    height: 80px;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.main-logo {
    display: inline-block;
    vertical-align: top
}

.main-logo img {
    display: block
}

.main-form {
    position: relative;
    width: 35%
}

#main-search {
    padding: 0 36px 0 18px;
    width: 100%
}

.main-search-button {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 18px
}

.secondary-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 991px) {
    .header--style-3 {
        position: relative;
        background-color: #242424
    }
}

.outer-footer {
    padding: 80px 0;
    background-color: #000
}

.outer-footer__content-title {
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px
}

.outer-footer__logo-wrap {
    margin-bottom: 4px
}

.outer-footer__text-wrap {
    margin-bottom: 6px
}

.outer-footer__text-wrap>i {
    margin-right: 6px;
    font-size: 14px;
    color: #fff
}

.outer-footer__text-wrap span {
    font-size: 14px;
    color: #fff
}

.outer-footer__social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.outer-footer__social ul>li {
    margin-right: 16px
}

.outer-footer__social ul>li>a {
    font-size: 14px;
    color: #fff;
    transition: color .6s
}

.outer-footer__social ul>li:last-child {
    margin-right: 0
}

.outer-footer__list-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none
}

.outer-footer__list-wrap ul>li {
    margin-bottom: 8px
}

.outer-footer__list-wrap ul>li>a {
    transition: color .6s;
    color: #fff;
    font-size: 14px
}

.outer-footer__list-wrap ul>li>a:hover {
    color: #ff4500
}

.outer-footer__list-wrap ul>li:last-child {
    margin-bottom: 0
}

.newsletter__btn {
    position: absolute;
    padding: 14px;
    right: 0;
    font-weight: 600;
    font-size: 12px;
    top: 50%;
    border: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.newsletter__text {
    margin-top: 10px;
    display: block;
    color: #fff;
    font-size: 14px
}

.newsletter__radio {
    margin-right: 20px
}

.newsletter__radio .radio-box__label {
    color: #fff
}

.newsletter__radio:last-child {
    margin-right: 0
}

#newsletter {
    width: 100%;
    padding: 0 100px 0 18px
}

.lower-footer {
    background-color: #000;
    padding: 20px 0
}

.lower-footer__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.lower-footer__copyright {
    -ms-flex: 0 1 auto
}

.lower-footer__copyright span {
    font-size: 13px;
    color: #fff
}

.lower-footer__copyright a {
    margin: 0 1px;
    font-size: 13px;
    color: #ff4500;
    transition: color .6s
}

.lower-footer__copyright a:hover {
    color: #ff4500
}

.lower-footer__img img {
    display: block
}

@media (max-width: 767px) {
    .lower-footer__content {
        -ms-flex-pack: center;
        justify-content: center
    }

    .lower-footer__copyright {
        margin-bottom: 8px
    }
}

.fixed-list {
    position: fixed;
    top: 50%;
    right: 10px;
    z-index: 99;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.fixed-list>ul {
    display: block;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border-radius: 1.5625rem
}

.fixed-list>ul>li>a {
    color: #333;
    text-align: center;
    font-size: 14px;
    padding: 14px
}

.fixed-list>ul>li>a.active {
    background-color: #ff4500;
    color: #fff
}

.fixed-list>ul>li:first-child>a {
    border-top-left-radius: 1.5625rem;
    border-top-right-radius: 1.5625rem
}

.fixed-list>ul>li:last-child>a {
    border-bottom-left-radius: 1.5625rem;
    border-bottom-right-radius: 1.5625rem
}

.white-container {
    width: 1220px;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto
}

.block {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 4px 0;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e7e7e7
}

.block__title {
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px
}

.tab-list {
    margin: 0;
    padding: 0
}

.tab-list>li {
    margin-right: 8px;
    margin-bottom: 12px
}

.tab-list>li>a {
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 16px;
    color: #333
}

.tab-list>li>a.active {
    border-color: #ff4500;
    background-color: #ff4500;
    color: #fff
}

.tab-list>li:last-child {
    margin-right: 0
}

.i3-banner {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer
}

.i3-banner:before {
    transition: all .6s linear;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, .4)
}

.i3-banner__img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .6s ease-in-out
}

.i3-banner:hover:before {
    opacity: 1
}

.i3-banner:hover .i3-banner__img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.aspect--1048-334 {
    padding-bottom: 31.87023%
}

.section__text-wrap {
    text-align: center
}

.section__content {
    position: relative
}

.section__heading {
    font-weight: 600;
    letter-spacing: -.02rem;
    font-size: 28px;
    position: relative
}

.section__span {
    font-size: 13px;
    display: block
}

.aspect--1286-890 {
    padding-bottom: 69.20684%
}

.banner-bg {
    padding: 7em 0;
    position: relative;
    background: #f5f5f5 url(https://webbazarbd.com/show-panel/script/images/banners/banner-bg.jpg) repeat fixed center center;
    background-size: cover
}

.banner-bg__wrap {
    text-align: center
}

.banner-bg__text-block {
    display: block
}

.banner-bg__text-1 {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 58px
}

.banner-bg__text-2 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 31px
}

.banner-bg__text-3 {
    margin-bottom: 18px;
    font-size: 14px
}

.column-product__title {
    display: block;
    font-size: 18px;
    font-weight: 600
}

.column-product__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.column-product__item {
    margin-bottom: 30px
}

.column-product__item:last-child {
    margin-bottom: 0
}

.new-brand-slider {
    position: relative
}

#brand-slider {
    position: static
}

@media (max-width: 991px) {
    .block {
        display: block
    }

    .success__img-wrap,
    .success__info-wrap {
        display: none
    }
}

.about {
    background-color: #fff;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, .07)
}

.about__container {
    padding: 60px
}

.about__info {
    text-align: center
}

.about__h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 24px
}

.about .about__p-wrap {
    position: relative;
    margin-bottom: 20px
}

.about .about__p-wrap:after,
.about .about__p-wrap:before {
    content: '';
    display: block;
    width: 70px;
    position: absolute;
    border: solid #ff4500
}

.about .about__p-wrap:before {
    top: -10px;
    left: -8px;
    border-top-width: 1px
}

.about .about__p-wrap:after {
    bottom: -10px;
    right: -8px;
    border-bottom-width: 1px
}

.about__p {
    color: #333
}

.about__link {
    display: inline-block;
    padding: 12px 42px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 12px
}

.testimonial {
    text-align: center
}

.testimonial__img-wrap {
    margin-bottom: 16px
}

.testimonial__author {
    display: block;
    font-size: 13px;
    color: #333
}

.testimonial .testimonial__img-wrap .testimonial__img {
    display: inline-block;
    width: 165px;
    height: 165px;
    border-radius: 50%
}

.contact-o {
    background-color: #fff;
    padding: 23px;
    transition: -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    transition: transform .3s cubic-bezier(.68, -.55, .265, 1.55), -webkit-transform .3s cubic-bezier(.68, -.55, .265, 1.55);
    border: 2px solid #f5f5f5;
    box-shadow: 0 6px 15px 0 rgba(36, 37, 38, .08)
}

.contact-o:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
}

.contact-o__wrap {
    text-align: center
}

.contact-o__icon {
    margin-bottom: 10px
}

.contact-o__icon>i {
    color: #ff4500;
    font-size: 48px
}

.contact-o__info-text-1 {
    display: block;
    font-size: 17px;
    margin-bottom: 4px;
    color: #333;
    font-weight: 600;
    text-transform: uppercase
}

.contact-o__info-text-2 {
    font-size: 12px;
    margin-bottom: 2px;
    display: block;
    color: #7f7f7f
}

.contact-f {
    width: 100%
}

.contact-f .input-text {
    border-radius: 6px;
    width: 100%
}

.contact-f .btn {
    padding: 19px 21px;
    border-radius: 25px
}

.table-p {
    width: 100%;
    border: 1px solid #eee;
    border-collapse: collapse
}

.table-p tr {
    position: relative;
    border-top: 1px solid #eee
}

.table-p td {
    padding: 20px
}

.table-p__box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center
}

.table-p__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px
}

.table-p__img-wrap img {
    display: block;
    min-width: 120px
}

.table-p__info {
    margin-left: 18px
}

.table-p__name {
    display: block
}

.table-p__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.table-p__name>a:hover {
    color: #ff4500
}

.table-p__price {
    text-align: center;
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 600
}

.table-p__del-wrap {
    text-align: center
}

.w-r {
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 1px 1px 6px 0 rgba(0, 0, 0, .07)
}

.w-r__container {
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.w-r__wrap-1,
.w-r__wrap-2 {
    -ms-flex: 0 1 auto
}

.w-r__wrap-1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.w-r__img-wrap {
    display: inline-block;
    vertical-align: middle;
    background-color: #f5f5f5;
    width: 120px;
    height: 120px
}

.w-r__img-wrap img {
    display: block;
    min-width: 120px
}

.w-r__info {
    margin-left: 18px
}

.w-r__name {
    display: block
}

.w-r__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.w-r__name>a:hover {
    color: #ff4500
}

.w-r__price {
    display: block;
    color: #ff4500;
    font-size: 14px;
    font-weight: 600
}

.w-r__discount {
    font-weight: 600;
    margin-left: 12px;
    color: #333;
    font-size: 14px;
    text-decoration: line-through
}

.w-r__link {
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    border-radius: 5px;
    margin: 0 0 10px 10px;
    padding: 12px 30px
}

.f-cart__table {
    width: 100%;
    border-collapse: collapse
}

.f-cart__table td {
    color: #333;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0
}

.f-cart__table td:first-child {
    text-align: left
}

.f-cart__table td {
    text-align: right
}

.f-cart__table tr:last-child td {
    font-size: 16px;
    font-weight: 700;
    color: #ff4500
}

.f-cart .btn,
.f-cart .input-text {
    border-radius: 6px;
    width: 100%
}

.f-cart .btn {
    padding: 16px;
    font-weight: 600;
    font-size: 13px
}

@media (max-width: 991px) {
    .w-r__wrap-2 {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

@media (max-width: 767px) {
    .table-p td {
        min-width: 200px
    }

    .w-r__container {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .w-r__wrap-1 {
        -ms-flex-direction: column;
        flex-direction: column
    }

    .w-r__info {
        text-align: center;
        margin: 15px 0 15px
    }

    .w-r__wrap-2 {
        -ms-flex-align: center;
        align-items: center
    }
}

#search-label {
    padding: 0 36px 0 18px;
    width: 100%
}

.l-f__form {
    width: 100%
}

.l-f .input-text {
    width: 100%
}

.l-f .btn,
.l-f .input-text {
    border-radius: 6px
}

.l-f .btn {
    font-weight: 600;
    padding: 12px 18px
}

.c-f__form {
    position: relative;
    width: 50%
}

.c-f .input-text {
    width: 100%
}

.c-f .btn,
.c-f .input-text {
    border-radius: 6px
}

.c-f .btn {
    font-weight: 600;
    padding: 12px 18px
}

.checkout-f {
    width: 100%
}

.checkout-f .btn,
.checkout-f .input-text {
    width: 100%;
    border-radius: 6px
}

.checkout-f .btn {
    font-weight: 600;
    padding: 18px
}

.checkout-f__h1 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px
}

.o-card {
    border: 1px solid #f5f5f5;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px;
    margin-bottom: 22px
}

.o-card:last-child {
    margin-bottom: 0
}

.o-card__flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.o-card__img-wrap {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 60px;
    background-color: #f5f5f5
}

.o-card__img-wrap img {
    display: block;
    min-width: 60px
}

.o-card__info-wrap {
    margin-left: 18px
}

.o-card__name {
    display: block
}

.o-card__name>a {
    color: #333;
    font-size: 13px;
    font-weight: 600;
    transition: color .5s
}

.o-card__name>a:hover {
    color: #ff4500
}

.o-card__quantity {
    font-size: 13px;
    margin-bottom: 2px;
    display: block
}

.o-card__price {
    display: block;
    color: #ff4500;
    font-size: 13px;
    font-weight: 600
}

.o-card__del {
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    color: #333;
    transition: color .5s
}

.o-card__del:hover {
    color: #ff4500
}

@media (max-width: 575px) {
    .o-card__flex {
        display: block;
        padding: 14px;
        text-align: center
    }

    .o-card__info-wrap {
        margin-left: 0
    }
}

.l-f-o {
    border: 1px solid #eee
}

.l-f-o__form {
    width: 100%
}

.l-f-o .btn,
.l-f-o .input-text {
    border-radius: 6px
}

.l-f-o .input-text {
    width: 100%
}

.l-f-o .btn {
    font-weight: 600;
    padding: 12px 18px
}

.l-f-o__create-link {
    font-size: 13px;
    text-align: center;
    padding: 12px;
    display: block;
    font-weight: 600;
    border-radius: 6px
}

.description__container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.description__img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background: #f5f5f5
}

.description__img-wrap img {
    border-radius: 50%;
    display: block;
    min-width: 90px
}

.description-title {
    margin-left: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333
}

.m-order {
    width: 100%
}

.m-order label {
    color: #333;
    font-size: 13px;
    font-weight: 600
}

.m-order__list {
    background-color: #fff
}

@media (max-width: 575px) {
    .description__container {
        display: block
    }

    .description-title {
        margin: 12px 0
    }
}

.post-next,
.post-prev {
    text-align: center;
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    color: #333;
    background-color: #fff;
    box-shadow: 0 6px 15px 0 rgba(36, 37, 38, .08);
    margin: auto 0;
    opacity: 0;
    transition: opacity .6s ease-in
}

.post-prev {
    left: 20px
}

.post-next {
    right: 20px
}

.post-next:before,
.post-prev:before {
    content: '';
    background: rgba(255, 255, 255, .3);
    width: 35px;
    height: 35px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
}

.post-next:hover:before,
.post-prev:hover:before {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
    opacity: .6
}

.post-video-block {
    position: relative;
    background-color: #f5f5f5;
    width: 100%
}

.post-video-link {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 7;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.post-video-link:before {
    width: 3.875rem;
    height: 3.875rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1.9375rem;
    margin-left: -1.9375rem;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    z-index: 3
}

.post-video-link:hover:before {
    box-shadow: 0 0 0 12px rgba(255, 255, 255, .3);
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

.post-video-block .post-video-link:before {
    content: '';
    background: url(https://webbazarbd.com/show-panel/script/video/video-play.png) no-repeat 0 0;
    background-size: contain
}

.post-center-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.aspect--1366-768 {
    padding-bottom: 56.22255%
}

.detail-post {
    max-width: 740px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto
}

.b-l__date {
    font-size: 10px;
    color: #333;
    display: block;
    margin-bottom: 6px
}

.b-l__text {
    font-size: 12px;
    color: #7f7f7f
}

.b-l__h {
    display: block;
    margin-bottom: 6px
}

.b-l__h>a {
    font-size: 12px;
    transition: color 110ms ease-in-out;
    color: #333;
    font-weight: 600
}

.b-l__h>a:hover {
    color: #ff4500
}

.b-l__h-2>a {
    font-size: 12px;
    transition: color 110ms ease-in-out;
    color: #333;
    font-weight: 600
}

.b-l__h-2>a:hover {
    color: #ff4500
}

.b-l__p {
    display: block;
    font-size: 12px;
    color: #7f7f7f
}

.d-meta__text {
    display: block;
    color: #333;
    font-size: 32px;
    font-weight: 700
}

.d-meta__text-2 {
    display: block;
    color: #333;
    font-size: 18px;
    font-weight: 600
}

.d-meta__text-3 {
    display: block;
    color: #7f7f7f;
    font-size: 12px
}

.d-meta__p-comment {
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem
}

.p-comment__wrap1 {
    margin-right: 20px
}

.p-comment__img-wrap {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5
}

.p-comment__author {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #333
}

.pd-breadcrumb__list {
    list-style: none;
    padding: 0;
    margin: 0;
    word-wrap: break-word
}

.pd-breadcrumb__list>li {
    display: inline-block
}

.pd-breadcrumb__list>li>a {
    color: #333;
    font-size: 12px;
    transition: color .5s
}

.pd-breadcrumb__list>li>a:hover {
    color: #333
}

.pd-breadcrumb__list>li.is-marked>a {
    color: #333;
    font-weight: 700
}

.pd-breadcrumb__list>li.has-separator:after {
    content: '-';
    margin: 0 6px
}

.pd {
    cursor: pointer
}

.pd-wrap {
    position: relative
}

.pd-text {
    position: absolute;
    top: 15px;
    padding: 8px;
    right: 15px;
    font-size: 12px;
    color: #333
}

.pd-social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.pd-social-list>li {
    margin-right: 16px
}

.pd-social-list>li:last-child {
    margin-right: 0
}

.pd-social-list>li>a {
    font-size: 1.125rem;
    transition: color 110ms ease-in-out;
    color: #333
}

.pd-detail__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333
}

.pd-detail__inline span {
    margin-right: .375rem
}

.pd-detail__inline span:last-child {
    margin-right: 0
}

.pd-detail-inline-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: center;
    align-items: center
}

.pd-detail-inline-2 div {
    margin-right: 14px
}

.pd-detail-inline-2 div:last-child {
    margin-right: 0
}

.pd-detail__name {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600
}

.pd-detail__price {
    color: #ff4500;
    font-size: 2rem;
    font-weight: 700
}

.pd-detail__discount {
    color: #ff4500;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.pd-detail__del {
    color: #333;
    font-size: 12px
}

.pd-detail__rating {
    display: block
}

.pd-detail__rating i {
    font-size: 12px
}

.pd-detail__review>a {
    font-size: 12px;
    transition: color 110ms ease-in-out;
    color: #333
}

.pd-detail__review>a:hover {
    color: #ff4500;
    text-decoration: underline
}

.pd-detail__left {
    font-size: 12px;
    font-weight: 600;
    padding: 8px;
    display: inline-block;
    border-radius: 30px
}

.pd-detail__left {
    background-color: rgba(255, 69, 0, .14);
    color: #ff4500
}

.pd-detail__preview-desc {
    font-size: 13px;
    color: #7f7f7f
}

.pd-detail__click-wrap>a {
    font-size: 13px;
    color: #333;
    transition: color 110ms ease-in-out
}

.pd-detail__click-wrap>a:hover {
    color: #b6b6b6;
    text-decoration: underline
}

.pd-detail__click-count {
    font-size: 10px;
    color: #333
}

.pd-detail__form {
    width: 100%
}

.pd-detail__form .btn {
    padding: 1rem 3rem;
    border-radius: .375rem
}

.pd-detail__color,
.pd-detail__size {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.color__radio {
    position: relative;
    line-height: 1.89;
    margin-right: 36px;
    display: inline-block
}

.color__radio [type=radio] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 30px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.color__radio-label {
    position: initial;
    display: inline-block
}

.color__radio-label:after,
.color__radio-label:before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    border: 2px solid transparent;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0
}

.color__radio-label:after {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    background-color: inherit
}

.color__radio input:checked+label:before {
    border-color: #d2d2d2
}

.size__radio {
    position: relative;
    margin: 0 12px 12px 0
}

.size__radio [type=radio] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.size__radio-label {
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 7px 15px;
    background-color: #fff;
    font-size: 13px;
    color: #333;
    cursor: pointer;
    display: inline-block
}

.size__radio input:checked+label {
    border-color: #333
}

.pd-detail__policy-list {
    margin: 0;
    padding-left: 26px;
    font-size: 14px;
    list-style: none
}

.pd-detail__policy-list>li i {
    color: #009444
}

.pd-detail__policy-list>li span {
    color: #7f7f7f
}

.pd-tab__list {
    margin: 0;
    border-bottom: 2px solid #e7e7e7
}

.pd-tab__list>li {
    margin-bottom: -2px
}

.pd-tab__list>li>a {
    padding: 10px 0;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    letter-spacing: .01rem;
    transition: all .3s
}

.pd-tab__list>li>a span {
    margin-left: 2px;
    font-size: 12px
}

.pd-tab__list>li>a.active {
    color: #000;
    border-color: #000
}

.pd-tab__list>li+li {
    margin-left: 28px
}

.pd-tab__desc {
    max-width: 691px
}

.pd-tab__desc p {
    color: #333;
    font-size: 16px;
    line-height: 2
}

.pd-tab__desc ul {
    margin: 0;
    padding-left: 16px;
    list-style: none
}

.pd-tab__desc ul>li {
    margin-bottom: 7px;
    color: #333;
    font-size: 14px
}

.pd-tab__desc h4 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4
}

.pd-tab__desc .pd-table {
    overflow: auto
}

.pd-tab__desc .pd-table table {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #eee;
    border-collapse: collapse
}

.pd-tab__desc .pd-table tbody tr {
    border-bottom: 1px solid #eee
}

.pd-tab__desc .pd-table tbody td {
    font-size: 14px;
    color: #7f7f7f;
    padding: 12px
}

.pd-tab__desc .pd-table tbody td:first-child {
    color: #333;
    font-weight: 600
}

.review-o {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0
}

.review-o__name {
    font-size: 14px;
    font-weight: 600;
    color: #333
}

.review-o__date {
    margin-left: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #7f7f7f
}

.review-o__rating span {
    margin-left: 2px;
    font-size: 11px;
    font-weight: 600;
    color: #7f7f7f
}

.review-o__text {
    font-size: 13px;
    color: #7f7f7f
}

@media (max-width: 991px) {
    .pd-text {
        display: none
    }
}

@media (max-width: 575px) {
    .pd-detail-inline-2 {
        display: block
    }

    .pd-detail-inline-2 div {
        display: block;
        margin-right: 0
    }
}

.list__content {
    position: relative
}

.list__content [type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.list__content span {
    padding: 8px 16px;
    display: block;
    font-size: 14px;
    transition: background-color 110ms ease-in-out, color 110ms ease-in-out;
    color: #7f7f7f
}

.list__content:hover span {
    color: #333;
    background-color: #ececec;
    border-radius: .5rem
}

.list__content input:checked+span {
    background-color: #ececec;
    color: #333;
    border-radius: .5rem
}

.has-list {
    position: relative
}

.color__check {
    position: relative;
    line-height: 1.89;
    margin-right: 36px;
    display: inline-block
}

.color__check [type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 30px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.color__check-label {
    position: initial;
    display: inline-block
}

.color__check-label:after,
.color__check-label:before {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    border: 2px solid transparent;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0
}

.color__check-label:after {
    -webkit-transform: scale(.6);
    transform: scale(.6);
    background-color: inherit
}

.color__check input:checked+label:before {
    border-color: #d2d2d2
}

.rating__check {
    position: relative;
    cursor: pointer
}

.rating__check [type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    min-width: 16px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer
}

.rating__check-star-wrap>i {
    margin-left: 2px;
    color: #ff4500;
    transition: color .4s ease-in-out
}

.rating__check-star-wrap>i:first-child {
    margin-left: 0
}

.rating__check-star-wrap span {
    font-size: 12px;
    color: #333;
    margin-right: 2px
}

.rating__check:hover .rating__check-star-wrap>i {
    color: #ff9600
}

.rating__check input:checked+.rating__check-star-wrap>i {
    color: #ff9600
}

.is-list-active {
    display: block
}

.is-list-active [class*=col-] {
    display: block;
    max-width: 100%;
    width: 100%
}

.is-list-active .product-m {
    padding: 15px 0;
    transition: .3s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.is-list-active .product-m__add-cart {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.is-list-active .product-m__add-cart>a {
    padding: 12px;
    border-radius: .125rem;
    font-size: 13px;
    width: 100%;
    text-align: center;
    display: block
}

.is-list-active .product-m__content {
    position: relative;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    padding-right: 15px;
    padding-left: 15px
}

.is-list-active .product-m__name>a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    transition: color .5s
}

.is-list-active .product-m__name>a:hover {
    color: #ff4500
}

.is-list-active .product-m__price {
    margin-bottom: 8px;
    line-height: 1.2;
    color: #333;
    font-size: 14px;
    font-weight: 600
}

.is-list-active .product-m__discount {
    font-weight: 600;
    margin-left: 30px;
    color: #ff4500;
    font-size: 14px;
    text-decoration: line-through
}

.is-list-active .product-m__rating {
    margin-bottom: 6px
}

.is-list-active .product-m__rating i {
    font-size: 12px
}

.is-list-active .product-m__review {
    margin-left: 4px;
    font-size: 11px;
    color: #333
}

.is-list-active .product-m__preview-description {
    font-size: 12px;
    color: #7f7f7f
}

.is-list-active .product-m:hover {
    background: #fff;
    border-radius: .1875rem;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .2)
}

.is-list-active .product-m:hover .product-m__add-cart {
    opacity: 1;
    visibility: visible
}

@media (max-width: 575px) {
    .is-list-active .product-m__content {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }
}

.modal {
    z-index: 999999
}

.modal-content {
    display: block !important;
    border: none;
    border-radius: 0
}

.modal--radius {
    border-radius: 8px
}

.modal--shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, .45)
}

.tooltip {
    font-family: "Open Sans", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600
}

.tooltip.show {
    opacity: 1
}

.tooltip-inner {
    color: #333;
    background-color: #f5f5f5;
    border-radius: 2px
}

@media (max-width: 991px) {
    .tooltip.show {
        opacity: 0
    }
}

.ah-list {
    margin: 0;
    padding: 0
}

.ah-list li {
    list-style: none
}

.ah-list ul {
    margin: 0;
    padding: 0
}

.ah-list--design1>li {
    display: inline-block
}

.ah-list--design1>li>a {
    display: inline-block;
    font-size: 16px;
    padding: 28px 18px
}

.ah-list--link-color-secondary>li>a {
    color: #333
}

.ah-list--link-color-white>li>a {
    color: #fff
}

.ah-list--design2>li {
    display: inline-block
}

.ah-list--design2>li>a {
    font-weight: 700;
    font-size: 12px;
    display: inline-block;
    padding: 31px 14px
}

.has-dropdown>ul .has-dropdown {
    position: relative
}

.has-dropdown>ul {
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .13);
    position: absolute;
    text-align: left;
    padding: 20px 0 20px;
    z-index: 999;
    white-space: nowrap;
    transition: all .3s ease;
    top: 120%;
    opacity: 0;
    visibility: hidden
}

.has-dropdown>ul>li>a {
    display: block;
    padding: 8px 20px;
    color: #333;
    font-size: 12px;
    font-weight: 600
}

.has-dropdown--ul-left-100>ul {
    left: 100%
}

.has-dropdown--ul-right-100>ul {
    right: 100%
}

@media (max-width: 990px) {
    .menu-init .fa-angle-down:before {
        content: none
    }

    .ah-lg-mode {
        position: fixed;
        left: -315px;
        width: 315px;
        height: 100%;
        top: 0;
        background-color: #fff;
        z-index: 20000;
        overflow-y: auto
    }

    .ah-close {
        color: #333;
        padding: 20px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        display: block
    }

    .ah-list>li {
        position: relative;
        display: block;
        border-top: 1px solid #f8f8f8
    }

    .ah-list>li>a {
        display: block;
        padding: 8px 18px
    }

    .ah-list>li:last-child {
        border-bottom: 1px solid #f8f8f8
    }

    .ah-list--design1>li>a,
    .ah-list--design2>li>a {
        font-weight: 400;
        font-size: 14px
    }

    .ah-list--link-color-white>li>a {
        color: #333
    }

    .js-menu-toggle {
        width: 41px;
        display: block;
        height: 41px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 1px 1px 0 0 rgba(0, 0, 0, .13);
        position: absolute;
        right: 15px;
        top: 6px;
        transition: all .3s;
        cursor: pointer
    }

    .js-menu-toggle:after {
        font-family: 'Font Awesome 5 Free';
        content: "\F067";
        position: absolute;
        top: 50%;
        width: 100%;
        font-weight: 900;
        color: #333;
        display: block;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        text-align: center;
        font-size: 8px
    }

    .has-dropdown>ul {
        width: 100% !important;
        box-shadow: none;
        transition: none;
        position: static;
        padding: 0 0 10px;
        opacity: 1;
        visibility: visible;
        display: none
    }

    .has-dropdown>ul>li {
        padding: 0
    }

    .has-dropdown>ul>li>a {
        display: block
    }

    .ah-list>li>ul>li>a {
        padding: 8px 36px
    }

    .ah-list>li>ul>li>ul>li>a {
        padding: 8px 54px
    }

    .ah-list>li>ul>li>ul>li>ul>li>a {
        padding: 8px 72px
    }
}

@media (min-width: 990px) {
    .toggle-button {
        display: none
    }

    .ah-close {
        display: none
    }

    .ah-list>li>a:hover {
        color: #ff4500
    }

    .has-dropdown>ul>li:hover {
        background-color: #fbfbfb
    }

    .has-dropdown:hover>ul {
        opacity: 1;
        visibility: visible
    }

    .ah-list>.has-dropdown:hover>ul {
        top: 100%
    }

    .has-dropdown .has-dropdown:hover>ul {
        top: 0
    }

    .ah-list>.has-dropdown:hover>a {
        color: #ff4500
    }

    .has-dropdown>a .fa-angle-down {
        font-size: 10px;
        line-height: 18px;
        float: right
    }
}

.slider-fouc {
    display: none
}

.primary-style-3-wrap {
    position: absolute;
    bottom: 120px;
    z-index: 1;
    width: 100%
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm {
    padding: 0 !important
}

.owl-carousel .owl-dots {
    position: absolute
}

.owl-carousel.primary-style-1 .owl-dots {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 40px
}

.owl-carousel.primary-style-2 .owl-dots {
    width: 100%;
    text-align: center;
    bottom: 20px
}

.primary-style-2-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width: 576px) {
    .primary-style-2-container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .primary-style-2-container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .primary-style-2-container {
        max-width: 960px
    }
}

.owl-carousel.primary-style-3 .owl-dots {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 40px
}

.owl-carousel#testimonial-slider .owl-dots {
    width: 100%;
    text-align: center;
    bottom: -30px
}

.content-span-1 {
    font-size: 1.25rem;
    font-weight: 700;
    display: block
}

.content-span-2 {
    font-weight: 700;
    font-size: 3.25rem;
    display: block
}

.content-span-3 {
    display: block;
    font-size: .875rem;
    margin-bottom: 8px
}

.content-span-4 {
    display: block;
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: 20px
}

.content-span-4 span {
    font-weight: 700;
    margin-left: 4px;
    font-size: 1.375rem
}

.owl-item.active .content-span-1 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.owl-item.active .content-span-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.owl-item.active .content-span-3 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.owl-item.active .content-span-4 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

.product-slider,
.tab-slider {
    position: static
}

.product-slider .owl-item:hover,
.tab-slider .owl-item:hover {
    z-index: 2
}

.section__content:hover .p-next,
.section__content:hover .p-prev,
.section__content:hover .t-next,
.section__content:hover .t-prev {
    opacity: 1
}

.p-next,
.p-prev {
    text-align: center;
    box-shadow: 0 6px 15px 5px rgba(36, 37, 38, .08);
    z-index: 1;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    height: 72px;
    line-height: 72px;
    width: 36px;
    background-color: #fff;
    margin: auto 0;
    transition: opacity .6s ease-in, background-color .6s ease-in;
    opacity: 0
}

.p-next>i,
.p-prev>i {
    font-size: 14px;
    color: #333;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.p-prev {
    left: 0;
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px
}

.p-prev>i {
    left: 6px
}

.p-next {
    right: 0;
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px
}

.p-next>i {
    right: 6px
}

.t-next,
.t-prev {
    text-align: center;
    z-index: 1;
    display: inline-block;
    box-shadow: 0 6px 15px 5px rgba(36, 37, 38, .08);
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    cursor: pointer;
    height: 36px;
    line-height: 36px;
    width: 36px;
    margin: auto 0;
    transition: opacity .6s ease-in;
    opacity: 0
}

.t-next>i,
.t-prev>i {
    font-size: 14px;
    color: #333;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.t-prev {
    left: 0;
    border-bottom-right-radius: 90px;
    border-top-right-radius: 90px
}

.t-prev>i {
    left: 10px
}

.t-next {
    right: 0;
    border-bottom-left-radius: 90px;
    border-top-left-radius: 90px
}

.t-next>i {
    right: 10px
}

#brand-slider .owl-stage {
    margin: 1.25rem 0
}

.brand-slide {
    width: 155px;
    height: 60px;
    margin: 0 auto
}

.brand-slide a {
    display: block;
    background-color: #fff;
    transition: all .3s
}

.brand-slide a:hover {
    box-shadow: 2px 3px 8px 0 rgba(0, 0, 0, .2)
}

.b-next,
.b-prev {
    text-align: center;
    z-index: 1;
    display: inline-block;
    position: absolute;
    top: 0;
    cursor: pointer;
    bottom: 0;
    height: 36px;
    line-height: 36px;
    width: 36px;
    box-shadow: 0 6px 15px 5px rgba(36, 37, 38, .08);
    background-color: #fff;
    margin: auto 0;
    transition: opacity .6s ease-in;
    opacity: 0
}

.b-next>i,
.b-prev>i {
    font-size: 14px;
    color: #333
}

.b-prev {
    left: 0
}

.b-next {
    right: 0
}

.section__content:hover .b-next,
.section__content:hover .b-prev {
    opacity: 1
}

.slick-slide,
.slick-slide * {
    outline: 0
}

#pd-o-thumbnail .slick-slide:not(.slick-current) {
    opacity: .4
}

#js-product-detail-modal-thumbnail .slick-slide:not(.slick-current) {
    opacity: .4
}

.pt-next,
.pt-prev {
    text-align: center;
    z-index: 1;
    display: inline-block;
    position: absolute;
    top: 0;
    cursor: pointer;
    bottom: 0;
    border-radius: 50%;
    height: 36px;
    line-height: 36px;
    width: 36px;
    margin: auto 0;
    transition: opacity ease-in-out .5s, background-color ease-in .3s;
    background-color: #fff;
    opacity: 0
}

.pt-next i,
.pt-prev i {
    font-size: 12px;
    color: #000
}

.pt-prev {
    left: 20px
}

.pt-next {
    right: 20px
}

#pd-o-thumbnail:hover .pt-next,
#pd-o-thumbnail:hover .pt-prev {
    opacity: .8
}

#js-product-detail-modal-thumbnail:hover .pt-next,
#js-product-detail-modal-thumbnail:hover .pt-prev {
    opacity: .8
}

.kagepisuceng {
    position: relative;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden
}

.kagepisuceng__items {
    position: relative;
    width: 100%;
    overflow: hidden
}

.kagepisuceng__item {
    position: relative;
    display: none;
    width: 100%;
    transition: transform .6s ease;
    backface-visibility: hidden
}

.kagepisuceng__item_active,
.kagepisuceng__item_next,
.kagepisuceng__item_prev {
    display: block
}

.kagepisuceng__item_next,
.kagepisuceng__item_prev {
    position: absolute;
    top: 0
}

.kagepisuceng__item_next.kagepisuceng__item_left,
.kagepisuceng__item_prev.kagepisuceng__item_right {
    transform: translateX(0)
}

.kagepisuceng__item_next,
.kagepisuceng__item_right.kagepisuceng__item_active {
    transform: translateX(100%)
}

.kagepisuceng__item_left.kagepisuceng__item_active,
.kagepisuceng__item_prev {
    transform: translateX(-100%)
}

.kagepisuceng__control {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5
}

.kagepisuceng__control:focus,
.kagepisuceng__control:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.kagepisuceng__control_prev {
    left: 0
}

.kagepisuceng__control_next {
    right: 0
}

.kagepisuceng__control::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: transparent no-repeat center center;
    background-size: 100% 100%
}

.kagepisuceng__control_prev::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}

.kagepisuceng__control_next::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}

.kagepisuceng__indicators {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.kagepisuceng__indicator {
    position: relative;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, .5);
    border-radius: 6px
}

.kagepisuceng__indicator::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.kagepisuceng__indicator::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.kagepisuceng__indicator_active {
    background-color: #fff
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%
}

.kagepisuceng__item {
    height: 320px;
    overflow: hidden;
    background: linear-gradient(to right, #243b55, #141e30)
}

.kagepisuceng__item_1 {
    background: linear-gradient(45deg, #085078 10%, #85d8ce 90%)
}

.kagepisuceng__item_2 {
    background: linear-gradient(to right, #dd1818, #333)
}

.kagepisuceng__item_3 {
    background: linear-gradient(to right, #093028, #237a57)
}

.kagepisuceng__item_4 {
    background: linear-gradient(to right, #243b55, #141e30)
}

.kagepisuceng__item_inner {
    position: absolute;
    left: 15%;
    right: 15%;
    top: 36px;
    bottom: 36px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.kagepisuceng__item_img {
    flex: 0 0 80px;
    max-width: 80px
}

.kagepisuceng__item_testimonial {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    text-align: center
}

@media (min-width: 576px) {
    .kagepisuceng__item {
        height: 250px
    }

    .kagepisuceng__item_inner {
        flex-direction: row
    }

    .kagepisuceng__item_testimonial {
        margin-left: 15px
    }

    .kagepisuceng__item_img {
        flex: 0 0 150px;
        max-width: 150px
    }

    .kagepisuceng__item_testimonial {
        text-align: left
    }
}

.kagepisuceng__item_name {
    font-size: 20px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .8)
}

.kagepisuceng__item_post {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .8)
}

.kagepisuceng__item_text {
    font-size: 16px;
    color: rgba(255, 255, 255, .5)
}

.exist-show,
.main-show {
    display: none
}

.item_names:hover {
    color: #fff !important
}

* {
    margin: 0;
    padding: 0
}

.rates {
    margin-left: -9px
}

.rate {
    float: left;
    height: 46px;
    padding: 0 10px;
    margin-left: -20px;
    z-index: 9999
}

.comments {
    position: relative
}

.rate:not(:checked)>input {
    position: absolute;
    opacity: 0
}

.rate:not(:checked)>label {
    float: right;
    width: 1em;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
    font-size: 30px;
    color: #ccc
}

.rate:not(:checked)>label:before {
    content: '★ '
}

.rate>input:checked~label {
    color: #ffc700
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
    color: #deb217
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
    color: #c59b08
}

.alert {
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: 2px solid #4caf50;
    background-color: #fff;
    color: #4caf50;
    border-radius: 10px;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-sizing: border-box
}

.alert .close-btn {
    font-size: 20px;
    cursor: pointer;
    margin-left: auto;
    color: #4caf50
}

.message {
    flex-grow: 1;
    margin-right: 10px
}

.countdown {
    font-size: 18px
}

body {
    overflow-x: hidden
}

.row {
    padding: 5px
}

#main-search:focus {
    background-color: #fff !important
}

.primary-nav-wrapper--border {
    border-bottom: none !important
}

@media print {
    body {
        margin: 0;
        padding: 0
    }

    @page {
        margin: 0
    }
}

#my-navs,
.ah-lg-mode {
    background-color: #f18518 !important;
    color: #fff
}

#my-navs a {
    color: #fff;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif
}

#my-navs a:hover {
    color: #fff
}

.has-dropdown:hover {
    background-color: #f18518 !important
}

#navigation2 button {
    color: #fff
}

#navigation {
    display: none
}

.ah-close {
    color: #fff !important;
    font-weight: 700
}

.main-form {
    width: 41%;
    height: 81px
}

.tops-header {
    background: #377932;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0
}

.u-s-p-y-90 {
    padding-top: 0 !important
}

.u-s-p-y-60 {
    padding-top: 0 !important
}

.u-s-m-b-60 {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important
}

.app-content {
    /* margin-top:207px; */
}

@media screen and (max-width: 990px) {
    #my-navs {
        position: fixed;
        bottom: 0;
        padding: 10px;
        width: 100%;
        z-index: 99999
    }

    .main-logo img {
        display: block;
        left: 0;
        right: 0;
        margin: auto;
        position: absolute;
        top: 8px
    }

    .main-form {
        position: absolute;
        width: 94%;
        left: 0;
        right: 0;
        margin: auto;
        top: 40px
    }

    footer {
        margin-bottom: 50px
    }

    .app-content {
        margin-top: 50px
    }

    .main-form {
        width: 90%;
        height: 81px
    }

    .tops-header {
        position: relative;
        width: 100%;
        height: 120px
    }

    .mobile-menu-show {
        display: block !important;
        float: right;
        width: 150px;
        margin-left: 50px;
        margin-top: 5px
    }
}

.tops-header {
    background: #377932
}

.mobile-menu-show {
    display: none
}

.pd-social-list a i {
    font-size: 20px;
    padding: 5px
}

th {
    color: grey !important;
    width: 35%;
    border-right: 3px solid #e6e6e6 !important
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px
}

td,
th {
    text-align: left;
    padding: 18px !important
}

tr:nth-child(even) {
    background-color: #fff
}

tr:nth-child(odd) {
    background-color: #f2f2f2
}

.tab-content p {
    font-size: 17px
}

@media screen and (max-width: 500px) {
    #poster_image {
        widht: 96%;
        height: 30px
    }
}