/* style.gold.css (copy of plugins.css) - no design changes */

/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.input-group-text input[type=checkbox],
.input-group-text input[type=radio],
.list-group-horizontal>.list-group-item.active,
dl,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
    margin-top: 0
}

.blockquote,
.form-group,
address,
dl,
hr,
ol,
p,
pre,
ul {
    margin-bottom: 1rem
}

.bs-popover-auto[x-placement^=top],
.bs-popover-top,
dd,
label,
legend {
    margin-bottom: .5rem
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
legend,
main,
nav,
section {
    display: block
}

address,
legend {
    line-height: inherit
}

progress,
sub,
sup {
    vertical-align: baseline
}

.navbar-expand .navbar-nav-scroll,
.swiper-container-cube,
.swiper-container-flip,
button,
hr,
input {
    overflow: visible
}

.img-fluid,
.img-thumbnail {
    max-width: 100% !important;
    height: auto
}

.btn.focus,
.btn:focus,
.custom-control-input:focus~.custom-control-label::before,
.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.dropdown-menu,
.nav,
.navbar-nav {
    list-style: none
}

.logo-img {
    display: block !important;               /* للتأكد من أن الصورة تظهر بشكل صحيح */
    max-width: 150px !important;             /* الحد الأقصى لعرض الشعار */
    width: 100% !important;                  /* يجعلها مرنة داخل العنصر الحاوي */
    height: auto !important;                 /* الحفاظ على نسبة الطول للعرض */
    margin: 0 auto !important;               /* توسيط الشعار */
    border-radius: 8px !important;           /* حواف مستديرة بسيطة */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; /* ظل خفيف لإبراز الشعار */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.logo-img:hover {
    transform: scale(1.05) !important;        /* تكبير بسيط عند التمرير */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

/* تجاوب الشعار مع الأجهزة الصغيرة */
@media (max-width: 768px) {
    .logo-img {
        max-width: 120px !important;
    }
}

@media (max-width: 480px) {
    .logo-img {
        max-width: 100px !important;
    }
}

.footer-wrapper {
    background-color: #1a1a1a !important; /* لون الخلفية */
    color: #fff !important;               /* لون النص */
    padding: 60px 0 20px !important;
    font-family: var(--font-family-sans-serif) !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.footer-wrapper a {
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-wrapper a:hover {
    color: #1ac4bb !important;
}


.footer-logo img {
    max-width: 100px !important;
    height: auto !important;
    border-radius: 8px !important;
    transition: transform 0.3s ease !important;
}

.footer-logo img:hover {
    transform: scale(1.05) !important;
}

.footer-widget ul.footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-widget ul.footer-menu li {
    margin-bottom: 10px !important;
}

.footer-widget ul.footer-menu li a.footer-link {
    font-weight: 500 !important;
}

.newsletter input.form-control {
    border-radius: 4px 0 0 4px !important;
}

.newsletter .button {
    border-radius: 0 4px 4px 0 !important;
    background-color: var(--primary) !important;
    border: none !important;
    color: #fff !important;
    transition: background-color 0.3s !important;
}

.newsletter .button:hover {
    background-color: #17b3ab !important;
}

.footer-link p,
.footer-text {
    margin: 5px 0 !important;
    color: #fff !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    margin-top: 30px !important;
    padding-top: 20px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    font-size: 13px !important;
    color: #aaa !important;
}

.footer-social {
    list-style: none !important;
    display: flex !important;
    gap: 10px !important;
    padding-left: 0 !important;
}

.footer-social li a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: #ddd !important;
    border-radius: 50% !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.footer-social li a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

/* تجاوب Footer */
@media (max-width: 992px) {
    .footer-wrapper .row > [class*='col-'] {
        margin-bottom: 30px !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
    }
}


.announcement {
    background-color: #000 !important;
    color: #fff !important;
    font-family: 'Avenir Medium', sans-serif !important;
    z-index: 9999 !important;
    padding: 0.5rem 0 !important;
}

.announcement .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.announcement-wrapper .announcement {
    position: relative !important;
    transition: all 0.3s ease !important;
}

.announcement-wrapper .close-announcement {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
}


.announcement-link {
    color: #fff !important;
    flex: 1 1 auto !important;
    text-align: center !important;
    font-size: 14px !important;
}

.announcement-link:hover {
    color: #ffd700 !important;
    text-decoration: none !important;
}

.btn-close-announcement {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #fff !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
}

.btn-close-announcement:hover {
    color: #ff6347 !important;
}

/* === استجابة الأجهزة الصغيرة === */
@media (max-width: 768px) {
    .announcement .container {
        flex-direction: column !important;
        text-align: center !important;
    }
    .btn-close-announcement {
        margin-top: 5px !important;
    }
}



.badge,
.dropdown-header,
.dropdown-item,
.dropdown-toggle,
.input-group-text,
.navbar-brand,
.progress-bar {
    white-space: nowrap
}

*,
.ui-button-icon-only,
.ui-controlgroup-vertical .ui-controlgroup-item,
::after,
::before {
    box-sizing: border-box
}

.ui-datepicker table,
table {
    border-collapse: collapse
}

@font-face {
    font-family: "AvenirMedium" !important;
    src: url('font/Avenir/alfont_com_AlFont_com_Avenir-Regular.otf') format('opentype') !important;
    ascent-override: 105% !important;
    descent-override: 35% !important;
    line-gap-override: 10% !important;
}

:root {
    --blue: #007bff !important;
    --indigo: #6610f2 !important;
    --purple: #6f42c1 !important;
    --pink: #e83e8c !important;
    --red: #dc3545 !important;
    --orange: #fd7e14 !important;
    --yellow: #ffc107 !important;
    --green: #28a745 !important;
    --teal: #20c997 !important;
    --cyan: #17a2b8 !important;
    --white: #fff !important;
    --gray: #6c757d !important;
    --gray-dark: #343a40 !important;
    --primary: #1ac4bb !important;
    --secondary: #6c757d !important;
    --success: #28a745 !important;
    --info: #17a2b8 !important;
    --warning: #ffc107 !important;
    --danger: #dc3545 !important;
    --light: #f8f9fa !important;
    --dark: #343a40 !important;
    --breakpoint-xs: 0 !important;
    --breakpoint-sm: 576px !important;
    --breakpoint-md: 768px !important;
    --breakpoint-lg: 992px !important;
    --breakpoint-xl: 1200px !important;
    --font-family-sans-serif: "AvenirMedium", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

html {
    font-family: sans-serif !important;
    line-height: 1.15 !important;
    -webkit-text-size-adjust: 100% !important;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0 !important;
    font-family: "AvenirMedium", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    text-align: right !important;
    background-color: #fff !important;
}

.alert-link,
.badge,
.close,
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary,
dt,
kbd kbd {
    font-weight: 700
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important
}

abbr[data-original-title],
abbr[title] {
    text-decoration: underline !important;
    -webkit-text-decoration: underline dotted !important;
    text-decoration: underline dotted !important;
    cursor: help !important;
    border-bottom: 0 !important;
    -webkit-text-decoration-skip-ink: none !important;
    text-decoration-skip-ink: none
}

.btn:not(:disabled):not(.disabled),
.swiper-pagination-clickable .swiper-pagination-bullet,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
[role=button],
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled),
summary {
    cursor: pointer
}

address {
    font-style: normal
}

.btn-group-toggle>.btn,
.btn-group-toggle>.btn-group>.btn,
.card-text:last-child,
.form-check-label,
.modal-title,
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

.dropdown-toggle-split::after,
.dropdown-toggle:empty::after,
.dropleft .dropdown-toggle:empty::after,
.dropright .dropdown-toggle-split::after,
.dropright .dropdown-toggle:empty::after,
.dropup .dropdown-toggle-split::after,
.dropup .dropdown-toggle:empty::after,
dd {
    margin-left: 0
}

blockquote,
figure {
    margin: 0 0 1rem
}

b,
strong {
    font-weight: bolder
}

sub,
sup {
    position: relative !important;
    font-size: 75% !important;
    line-height: 0
}

.btn,
img,
svg {
    vertical-align: middle
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a {
    color: #007bff !important;
    text-decoration: none !important;
    background-color: transparent
}

.btn-link:hover,
a:hover {
    color: #0056b3 !important;
    text-decoration: underline
}

.breadcrumb-item+.breadcrumb-item:hover::before,
.btn-link,
.btn:hover,
.card-link:hover,
.nav-link:focus,
.nav-link:hover,
.navbar-brand:focus,
.navbar-brand:hover,
.navbar-toggler:focus,
.navbar-toggler:hover,
.ui-button,
.ui-button:active,
.ui-button:hover,
.ui-button:link,
.ui-button:visited,
a.badge:focus,
a.badge:hover {
    text-decoration: none
}

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

code,
kbd,
pre,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    font-size: 1em
}

img {
    border-style: none
}

.accordion>.card,
.modal-open,
.progress,
.progress-bar,
svg {
    overflow: hidden
}

pre,
textarea {
    overflow: auto
}

caption {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
    color: #6c757d !important;
    text-align: left !important;
    caption-side: bottom
}

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

.figure,
.list-inline-item,
label,
output {
    display: inline-block
}

.list-group-flush,
button {
    border-radius: 0
}

.btn.focus,
.btn:focus,
.custom-range:focus,
.custom-select:focus,
button:focus:not(:focus-visible) {
    outline: 0
}

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

button,
select {
    text-transform: none
}

select {
    word-wrap: normal
}

.card,
.popover,
.tooltip,
code {
    word-wrap: break-word
}

[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 {
    padding: 0 !important;
    border-style: none
}

input[type=checkbox],
input[type=radio] {
    box-sizing: border-box !important;
    padding: 0
}

textarea {
    resize: vertical
}

fieldset {
    min-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0
}

legend {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    font-size: 1.5rem !important;
    color: inherit !important;
    white-space: normal
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

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

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

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

.upload-text {
    align-items: center !important;
    border: 1px dashed #ddd !important;
    border-radius: 4px !important;
    color: #999 !important;
    display: flex !important;
    flex: 1 !important;
    flex-direction: column !important;
    font-size: 16px !important;
    height: 100% !important;
    justify-content: center !important;
    padding: 5px !important;
    margin: 5px
}

.display-1,
.display-2,
.display-3,
.display-4 {
    line-height: 1.2
}

summary {
    display: list-item
}

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

.d-none,
[hidden] {
    display: none !important
}

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

.display-1,
.display-2,
.display-3,
.display-4,
.lead {
    font-weight: 300
}

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

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

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

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

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

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

.display-1 {
    font-size: 6rem
}

.display-2 {
    font-size: 5.5rem
}

.display-3 {
    font-size: 4.5rem
}

.display-4 {
    font-size: 3.5rem
}

.btn,
.btn-link,
.droopmenu-dots .droopmenu-nav li a b,
.dropdown-item,
.form-control,
.small,
small {
    font-weight: 400
}

hr {
    box-sizing: content-box !important;
    height: 0 !important;
    margin-top: 1rem !important;
    border: 0 !important;
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.small,
small {
    font-size: .875em
}

code,
kbd,
pre {
    font-size: 87.5%
}

.mark,
mark {
    padding: .2em !important;
    background-color: #fcf8e3
}

.list-inline,
.list-unstyled {
    padding-left: 0 !important;
    list-style: none
}

.bs-popover-auto[x-placement^=left],
.bs-popover-left,
.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.initialism {
    font-size: 90% !important;
    text-transform: uppercase
}

.blockquote-footer {
    display: block !important;
    font-size: .875em !important;
    color: #6c757d
}

.blockquote-footer::before {
    content: "\2014\00A0"
}

.img-thumbnail {
    padding: .25rem !important;
    background-color: #fff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: .25rem
}

.figure-img {
    margin-bottom: .5rem !important;
    line-height: 1
}

.figure-caption {
    font-size: 90% !important;
    color: #6c757d
}

.alert-heading,
a>code,
pre code {
    color: inherit
}

code {
    color: #e83e8c
}

kbd {
    padding: .2rem .4rem !important;
    color: #fff !important;
    background-color: #212529 !important;
    border-radius: .2rem
}

.btn:hover,
.table,
pre {
    color: #212529
}

kbd kbd {
    padding: 0 !important;
    font-size: 100%
}

pre {
    margin-top: 0 !important;
    -ms-overflow-style: scrollbar !important;
    display: block
}

pre code {
    font-size: inherit !important;
    word-break: normal
}

.pre-scrollable {
    max-height: 340px !important;
    overflow-y: scroll
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
    margin-right: auto !important;
    margin-left: auto
}

.row {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    margin-right: -15px !important;
    margin-left: -15px
}

.card>hr,
.no-gutters {
    margin-right: 0 !important;
    margin-left: 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm,
.navbar-nav .nav-link,
.no-gutters>.col,
.no-gutters>[class*=col-] {
    padding-right: 0 !important;
    padding-left: 0
}

.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,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    position: relative !important;
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px
}

.col {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
    max-width: 100%
}

.col-12,
.row-cols-1>* {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100%
}

.col-6,
.row-cols-2>* {
    -ms-flex: 0 0 50% !important;
    flex: 0 0 50% !important;
    max-width: 50%
}

.col-4,
.row-cols-3>* {
    -ms-flex: 0 0 33.333333% !important;
    flex: 0 0 33.333333% !important;
    max-width: 33.333333%
}

.col-3,
.row-cols-4>* {
    -ms-flex: 0 0 25% !important;
    flex: 0 0 25% !important;
    max-width: 25%
}

.row-cols-5>* {
    -ms-flex: 0 0 20% !important;
    flex: 0 0 20% !important;
    max-width: 20%
}

.col-2,
.row-cols-6>* {
    -ms-flex: 0 0 16.666667% !important;
    flex: 0 0 16.666667% !important;
    max-width: 16.666667%
}

.col-auto {
    -ms-flex: 0 0 auto !important;
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 100%
}

.col-1 {
    -ms-flex: 0 0 8.333333% !important;
    flex: 0 0 8.333333% !important;
    max-width: 8.333333%
}

.col-5 {
    -ms-flex: 0 0 41.666667% !important;
    flex: 0 0 41.666667% !important;
    max-width: 41.666667%
}

.col-7 {
    -ms-flex: 0 0 58.333333% !important;
    flex: 0 0 58.333333% !important;
    max-width: 58.333333%
}

.col-8 {
    -ms-flex: 0 0 66.666667% !important;
    flex: 0 0 66.666667% !important;
    max-width: 66.666667%
}

.col-9 {
    -ms-flex: 0 0 75% !important;
    flex: 0 0 75% !important;
    max-width: 75%
}

.col-10 {
    -ms-flex: 0 0 83.333333% !important;
    flex: 0 0 83.333333% !important;
    max-width: 83.333333%
}

.col-11 {
    -ms-flex: 0 0 91.666667% !important;
    flex: 0 0 91.666667% !important;
    max-width: 91.666667%
}

.order-first {
    -ms-flex-order: -1 !important;
    order: -1
}

.order-last {
    -ms-flex-order: 13 !important;
    order: 13
}

.order-0 {
    -ms-flex-order: 0 !important;
    order: 0
}

.order-1 {
    -ms-flex-order: 1 !important;
    order: 1
}

.order-2 {
    -ms-flex-order: 2 !important;
    order: 2
}

.order-3 {
    -ms-flex-order: 3 !important;
    order: 3
}

.order-4 {
    -ms-flex-order: 4 !important;
    order: 4
}

.order-5 {
    -ms-flex-order: 5 !important;
    order: 5
}

.order-6 {
    -ms-flex-order: 6 !important;
    order: 6
}

.order-7 {
    -ms-flex-order: 7 !important;
    order: 7
}

.order-8 {
    -ms-flex-order: 8 !important;
    order: 8
}

.order-9 {
    -ms-flex-order: 9 !important;
    order: 9
}

.order-10 {
    -ms-flex-order: 10 !important;
    order: 10
}

.order-11 {
    -ms-flex-order: 11 !important;
    order: 11
}

.order-12 {
    -ms-flex-order: 12 !important;
    order: 12
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 16.666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.333333%
}

.offset-5 {
    margin-left: 41.666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.333333%
}

.offset-8 {
    margin-left: 66.666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.333333%
}

.offset-11 {
    margin-left: 91.666667%
}

.table {
    width: 100% !important;
    margin-bottom: 1rem
}

.table td,
.table th {
    padding: .75rem !important;
    vertical-align: top !important;
    border-top: 1px solid #dee2e6
}

.table thead th {
    vertical-align: bottom !important;
    border-bottom: 2px solid #dee2e6
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6
}

.table-sm td,
.table-sm th {
    padding: .3rem
}

.table-bordered,
.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom-width: 2px
}

.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th,
.table-dark.table-bordered,
.table-responsive>.table-bordered {
    border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    color: #212529 !important;
    background-color: rgba(0, 0, 0, .075)
}

.table-primary,
.table-primary>td,
.table-primary>th {
    background-color: #b8daff
}

.table-primary tbody+tbody,
.table-primary td,
.table-primary th,
.table-primary thead th {
    border-color: #7abaff
}

.table-hover .table-primary:hover,
.table-hover .table-primary:hover>td,
.table-hover .table-primary:hover>th {
    background-color: #9fcdff
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
    background-color: #d6d8db
}

.table-secondary tbody+tbody,
.table-secondary td,
.table-secondary th,
.table-secondary thead th {
    border-color: #b3b7bb
}

.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover>td,
.table-hover .table-secondary:hover>th {
    background-color: #c8cbcf
}

.table-success,
.table-success>td,
.table-success>th {
    background-color: #c3e6cb
}

.table-success tbody+tbody,
.table-success td,
.table-success th,
.table-success thead th {
    border-color: #8fd19e
}

.table-hover .table-success:hover,
.table-hover .table-success:hover>td,
.table-hover .table-success:hover>th {
    background-color: #b1dfbb
}

.table-info,
.table-info>td,
.table-info>th {
    background-color: #bee5eb
}

.table-info tbody+tbody,
.table-info td,
.table-info th,
.table-info thead th {
    border-color: #86cfda
}

.table-hover .table-info:hover,
.table-hover .table-info:hover>td,
.table-hover .table-info:hover>th {
    background-color: #abdde5
}

.table-warning,
.table-warning>td,
.table-warning>th {
    background-color: #ffeeba
}

.table-warning tbody+tbody,
.table-warning td,
.table-warning th,
.table-warning thead th {
    border-color: #ffdf7e
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover>td,
.table-hover .table-warning:hover>th {
    background-color: #ffe8a1
}

.table-danger,
.table-danger>td,
.table-danger>th {
    background-color: #f5c6cb
}

.table-danger tbody+tbody,
.table-danger td,
.table-danger th,
.table-danger thead th {
    border-color: #ed969e
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover>td,
.table-hover .table-danger:hover>th {
    background-color: #f1b0b7
}

.table-light,
.table-light>td,
.table-light>th {
    background-color: #fdfdfe
}

.table-light tbody+tbody,
.table-light td,
.table-light th,
.table-light thead th {
    border-color: #fbfcfc
}

.table-hover .table-light:hover,
.table-hover .table-light:hover>td,
.table-hover .table-light:hover>th {
    background-color: #ececf6
}

.table-dark,
.table-dark>td,
.table-dark>th {
    background-color: #c6c8ca
}

.table-dark tbody+tbody,
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #95999c
}

.table .thead-dark th,
.table-dark td,
.table-dark th,
.table-dark thead th {
    border-color: #454d55
}

.table-hover .table-dark:hover,
.table-hover .table-dark:hover>td,
.table-hover .table-dark:hover>th {
    background-color: #b9bbbe
}

.table-active,
.table-active>td,
.table-active>th,
.table-hover .table-active:hover,
.table-hover .table-active:hover>td,
.table-hover .table-active:hover>th {
    background-color: rgba(0, 0, 0, .075)
}

.badge-dark,
.table .thead-dark th,
.table-dark {
    background-color: #343a40 !important;
    color: #fff
}

.table .thead-light th {
    color: #495057 !important;
    background-color: #e9ecef !important;
    border-color: #dee2e6
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, .05)
}

.table-dark.table-hover tbody tr:hover {
    color: #fff !important;
    background-color: rgba(255, 255, 255, .075)
}

.table-responsive {
    display: block !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch
}

.form-control {
    display: block !important;
    width: 100% !important;
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #495057 !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid #ced4da !important;
    border-radius: .25rem !important;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control::-ms-expand {
    background-color: transparent !important;
    border: 0
}

.form-control:focus {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #80bdff !important;
    outline: 0
}

.form-control::-webkit-input-placeholder {
    color: #6c757d !important;
    opacity: 1
}

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

.form-control:-ms-input-placeholder {
    color: #6c757d !important;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d !important;
    opacity: 1
}

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

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

input[type=date].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control,
input[type=time].form-control {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none
}

select.form-control:-moz-focusring {
    color: transparent !important;
    text-shadow: 0 0 0 #495057
}

select.form-control:focus::-ms-value {
    color: #495057 !important;
    background-color: #fff
}

.btn-block,
.form-control-file,
.form-control-range {
    display: block !important;
    width: 100%
}

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

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

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

.form-control-plaintext {
    display: block !important;
    width: 100% !important;
    padding: .375rem 0 !important;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    color: #212529 !important;
    background-color: transparent !important;
    border: solid transparent !important;
    border-width: 1px 0
}

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

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

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide,
select.form-control[multiple],
select.form-control[size],
textarea.form-control {
    height: auto
}

.form-text {
    display: block !important;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    margin-right: -5px !important;
    margin-left: -5px
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px !important;
    padding-left: 5px
}

.form-check {
    position: relative !important;
    display: block !important;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute !important;
    margin-top: .3rem !important;
    margin-left: -1.25rem
}

.breadcrumb-item.active,
.custom-control-input:disabled~.custom-control-label,
.custom-control-input[disabled]~.custom-control-label,
.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
    color: #6c757d
}

.form-check-inline {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding-left: 0 !important;
    margin-right: .75rem
}

.invalid-tooltip,
.valid-tooltip {
    position: absolute !important;
    z-index: 5 !important;
    display: none !important;
    padding: .25rem .5rem !important;
    border-radius: .25rem !important;
    line-height: 1.5 !important;
    top: 100% !important;
    left: 0 !important;
    max-width: 100%
}

.form-check-inline .form-check-input {
    position: static !important;
    margin-top: 0 !important;
    margin-right: .3125rem !important;
    margin-left: 0
}

.valid-feedback {
    display: none !important;
    width: 100% !important;
    margin-top: .25rem !important;
    font-size: .875em !important;
    color: #28a745
}

.valid-tooltip {
    margin-top: .1rem !important;
    font-size: .875rem !important;
    color: #fff !important;
    background-color: rgba(40, 167, 69, .9)
}

.form-row>.col>.invalid-tooltip,
.form-row>.col>.valid-tooltip,
.form-row>[class*=col-]>.invalid-tooltip,
.form-row>[class*=col-]>.valid-tooltip {
    left: 5px
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
    display: block
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: #28a745 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.was-validated select.form-control:valid,
select.form-control.is-valid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-right: calc(1.5em + .75rem) !important;
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-valid,
.was-validated .custom-select:valid {
    border-color: #28a745 !important;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat #fff
}

.custom-select.is-valid:focus,
.was-validated .custom-select:valid:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #28a745
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #28a745
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    border-color: #28a745
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    border-color: #34ce57 !important;
    background-color: #34ce57
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before {
    border-color: #28a745
}

.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.invalid-feedback {
    display: none !important;
    width: 100% !important;
    margin-top: .25rem !important;
    font-size: .875em !important;
    color: #dc3545
}

.invalid-tooltip {
    margin-top: .1rem !important;
    font-size: .875rem !important;
    color: #fff !important;
    background-color: rgba(220, 53, 69, .9)
}

.alert,
.btn .badge,
.card,
.carousel,
.collapsing,
.dropdown,
.dropleft,
.dropright,
.dropup,
.list-group-item,
.navbar,
.page-link,
.ui-menu-icons,
.ui-resizable {
    position: relative
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
    display: block
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + .75rem) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right calc(.375em + .1875rem) center !important;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem)
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.was-validated select.form-control:invalid,
select.form-control.is-invalid {
    padding-right: 3rem !important;
    background-position: right 1.5rem center
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-right: calc(1.5em + .75rem) !important;
    background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
}

.custom-select.is-invalid,
.was-validated .custom-select:invalid {
    border-color: #dc3545 !important;
    padding-right: calc(.75em + 2.3125rem) !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem) no-repeat #fff
}

.custom-select.is-invalid:focus,
.was-validated .custom-select:invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
    color: #dc3545
}

.custom-control-input.is-invalid~.custom-control-label::before,
.was-validated .custom-control-input:invalid~.custom-control-label::before {
    border-color: #dc3545
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
    border-color: #e4606d !important;
    background-color: #e4606d
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before,
.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before,
.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before {
    border-color: #dc3545
}

.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-inline {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-flow: row wrap !important;
    flex-flow: row wrap !important;
    -ms-flex-align: center !important;
    align-items: center
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.form-inline .form-check,
input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

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

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5)
}

.btn.disabled,
.btn:disabled {
    opacity: .65
}

.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-fade .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide,
.ui-checkboxradio-disabled,
a.btn.disabled,
a.close.disabled,
fieldset:disabled a.btn {
    pointer-events: none
}

.btn-outline-primary:hover,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.show>.btn-outline-primary.dropdown-toggle {
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
    background-color: #0069d9 !important;
    border-color: #0062cc !important;
    color: #fff
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: #fff !important;
    background-color: #0062cc !important;
    border-color: #005cbf
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(130, 138, 145, .5)
}

.btn-outline-secondary:hover,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled,
.show>.btn-outline-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #6c757d !important;
    border-color: #6c757d
}

.btn-secondary.focus,
.btn-secondary:focus,
.btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
    color: #fff
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    color: #fff !important;
    background-color: #545b62 !important;
    border-color: #4e555b
}

.btn-success.focus,
.btn-success:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(72, 180, 97, .5)
}

.btn-outline-success:hover,
.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-success,
.btn-success.disabled,
.btn-success:disabled,
.show>.btn-outline-success.dropdown-toggle {
    color: #fff !important;
    background-color: #28a745 !important;
    border-color: #28a745
}

.btn-success.focus,
.btn-success:focus,
.btn-success:hover {
    background-color: #218838 !important;
    border-color: #1e7e34 !important;
    color: #fff
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show>.btn-success.dropdown-toggle {
    color: #fff !important;
    background-color: #1e7e34 !important;
    border-color: #1c7430
}

.btn-info.focus,
.btn-info:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(58, 176, 195, .5)
}

.btn-info,
.btn-info.disabled,
.btn-info:disabled,
.btn-outline-info:hover,
.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show>.btn-outline-info.dropdown-toggle {
    color: #fff !important;
    background-color: #17a2b8 !important;
    border-color: #17a2b8
}

.btn-info.focus,
.btn-info:focus,
.btn-info:hover {
    background-color: #138496 !important;
    border-color: #117a8b !important;
    color: #fff
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show>.btn-info.dropdown-toggle {
    color: #fff !important;
    background-color: #117a8b !important;
    border-color: #10707f
}

.btn-warning.focus,
.btn-warning:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(222, 170, 12, .5)
}

.btn-outline-warning:hover,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-warning,
.btn-warning.disabled,
.btn-warning:disabled,
.show>.btn-outline-warning.dropdown-toggle {
    color: #212529 !important;
    background-color: #ffc107 !important;
    border-color: #ffc107
}

.btn-warning.focus,
.btn-warning:focus,
.btn-warning:hover {
    background-color: #e0a800 !important;
    border-color: #d39e00 !important;
    color: #212529
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show>.btn-warning.dropdown-toggle {
    color: #212529 !important;
    background-color: #d39e00 !important;
    border-color: #c69500
}

.btn-danger.focus,
.btn-danger:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(225, 83, 97, .5)
}

.btn-danger,
.btn-danger.disabled,
.btn-danger:disabled,
.btn-outline-danger:hover,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show>.btn-outline-danger.dropdown-toggle {
    color: #fff !important;
    background-color: #dc3545 !important;
    border-color: #dc3545
}

.btn-danger.focus,
.btn-danger:focus,
.btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
    color: #fff
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show>.btn-danger.dropdown-toggle {
    color: #fff !important;
    background-color: #bd2130 !important;
    border-color: #b21f2d
}

.btn-light.focus,
.btn-light:focus,
.btn-light:hover {
    background-color: #e2e6ea !important;
    border-color: #dae0e5 !important;
    color: #212529
}

.btn-light.focus,
.btn-light:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(216, 217, 219, .5)
}

.btn-light {
    color: #212529 !important;
    background-color: var(--theme-color) !important;
    border-color: #f8f9fa
}

.btn-light.disabled,
.btn-light:disabled,
.btn-outline-light:hover,
.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show>.btn-outline-light.dropdown-toggle {
    color: #212529 !important;
    background-color: #f8f9fa !important;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
    color: #212529 !important;
    background-color: #dae0e5 !important;
    border-color: #d3d9df
}

.btn-dark.focus,
.btn-dark:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(82, 88, 93, .5)
}

.btn-dark,
.btn-dark.disabled,
.btn-dark:disabled,
.btn-outline-dark:hover,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show>.btn-outline-dark.dropdown-toggle {
    color: #fff !important;
    background-color: #343a40 !important;
    border-color: #343a40
}

.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
    background-color: #23272b !important;
    border-color: #1d2124 !important;
    color: #fff
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show>.btn-dark.dropdown-toggle {
    color: #fff !important;
    background-color: #1d2124 !important;
    border-color: #171a1d
}

.btn-outline-primary {
    color: #007bff !important;
    border-color: #007bff
}

.btn-outline-primary.focus,
.btn-outline-primary:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #007bff !important;
    background-color: transparent
}

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

.btn-outline-secondary.focus,
.btn-outline-secondary:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

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

.btn-outline-success {
    color: #28a745 !important;
    border-color: #28a745
}

.btn-outline-success.focus,
.btn-outline-success:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
    color: #28a745 !important;
    background-color: transparent
}

.btn-outline-info {
    color: #17a2b8 !important;
    border-color: #17a2b8
}

.btn-outline-info.focus,
.btn-outline-info:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
    color: #17a2b8 !important;
    background-color: transparent
}

.btn-outline-warning {
    color: #ffc107 !important;
    border-color: #ffc107
}

.btn-outline-warning.focus,
.btn-outline-warning:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
    color: #ffc107 !important;
    background-color: transparent
}

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

.btn-outline-danger.focus,
.btn-outline-danger:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

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

.btn-outline-light {
    color: #f8f9fa !important;
    border-color: #f8f9fa
}

.btn-outline-light.focus,
.btn-outline-light:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
    color: #f8f9fa !important;
    background-color: transparent
}

.btn-outline-dark {
    color: #343a40 !important;
    border-color: #343a40
}

.dropdown-toggle::after,
.dropup .dropdown-toggle::after {
    vertical-align: .255em !important;
    content: "" !important;
    border-right: .3em solid transparent !important;
    border-left: .3em solid transparent !important;
    display: inline-block
}

.btn-outline-dark.focus,
.btn-outline-dark:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
    color: #343a40 !important;
    background-color: transparent
}

.btn-link {
    color: #007bff
}

.btn-link.focus,
.btn-link:focus {
    text-decoration: underline
}

.btn-link.disabled,
.btn-link:disabled {
    color: #6c757d !important;
    pointer-events: none
}

.btn-group-lg>.btn,
.btn-lg,
.input-group-lg>.custom-select,
.input-group-lg>.form-control,
.input-group-lg>.input-group-append>.btn,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-prepend>.input-group-text {
    padding: .5rem 1rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
    border-radius: .3rem
}

.btn-group-sm>.btn,
.btn-sm,
.input-group-sm>.custom-select,
.input-group-sm>.form-control,
.input-group-sm>.input-group-append>.btn,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-prepend>.input-group-text {
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
    border-radius: .2rem
}

.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom,
.btn-block+.btn-block {
    margin-top: .5rem
}

.fade {
    transition: opacity .15s linear
}

.fade:not(.show),
.modal-backdrop.fade,
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.collapsing {
    height: 0 !important;
    overflow: hidden !important;
    transition: height .35s
}

.collapsing.width {
    width: 0 !important;
    height: auto !important;
    transition: width .35s
}

.dropdown-toggle::after {
    margin-left: .255em !important;
    border-top: .3em solid !important;
    border-bottom: 0
}

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

.dropdown-menu-left {
    right: auto !important;
    left: 0
}

.dropdown-menu-right {
    right: 0 !important;
    left: auto
}

.dropup .dropdown-menu {
    top: auto !important;
    bottom: 100% !important;
    margin-top: 0 !important;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    margin-left: .255em !important;
    border-top: 0 !important;
    border-bottom: .3em solid
}

.dropleft .dropdown-toggle::before,
.dropright .dropdown-toggle::after {
    content: "" !important;
    border-top: .3em solid transparent !important;
    border-bottom: .3em solid transparent
}

.dropright .dropdown-menu {
    top: 0 !important;
    right: auto !important;
    left: 100% !important;
    margin-top: 0 !important;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: .255em !important;
    border-right: 0 !important;
    border-left: .3em solid !important;
    vertical-align: 0
}

.dropleft .dropdown-menu {
    top: 0 !important;
    right: 100% !important;
    left: auto !important;
    margin-top: 0 !important;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    margin-left: .255em !important;
    vertical-align: .255em !important;
    content: "" !important;
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block !important;
    margin-right: .255em !important;
    border-right: .3em solid !important;
    vertical-align: 0
}

.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
    right: auto !important;
    bottom: auto
}

.dropdown-divider {
    height: 0 !important;
    margin: .5rem 0 !important;
    overflow: hidden !important;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block !important;
    width: 100% !important;
    padding: .25rem 1.5rem !important;
    clear: both !important;
    color: #212529 !important;
    text-align: inherit !important;
    background-color: transparent !important;
    border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #16181b !important;
    text-decoration: none !important;
    background-color: #e9ecef
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff !important;
    text-decoration: none !important;
    background-color: #007bff
}

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

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active,
.dropdown-menu.show,
.nav-link,
.select-box .options.active,
.tab-content>.active,
.ui-selectmenu-open {
    display: block
}

.dropdown-header {
    display: block !important;
    padding: .5rem 1.5rem !important;
    margin-bottom: 0 !important;
    font-size: .875rem !important;
    color: #6c757d
}

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

.btn-group,
.btn-group-vertical {
    position: relative !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
    position: relative !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
    z-index: 1
}

.btn-toolbar {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start
}

.btn-toolbar .input-group,
.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child),
.input-group-append,
.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.btn,
.input-group-append .input-group-text+.input-group-text,
.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-prepend .input-group-text+.input-group-text,
.input-group>.custom-file+.custom-file,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.form-control,
.input-group>.custom-select+.custom-file,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.form-control,
.input-group>.form-control+.custom-file,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.form-control,
.input-group>.form-control-plaintext+.custom-file,
.input-group>.form-control-plaintext+.custom-select,
.input-group>.form-control-plaintext+.form-control {
    margin-left: -1px
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle),
.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after,
.input-group.has-validation>.custom-select:nth-last-child(n+3),
.input-group.has-validation>.form-control:nth-last-child(n+3),
.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,
.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,
.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after,
.input-group:not(.has-validation)>.custom-select:not(:last-child),
.input-group:not(.has-validation)>.form-control:not(:last-child),
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,
.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::after,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child),
.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:not(:first-child),
.input-group>.custom-file:not(:first-child) .custom-file-label,
.input-group>.custom-select:not(:first-child),
.input-group>.form-control:not(:first-child),
.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child),
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem !important;
    padding-left: .5625rem
}

.dropleft .dropdown-toggle-split::before {
    margin-right: 0
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
    padding-right: .375rem !important;
    padding-left: .375rem
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
    padding-right: .75rem !important;
    padding-left: .75rem
}

.btn-group-vertical {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    -ms-flex-pack: center !important;
    justify-content: center
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
    margin-top: -1px
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0
}

.accordion>.card:not(:first-of-type),
.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0
}

.custom-select,
.input-group-text {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid #ced4da !important;
    font-weight: 400
}

.btn-group-toggle>.btn input[type=checkbox],
.btn-group-toggle>.btn input[type=radio],
.btn-group-toggle>.btn-group>.btn input[type=checkbox],
.btn-group-toggle>.btn-group>.btn input[type=radio] {
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    pointer-events: none
}

.input-group {
    position: relative !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
    width: 100%
}

.input-group>.custom-file,
.input-group>.custom-select,
.input-group>.form-control,
.input-group>.form-control-plaintext {
    position: relative !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    width: 1% !important;
    min-width: 0 !important;
    margin-bottom: 0
}

.input-group-append .btn:focus,
.input-group-prepend .btn:focus,
.input-group>.custom-file .custom-file-input:focus~.custom-file-label,
.input-group>.custom-select:focus,
.input-group>.form-control:focus {
    z-index: 3
}

.input-group>.custom-file .custom-file-input:focus {
    z-index: 4
}

.input-group>.custom-file {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center
}

.input-group-append,
.input-group-prepend {
    display: -ms-flexbox !important;
    display: flex
}

.input-group-append .btn,
.input-group-prepend .btn {
    position: relative !important;
    z-index: 2
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-text {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: .375rem .75rem !important;
    margin-bottom: 0 !important;
    color: #495057 !important;
    text-align: center !important;
    background-color: #e9ecef !important;
    border-radius: .25rem
}

.nav,
.navbar {
    -ms-flex-wrap: wrap
}

.input-group-lg>.custom-select,
.input-group-lg>.form-control:not(textarea) {
    height: calc(1.5em + 1rem + 2px)
}

.input-group-sm>.custom-select,
.input-group-sm>.form-control:not(textarea) {
    height: calc(1.5em + .5rem + 2px)
}

.custom-control-label::after,
.custom-control-label::before {
    top: .25rem !important;
    left: -1.5rem !important;
    display: block !important;
    height: 1rem !important;
    content: "" !important;
    width: 1rem
}

.input-group-lg>.custom-select,
.input-group-sm>.custom-select {
    padding-right: 1.75rem
}

.custom-control {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    min-height: 1.5rem !important;
    padding-left: 1.5rem !important;
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    print-color-adjust: exact
}

.custom-control-inline {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute !important;
    left: 0 !important;
    z-index: -1 !important;
    width: 1rem !important;
    height: 1.25rem !important;
    opacity: 0
}

.custom-control-input:checked~.custom-control-label::before {
    color: #fff !important;
    border-color: #007bff !important;
    background-color: #007bff
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: #80bdff
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: #fff !important;
    background-color: #b3d7ff !important;
    border-color: #b3d7ff
}

.custom-control-input:disabled~.custom-control-label::before,
.custom-control-input[disabled]~.custom-control-label::before,
.custom-file-input:disabled~.custom-file-label,
.custom-file-input[disabled]~.custom-file-label {
    background-color: #e9ecef
}

.custom-control-label {
    position: relative !important;
    margin-bottom: 0 !important;
    vertical-align: top
}

.custom-control-label::before {
    position: absolute !important;
    pointer-events: none !important;
    background-color: #fff !important;
    border: 1px solid #adb5bd
}

.custom-checkbox .custom-control-label::before,
.custom-select {
    border-radius: .25rem
}

.custom-file-input:focus~.custom-file-label,
.custom-select:focus {
    border-color: #80bdff !important;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-control-label::after {
    position: absolute !important;
    background: 50%/50% 50% no-repeat
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
    border-color: #007bff !important;
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e")
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
}

.custom-switch {
    padding-left: 2.25rem
}

.custom-switch .custom-control-label::before {
    left: -2.25rem !important;
    width: 1.75rem !important;
    pointer-events: all !important;
    border-radius: .5rem
}

.custom-switch .custom-control-label::after {
    top: calc(.25rem + 2px) !important;
    left: calc(-2.25rem + 2px) !important;
    width: calc(1rem - 4px) !important;
    height: calc(1rem - 4px) !important;
    background-color: #adb5bd !important;
    border-radius: .5rem !important;
    transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-transform .15s ease-in-out
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
    background-color: #fff !important;
    -webkit-transform: translateX(.75rem) !important;
    transform: translateX(.75rem)
}

.custom-select {
    display: inline-block !important;
    width: 100% !important;
    height: calc(1.5em + .75rem + 2px) !important;
    padding: .375rem 1.75rem .375rem .75rem !important;
    color: #495057 !important;
    vertical-align: middle !important;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .75rem center/8px 10px no-repeat #fff !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none
}

.custom-select:focus::-ms-value {
    color: #495057 !important;
    background-color: #fff
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
    height: auto !important;
    padding-right: .75rem !important;
    background-image: none
}

.custom-select:disabled {
    color: #6c757d !important;
    background-color: #e9ecef
}

.custom-select::-ms-expand {
    display: none
}

.custom-select:-moz-focusring {
    color: transparent !important;
    text-shadow: 0 0 0 #495057
}

.custom-select-sm {
    height: calc(1.5em + .5rem + 2px) !important;
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
    padding-left: .5rem !important;
    font-size: .875rem
}

.custom-select-lg {
    height: calc(1.5em + 1rem + 2px) !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
    padding-left: 1rem !important;
    font-size: 1.25rem
}

.custom-file,
.custom-file-input,
.custom-file-label {
    height: calc(1.5em + .75rem + 2px)
}

.custom-file {
    position: relative !important;
    display: inline-block !important;
    width: 100% !important;
    margin-bottom: 0
}

.custom-file-input {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    opacity: 0
}

.custom-file-label,
.custom-file-label::after {
    position: absolute !important;
    padding: .375rem .75rem !important;
    color: #495057 !important;
    top: 0 !important;
    line-height: 1.5 !important;
    right: 0
}

.custom-file-input:lang(en)~.custom-file-label::after {
    content: "Browse"
}

.custom-file-input~.custom-file-label[data-browse]::after {
    content: attr(data-browse)
}

.custom-file-label {
    left: 0 !important;
    z-index: 1 !important;
    overflow: hidden !important;
    font-weight: 400 !important;
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    border-radius: .25rem
}

.custom-file-label::after {
    bottom: 0 !important;
    z-index: 3 !important;
    display: block !important;
    height: calc(1.5em + .75rem) !important;
    content: "Browse" !important;
    background-color: #e9ecef !important;
    border-left: inherit !important;
    border-radius: 0 .25rem .25rem 0
}

.custom-range {
    width: 100% !important;
    height: 1.4rem !important;
    padding: 0 !important;
    background-color: transparent !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none
}

.custom-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range:focus::-ms-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-range::-moz-focus-outer {
    border: 0
}

.custom-range::-webkit-slider-thumb {
    width: 1rem !important;
    height: 1rem !important;
    margin-top: -.25rem !important;
    background-color: #007bff !important;
    border: 0 !important;
    border-radius: 1rem !important;
    -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    -webkit-appearance: none !important;
    appearance: none
}

.custom-range::-webkit-slider-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-webkit-slider-runnable-track {
    width: 100% !important;
    height: .5rem !important;
    color: transparent !important;
    cursor: pointer !important;
    background-color: #dee2e6 !important;
    border-color: transparent !important;
    border-radius: 1rem
}

.custom-range::-moz-range-thumb {
    width: 1rem !important;
    height: 1rem !important;
    background-color: #007bff !important;
    border: 0 !important;
    border-radius: 1rem !important;
    -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    -moz-appearance: none !important;
    appearance: none
}

.custom-range::-moz-range-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-moz-range-track {
    width: 100% !important;
    height: .5rem !important;
    color: transparent !important;
    cursor: pointer !important;
    background-color: #dee2e6 !important;
    border-color: transparent !important;
    border-radius: 1rem
}

.custom-range::-ms-thumb {
    width: 1rem !important;
    height: 1rem !important;
    margin-top: 0 !important;
    margin-right: .2rem !important;
    margin-left: .2rem !important;
    background-color: #007bff !important;
    border: 0 !important;
    border-radius: 1rem !important;
    -ms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out !important;
    appearance: none
}

.custom-range::-ms-thumb:active {
    background-color: #b3d7ff
}

.custom-range::-ms-track {
    width: 100% !important;
    height: .5rem !important;
    color: transparent !important;
    cursor: pointer !important;
    background-color: transparent !important;
    border-color: transparent !important;
    border-width: .5rem
}

.custom-range::-ms-fill-lower {
    background-color: #dee2e6 !important;
    border-radius: 1rem
}

.custom-range::-ms-fill-upper {
    margin-right: 15px !important;
    background-color: #dee2e6 !important;
    border-radius: 1rem
}

.custom-range:disabled::-webkit-slider-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-webkit-slider-runnable-track {
    cursor: default
}

.custom-range:disabled::-moz-range-thumb {
    background-color: #adb5bd
}

.custom-range:disabled::-moz-range-track {
    cursor: default
}

.custom-range:disabled::-ms-thumb {
    background-color: #adb5bd
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.nav {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap !important;
    padding-left: 0 !important;
    margin-bottom: 0
}

.nav-link,
.navbar {
    padding: .5rem 1rem
}

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

.nav-tabs {
    border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-link {
    margin-bottom: -1px !important;
    background-color: transparent !important;
    border: 1px solid transparent !important;
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    isolation: isolate !important;
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d !important;
    background-color: transparent !important;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057 !important;
    background-color: var(--theme-color) !important;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-tabs .dropdown-menu {
    margin-top: -1px !important;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0
}

.nav-pills .nav-link {
    background: 0 0 !important;
    border: 0 !important;
    border-radius: .25rem
}

.badge-primary,
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #007bff
}

.navbar-toggler,
button.close {
    background-color: transparent
}

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

.nav-justified .nav-item,
.nav-justified>.nav-link {
    -ms-flex-preferred-size: 0 !important;
    flex-basis: 0 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
    text-align: center
}

.badge:empty,
.navbar-expand .navbar-toggler,
.popover-header:empty,
.select-box ol li.hide,
.swiper-button-lock,
.swiper-pagination-lock,
.swiper-scrollbar-lock,
.tab-content>.tab-pane,
.toast.hide,
.ui-helper-hidden,
.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .ui-resizable-handle {
    display: none
}

.navbar {
    display: -ms-flexbox !important;
    display: flex !important;
    flex-wrap: wrap !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between
}

.navbar .container,
.navbar .container-fluid,
.navbar .container-lg,
.navbar .container-md,
.navbar .container-sm,
.navbar .container-xl {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between
}

.navbar-brand {
    display: inline-block !important;
    padding-top: .3125rem !important;
    padding-bottom: .3125rem !important;
    margin-right: 1rem !important;
    font-size: 1.25rem !important;
    line-height: inherit
}

.card-header-pills,
.card-header-tabs {
    margin-right: -.625rem !important;
    margin-left: -.625rem
}

.navbar-nav {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    padding-left: 0 !important;
    margin-bottom: 0
}

.navbar-nav .dropdown-menu {
    position: static !important;
    float: none
}

.card-img-overlay,
.navbar-expand .navbar-nav .dropdown-menu,
.ui-menu .ui-menu {
    position: absolute
}

.navbar-text {
    display: inline-block !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem
}

.navbar-collapse {
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
    -ms-flex-align: center !important;
    align-items: center
}

.navbar-toggler {
    padding: .25rem .75rem !important;
    font-size: 1.25rem !important;
    line-height: 1 !important;
    border: 1px solid transparent !important;
    border-radius: .25rem
}

.navbar-toggler-icon {
    display: inline-block !important;
    width: 1.5em !important;
    height: 1.5em !important;
    vertical-align: middle !important;
    content: "" !important;
    background: 50%/100% 100% no-repeat
}

.breadcrumb,
.card {
    display: -ms-flexbox
}

.navbar-nav-scroll {
    max-height: 75vh !important;
    overflow-y: auto
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-sm>.table-bordered {
        border: 0
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid,
    .navbar-expand-sm>.container-lg,
    .navbar-expand-sm>.container-md,
    .navbar-expand-sm>.container-sm,
    .navbar-expand-sm>.container-xl {
        padding-right: 0 !important;
        padding-left: 0
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-md>.table-bordered {
        border: 0
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        padding-right: 0 !important;
        padding-left: 0
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-lg>.table-bordered {
        border: 0
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid,
    .navbar-expand-lg>.container-lg,
    .navbar-expand-lg>.container-md,
    .navbar-expand-lg>.container-sm,
    .navbar-expand-lg>.container-xl {
        padding-right: 0 !important;
        padding-left: 0
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        display: block !important;
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch
    }

    .table-responsive-xl>.table-bordered {
        border: 0
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid,
    .navbar-expand-xl>.container-lg,
    .navbar-expand-xl>.container-md,
    .navbar-expand-xl>.container-sm,
    .navbar-expand-xl>.container-xl {
        padding-right: 0 !important;
        padding-left: 0
    }
}

.navbar-expand {
    -ms-flex-flow: row nowrap !important;
    flex-flow: row nowrap !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start
}

.list-group-horizontal,
.navbar-expand .navbar-nav {
    -ms-flex-direction: row !important;
    flex-direction: row
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem !important;
    padding-left: .5rem
}

.navbar-expand>.container,
.navbar-expand>.container-fluid,
.navbar-expand>.container-lg,
.navbar-expand>.container-md,
.navbar-expand>.container-sm,
.navbar-expand>.container-xl {
    padding-right: 0 !important;
    padding-left: 0 !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap
}

.navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto !important;
    flex-basis: auto
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover,
.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-text {
    color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, .3)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5) !important;
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link,
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, .5)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, .25)
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5) !important;
    border-color: rgba(255, 255, 255, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

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

.card-img,
.card-img-top,
.card>.list-group:first-child {
    border-top-left-radius: calc(.25rem - 1px) !important;
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card>.list-group:last-child {
    border-bottom-right-radius: calc(.25rem - 1px) !important;
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card>.list-group {
    border-top: inherit !important;
    border-bottom: inherit
}

.card>.list-group:first-child,
.list-group-item+.list-group-item {
    border-top-width: 0
}

.card>.list-group:last-child,
.list-group-flush>.list-group-item:last-child {
    border-bottom-width: 0
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
    border-top: 0
}

.card-body {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    min-height: 1px !important;
    padding: 1.25rem
}

.card-footer,
.card-header {
    padding: .75rem 1.25rem !important;
    background-color: rgba(0, 0, 0, .03)
}

.card-columns .card,
.card-title,
.toast:not(:last-child) {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem !important;
    margin-bottom: 0
}

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

.card-header {
    margin-bottom: 0 !important;
    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 {
    border-top: 1px solid rgba(0, 0, 0, .125)
}

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

.card-header-tabs {
    margin-bottom: -.75rem !important;
    border-bottom: 0
}

.card-img-overlay {
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    padding: 1.25rem !important;
    border-radius: calc(.25rem - 1px)
}

.card-img,
.card-img-bottom,
.card-img-top {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    width: 100%
}

.breadcrumb,
.pagination {
    border-radius: .25rem !important;
    list-style: none
}

.card-deck .card,
.card-group>.card {
    margin-bottom: 15px
}

.accordion {
    overflow-anchor: none
}

.accordion>.card:not(:last-of-type) {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0
}

.accordion>.card>.card-header {
    border-radius: 0 !important;
    margin-bottom: -1px
}

.breadcrumb {
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    padding: .75rem 1rem !important;
    margin-bottom: 1rem !important;
    background-color: #e9ecef
}

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

.breadcrumb-item+.breadcrumb-item::before {
    float: left !important;
    padding-right: .5rem !important;
    color: #6c757d !important;
    content: "/"
}

.pagination {
    display: -ms-flexbox !important;
    display: flex !important;
    padding-left: 0
}

.page-link {
    display: block !important;
    padding: .5rem .75rem !important;
    margin-left: -1px !important;
    line-height: 1.25 !important;
    color: #007bff !important;
    background-color: #fff !important;
    border: 1px solid #dee2e6
}

.page-link:hover {
    z-index: 2 !important;
    color: #0056b3 !important;
    text-decoration: none !important;
    background-color: #e9ecef !important;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 3 !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

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

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

.page-item.active .page-link {
    z-index: 3 !important;
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff
}

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

.pagination-lg .page-link {
    padding: .75rem 1.5rem !important;
    font-size: 1.25rem !important;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem !important;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem !important;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem !important;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem !important;
    border-bottom-right-radius: .2rem
}

.badge {
    display: inline-block !important;
    padding: .25em .4em !important;
    font-size: 75% !important;
    line-height: 1 !important;
    text-align: center !important;
    vertical-align: baseline !important;
    border-radius: .25rem !important;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn .badge {
    top: -1px
}

.badge-pill {
    padding-right: .6em !important;
    padding-left: .6em !important;
    border-radius: 10rem
}

a.badge-primary:focus,
a.badge-primary:hover {
    color: #fff !important;
    background-color: #0062cc
}

a.badge-primary.focus,
a.badge-primary:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.badge-secondary {
    color: #fff !important;
    background-color: #6c757d
}

a.badge-secondary:focus,
a.badge-secondary:hover {
    color: #fff !important;
    background-color: #545b62
}

a.badge-secondary.focus,
a.badge-secondary:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.badge-success {
    color: #fff !important;
    background-color: #28a745
}

a.badge-success:focus,
a.badge-success:hover {
    color: #fff !important;
    background-color: #1e7e34
}

a.badge-success.focus,
a.badge-success:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.badge-info {
    color: #fff !important;
    background-color: #17a2b8
}

a.badge-info:focus,
a.badge-info:hover {
    color: #fff !important;
    background-color: #117a8b
}

a.badge-info.focus,
a.badge-info:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.badge-warning {
    color: #212529 !important;
    background-color: #ffc107
}

a.badge-warning:focus,
a.badge-warning:hover {
    color: #212529 !important;
    background-color: #d39e00
}

a.badge-warning.focus,
a.badge-warning:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.badge-danger {
    color: #fff !important;
    background-color: #dc3545
}

a.badge-danger:focus,
a.badge-danger:hover {
    color: #fff !important;
    background-color: #bd2130
}

a.badge-danger.focus,
a.badge-danger:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.badge-light {
    color: #212529 !important;
    background-color: #f8f9fa
}

a.badge-light:focus,
a.badge-light:hover {
    color: #212529 !important;
    background-color: #dae0e5
}

a.badge-light.focus,
a.badge-light:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

a.badge-dark:focus,
a.badge-dark:hover {
    color: #fff !important;
    background-color: #1d2124
}

a.badge-dark.focus,
a.badge-dark:focus {
    outline: 0 !important;
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.jumbotron {
    padding: 2rem 1rem !important;
    margin-bottom: 2rem !important;
    background-color: #e9ecef !important;
    border-radius: .3rem
}

.jumbotron-fluid {
    padding-right: 0 !important;
    padding-left: 0 !important;
    border-radius: 0
}

.alert {
    padding: .75rem 1.25rem !important;
    margin-bottom: 1rem !important;
    border: 1px solid transparent !important;
    border-radius: .25rem
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    padding: .75rem 1.25rem !important;
    color: inherit
}

.alert-primary {
    color: #004085 !important;
    background-color: #cce5ff !important;
    border-color: #b8daff
}

.alert-primary hr {
    border-top-color: #9fcdff
}

.alert-primary .alert-link {
    color: #002752
}

.alert-secondary {
    color: #383d41 !important;
    background-color: #e2e3e5 !important;
    border-color: #d6d8db
}

.alert-secondary hr {
    border-top-color: #c8cbcf
}

.alert-secondary .alert-link {
    color: #202326
}

.alert-success {
    color: #155724 !important;
    background-color: #d4edda !important;
    border-color: #c3e6cb
}

.alert-success hr {
    border-top-color: #b1dfbb
}

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

.alert-info {
    color: #0c5460 !important;
    background-color: #d1ecf1 !important;
    border-color: #bee5eb
}

.alert-info hr {
    border-top-color: #abdde5
}

.alert-info .alert-link {
    color: #062c33
}

.alert-warning {
    color: #856404 !important;
    background-color: #fff3cd !important;
    border-color: #ffeeba
}

.alert-warning hr {
    border-top-color: #ffe8a1
}

.alert-warning .alert-link {
    color: #533f03
}

.alert-danger {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border-color: #f5c6cb
}

.alert-danger hr {
    border-top-color: #f1b0b7
}

.alert-danger .alert-link {
    color: #491217
}

.alert-light {
    color: #818182 !important;
    background-color: #fefefe !important;
    border-color: #fdfdfe
}

.alert-light hr {
    border-top-color: #ececf6
}

.alert-light .alert-link {
    color: #686868
}

.alert-dark {
    color: #1b1e21 !important;
    background-color: #d6d8d9 !important;
    border-color: #c6c8ca
}

.alert-dark hr {
    border-top-color: #b9bbbe
}

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

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

    to {
        background-position: 0 0
    }
}

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

    to {
        background-position: 0 0
    }
}

.progress {
    display: -ms-flexbox !important;
    display: flex !important;
    height: 1rem !important;
    line-height: 0 !important;
    font-size: .75rem !important;
    background-color: #e9ecef !important;
    border-radius: .25rem
}

.progress-bar {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    color: #fff !important;
    text-align: center !important;
    background-color: #007bff !important;
    transition: width .6s
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent) !important;
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes !important;
    animation: 1s linear infinite progress-bar-stripes
}

.media {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: start !important;
    align-items: flex-start
}

.media-body {
    -ms-flex: 1 !important;
    flex: 1
}

.list-group {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
    border-radius: .25rem
}

.list-group-item-action {
    width: 100% !important;
    color: #495057 !important;
    text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
    z-index: 1 !important;
    color: #495057 !important;
    text-decoration: none !important;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529 !important;
    background-color: #e9ecef
}

.list-group-item {
    display: block !important;
    padding: .75rem 1.25rem !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, .125)
}

.list-group-item:first-child {
    border-top-left-radius: inherit !important;
    border-top-right-radius: inherit
}

.list-group-item:last-child {
    border-bottom-right-radius: inherit !important;
    border-bottom-left-radius: inherit
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #6c757d !important;
    pointer-events: none !important;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2 !important;
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff
}

.list-group-item+.list-group-item.active {
    margin-top: -1px !important;
    border-top-width: 1px
}

.list-group-horizontal>.list-group-item:first-child {
    border-bottom-left-radius: .25rem !important;
    border-top-right-radius: 0
}

.list-group-horizontal>.list-group-item:last-child {
    border-top-right-radius: .25rem !important;
    border-bottom-left-radius: 0
}

.list-group-horizontal>.list-group-item+.list-group-item {
    border-top-width: 1px !important;
    border-left-width: 0
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
    margin-left: -1px !important;
    border-left-width: 1px
}

.list-group-flush>.list-group-item {
    border-width: 0 0 1px
}

.list-group-item-primary {
    color: #004085 !important;
    background-color: #b8daff
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
    color: #004085 !important;
    background-color: #9fcdff
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff !important;
    background-color: #004085 !important;
    border-color: #004085
}

.list-group-item-secondary {
    color: #383d41 !important;
    background-color: #d6d8db
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
    color: #383d41 !important;
    background-color: #c8cbcf
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff !important;
    background-color: #383d41 !important;
    border-color: #383d41
}

.list-group-item-success {
    color: #155724 !important;
    background-color: #c3e6cb
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
    color: #155724 !important;
    background-color: #b1dfbb
}

.list-group-item-success.list-group-item-action.active {
    color: #fff !important;
    background-color: #155724 !important;
    border-color: #155724
}

.list-group-item-info {
    color: #0c5460 !important;
    background-color: #bee5eb
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
    color: #0c5460 !important;
    background-color: #abdde5
}

.list-group-item-info.list-group-item-action.active {
    color: #fff !important;
    background-color: #0c5460 !important;
    border-color: #0c5460
}

.list-group-item-warning {
    color: #856404 !important;
    background-color: #ffeeba
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
    color: #856404 !important;
    background-color: #ffe8a1
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff !important;
    background-color: #856404 !important;
    border-color: #856404
}

.list-group-item-danger {
    color: #721c24 !important;
    background-color: #f5c6cb
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
    color: #721c24 !important;
    background-color: #f1b0b7
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff !important;
    background-color: #721c24 !important;
    border-color: #721c24
}

.list-group-item-light {
    color: #818182 !important;
    background-color: #fdfdfe
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
    color: #818182 !important;
    background-color: #ececf6
}

.list-group-item-light.list-group-item-action.active {
    color: #fff !important;
    background-color: #818182 !important;
    border-color: #818182
}

.list-group-item-dark {
    color: #1b1e21 !important;
    background-color: #c6c8ca
}

.toast,
.toast-header {
    background-color: rgba(255, 255, 255, .85) !important;
    background-clip: padding-box
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21 !important;
    background-color: #b9bbbe
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff !important;
    background-color: #1b1e21 !important;
    border-color: #1b1e21
}

.close {
    float: right !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: #000 !important;
    text-shadow: 0 1px 0 #fff !important;
    opacity: .5
}

.popover,
.tooltip {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    word-break: normal !important;
    word-spacing: normal !important;
    line-break: auto !important;
    text-decoration: none !important;
    white-space: normal
}

.modal-title,
.popover,
.tooltip {
    line-height: 1.5
}

.popover,
.text-hide,
.tooltip {
    text-shadow: none
}

.toast,
.tooltip {
    opacity: 0 !important;
    font-size: .875rem
}

.close:hover {
    color: #000 !important;
    text-decoration: none
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: .75
}

button.close {
    padding: 0 !important;
    border: 0
}

.toast {
    -ms-flex-preferred-size: 350px !important;
    flex-basis: 350px !important;
    max-width: 350px !important;
    border: 1px solid rgba(0, 0, 0, .1) !important;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1) !important;
    border-radius: .25rem
}

.carousel-indicators .active,
.toast.showing {
    opacity: 1
}

.toast.show {
    display: block !important;
    opacity: 1
}

.toast-header {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    padding: .25rem .75rem !important;
    color: #6c757d !important;
    border-bottom: 1px solid rgba(0, 0, 0, .05) !important;
    border-top-left-radius: calc(.25rem - 1px) !important;
    border-top-right-radius: calc(.25rem - 1px)
}

.toast-body {
    padding: .75rem
}

.modal-open .modal {
    overflow-x: hidden !important;
    overflow-y: auto
}

.modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    outline: 0
}

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

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

.modal.show .modal-dialog {
    -webkit-transform: none !important;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02) !important;
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    display: -ms-flexbox !important;
    display: flex !important;
    max-height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem) !important;
    overflow: hidden
}

.modal-dialog-scrollable .modal-footer,
.modal-dialog-scrollable .modal-header {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto
}

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

.modal-dialog-centered::before {
    display: block !important;
    height: calc(100vh - 1rem) !important;
    height: -webkit-min-content !important;
    height: -moz-min-content !important;
    height: min-content !important;
    content: ""
}

.modal-dialog-centered.modal-dialog-scrollable {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    height: 100%
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none
}

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

.modal-backdrop {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1040 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #000
}

.modal-backdrop.show {
    opacity: .5
}

.modal-header {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    padding: 1rem !important;
    border-bottom: 1px solid #dee2e6 !important;
    border-top-left-radius: calc(.3rem - 1px) !important;
    border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .close {
    padding: 1rem !important;
    margin: -1rem -1rem -1rem auto
}

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

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

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

.modal-scrollbar-measure {
    position: absolute !important;
    top: -9999px !important;
    width: 50px !important;
    height: 50px !important;
    overflow: scroll
}

.tooltip {
    position: absolute !important;
    z-index: 1070 !important;
    display: block !important;
    margin: 0 !important;
    text-align: left !important;
    text-align: start
}

.tooltip.show {
    opacity: .9
}

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

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

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-bottom,
.bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow,
.fixed-bottom,
.ui-slider-vertical .ui-slider-range-min,
.ui-spinner-down {
    bottom: 0
}

.bs-tooltip-auto[x-placement^=top] .arrow::before,
.bs-tooltip-top .arrow::before {
    top: 0 !important;
    border-width: .4rem .4rem 0 !important;
    border-top-color: #000
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-left,
.bs-tooltip-right {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
    left: 0 !important;
    width: .4rem !important;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=right] .arrow::before,
.bs-tooltip-right .arrow::before {
    right: 0 !important;
    border-width: .4rem .4rem .4rem 0 !important;
    border-right-color: #000
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow,
.fixed-top,
.ui-slider-vertical .ui-slider-range-max,
.ui-spinner-up {
    top: 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before,
.bs-tooltip-bottom .arrow::before {
    bottom: 0 !important;
    border-width: 0 .4rem .4rem !important;
    border-bottom-color: #000
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
    right: 0 !important;
    width: .4rem !important;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=left] .arrow::before,
.bs-tooltip-left .arrow::before {
    left: 0 !important;
    border-width: .4rem 0 .4rem .4rem !important;
    border-left-color: #000
}

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

.carousel-indicators li,
.popover {
    background-color: #fff !important;
    background-clip: padding-box
}

.popover {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1060 !important;
    display: block !important;
    max-width: 276px !important;
    text-align: left !important;
    text-align: start !important;
    font-size: .875rem !important;
    border: 1px solid rgba(0, 0, 0, .2) !important;
    border-radius: .3rem
}

.popover .arrow {
    position: absolute !important;
    display: block !important;
    width: 1rem !important;
    height: .5rem !important;
    margin: 0 .3rem
}

.popover .arrow::after,
.popover .arrow::before {
    position: absolute !important;
    display: block !important;
    content: "" !important;
    border-color: transparent !important;
    border-style: solid
}

.bs-popover-auto[x-placement^=top]>.arrow,
.bs-popover-top>.arrow {
    bottom: calc(-.5rem - 1px)
}

.bs-popover-auto[x-placement^=top]>.arrow::before,
.bs-popover-top>.arrow::before {
    bottom: 0 !important;
    border-width: .5rem .5rem 0 !important;
    border-top-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=top]>.arrow::after,
.bs-popover-top>.arrow::after {
    bottom: 1px !important;
    border-width: .5rem .5rem 0 !important;
    border-top-color: #fff
}

.bs-popover-auto[x-placement^=right],
.bs-popover-right {
    margin-left: .5rem
}

.bs-popover-auto[x-placement^=right]>.arrow,
.bs-popover-right>.arrow {
    left: calc(-.5rem - 1px) !important;
    width: .5rem !important;
    height: 1rem !important;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=right]>.arrow::before,
.bs-popover-right>.arrow::before {
    left: 0 !important;
    border-width: .5rem .5rem .5rem 0 !important;
    border-right-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=right]>.arrow::after,
.bs-popover-right>.arrow::after {
    left: 1px !important;
    border-width: .5rem .5rem .5rem 0 !important;
    border-right-color: #fff
}

.bs-popover-auto[x-placement^=bottom]>.arrow,
.bs-popover-bottom>.arrow {
    top: calc(-.5rem - 1px)
}

.bs-popover-auto[x-placement^=bottom]>.arrow::before,
.bs-popover-bottom>.arrow::before {
    top: 0 !important;
    border-width: 0 .5rem .5rem !important;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=bottom]>.arrow::after,
.bs-popover-bottom>.arrow::after {
    top: 1px !important;
    border-width: 0 .5rem .5rem !important;
    border-bottom-color: #fff
}

.bs-popover-auto[x-placement^=bottom] .popover-header::before,
.bs-popover-bottom .popover-header::before {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    display: block !important;
    width: 1rem !important;
    margin-left: -.5rem !important;
    content: "" !important;
    border-bottom: 1px solid #f7f7f7
}

.bs-popover-auto[x-placement^=left]>.arrow,
.bs-popover-left>.arrow {
    right: calc(-.5rem - 1px) !important;
    width: .5rem !important;
    height: 1rem !important;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=left]>.arrow::before,
.bs-popover-left>.arrow::before {
    right: 0 !important;
    border-width: .5rem 0 .5rem .5rem !important;
    border-left-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=left]>.arrow::after,
.bs-popover-left>.arrow::after {
    right: 1px !important;
    border-width: .5rem 0 .5rem .5rem !important;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem .75rem !important;
    margin-bottom: 0 !important;
    font-size: 1rem !important;
    background-color: #f7f7f7 !important;
    border-bottom: 1px solid #ebebeb !important;
    border-top-left-radius: calc(.3rem - 1px) !important;
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-body {
    padding: .5rem .75rem !important;
    color: #212529
}

.carousel.pointer-event,
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
    -ms-touch-action: pan-y !important;
    touch-action: pan-y
}

.carousel-inner {
    position: relative !important;
    width: 100% !important;
    overflow: hidden
}

.carousel-inner::after,
.clearfix::after {
    display: block !important;
    clear: both !important;
    content: ""
}

.carousel-item {
    position: relative !important;
    display: none !important;
    float: left !important;
    width: 100% !important;
    margin-right: -100% !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    transition: transform .6s ease-in-out !important;
    transition: transform .6s ease-in-out, -webkit-transform 6.6s ease-in-out
}

.active.carousel-item-right,
.carousel-item-next:not(.carousel-item-left) {
    -webkit-transform: translateX(100%) !important;
    transform: translateX(100%)
}

.active.carousel-item-left,
.carousel-item-prev:not(.carousel-item-right) {
    -webkit-transform: translateX(-100%) !important;
    transform: translateX(-100%)
}

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

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
    z-index: 1 !important;
    opacity: 1
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    z-index: 0 !important;
    opacity: 0 !important;
    transition: opacity 0s .6s
}

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

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

.carousel-control-prev,
.ui-slider-horizontal .ui-slider-range-min {
    left: 0
}

.carousel-control-next,
.ui-slider-horizontal .ui-slider-range-max {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    background: 50%/100% 100% no-repeat
}

.ui-datepicker .ui-icon,
.ui-icon {
    text-indent: -99999px !important;
    background-repeat: no-repeat
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 15 !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    padding-left: 0 !important;
    margin-right: 15% !important;
    margin-left: 15% !important;
    list-style: none
}

.spinner-border,
.spinner-grow {
    display: inline-block !important;
    vertical-align: -.125em
}

.carousel-indicators li {
    box-sizing: content-box !important;
    -ms-flex: 0 1 auto !important;
    flex: 0 1 auto !important;
    width: 30px !important;
    height: 3px !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-indent: -999px !important;
    cursor: pointer !important;
    border-top: 10px solid transparent !important;
    border-bottom: 10px solid transparent !important;
    opacity: .5 !important;
    transition: opacity .6s
}

.carousel-caption {
    position: absolute !important;
    right: 15% !important;
    bottom: 20px !important;
    left: 15% !important;
    z-index: 10 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    color: #fff !important;
    text-align: center
}

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

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

.spinner-border {
    width: 2rem !important;
    height: 2rem !important;
    border: .25em solid currentcolor !important;
    border-right-color: transparent !important;
    border-radius: 50% !important;
    -webkit-animation: .75s linear infinite spinner-border !important;
    animation: .75s linear infinite spinner-border
}

.spinner-border-sm {
    width: 1rem !important;
    height: 1rem !important;
    border-width: .2em
}

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

    50% {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none
    }
}

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

    50% {
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none
    }
}

.spinner-grow {
    width: 2rem !important;
    height: 2rem !important;
    background-color: currentcolor !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    -webkit-animation: .75s linear infinite spinner-grow !important;
    animation: .75s linear infinite spinner-grow
}

.spinner-grow-sm {
    width: 1rem !important;
    height: 1rem
}

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

    .badge,
    .btn,
    .carousel-control-next,
    .carousel-control-prev,
    .carousel-fade .active.carousel-item-left,
    .carousel-fade .active.carousel-item-right,
    .carousel-indicators li,
    .carousel-item,
    .collapsing,
    .collapsing.width,
    .custom-control-label::before,
    .custom-file-label,
    .custom-select,
    .custom-switch .custom-control-label::after,
    .fade,
    .form-control,
    .modal.fade .modal-dialog,
    .progress-bar {
        transition: none
    }

    .custom-range::-webkit-slider-thumb {
        -webkit-transition: none !important;
        transition: none
    }

    .custom-range::-moz-range-thumb {
        -moz-transition: none !important;
        transition: none
    }

    .custom-range::-ms-thumb {
        -ms-transition: none !important;
        transition: none
    }

    .progress-bar-animated {
        -webkit-animation: none !important;
        animation: none
    }

    .spinner-border,
    .spinner-grow {
        -webkit-animation-duration: 1.5s !important;
        animation-duration: 1.5s
    }
}

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

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

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

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

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

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

.ui-icon,
.ui-spinner,
.ui-spinner-input {
    vertical-align: middle
}

.bg-primary {
    background-color: #007bff !important
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
    background-color: #545b62 !important
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
    background-color: #1e7e34 !important
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
    background-color: #117a8b !important
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
    background-color: #d39e00 !important
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6 !important
}

.border-right {
    border-right: 1px solid #dee2e6 !important
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important
}

.border-left {
    border-left: 1px solid #dee2e6 !important
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0 !important
}

.border-right-0 {
    border-right: 0 !important
}

.border-bottom-0 {
    border-bottom: 0 !important
}

.border-left-0 {
    border-left: 0 !important
}

.border-primary {
    border-color: #007bff !important
}

.border-secondary {
    border-color: #6c757d !important
}

.border-success {
    border-color: #28a745 !important
}

.border-info {
    border-color: #17a2b8 !important
}

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

.border-dark {
    border-color: #343a40 !important
}

.border-white {
    border-color: #fff !important
}

.rounded-sm {
    border-radius: .2rem !important
}

.rounded-right,
.rounded-top {
    border-top-right-radius: .25rem !important
}

.rounded-bottom,
.rounded-right {
    border-bottom-right-radius: .25rem !important
}

.rounded-left,
.rounded-top {
    border-top-left-radius: .25rem !important
}

.rounded-bottom,
.rounded-left {
    border-bottom-left-radius: .25rem !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-lg {
    border-radius: .3rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-pill {
    border-radius: 50rem !important
}

.rounded-0 {
    border-radius: 0 !important
}

.d-inline {
    display: inline !important
}

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

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-table-cell {
    display: table-cell !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

.embed-responsive {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    overflow: hidden
}

.embed-responsive::before {
    display: block !important;
    content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important
}

.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important
}

.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important
}

.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important
}

.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important
}

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important
}

.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important
}

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important
}

.overflow-auto {
    overflow: auto !important
}

.overflow-hidden {
    overflow: hidden !important
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.fixed-bottom,
.fixed-top {
    position: fixed !important;
    z-index: 1030 !important;
    left: 0 !important;
    right: 0
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1020
    }
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal
}

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

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

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

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

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.w-auto {
    width: auto !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.h-auto {
    height: auto !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.min-vw-100 {
    min-width: 100vw !important
}

.min-vh-100 {
    min-height: 100vh !important
}

.vw-100 {
    width: 100vw !important
}

.vh-100 {
    height: 100vh !important
}

.m-0 {
    margin: 0 !important
}

.mt-0,
.my-0 {
    margin-top: 0 !important
}

.mr-0,
.mx-0 {
    margin-right: 0 !important
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem !important
}

.mt-1,
.my-1 {
    margin-top: .25rem !important
}

.mr-1,
.mx-1 {
    margin-right: .25rem !important
}

.mb-1,
.my-1 {
    margin-bottom: .25rem !important
}

.ml-1,
.mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem !important
}

.mt-2,
.my-2 {
    margin-top: .5rem !important
}

.mr-2,
.mx-2 {
    margin-right: .5rem !important
}

.mb-2,
.my-2 {
    margin-bottom: .5rem !important
}

.ml-2,
.mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem !important
}

.mt-3,
.my-3 {
    margin-top: 1rem !important
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem !important
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem !important
}

.mt-5,
.my-5 {
    margin-top: 3rem !important
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.pt-0,
.py-0 {
    padding-top: 0 !important
}

.pr-0,
.px-0 {
    padding-right: 0 !important
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important
}

.pl-0,
.px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.pt-1,
.py-1 {
    padding-top: .25rem !important
}

.pr-1,
.px-1 {
    padding-right: .25rem !important
}

.pb-1,
.py-1 {
    padding-bottom: .25rem !important
}

.pl-1,
.px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.pt-2,
.py-2 {
    padding-top: .5rem !important
}

.pr-2,
.px-2 {
    padding-right: .5rem !important
}

.pb-2,
.py-2 {
    padding-bottom: .5rem !important
}

.pl-2,
.px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.pt-3,
.py-3 {
    padding-top: 1rem !important
}

.pr-3,
.px-3 {
    padding-right: 1rem !important
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important
}

.pl-3,
.px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.pt-5,
.py-5 {
    padding-top: 3rem !important
}

.pr-5,
.px-5 {
    padding-right: 3rem !important
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important
}

.pl-5,
.px-5 {
    padding-left: 3rem !important
}

.m-n1 {
    margin: -.25rem !important
}

.mt-n1,
.my-n1 {
    margin-top: -.25rem !important
}

.mr-n1,
.mx-n1 {
    margin-right: -.25rem !important
}

.mb-n1,
.my-n1 {
    margin-bottom: -.25rem !important
}

.ml-n1,
.mx-n1 {
    margin-left: -.25rem !important
}

.m-n2 {
    margin: -.5rem !important
}

.mt-n2,
.my-n2 {
    margin-top: -.5rem !important
}

.mr-n2,
.mx-n2 {
    margin-right: -.5rem !important
}

.mb-n2,
.my-n2 {
    margin-bottom: -.5rem !important
}

.ml-n2,
.mx-n2 {
    margin-left: -.5rem !important
}

.m-n3 {
    margin: -1rem !important
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important
}

.m-n4 {
    margin: -1.5rem !important
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important
}

.m-n5 {
    margin: -3rem !important
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important
}

.m-auto {
    margin: auto !important
}

.mt-auto,
.my-auto {
    margin-top: auto !important
}

.mr-auto,
.mx-auto {
    margin-right: auto !important
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
    margin-left: auto !important
}

.stretched-link::after {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 1 !important;
    pointer-events: auto !important;
    content: "" !important;
    background-color: rgba(0, 0, 0, 0)
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important
}

.text-justify {
    text-align: justify !important
}

.text-wrap {
    white-space: normal !important
}

.text-nowrap {
    white-space: nowrap !important
}

.text-truncate {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap
}

.text-left {
    text-align: left !important
}

.text-right {
    text-align: right !important
}

.text-center {
    text-align: center !important
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }

    .col-sm {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        max-width: 100%
    }

    .col-sm-12,
    .row-cols-sm-1>* {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%
    }

    .col-sm-6,
    .row-cols-sm-2>* {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%
    }

    .col-sm-4,
    .row-cols-sm-3>* {
        -ms-flex: 0 0 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 33.333333%
    }

    .col-sm-3,
    .row-cols-sm-4>* {
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
        max-width: 25%
    }

    .row-cols-sm-5>* {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20%
    }

    .col-sm-2,
    .row-cols-sm-6>* {
        -ms-flex: 0 0 16.666667% !important;
        flex: 0 0 16.666667% !important;
        max-width: 16.666667%
    }

    .col-sm-auto {
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 100%
    }

    .col-sm-1 {
        -ms-flex: 0 0 8.333333% !important;
        flex: 0 0 8.333333% !important;
        max-width: 8.333333%
    }

    .col-sm-5 {
        -ms-flex: 0 0 41.666667% !important;
        flex: 0 0 41.666667% !important;
        max-width: 41.666667%
    }

    .col-sm-7 {
        -ms-flex: 0 0 58.333333% !important;
        flex: 0 0 58.333333% !important;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75%
    }

    .col-sm-10 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667%
    }

    .order-sm-first {
        -ms-flex-order: -1 !important;
        order: -1
    }

    .order-sm-last {
        -ms-flex-order: 13 !important;
        order: 13
    }

    .order-sm-0 {
        -ms-flex-order: 0 !important;
        order: 0
    }

    .order-sm-1 {
        -ms-flex-order: 1 !important;
        order: 1
    }

    .order-sm-2 {
        -ms-flex-order: 2 !important;
        order: 2
    }

    .order-sm-3 {
        -ms-flex-order: 3 !important;
        order: 3
    }

    .order-sm-4 {
        -ms-flex-order: 4 !important;
        order: 4
    }

    .order-sm-5 {
        -ms-flex-order: 5 !important;
        order: 5
    }

    .order-sm-6 {
        -ms-flex-order: 6 !important;
        order: 6
    }

    .order-sm-7 {
        -ms-flex-order: 7 !important;
        order: 7
    }

    .order-sm-8 {
        -ms-flex-order: 8 !important;
        order: 8
    }

    .order-sm-9 {
        -ms-flex-order: 9 !important;
        order: 9
    }

    .order-sm-10 {
        -ms-flex-order: 10 !important;
        order: 10
    }

    .order-sm-11 {
        -ms-flex-order: 11 !important;
        order: 11
    }

    .order-sm-12 {
        -ms-flex-order: 12 !important;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.333333%
    }

    .offset-sm-2 {
        margin-left: 16.666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.333333%
    }

    .offset-sm-5 {
        margin-left: 41.666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.333333%
    }

    .offset-sm-8 {
        margin-left: 66.666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.333333%
    }

    .offset-sm-11 {
        margin-left: 91.666667%
    }

    .form-inline label {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        -ms-flex-flow: row wrap !important;
        flex-flow: row wrap !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block !important;
        width: auto !important;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
        width: auto !important;
        padding-left: 0
    }

    .form-inline .form-check-input {
        position: relative !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
        margin-top: 0 !important;
        margin-right: .25rem !important;
        margin-left: 0
    }

    .form-inline .custom-control {
        -ms-flex-align: center !important;
        align-items: center !important;
        -ms-flex-pack: center !important;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }

    .dropdown-menu-sm-left {
        right: auto !important;
        left: 0
    }

    .dropdown-menu-sm-right {
        right: 0 !important;
        left: auto
    }

    .navbar-expand-sm {
        -ms-flex-flow: row nowrap !important;
        flex-flow: row nowrap !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start
    }

    .list-group-horizontal-sm,
    .navbar-expand-sm .navbar-nav {
        -ms-flex-direction: row !important;
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem !important;
        padding-left: .5rem
    }

    .navbar-expand-sm>.container,
    .navbar-expand-sm>.container-fluid,
    .navbar-expand-sm>.container-lg,
    .navbar-expand-sm>.container-md,
    .navbar-expand-sm>.container-sm,
    .navbar-expand-sm>.container-xl {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-sm .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }

    .card-deck {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-flow: row wrap !important;
        flex-flow: row wrap !important;
        margin-right: -15px !important;
        margin-left: -15px
    }

    .card-deck .card {
        -ms-flex: 1 0 0% !important;
        flex: 1 0 0% !important;
        margin-right: 15px !important;
        margin-bottom: 0 !important;
        margin-left: 15px
    }

    .card-group {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-flow: row wrap !important;
        flex-flow: row wrap
    }

    .card-group>.card {
        -ms-flex: 1 0 0% !important;
        flex: 1 0 0% !important;
        margin-bottom: 0
    }

    .card-group>.card+.card {
        margin-left: 0 !important;
        border-left: 0
    }

    .card-group>.card:not(:last-child) {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-header,
    .card-group>.card:not(:last-child) .card-img-top {
        border-top-right-radius: 0
    }

    .card-group>.card:not(:last-child) .card-footer,
    .card-group>.card:not(:last-child) .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group>.card:not(:first-child) {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-header,
    .card-group>.card:not(:first-child) .card-img-top {
        border-top-left-radius: 0
    }

    .card-group>.card:not(:first-child) .card-footer,
    .card-group>.card:not(:first-child) .card-img-bottom {
        border-bottom-left-radius: 0
    }

    .card-columns {
        -webkit-column-count: 3 !important;
        -moz-column-count: 3 !important;
        column-count: 3 !important;
        -webkit-column-gap: 1.25rem !important;
        -moz-column-gap: 1.25rem !important;
        column-gap: 1.25rem !important;
        orphans: 1 !important;
        widows: 1
    }

    .card-columns .card {
        display: inline-block !important;
        width: 100%
    }

    .jumbotron {
        padding: 4rem 2rem
    }

    .list-group-horizontal-sm>.list-group-item:first-child {
        border-bottom-left-radius: .25rem !important;
        border-top-right-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item:last-child {
        border-top-right-radius: .25rem !important;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-sm>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item {
        border-top-width: 1px !important;
        border-left-width: 0
    }

    .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
        margin-left: -1px !important;
        border-left-width: 1px
    }

    .modal-dialog {
        max-width: 500px !important;
        margin: 1.75rem auto
    }

    .modal-dialog-scrollable {
        max-height: calc(100% - 3.5rem)
    }

    .modal-dialog-scrollable .modal-content {
        max-height: calc(100vh - 3.5rem)
    }

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

    .modal-dialog-centered::before {
        height: calc(100vh - 3.5rem) !important;
        height: -webkit-min-content !important;
        height: -moz-min-content !important;
        height: min-content
    }

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

    .d-sm-none {
        display: none !important
    }

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

    .d-sm-inline-block {
        display: inline-block !important
    }

    .d-sm-block {
        display: block !important
    }

    .d-sm-table {
        display: table !important
    }

    .d-sm-table-row {
        display: table-row !important
    }

    .d-sm-table-cell {
        display: table-cell !important
    }

    .d-sm-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-sm-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-sm-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-sm-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-sm-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-sm-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-sm-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-sm-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-sm-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-sm-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-sm-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-sm-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }

    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }

    .m-sm-0 {
        margin: 0 !important
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem !important
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem !important
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem !important
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem !important
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem !important
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 !important
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem !important
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem !important
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem !important
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem !important
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem !important
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-n1 {
        margin: -.25rem !important
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -.25rem !important
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -.25rem !important
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -.25rem !important
    }

    .m-sm-n2 {
        margin: -.5rem !important
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -.5rem !important
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -.5rem !important
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -.5rem !important
    }

    .m-sm-n3 {
        margin: -1rem !important
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important
    }

    .m-sm-n4 {
        margin: -1.5rem !important
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important
    }

    .m-sm-n5 {
        margin: -3rem !important
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important
    }

    .m-sm-auto {
        margin: auto !important
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important
    }

    .text-sm-left {
        text-align: left !important
    }

    .text-sm-right {
        text-align: right !important
    }

    .text-sm-center {
        text-align: center !important
    }
}

@media (min-width:768px) {

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

    .col-md {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        max-width: 100%
    }

    .col-md-12,
    .row-cols-md-1>* {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%
    }

    .col-md-6,
    .row-cols-md-2>* {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%
    }

    .col-md-4,
    .row-cols-md-3>* {
        -ms-flex: 0 0 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 33.333333%
    }

    .col-md-3,
    .row-cols-md-4>* {
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
        max-width: 25%
    }

    .row-cols-md-5>* {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20%
    }

    .col-md-2,
    .row-cols-md-6>* {
        -ms-flex: 0 0 16.666667% !important;
        flex: 0 0 16.666667% !important;
        max-width: 16.666667%
    }

    .col-md-auto {
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 100%
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333% !important;
        flex: 0 0 8.333333% !important;
        max-width: 8.333333%
    }

    .col-md-5 {
        -ms-flex: 0 0 41.666667% !important;
        flex: 0 0 41.666667% !important;
        max-width: 41.666667%
    }

    .col-md-7 {
        -ms-flex: 0 0 58.333333% !important;
        flex: 0 0 58.333333% !important;
        max-width: 58.333333%
    }

    .col-md-8 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667%
    }

    .col-md-9 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 95% !important;
        max-width: 95%
    }

    .col-md-10 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333%
    }

    .col-md-11 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667%
    }

    .order-md-first {
        -ms-flex-order: -1 !important;
        order: -1
    }

    .order-md-last {
        -ms-flex-order: 13 !important;
        order: 13
    }

    .order-md-0 {
        -ms-flex-order: 0 !important;
        order: 0
    }

    .order-md-1 {
        -ms-flex-order: 1 !important;
        order: 1
    }

    .order-md-2 {
        -ms-flex-order: 2 !important;
        order: 2
    }

    .order-md-3 {
        -ms-flex-order: 3 !important;
        order: 3
    }

    .order-md-4 {
        -ms-flex-order: 4 !important;
        order: 4
    }

    .order-md-5 {
        -ms-flex-order: 5 !important;
        order: 5
    }

    .order-md-6 {
        -ms-flex-order: 6 !important;
        order: 6
    }

    .order-md-7 {
        -ms-flex-order: 7 !important;
        order: 7
    }

    .order-md-8 {
        -ms-flex-order: 8 !important;
        order: 8
    }

    .order-md-9 {
        -ms-flex-order: 9 !important;
        order: 9
    }

    .order-md-10 {
        -ms-flex-order: 10 !important;
        order: 10
    }

    .order-md-11 {
        -ms-flex-order: 11 !important;
        order: 11
    }

    .order-md-12 {
        -ms-flex-order: 12 !important;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .offset-md-2 {
        margin-left: 16.666667%
    }

    .offset-md-3 {
        margin-right: 25%
    }

    .offset-md-4 {
        margin-left: 33.333333%
    }

    .offset-md-5 {
        margin-left: 41.666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.333333%
    }

    .offset-md-8 {
        margin-left: 66.666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.333333%
    }

    .offset-md-11 {
        margin-left: 91.666667%
    }

    .dropdown-menu-md-left {
        right: auto !important;
        left: 0
    }

    .dropdown-menu-md-right {
        right: 0 !important;
        left: auto
    }

    .navbar-expand-md {
        -ms-flex-flow: row nowrap !important;
        flex-flow: row nowrap !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start
    }

    .list-group-horizontal-md,
    .navbar-expand-md .navbar-nav {
        -ms-flex-direction: row !important;
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem !important;
        padding-left: .5rem
    }

    .navbar-expand-md>.container,
    .navbar-expand-md>.container-fluid,
    .navbar-expand-md>.container-lg,
    .navbar-expand-md>.container-md,
    .navbar-expand-md>.container-sm,
    .navbar-expand-md>.container-xl {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-md .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }

    .list-group-horizontal-md>.list-group-item:first-child {
        border-bottom-left-radius: .25rem !important;
        border-top-right-radius: 0
    }

    .list-group-horizontal-md>.list-group-item:last-child {
        border-top-right-radius: .25rem !important;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-md>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item {
        border-top-width: 1px !important;
        border-left-width: 0
    }

    .list-group-horizontal-md>.list-group-item+.list-group-item.active {
        margin-left: -1px !important;
        border-left-width: 1px
    }

    .d-md-none {
        display: none !important
    }

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

    .d-md-inline-block {
        display: inline-block !important
    }

    .d-md-block {
        display: block !important
    }

    .d-md-table {
        display: table !important
    }

    .d-md-table-row {
        display: table-row !important
    }

    .d-md-table-cell {
        display: table-cell !important
    }

    .d-md-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-md-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-md-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-md-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-md-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-md-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-md-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }

    .float-md-left {
        float: left !important
    }

    .float-md-right {
        float: right !important
    }

    .float-md-none {
        float: none !important
    }

    .m-md-0 {
        margin: 0 !important
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem !important
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem !important
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem !important
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem !important
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem !important
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 !important
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem !important
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem !important
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem !important
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem !important
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem !important
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-n1 {
        margin: -.25rem !important
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -.25rem !important
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -.25rem !important
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -.25rem !important
    }

    .m-md-n2 {
        margin: -.5rem !important
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -.5rem !important
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -.5rem !important
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -.5rem !important
    }

    .m-md-n3 {
        margin: -1rem !important
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important
    }

    .m-md-n4 {
        margin: -1.5rem !important
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important
    }

    .m-md-n5 {
        margin: -3rem !important
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important
    }

    .m-md-auto {
        margin: auto !important
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important
    }

    .text-md-left {
        text-align: left !important
    }

    .text-md-right {
        text-align: right !important
    }

    .text-md-center {
        text-align: center !important
    }
}

@media (min-width:992px) {

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

    .col-lg {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        max-width: 100%
    }

    .col-lg-12,
    .row-cols-lg-1>* {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%
    }

    .col-lg-6,
    .row-cols-lg-2>* {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%
    }

    .col-lg-4,
    .row-cols-lg-3>* {
        -ms-flex: 0 0 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 33.333333%
    }

    .col-lg-3,
    .row-cols-lg-4>* {
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
        max-width: 25%
    }

    .row-cols-lg-5>* {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20%
    }

    .col-lg-2,
    .row-cols-lg-6>* {
        -ms-flex: 0 0 16.666667% !important;
        flex: 0 0 16.666667% !important;
        max-width: 16.666667%
    }

    .col-lg-auto {
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 100%
    }

    .col-lg-1 {
        -ms-flex: 0 0 8.333333% !important;
        flex: 0 0 8.333333% !important;
        max-width: 8.333333%
    }

    .col-lg-5 {
        -ms-flex: 0 0 41.666667% !important;
        flex: 0 0 41.666667% !important;
        max-width: 41.666667%
    }

    .col-lg-7 {
        -ms-flex: 0 0 58.333333% !important;
        flex: 0 0 58.333333% !important;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75%
    }

    .col-lg-10 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667%
    }

    .order-lg-first {
        -ms-flex-order: -1 !important;
        order: -1
    }

    .order-lg-last {
        -ms-flex-order: 13 !important;
        order: 13
    }

    .order-lg-0 {
        -ms-flex-order: 0 !important;
        order: 0
    }

    .order-lg-1 {
        -ms-flex-order: 1 !important;
        order: 1
    }

    .order-lg-2 {
        -ms-flex-order: 2 !important;
        order: 2
    }

    .order-lg-3 {
        -ms-flex-order: 3 !important;
        order: 3
    }

    .order-lg-4 {
        -ms-flex-order: 4 !important;
        order: 4
    }

    .order-lg-5 {
        -ms-flex-order: 5 !important;
        order: 5
    }

    .order-lg-6 {
        -ms-flex-order: 6 !important;
        order: 6
    }

    .order-lg-7 {
        -ms-flex-order: 7 !important;
        order: 7
    }

    .order-lg-8 {
        -ms-flex-order: 8 !important;
        order: 8
    }

    .order-lg-9 {
        -ms-flex-order: 9 !important;
        order: 9
    }

    .order-lg-10 {
        -ms-flex-order: 10 !important;
        order: 10
    }

    .order-lg-11 {
        -ms-flex-order: 11 !important;
        order: 11
    }

    .order-lg-12 {
        -ms-flex-order: 12 !important;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }

    .offset-lg-2 {
        margin-left: 16.666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.333333%
    }

    .offset-lg-5 {
        margin-left: 41.666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.333333%
    }

    .offset-lg-8 {
        margin-left: 66.666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.333333%
    }

    .offset-lg-11 {
        margin-left: 91.666667%
    }

    .dropdown-menu-lg-left {
        right: auto !important;
        left: 0
    }

    .dropdown-menu-lg-right {
        right: 0 !important;
        left: auto
    }

    .navbar-expand-lg {
        -ms-flex-flow: row nowrap !important;
        flex-flow: row nowrap !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start
    }

    .list-group-horizontal-lg,
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row !important;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem !important;
        padding-left: .5rem
    }

    .navbar-expand-lg>.container,
    .navbar-expand-lg>.container-fluid,
    .navbar-expand-lg>.container-lg,
    .navbar-expand-lg>.container-md,
    .navbar-expand-lg>.container-sm,
    .navbar-expand-lg>.container-xl {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

    .list-group-horizontal-lg>.list-group-item:first-child {
        border-bottom-left-radius: .25rem !important;
        border-top-right-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item:last-child {
        border-top-right-radius: .25rem !important;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-lg>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item {
        border-top-width: 1px !important;
        border-left-width: 0
    }

    .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
        margin-left: -1px !important;
        border-left-width: 1px
    }

    .modal-lg,
    .modal-xl {
        max-width: 800px
    }

    .d-lg-none {
        display: none !important
    }

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

    .d-lg-inline-block {
        display: inline-block !important
    }

    .d-lg-block {
        display: block !important
    }

    .d-lg-table {
        display: table !important
    }

    .d-lg-table-row {
        display: table-row !important
    }

    .d-lg-table-cell {
        display: table-cell !important
    }

    .d-lg-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-lg-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-lg-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-lg-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-lg-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-lg-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-lg-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }

    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }

    .m-lg-0 {
        margin: 0 !important
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem !important
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem !important
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem !important
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem !important
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem !important
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 !important
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem !important
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem !important
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem !important
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem !important
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem !important
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-n1 {
        margin: -.25rem !important
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -.25rem !important
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -.25rem !important
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -.25rem !important
    }

    .m-lg-n2 {
        margin: -.5rem !important
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -.5rem !important
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -.5rem !important
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -.5rem !important
    }

    .m-lg-n3 {
        margin: -1rem !important
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important
    }

    .m-lg-n4 {
        margin: -1.5rem !important
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important
    }

    .m-lg-n5 {
        margin: -3rem !important
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important
    }

    .m-lg-auto {
        margin: auto !important
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important
    }

    .text-lg-left {
        text-align: left !important
    }

    .text-lg-right {
        text-align: right !important
    }

    .text-lg-center {
        text-align: center !important
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .modal-xl {
        max-width: 1140px
    }

    .col-xl {
        -ms-flex-preferred-size: 0 !important;
        flex-basis: 0 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
        max-width: 100%
    }

    .col-xl-12,
    .row-cols-xl-1>* {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100%
    }

    .col-xl-6,
    .row-cols-xl-2>* {
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50%
    }

    .col-xl-4,
    .row-cols-xl-3>* {
        -ms-flex: 0 0 33.333333% !important;
        flex: 0 0 33.333333% !important;
        max-width: 33.333333%
    }

    .col-xl-3,
    .row-cols-xl-4>* {
        -ms-flex: 0 0 25% !important;
        flex: 0 0 25% !important;
        max-width: 25%
    }

    .row-cols-xl-5>* {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20%
    }

    .col-xl-2,
    .row-cols-xl-6>* {
        -ms-flex: 0 0 16.666667% !important;
        flex: 0 0 16.666667% !important;
        max-width: 16.666667%
    }

    .col-xl-auto {
        -ms-flex: 0 0 auto !important;
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: 100%
    }

    .col-xl-1 {
        -ms-flex: 0 0 8.333333% !important;
        flex: 0 0 8.333333% !important;
        max-width: 8.333333%
    }

    .col-xl-5 {
        -ms-flex: 0 0 41.666667% !important;
        flex: 0 0 41.666667% !important;
        max-width: 41.666667%
    }

    .col-xl-7 {
        -ms-flex: 0 0 58.333333% !important;
        flex: 0 0 58.333333% !important;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75%
    }

    .col-xl-10 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667%
    }

    .order-xl-first {
        -ms-flex-order: -1 !important;
        order: -1
    }

    .order-xl-last {
        -ms-flex-order: 13 !important;
        order: 13
    }

    .order-xl-0 {
        -ms-flex-order: 0 !important;
        order: 0
    }

    .order-xl-1 {
        -ms-flex-order: 1 !important;
        order: 1
    }

    .order-xl-2 {
        -ms-flex-order: 2 !important;
        order: 2
    }

    .order-xl-3 {
        -ms-flex-order: 3 !important;
        order: 3
    }

    .order-xl-4 {
        -ms-flex-order: 4 !important;
        order: 4
    }

    .order-xl-5 {
        -ms-flex-order: 5 !important;
        order: 5
    }

    .order-xl-6 {
        -ms-flex-order: 6 !important;
        order: 6
    }

    .order-xl-7 {
        -ms-flex-order: 7 !important;
        order: 7
    }

    .order-xl-8 {
        -ms-flex-order: 8 !important;
        order: 8
    }

    .order-xl-9 {
        -ms-flex-order: 9 !important;
        order: 9
    }

    .order-xl-10 {
        -ms-flex-order: 10 !important;
        order: 10
    }

    .order-xl-11 {
        -ms-flex-order: 11 !important;
        order: 11
    }

    .order-xl-12 {
        -ms-flex-order: 12 !important;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.333333%
    }

    .offset-xl-2 {
        margin-left: 16.666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.333333%
    }

    .offset-xl-5 {
        margin-left: 41.666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.333333%
    }

    .offset-xl-8 {
        margin-left: 66.666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.333333%
    }

    .offset-xl-11 {
        margin-left: 91.666667%
    }

    .dropdown-menu-xl-left {
        right: auto !important;
        left: 0
    }

    .dropdown-menu-xl-right {
        right: 0 !important;
        left: auto
    }

    .navbar-expand-xl {
        -ms-flex-flow: row nowrap !important;
        flex-flow: row nowrap !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start
    }

    .list-group-horizontal-xl,
    .navbar-expand-xl .navbar-nav {
        -ms-flex-direction: row !important;
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem !important;
        padding-left: .5rem
    }

    .navbar-expand-xl>.container,
    .navbar-expand-xl>.container-fluid,
    .navbar-expand-xl>.container-lg,
    .navbar-expand-xl>.container-md,
    .navbar-expand-xl>.container-sm,
    .navbar-expand-xl>.container-xl {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible
    }

    .navbar-expand-xl .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto !important;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }

    .list-group-horizontal-xl>.list-group-item:first-child {
        border-bottom-left-radius: .25rem !important;
        border-top-right-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item:last-child {
        border-top-right-radius: .25rem !important;
        border-bottom-left-radius: 0
    }

    .list-group-horizontal-xl>.list-group-item.active {
        margin-top: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item {
        border-top-width: 1px !important;
        border-left-width: 0
    }

    .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
        margin-left: -1px !important;
        border-left-width: 1px
    }

    .d-xl-none {
        display: none !important
    }

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

    .d-xl-inline-block {
        display: inline-block !important
    }

    .d-xl-block {
        display: block !important
    }

    .d-xl-table {
        display: table !important
    }

    .d-xl-table-row {
        display: table-row !important
    }

    .d-xl-table-cell {
        display: table-cell !important
    }

    .d-xl-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important
    }

    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important
    }

    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important
    }

    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important
    }

    .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important
    }

    .flex-xl-grow-1 {
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important
    }

    .flex-xl-shrink-0 {
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important
    }

    .flex-xl-shrink-1 {
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important
    }

    .justify-content-xl-start {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

    .align-self-xl-start {
        -ms-flex-item-align: start !important;
        align-self: flex-start !important
    }

    .align-self-xl-end {
        -ms-flex-item-align: end !important;
        align-self: flex-end !important
    }

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }

    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }

    .m-xl-0 {
        margin: 0 !important
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem !important
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem !important
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem !important
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem !important
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem !important
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 !important
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem !important
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem !important
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem !important
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem !important
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem !important
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-n1 {
        margin: -.25rem !important
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -.25rem !important
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -.25rem !important
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -.25rem !important
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -.25rem !important
    }

    .m-xl-n2 {
        margin: -.5rem !important
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -.5rem !important
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -.5rem !important
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -.5rem !important
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -.5rem !important
    }

    .m-xl-n3 {
        margin: -1rem !important
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important
    }

    .m-xl-n4 {
        margin: -1.5rem !important
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important
    }

    .m-xl-n5 {
        margin: -3rem !important
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important
    }

    .m-xl-auto {
        margin: auto !important
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important
    }

    .text-xl-left {
        text-align: left !important
    }

    .text-xl-right {
        text-align: right !important
    }

    .text-xl-center {
        text-align: center !important
    }
}

.text-lowercase {
    text-transform: lowercase !important
}

.text-uppercase {
    text-transform: uppercase !important
}

.text-capitalize {
    text-transform: capitalize !important
}

.font-weight-light {
    font-weight: 300 !important
}

.font-weight-lighter {
    font-weight: lighter !important
}

.font-weight-normal {
    font-weight: 400 !important
}

.font-weight-bold {
    font-weight: 700 !important
}

.font-weight-bolder {
    font-weight: bolder !important
}

.font-italic {
    font-style: italic !important
}

.text-white {
    color: #fff !important
}

.text-primary {
    color: #007bff !important
}

a.text-primary:focus,
a.text-primary:hover {
    color: #0056b3 !important
}

.text-muted,
.text-secondary {
    color: #6c757d !important
}

a.text-secondary:focus,
a.text-secondary:hover {
    color: #494f54 !important
}

.text-success {
    color: #28a745 !important
}

a.text-success:focus,
a.text-success:hover {
    color: #19692c !important
}

.text-info {
    color: #17a2b8 !important
}

a.text-info:focus,
a.text-info:hover {
    color: #0f6674 !important
}

.text-warning {
    color: #ffc107 !important
}

a.text-warning:focus,
a.text-warning:hover {
    color: #ba8b00 !important
}

.text-danger {
    color: #dc3545 !important
}

a.text-danger:focus,
a.text-danger:hover {
    color: #a71d2a !important
}

.text-light {
    color: #f8f9fa !important
}

a.text-light:focus,
a.text-light:hover {
    color: #cbd3da !important
}

.text-dark {
    color: #343a40 !important
}

a.text-dark:focus,
a.text-dark:hover {
    color: #121416 !important
}

.text-body {
    color: #212529 !important
}

.text-black-50 {
    color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
    color: rgba(255, 255, 255, .5) !important
}

.text-hide {
    font: 0/0 a !important;
    color: transparent !important;
    background-color: transparent !important;
    border: 0
}

.text-decoration-none {
    text-decoration: none !important
}

.text-break {
    word-break: break-word !important;
    word-wrap: break-word !important
}

.text-reset {
    color: inherit !important
}

.visible {
    visibility: visible !important
}

.invisible {
    visibility: hidden !important
}

@media print {
    .d-print-none {
        display: none !important
    }

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

    .d-print-inline-block {
        display: inline-block !important
    }

    .d-print-block {
        display: block !important
    }

    .d-print-table {
        display: table !important
    }

    .d-print-table-row {
        display: table-row !important
    }

    .d-print-table-cell {
        display: table-cell !important
    }

    .d-print-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }

    blockquote,
    img,
    pre,
    tr {
        page-break-inside: avoid
    }

    *,
    ::after,
    ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote,
    pre {
        border: 1px solid #adb5bd
    }

    h2,
    h3,
    p {
        orphans: 3 !important;
        widows: 3
    }

    h2,
    h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    .container,
    body {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td,
    .table th {
        background-color: #fff !important
    }

    .table-bordered td,
    .table-bordered th {
        border: 1px solid #dee2e6 !important
    }

    .table-dark {
        color: inherit
    }

    .table-dark tbody+tbody,
    .table-dark td,
    .table-dark th,
    .table-dark thead th {
        border-color: #dee2e6
    }

    .table .thead-dark th {
        color: inherit !important;
        border-color: #dee2e6
    }
}

/*! jQuery UI - v1.12.1 - 2018-11-18
* http://jqueryui.com
* Includes: draggable.css, core.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=base&cornerRadiusShadow=8px&offsetLeftShadow=0px&offsetTopShadow=0px&thicknessShadow=5px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=666666&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cc0000&fcError=5f3f3f&borderColorError=f1a899&bgTextureError=flat&bgColorError=fddfdf&iconColorHighlight=777620&fcHighlight=777620&borderColorHighlight=dad55e&bgTextureHighlight=flat&bgColorHighlight=fffa90&iconColorActive=ffffff&fcActive=ffffff&borderColorActive=003eff&bgTextureActive=flat&bgColorActive=007fff&iconColorHover=555555&fcHover=2b2b2b&borderColorHover=cccccc&bgTextureHover=flat&bgColorHover=ededed&iconColorDefault=777777&fcDefault=454545&borderColorDefault=c5c5c5&bgTextureDefault=flat&bgColorDefault=f6f6f6&iconColorContent=444444&fcContent=333333&borderColorContent=dddddd&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=444444&fcHeader=333333&borderColorHeader=dddddd&bgTextureHeader=flat&bgColorHeader=e9e9e9&cornerRadius=3px&fwDefault=normal&fsDefault=1em&ffDefault=Arial%2CHelvetica%2Csans-serif
* Copyright jQuery Foundation and other contributors !important; Licensed MIT */
.ui-draggable-handle,
.ui-selectable,
.ui-sortable-handle {
    -ms-touch-action: none !important;
    touch-action: none
}

.ui-helper-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px
}

.ui-helper-reset {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    font-size: 100% !important;
    list-style: none
}

.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
    content: "" !important;
    display: table !important;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.ui-helper-zfix {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    position: absolute !important;
    opacity: 0 !important;
    filter: Alpha(Opacity=0)
}

.ui-front {
    z-index: 100
}

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none
}

.ui-icon {
    display: inline-block !important;
    margin-top: -.25em !important;
    position: relative !important;
    overflow: hidden
}

.ui-widget-icon-block {
    left: 50% !important;
    margin-left: -8px !important;
    display: block
}

.ui-widget-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100%
}

.ui-resizable-handle {
    position: absolute !important;
    font-size: .1px !important;
    display: block !important;
    -ms-touch-action: none !important;
    touch-action: none
}

.ui-resizable-n {
    cursor: n-resize !important;
    height: 7px !important;
    width: 100% !important;
    top: -5px !important;
    left: 0
}

.ui-resizable-s {
    cursor: s-resize !important;
    height: 7px !important;
    width: 100% !important;
    bottom: -5px !important;
    left: 0
}

.ui-resizable-e {
    cursor: e-resize !important;
    width: 7px !important;
    right: -5px !important;
    top: 0 !important;
    height: 100%
}

.ui-resizable-w {
    cursor: w-resize !important;
    width: 7px !important;
    left: -5px !important;
    top: 0 !important;
    height: 100%
}

.ui-resizable-se {
    cursor: se-resize !important;
    width: 12px !important;
    height: 12px !important;
    right: 1px !important;
    bottom: 1px
}

.ui-resizable-sw {
    cursor: sw-resize !important;
    width: 9px !important;
    height: 9px !important;
    left: -5px !important;
    bottom: -5px
}

.ui-resizable-nw {
    cursor: nw-resize !important;
    width: 9px !important;
    height: 9px !important;
    left: -5px !important;
    top: -5px
}

.ui-resizable-ne {
    cursor: ne-resize !important;
    width: 9px !important;
    height: 9px !important;
    right: -5px !important;
    top: -5px
}

.ui-selectable-helper {
    position: absolute !important;
    z-index: 100 !important;
    border: 1px dotted #000
}

.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,
.ui-controlgroup>.ui-controlgroup-item:focus,
.ui-tooltip {
    z-index: 9999
}

.ui-accordion .ui-accordion-header {
    display: block !important;
    cursor: pointer !important;
    position: relative !important;
    margin: 2px 0 0 !important;
    padding: .5em .5em .5em .7em !important;
    font-size: 100%
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em !important;
    border-top: 0 !important;
    overflow: auto
}

.ui-autocomplete {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    cursor: default
}

.ui-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    outline: 0
}

.ui-button,
.ui-controlgroup {
    display: inline-block !important;
    vertical-align: middle
}

.ui-menu .ui-menu-item {
    margin: 0 !important;
    cursor: pointer !important;
    list-style-image: url("data:image/gif !important;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}

.ui-menu .ui-menu-item-wrapper {
    position: relative !important;
    padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
    margin: 5px 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    border-width: 1px 0 0
}

.ui-menu .ui-state-active,
.ui-menu .ui-state-focus {
    margin: -1px
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em
}

.ui-button,
.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

.ui-menu .ui-icon {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: .2em !important;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    left: auto !important;
    right: 0
}

.ui-button {
    position: relative !important;
    line-height: normal !important;
    margin-right: .1em !important;
    cursor: pointer !important;
    text-align: center !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    overflow: visible
}

.ui-button-icon-only {
    width: 2em !important;
    text-indent: -9999px !important;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin-top: -8px !important;
    margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0 !important;
    width: 2.1em !important;
    height: 2.1em !important;
    text-indent: -9999px !important;
    white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto !important;
    height: auto !important;
    text-indent: 0 !important;
    white-space: normal !important;
    padding: .4em 1em
}

button.ui-button::-moz-focus-inner,
input.ui-button::-moz-focus-inner {
    border: 0 !important;
    padding: 0
}

.ui-controlgroup>.ui-controlgroup-item {
    float: left !important;
    margin-left: 0 !important;
    margin-right: 0
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
    display: block !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-align: left
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
    border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
    border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75% !important;
    width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc !important;
    border-radius: .12em !important;
    border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px !important;
    height: 16px !important;
    border-radius: 1em !important;
    overflow: visible !important;
    border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none !important;
    width: 8px !important;
    height: 8px !important;
    border-width: 4px !important;
    border-style: solid
}

.ui-datepicker {
    width: 17em !important;
    padding: .2em .2em 0 !important;
    display: none
}

.ui-datepicker .ui-datepicker-header {
    position: relative !important;
    padding: .2em 0
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    position: absolute !important;
    top: 2px !important;
    width: 1.8em !important;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-hover {
    top: 1px
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px
}

.ui-datepicker .ui-datepicker-next {
    right: 2px
}

.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px
}

.ui-datepicker .ui-datepicker-next-hover {
    right: 1px
}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    margin-left: -8px !important;
    top: 50% !important;
    margin-top: -8px
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em !important;
    line-height: 1.8em !important;
    text-align: center
}

.ui-datepicker .ui-datepicker-title select {
    font-size: 1em !important;
    margin: 1px 0
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%
}

.ui-datepicker table {
    width: 100% !important;
    font-size: .9em !important;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em !important;
    text-align: center !important;
    font-weight: 700 !important;
    border: 0
}

.ui-datepicker td {
    border: 0 !important;
    padding: 1px
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: block !important;
    padding: .2em !important;
    text-align: right !important;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none !important;
    margin: .7em 0 0 !important;
    padding: 0 .2em !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right !important;
    margin: .5em .2em .4em !important;
    cursor: pointer !important;
    padding: .2em .6em .3em !important;
    width: auto !important;
    overflow: visible
}

.swiper-container-no-flexbox .swiper-slide,
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-multi .ui-datepicker-group,
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95% !important;
    margin: 0 auto .4em
}

.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%
}

.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%
}

.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left
}

.ui-datepicker-row-break {
    clear: both !important;
    width: 100% !important;
    font-size: 0
}

.ui-datepicker-rtl {
    direction: rtl
}

.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px !important;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px !important;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px !important;
    left: auto
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px !important;
    right: auto
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group,
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0 !important;
    border-left-width: 1px
}

.ui-datepicker .ui-icon {
    display: block !important;
    overflow: hidden !important;
    left: .5em !important;
    top: .3em
}

.ui-dialog {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    padding: .2em !important;
    outline: 0
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em !important;
    position: relative
}

.ui-dialog .ui-dialog-title {
    float: left !important;
    margin: .1em 0 !important;
    white-space: nowrap !important;
    width: 90% !important;
    overflow: hidden !important;
    text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute !important;
    right: .3em !important;
    top: 50% !important;
    width: 20px !important;
    margin: -10px 0 0 !important;
    padding: 1px !important;
    height: 20px
}

.ui-dialog .ui-dialog-content {
    position: relative !important;
    border: 0 !important;
    padding: .5em 1em !important;
    background: 0 0 !important;
    overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left !important;
    border-width: 1px 0 0 !important;
    background-image: none !important;
    margin-top: .5em !important;
    padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0 !important;
    cursor: pointer
}

.ui-dialog .ui-resizable-n {
    height: 2px !important;
    top: 0
}

.ui-dialog .ui-resizable-e {
    width: 2px !important;
    right: 0
}

.ui-dialog .ui-resizable-s {
    height: 2px !important;
    bottom: 0
}

.ui-dialog .ui-resizable-w {
    width: 2px !important;
    left: 0
}

.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw,
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw {
    width: 7px !important;
    height: 7px
}

.ui-dialog .ui-resizable-se {
    right: 0 !important;
    bottom: 0
}

.ui-dialog .ui-resizable-sw {
    left: 0 !important;
    bottom: 0
}

.ui-dialog .ui-resizable-ne {
    right: 0 !important;
    top: 0
}

.ui-dialog .ui-resizable-nw {
    left: 0 !important;
    top: 0
}

.swiper-scrollbar-cursor-drag,
.swiper-slide-zoomed,
.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-progressbar {
    height: 2em !important;
    text-align: left !important;
    overflow: hidden
}

.ui-progressbar .ui-progressbar-value {
    margin: -1px !important;
    height: 100%
}

.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif !important;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100% !important;
    opacity: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectmenu-menu {
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    display: none
}

.ui-selectmenu-menu .ui-menu {
    overflow: auto !important;
    overflow-x: hidden !important;
    padding-bottom: 1px
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    padding: 2px .4em !important;
    margin: .5em 0 0 !important;
    height: auto !important;
    border: 0
}

.ui-selectmenu-text {
    display: block !important;
    margin-right: 20px !important;
    overflow: hidden !important;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: left !important;
    white-space: nowrap !important;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: right !important;
    margin-top: 0
}

.ui-slider {
    position: relative !important;
    text-align: left
}

.ui-slider .ui-slider-handle {
    position: absolute !important;
    z-index: 2 !important;
    width: 1.2em !important;
    height: 1.2em !important;
    cursor: default !important;
    -ms-touch-action: none !important;
    touch-action: none
}

.ui-slider .ui-slider-range {
    position: absolute !important;
    z-index: 1 !important;
    font-size: .7em !important;
    display: block !important;
    border: 0 !important;
    background-position: 0 0
}

.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit
}

.ui-slider-horizontal {
    height: .8em
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em !important;
    margin-left: -.6em
}

.ui-slider-horizontal .ui-slider-range {
    top: 0 !important;
    height: 100%
}

.ui-slider-vertical {
    width: .8em !important;
    height: 100px
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em !important;
    margin-left: 0 !important;
    margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
    left: 0 !important;
    width: 100%
}

.ui-spinner {
    position: relative !important;
    display: inline-block !important;
    overflow: hidden !important;
    padding: 0
}

.ui-spinner-input {
    border: none !important;
    background: 0 0 !important;
    color: inherit !important;
    padding: .222em 0 !important;
    margin: .2em 2em .2em .4em
}

.ui-spinner-button {
    width: 1.6em !important;
    height: 50% !important;
    font-size: .5em !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: center !important;
    position: absolute !important;
    cursor: default !important;
    display: block !important;
    overflow: hidden !important;
    right: 0
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none !important;
    border-bottom-style: none !important;
    border-right-style: none
}

.ui-tabs {
    position: relative !important;
    padding: .2em
}

.ui-tabs .ui-tabs-nav {
    margin: 0 !important;
    padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
    list-style: none !important;
    float: left !important;
    position: relative !important;
    top: 0 !important;
    margin: 1px .2em 0 0 !important;
    border-bottom-width: 0 !important;
    padding: 0 !important;
    white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left !important;
    padding: .5em 1em !important;
    text-decoration: none
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px !important;
    padding-bottom: 1px
}

.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text
}

.ui-tabs .ui-tabs-panel {
    display: block !important;
    border-width: 0 !important;
    padding: 1em 1.4em !important;
    background: 0 0
}

.ui-tooltip {
    padding: 8px !important;
    position: absolute !important;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget,
.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 1em
}

.ui-widget .ui-widget {
    font-size: 1em
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5
}

.ui-widget-content {
    border: 1px solid #ddd !important;
    background: #fff !important;
    color: #333
}

.ui-widget-content a,
.ui-widget-header a {
    color: #333
}

.ui-widget-header {
    border: 1px solid #ddd !important;
    background: #e9e9e9 !important;
    color: #333 !important;
    font-weight: 700
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
    border: 1px solid #c5c5c5 !important;
    background: #f6f6f6 !important;
    font-weight: 400 !important;
    color: #454545
}

.ui-button,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button {
    color: #454545 !important;
    text-decoration: none
}

.ui-button:focus,
.ui-button:hover,
.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
    border: 1px solid #ccc !important;
    background: #ededed !important;
    font-weight: 400 !important;
    color: #2b2b2b
}

.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
a.ui-button:focus,
a.ui-button:hover {
    color: #2b2b2b !important;
    text-decoration: none
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: 1px solid #003eff !important;
    background: #007fff !important;
    font-weight: 400 !important;
    color: #fff
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: #003eff !important;
    background-color: #fff
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #fff !important;
    text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e !important;
    background: #fffa90 !important;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e !important;
    background: #fffa90
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #f1a899 !important;
    background: #fddfdf !important;
    color: #5f3f3f
}

.ui-state-error a,
.ui-state-error-text,
.ui-widget-content .ui-state-error a,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error a,
.ui-widget-header .ui-state-error-text {
    color: #5f3f3f
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7 !important;
    filter: Alpha(Opacity=70) !important;
    font-weight: 400
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .35 !important;
    filter: Alpha(Opacity=35) !important;
    background-image: none
}

.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35)
}

.ui-icon {
    width: 16px !important;
    height: 16px
}

.ui-icon,
.ui-widget-content .ui-icon,
.ui-widget-header .ui-icon {
    background-image: url("images/ui-icons_444444_256x240.png")
}

.ui-button:focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
    background-image: url("images/ui-icons_555555_256x240.png")
}

.ui-button:active .ui-icon,
.ui-state-active .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png")
}

.ui-button .ui-state-highlight.ui-icon,
.ui-state-highlight .ui-icon {
    background-image: url("images/ui-icons_777620_256x240.png")
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("images/ui-icons_cc0000_256x240.png")
}

.ui-button .ui-icon {
    background-image: url("images/ui-icons_777777_256x240.png")
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-n {
    background-position: 0 0
}

.ui-icon-caret-1-ne {
    background-position: -16px 0
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-caret-1-se {
    background-position: -48px 0
}

.ui-icon-caret-1-s {
    background-position: -65px 0
}

.ui-icon-caret-1-sw {
    background-position: -80px 0
}

.ui-icon-caret-1-w {
    background-position: -96px 0
}

.ui-icon-caret-1-nw {
    background-position: -112px 0
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0
}

.ui-icon-caret-2-e-w {
    background-position: -144px 0
}

.ui-icon-triangle-1-n {
    background-position: 0 -16px
}

.ui-icon-triangle-1-ne {
    background-position: -16px -16px
}

.ui-icon-triangle-1-e {
    background-position: -32px -16px
}

.ui-icon-triangle-1-se {
    background-position: -48px -16px
}

.ui-icon-triangle-1-s {
    background-position: -65px -16px
}

.ui-icon-triangle-1-sw {
    background-position: -80px -16px
}

.ui-icon-triangle-1-w {
    background-position: -96px -16px
}

.ui-icon-triangle-1-nw {
    background-position: -112px -16px
}

.ui-icon-triangle-2-n-s {
    background-position: -128px -16px
}

.ui-icon-triangle-2-e-w {
    background-position: -144px -16px
}

.ui-icon-arrow-1-n {
    background-position: 0 -32px
}

.ui-icon-arrow-1-ne {
    background-position: -16px -32px
}

.ui-icon-arrow-1-e {
    background-position: -32px -32px
}

.ui-icon-arrow-1-se {
    background-position: -48px -32px
}

.ui-icon-arrow-1-s {
    background-position: -65px -32px
}

.ui-icon-arrow-1-sw {
    background-position: -80px -32px
}

.ui-icon-arrow-1-w {
    background-position: -96px -32px
}

.ui-icon-arrow-1-nw {
    background-position: -112px -32px
}

.ui-icon-arrow-2-n-s {
    background-position: -128px -32px
}

.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px
}

.ui-icon-arrow-2-e-w {
    background-position: -160px -32px
}

.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px
}

.ui-icon-arrowstop-1-n {
    background-position: -192px -32px
}

.ui-icon-arrowstop-1-e {
    background-position: -208px -32px
}

.ui-icon-arrowstop-1-s {
    background-position: -224px -32px
}

.ui-icon-arrowstop-1-w {
    background-position: -240px -32px
}

.ui-icon-arrowthick-1-n {
    background-position: 1px -48px
}

.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px
}

.ui-icon-arrowthick-1-e {
    background-position: -32px -48px
}

.ui-icon-arrowthick-1-se {
    background-position: -48px -48px
}

.ui-icon-arrowthick-1-s {
    background-position: -64px -48px
}

.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px
}

.ui-icon-arrowthick-1-w {
    background-position: -96px -48px
}

.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px
}

.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px
}

.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px
}

.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px
}

.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px
}

.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px
}

.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px
}

.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px
}

.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px
}

.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px
}

.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px
}

.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px
}

.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px
}

.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px
}

.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px
}

.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px
}

.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px
}

.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px
}

.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px
}

.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px
}

.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px
}

.ui-icon-arrow-4 {
    background-position: 0 -80px
}

.ui-icon-arrow-4-diag {
    background-position: -16px -80px
}

.ui-icon-extlink {
    background-position: -32px -80px
}

.ui-icon-newwin {
    background-position: -48px -80px
}

.ui-icon-refresh {
    background-position: -64px -80px
}

.ui-icon-shuffle {
    background-position: -80px -80px
}

.ui-icon-transfer-e-w {
    background-position: -96px -80px
}

.ui-icon-transferthick-e-w {
    background-position: -112px -80px
}

.ui-icon-folder-collapsed {
    background-position: 0 -96px
}

.ui-icon-folder-open {
    background-position: -16px -96px
}

.ui-icon-document {
    background-position: -32px -96px
}

.ui-icon-document-b {
    background-position: -48px -96px
}

.ui-icon-note {
    background-position: -64px -96px
}

.ui-icon-mail-closed {
    background-position: -80px -96px
}

.ui-icon-mail-open {
    background-position: -96px -96px
}

.ui-icon-suitcase {
    background-position: -112px -96px
}

.ui-icon-comment {
    background-position: -128px -96px
}

.ui-icon-person {
    background-position: -144px -96px
}

.ui-icon-print {
    background-position: -160px -96px
}

.ui-icon-trash {
    background-position: -176px -96px
}

.ui-icon-locked {
    background-position: -192px -96px
}

.ui-icon-unlocked {
    background-position: -208px -96px
}

.ui-icon-bookmark {
    background-position: -224px -96px
}

.ui-icon-tag {
    background-position: -240px -96px
}

.ui-icon-home {
    background-position: 0 -112px
}

.ui-icon-flag {
    background-position: -16px -112px
}

.ui-icon-calendar {
    background-position: -32px -112px
}

.ui-icon-cart {
    background-position: -48px -112px
}

.ui-icon-pencil {
    background-position: -64px -112px
}

.ui-icon-clock {
    background-position: -80px -112px
}

.ui-icon-disk {
    background-position: -96px -112px
}

.ui-icon-calculator {
    background-position: -112px -112px
}

.ui-icon-zoomin {
    background-position: -128px -112px
}

.ui-icon-zoomout {
    background-position: -144px -112px
}

.ui-icon-search {
    background-position: -160px -112px
}

.ui-icon-wrench {
    background-position: -176px -112px
}

.ui-icon-gear {
    background-position: -192px -112px
}

.ui-icon-heart {
    background-position: -208px -112px
}

.ui-icon-star {
    background-position: -224px -112px
}

.ui-icon-link {
    background-position: -240px -112px
}

.ui-icon-cancel {
    background-position: 0 -128px
}

.ui-icon-plus {
    background-position: -16px -128px
}

.ui-icon-plusthick {
    background-position: -32px -128px
}

.ui-icon-minus {
    background-position: -48px -128px
}

.ui-icon-minusthick {
    background-position: -64px -128px
}

.ui-icon-close {
    background-position: -80px -128px
}

.ui-icon-closethick {
    background-position: -96px -128px
}

.ui-icon-key {
    background-position: -112px -128px
}

.ui-icon-lightbulb {
    background-position: -128px -128px
}

.ui-icon-scissors {
    background-position: -144px -128px
}

.ui-icon-clipboard {
    background-position: -160px -128px
}

.ui-icon-copy {
    background-position: -176px -128px
}

.ui-icon-contact {
    background-position: -192px -128px
}

.ui-icon-image {
    background-position: -208px -128px
}

.ui-icon-video {
    background-position: -224px -128px
}

.ui-icon-script {
    background-position: -240px -128px
}

.ui-icon-alert {
    background-position: 0 -144px
}

.ui-icon-info {
    background-position: -16px -144px
}

.ui-icon-notice {
    background-position: -32px -144px
}

.ui-icon-help {
    background-position: -48px -144px
}

.ui-icon-check {
    background-position: -64px -144px
}

.ui-icon-bullet {
    background-position: -80px -144px
}

.ui-icon-radio-on {
    background-position: -96px -144px
}

.ui-icon-radio-off {
    background-position: -112px -144px
}

.ui-icon-pin-w {
    background-position: -128px -144px
}

.ui-icon-pin-s {
    background-position: -144px -144px
}

.ui-icon-play {
    background-position: 0 -160px
}

.ui-icon-pause {
    background-position: -16px -160px
}

.ui-icon-seek-next {
    background-position: -32px -160px
}

.ui-icon-seek-prev {
    background-position: -48px -160px
}

.ui-icon-seek-end {
    background-position: -64px -160px
}

.ui-icon-seek-first,
.ui-icon-seek-start {
    background-position: -80px -160px
}

.ui-icon-stop {
    background-position: -96px -160px
}

.ui-icon-eject {
    background-position: -112px -160px
}

.ui-icon-volume-off {
    background-position: -128px -160px
}

.ui-icon-volume-on {
    background-position: -144px -160px
}

.ui-icon-power {
    background-position: 0 -176px
}

.ui-icon-signal-diag {
    background-position: -16px -176px
}

.ui-icon-signal {
    background-position: -32px -176px
}

.ui-icon-battery-0 {
    background-position: -48px -176px
}

.ui-icon-battery-1 {
    background-position: -64px -176px
}

.ui-icon-battery-2 {
    background-position: -80px -176px
}

.ui-icon-battery-3 {
    background-position: -96px -176px
}

.ui-icon-circle-plus {
    background-position: 0 -192px
}

.ui-icon-circle-minus {
    background-position: -16px -192px
}

.ui-icon-circle-close {
    background-position: -32px -192px
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px
}

.ui-icon-circle-triangle-s {
    background-position: -64px -192px
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px
}

.ui-icon-circle-triangle-n {
    background-position: -96px -192px
}

.ui-icon-circle-arrow-e {
    background-position: -112px -192px
}

.ui-icon-circle-arrow-s {
    background-position: -128px -192px
}

.ui-icon-circle-arrow-w {
    background-position: -144px -192px
}

.ui-icon-circle-arrow-n {
    background-position: -160px -192px
}

.ui-icon-circle-zoomin {
    background-position: -176px -192px
}

.ui-icon-circle-zoomout {
    background-position: -192px -192px
}

.ui-icon-circle-check {
    background-position: -208px -192px
}

.ui-icon-circlesmall-plus {
    background-position: 0 -208px
}

.ui-icon-circlesmall-minus {
    background-position: -16px -208px
}

.ui-icon-circlesmall-close {
    background-position: -32px -208px
}

.ui-icon-squaresmall-plus {
    background-position: -48px -208px
}

.ui-icon-squaresmall-minus {
    background-position: -64px -208px
}

.ui-icon-squaresmall-close {
    background-position: -80px -208px
}

.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px
}

.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px
}

.ui-icon-grip-solid-vertical {
    background-position: -32px -224px
}

.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px
}

.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px
}

.ui-icon-grip-diagonal-se {
    background-position: -80px -224px
}

.ui-corner-all,
.ui-corner-left,
.ui-corner-tl,
.ui-corner-top {
    border-top-left-radius: 3px
}

.ui-corner-all,
.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
    border-top-right-radius: 3px
}

.ui-corner-all,
.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
    border-bottom-left-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
    border-bottom-right-radius: 3px
}

.ui-widget-overlay {
    background: #aaa !important;
    opacity: .3 !important;
    filter: Alpha(Opacity=30)
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666 !important;
    box-shadow: 0 0 5px #666
}

li.activeSection a {
    color: #14a3c2
}

@media only screen and (min-width:768px) {
    .droopmenu-dots {
        position: fixed !important;
        transform: translateY(-50%) !important;
        background: 0 0 !important;
        box-shadow: none !important;
        max-width: 240px !important;
        z-index: 999 !important;
        left: auto !important;
        top: 50% !important;
        right: 0
    }

    .droopmenu-dots .droopmenu-inner {
        max-width: 100%
    }

    .droopmenu-dots .droopmenu-header {
        display: none
    }

    .droopmenu-dots .droopmenu-nav {
        list-style-type: none !important;
        padding: 0 !important;
        margin: 0 !important;
        text-align: right !important;
        overflow: hidden
    }

    .droopmenu-dots .droopmenu-nav li {
        display: block !important;
        position: relative !important;
        min-width: 200px !important;
        float: none
    }

    .droopmenu-dots .droopmenu-nav li a {
        display: inline-block !important;
        line-height: normal !important;
        padding: 5px 0 !important;
        height: auto !important;
        color: #fff
    }

    .droopmenu-dots .droopmenu-nav li a::after,
    .droopmenu-dots .droopmenu-nav li a::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        border-radius: 50% !important;
        transition: .3s !important;
        top: 50%
    }

    .droopmenu-dots .droopmenu-nav li a::before {
        width: 5px !important;
        height: 5px !important;
        border: 2px solid #fff !important;
        transform: translateY(-50%) !important;
        background: #fff !important;
        right: 0
    }

    .droopmenu-dots .droopmenu-nav li a::after {
        width: 15px !important;
        height: 15px !important;
        border: 2px solid #fff !important;
        transform: translateY(-50%) scale(0) !important;
        right: -5px
    }

    .droopmenu-dots .droopmenu-nav li.activeSection a::before,
    .droopmenu-dots .droopmenu-nav li:hover a::before {
        background: #fff !important;
        border-color: #fff
    }

    .droopmenu-dots .droopmenu-nav li.activeSection a::after,
    .droopmenu-dots .droopmenu-nav li:hover a .dot::after {
        transform: translateY(-50%) scale(1)
    }

    .droopmenu-dots .droopmenu-nav li a b {
        opacity: 0 !important;
        font-weight: 500 !important;
        display: inline-block !important;
        letter-spacing: .5px !important;
        background-color: #000 !important;
        transform: translateX(20px) !important;
        transition: .3s !important;
        padding: 10px 20px !important;
        border-radius: 3px !important;
        margin-right: 30px
    }

    .droopmenu-dots .droopmenu-nav li a b::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        border-left: 7px solid #000 !important;
        border-top: 7px solid transparent !important;
        border-bottom: 7px solid transparent !important;
        transform: translate(7px, -50%) !important;
        transition: .3s !important;
        right: 0 !important;
        top: 50%
    }

    .droopmenu-dots .droopmenu-nav li.activeSection a b,
    .droopmenu-dots .droopmenu-nav li:hover a b {
        transform: translateX(0) !important;
        opacity: 1
    }
}

.sections section {
    display: block !important;
    height: 100vh !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    position: relative !important;
    border: none
}

.sections section .section-container {
    position: absolute !important;
    display: block !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    -webkit-transform: translateY(-50%) !important;
    -moz-transform: translateY(-50%) !important;
    transform: translateY(-50%)
}

.sections section .section-container h1 {
    position: relative !important;
    display: inline-block !important;
    margin: 0 auto !important;
    font-size: 10.4vw !important;
    font-weight: 300 !important;
    text-align: center !important;
    color: #fff
}

.sections section .section-container p {
    width: 100% !important;
    font-size: 24px !important;
    position: relative !important;
    display: block !important;
    margin: 0 auto !important;
    color: #fff
}

.swiper-container {
    margin: 0 auto !important;
    position: relative !important;
    overflow: hidden !important;
    list-style: none !important;
    padding: 0 !important;
    z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column
}

.swiper-wrapper {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-transition-property: -webkit-transform !important;
    -o-transition-property: transform !important;
    transition-property: transform, -webkit-transform !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out !important;
    -o-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out !important;
    margin: 0 auto
}

.swiper-slide {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    -webkit-transition-property: -webkit-transform !important;
    -o-transition-property: transform !important;
    transition-property: transform, -webkit-transform !important;
    margin-right: 10px
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
    -webkit-transition-property: height, -webkit-transform !important;
    -o-transition-property: transform, height !important;
    transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
    -webkit-perspective: 1200px !important;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0))) !important;
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0))) !important;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0))) !important;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0))) !important;
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0)) !important;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
    -ms-touch-action: pan-x !important;
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute !important;
    top: 50% !important;
    width: 27px !important;
    height: 44px !important;
    margin-top: -22px !important;
    z-index: 10 !important;
    cursor: pointer !important;
    background-size: 27px 44px !important;
    background-position: center !important;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35 !important;
    cursor: auto !important;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px !important;
    right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px !important;
    left: auto
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-pagination {
    position: absolute !important;
    text-align: center !important;
    -webkit-transition: opacity .3s !important;
    -o-transition: opacity .3s !important;
    transition: opacity .3s !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    z-index: 10
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px !important;
    left: 0 !important;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden !important;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(.33) !important;
    -ms-transform: scale(.33) !important;
    transform: scale(.33) !important;
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(.66) !important;
    -ms-transform: scale(.66) !important;
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(.33) !important;
    -ms-transform: scale(.33) !important;
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    display: inline-block !important;
    border-radius: 100% !important;
    background: #000 !important;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    background: #007aff
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px !important;
    top: 50% !important;
    -webkit-transform: translate3d(0, -50%, 0) !important;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0 !important;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50% !important;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block !important;
    -webkit-transition: top .2s, -webkit-transform .2s !important;
    transition: transform .2s, top .2s, -webkit-transform .2s !important;
    -o-transition: transform .2s, top .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: left .2s, -webkit-transform .2s !important;
    transition: transform .2s, left .2s, -webkit-transform .2s !important;
    -o-transition: transform .2s, left .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: right .2s, -webkit-transform .2s !important;
    transition: transform .2s, right .2s, -webkit-transform .2s !important;
    -o-transition: transform .2s, right .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25) !important;
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    -webkit-transform: scale(0) !important;
    -ms-transform: scale(0) !important;
    transform: scale(0) !important;
    -webkit-transform-origin: left top !important;
    -ms-transform-origin: left top !important;
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top !important;
    -ms-transform-origin: right top !important;
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100% !important;
    height: 4px !important;
    left: 0 !important;
    top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px !important;
    height: 100% !important;
    left: 0 !important;
    top: 0
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill,
.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, .25)
}

.swiper-pagination-black .swiper-pagination-bullet-active,
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-scrollbar {
    border-radius: 10px !important;
    position: relative !important;
    -ms-touch-action: none !important;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute !important;
    left: 1% !important;
    bottom: 3px !important;
    z-index: 50 !important;
    height: 5px !important;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute !important;
    right: 3px !important;
    top: 1% !important;
    z-index: 50 !important;
    width: 5px !important;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100% !important;
    width: 100% !important;
    position: relative !important;
    background: rgba(0, 0, 0, .5) !important;
    border-radius: 10px !important;
    left: 0 !important;
    top: 0
}

.swiper-zoom-container {
    width: 100% !important;
    height: 100% !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100% !important;
    max-height: 100% !important;
    -o-object-fit: contain !important;
    object-fit: contain
}

.swiper-lazy-preloader {
    width: 42px !important;
    height: 42px !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    margin-left: -21px !important;
    margin-top: -21px !important;
    z-index: 10 !important;
    -webkit-transform-origin: 50% !important;
    -ms-transform-origin: 50% !important;
    transform-origin: 50% !important;
    -webkit-animation: 1s steps(12, end) infinite swiper-preloader-spin !important;
    animation: 1s steps(12, end) infinite swiper-preloader-spin
}

.swiper-lazy-preloader:after {
    display: block !important;
    content: '' !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50% !important;
    background-size: 100% !important;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml !important;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg) !important;
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg) !important;
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out !important;
    -o-transition-timing-function: ease-out !important;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none !important;
    -webkit-transition-property: opacity !important;
    -o-transition-property: opacity !important;
    transition-property: opacity
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide {
    pointer-events: none !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    z-index: 1 !important;
    visibility: hidden !important;
    -webkit-transform-origin: 0 0 !important;
    -ms-transform-origin: 0 0 !important;
    transform-origin: 0 0 !important;
    width: 100% !important;
    height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0 !important;
    -ms-transform-origin: 100% 0 !important;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto !important;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0 !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #000 !important;
    opacity: .6 !important;
    -webkit-filter: blur(50px) !important;
    filter: blur(50px) !important;
    z-index: 0
}

.swiper-container-flip .swiper-slide {
    pointer-events: none !important;
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    z-index: 1
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

.select-box {
    position: relative !important;
    width: auto !important;
    margin: 1rem auto
}

.select-box input {
    width: 100% !important;
    padding: 1rem .6rem !important;
    font-size: 1.1rem !important;
    color: #000 !important;
    border: .1rem solid transparent !important;
    outline: 0
}

input[type=tel] {
    border-radius: 0 .5rem .5rem 0
}

.select-box input:focus {
    border: .1rem solid var(--primary)
}

.selected-option {
    background-color: #eee !important;
    border-radius: .5rem !important;
    overflow: hidden !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center
}

.selected-option div {
    position: relative !important;
    width: 6rem !important;
    padding: 0 2.8rem 0 .5rem !important;
    text-align: center !important;
    cursor: pointer
}

.selected-option div::after {
    position: absolute !important;
    content: "" !important;
    right: .8rem !important;
    top: 50% !important;
    transform: translateY(-50%) rotate(45deg) !important;
    width: .8rem !important;
    height: .8rem !important;
    border-right: .12rem solid var(--primary) !important;
    border-bottom: .12rem solid var(--primary) !important;
    transition: .2s
}

.selected-option div.active::after {
    transform: translateY(-50%) rotate(225deg)
}

.select-box .options {
    top: 4rem !important;
    width: 100% !important;
    background-color: #fff !important;
    border-radius: .5rem !important;
    display: none
}

.select-box .options::before {
    position: absolute !important;
    content: "" !important;
    left: 1rem !important;
    top: -1.2rem !important;
    width: 0 !important;
    height: 0 !important;
    border: .6rem solid transparent !important;
    border-bottom-color: var(--primary)
}

input.search-box {
    background-color: var(--primary) !important;
    color: #000 !important;
    border-radius: .5rem .5rem 0 0 !important;
    padding: 1.4rem 1rem
}

.select-box ol {
    list-style: none !important;
    max-height: 23rem !important;
    overflow: overlay
}

.select-box strong {
    color: #000
}

.select-box ol::-webkit-scrollbar {
    width: .6rem
}

.select-box ol::-webkit-scrollbar-thumb {
    width: .4rem !important;
    height: 3rem !important;
    background-color: #ccc !important;
    border-radius: .4rem
}

.select-box ol li {
    padding: 1rem !important;
    display: flex !important;
    justify-content: space-between !important;
    cursor: pointer
}

.select-box ol li:not(:last-child) {
    border-bottom: .1rem solid #eee
}

.select-box ol li:hover {
    background-color: #e0ffff
}

.select-box ol li .country-name {
    margin-left: .4rem !important;
    color: #000
}

/* =======================================================================
   THEME: MODERN LUXURY (Dark + Deep Green) - overrides at end of file
   ======================================================================= */

:root{
  --primary:#0f766e !important;
  --primary-dark:#064e3b !important;
  --accent:#10b981 !important;
  --bg-soft:#f5f7f9 !important;
  --card-radius:14px !important;
}

/* Global background */
body{
  background: var(--bg-soft) !important;
}

/* Navbar */
.navbar{
  background:#0b1320 !important;
  box-shadow:0 8px 25px rgba(0,0,0,0.08) !important;
}

/* Primary buttons */
.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--accent)) !important;
  border:none !important;
  border-radius:10px !important;
  padding:10px 18px !important;
  font-weight:600 !important;
  box-shadow:0 6px 18px rgba(16,185,129,0.25) !important;
  transition:all .25s ease !important;
}
.btn-primary:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 10px 25px rgba(16,185,129,0.35) !important;
}

/* Cards */
.card{
  border:none !important;
  border-radius:var(--card-radius) !important;
  box-shadow:0 10px 30px rgba(0,0,0,0.06) !important;
  transition:all .25s ease !important;
}
.card:hover{
  transform:translateY(-4px) !important;
  box-shadow:0 18px 40px rgba(0,0,0,0.10) !important;
}

/* Inputs */
.form-control{
  border-radius:10px !important;
  border:1px solid #e5e7eb !important;
  padding:12px !important;
}
.form-control:focus{
  border-color:var(--accent) !important;
  box-shadow:0 0 0 3px rgba(16,185,129,0.15) !important;
}

/* Footer */
.footer-wrapper{
  background:linear-gradient(180deg,#0b1320,#111827) !important;
}

/* Announcement */
.announcement{
  background:linear-gradient(90deg,#020617,#0f172a) !important;
}

/* ===== MERGED SNIPPET (all !important) ===== */
a,blockquote,section{position:relative}a.underline:after,hr{width:100% !important;height:1px}.button,a,a.underline{cursor:pointer}.whatsapp.fixed{width:30px !important;height:30px !important;border-radius:15px !important;border:4px solid #02b353 !important;display:block !important;padding:20px !important;position:fixed !important;right:9px !important;text-align:center !important;top:67% !important;z-index:999991}.pulse{animation:1.5s infinite pulse}#lang{border-right:1px solid #d5d5d5 !important;width:250px !important;height:100% !important;left:-250px !important;position:fixed !important;padding:50px 30px !important;background-color:#fff !important;transition:all .3s !important;z-index:999999}#lang.open{left:0}.lang-btn{background:var(--theme-color) !important;border:1px solid #d5d5d5 !important;border-left:none !important;border-bottom-right-radius:3px !important;border-top-right-radius:3px !important;color:var(--light-color) !important;font-size:30px !important;height:40px !important;position:absolute !important;right:-40px !important;text-align:center !important;top:35% !important;width:40px}#demo{border-right:1px solid #d5d5d5 !important;width:250px !important;height:100% !important;left:-250px !important;position:fixed !important;padding:50px 30px !important;background-color:#fff !important;transition:all .3s !important;z-index:999999}#demo.open{left:0}#switcher{list-style:none !important;margin:0 !important;padding:0 !important;overflow:hidden}#switcher li{width:30px !important;height:30px !important;margin:0 15px 15px 0 !important;border-radius:3px}.demo-btn{background:var(--theme-color) !important;border:1px solid #d5d5d5 !important;border-left:none !important;border-bottom-right-radius:3px !important;border-top-right-radius:3px !important;color:var(--light-color) !important;font-size:30px !important;height:40px !important;position:absolute !important;right:-40px !important;text-align:center !important;top:45% !important;width:40px}.shoping__total .total__price,.shp__pro__details .shp__price{color:var(--theme-color)}.product-name,.search-result.dropdown-item,.shp__pro__details h2{overflow:hidden !important;text-overflow:ellipsis !important;-webkit-box-orient:vertical}dd,dl,dt,li,ol,ul{margin:0 !important;padding:0 !important;list-style:none}a{color:var(--a-color) !important;text-decoration:none}a:focus,a:hover{color:var(--a-hover) !important;text-decoration:none}.theme-color{color:var(--theme-color)}img{max-width:100% !important;height:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:var(--h-color) !important;font-weight:700 !important;margin-top:0 !important;margin-bottom:15px !important;line-height:1.6}.d-flex-m{display:flex!important}.d-m{max-width:15%}.img,svg{max-width:95%}.fw-500{font-weight:500}::selection,::-moz-selection,::-webkit-selection{background:var(--theme-color) !important;color:var(--light-color) !important;text-shadow:none}:active,:focus{outline:0!important}.form-control{border:1px solid #ced4da !important;border-radius:5px !important;color:#212529 !important;font-size:14px !important;height:45px !important;padding:0 15px}.form-control:focus{border-color:#777 !important;outline:0 !important;-webkit-box-shadow:none !important;box-shadow:none}textarea.form-control{padding:15px}.bootstrap-select>.dropdown-toggle{border:1px solid #ced4da !important;color:#495057 !important;font-size:14px !important;height:45px !important;line-height:45px !important;padding:0 15px}.material-symbols-outlined{font-size:inherit}section{overflow:hidden !important;padding:30px 0 15px}.capitalize,.category-list .has-dropdown .dropdown .has-dropdown a{text-transform:capitalize}hr{clear:both !important;margin:0}.gray-bg{background-color:#fafafa}.alert{bottom:30px !important;left:30px !important;position:fixed !important;z-index:999999}.alert-custom{background-color:#3b4045 !important;color:#fff}.container-fluid{max-width:1250px}body{color:#555 !important;font-size:14px !important;font-weight:400 !important;overflow-x:hidden !important;background-image:var(--background-image) !important;background-repeat:var(--background-repeat) !important;background-size:var(--background-size)}h1{font-size:30px}h2{font-size:20px}h3{font-size:18px}.add-to-cart span,.remove a i,h4{font-size:20px}.product-details-section .swiper-wrapper ul li a i,h5{font-size:18px}.about-text p,.item-short-description p,.product-description p,h6{font-size:16px}.button,.footer-social li,.header-top-social li,.list-inline li,.shop-item-filter-list li,.ui-dash.tab-content,a.underline{display:inline-block}.light{font-weight:300}.regular,li,p{font-weight:400}.bold,a.underline{font-weight:700}.text-white{color:#fff!important}.text-black{color:#212222!important}.text-grey{color:#999!important}.text-green{color:#72a716!important}.text-blue{color:#54a7d3!important}.text-red{color:#ce0e0e!important;font-size:20px}p{font-size:14px !important;line-height:1.8 !important;margin-bottom:0}.lead{font-size:15px}.button,.button.sm,li{font-size:13px}ul.square{list-style:square}ul.icon li{list-style-type:none}.modal-backdrop.show,.op-9{opacity:.9}.button{border:1px solid transparent !important;border-radius:3px !important;font-weight:600 !important;letter-spacing:.025em !important;line-height:1 !important;padding:15px 30px !important;-webkit-transition:.3s !important;-moz-transition:.3s !important;transition:.3s !important;vertical-align:bottom}

/* ===== MERGED FILE: style.css (all !important) ===== */
a,blockquote,section{position:relative}a.underline:after,hr{width:100% !important;height:1px}.button,a,a.underline{cursor:pointer}.whatsapp.fixed{width:30px !important;height:30px !important;border-radius:15px !important;border:4px solid #02b353 !important;display:block !important;padding:20px !important;position:fixed !important;right:9px !important;text-align:center !important;top:67% !important;z-index:999991}.pulse{animation:1.5s infinite pulse}#lang{border-right:1px solid #d5d5d5 !important;width:250px !important;height:100% !important;left:-250px !important;position:fixed !important;padding:50px 30px !important;background-color:#fff !important;transition:all .3s !important;z-index:999999}#lang.open{left:0}.lang-btn{background:var(--theme-color) !important;border:1px solid #d5d5d5 !important;border-left:none !important;border-bottom-right-radius:3px !important;border-top-right-radius:3px !important;color:var(--light-color) !important;font-size:30px !important;height:40px !important;position:absolute !important;right:-40px !important;text-align:center !important;top:35% !important;width:40px}#demo{border-right:1px solid #d5d5d5 !important;width:250px !important;height:100% !important;left:-250px !important;position:fixed !important;padding:50px 30px !important;background-color:#fff !important;transition:all .3s !important;z-index:999999}#demo.open{left:0}#switcher{list-style:none !important;margin:0 !important;padding:0 !important;overflow:hidden}#switcher li{width:30px !important;height:30px !important;margin:0 15px 15px 0 !important;border-radius:3px}.demo-btn{background:var(--theme-color) !important;border:1px solid #d5d5d5 !important;border-left:none !important;border-bottom-right-radius:3px !important;border-top-right-radius:3px !important;color:var(--light-color) !important;font-size:30px !important;height:40px !important;position:absolute !important;right:-40px !important;text-align:center !important;top:45% !important;width:40px}.shoping__total .total__price,.shp__pro__details .shp__price{color:var(--theme-color)}.product-name,.search-result.dropdown-item,.shp__pro__details h2{overflow:hidden !important;text-overflow:ellipsis !important;-webkit-box-orient:vertical}dd,dl,dt,li,ol,ul{margin:0 !important;padding:0 !important;list-style:none}a{color:var(--a-color) !important;text-decoration:none}a:focus,a:hover{color:var(--a-hover) !important;text-decoration:none}.theme-color{color:var(--theme-color)}img{max-width:100% !important;height:auto}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{color:var(--h-color) !important;font-weight:700 !important;margin-top:0 !important;margin-bottom:15px !important;line-height:1.6}.d-flex-m{display:flex!important}.d-m{max-width:15%}.img,svg{max-width:95%}.fw-500{font-weight:500}::selection,::-moz-selection,::-webkit-selection{background:var(--theme-color) !important;color:var(--light-color) !important;text-shadow:none}:active,:focus{outline:0!important}.form-control{border:1px solid #ced4da !important;border-radius:5px !important;color:#212529 !important;font-size:14px !important;height:45px !important;padding:0 15px}.form-control:focus{border-color:#777 !important;outline:0 !important;-webkit-box-shadow:none !important;box-shadow:none}textarea.form-control{padding:15px}.bootstrap-select>.dropdown-toggle{border:1px solid #ced4da !important;color:#495057 !important;font-size:14px !important;height:45px !important;line-height:45px !important;padding:0 15px}.material-symbols-outlined{font-size:inherit}section{overflow:hidden !important;padding:30px 0 15px}.capitalize,.category-list .has-dropdown .dropdown .has-dropdown a{text-transform:capitalize}hr{clear:both !important;margin:0}.gray-bg{background-color:#fafafa}.alert{bottom:30px !important;left:30px !important;position:fixed !important;z-index:999999}.alert-custom{background-color:#3b4045 !important;color:#fff}.container-fluid{max-width:1250px}body{color:#555 !important;font-size:14px !important;font-weight:400 !important;overflow-x:hidden !important;background-image:var(--background-image) !important;background-repeat:var(--background-repeat) !important;background-size:var(--background-size)}h1{font-size:30px}h2{font-size:20px}h3{font-size:18px}.add-to-cart span,.remove a i,h4{font-size:20px}.product-details-section .swiper-wrapper ul li a i,h5{font-size:18px}.about-text p,.item-short-description p,.product-description p,h6{font-size:16px}.button,.footer-social li,.header-top-social li,.list-inline li,.shop-item-filter-list li,.ui-dash.tab-content,a.underline{display:inline-block}.light{font-weight:300}.regular,li,p{font-weight:400}.bold,a.underline{font-weight:700}.text-white{color:#fff!important}.text-black{color:#212222!important}.text-grey{color:#999!important}.text-green{color:#72a716!important}.text-blue{color:#54a7d3!important}.text-red{color:#ce0e0e!important;font-size:20px}p{font-size:14px !important;line-height:1.8 !important;margin-bottom:0}.lead{font-size:15px}.button,.button.sm,li{font-size:13px}ul.square{list-style:square}ul.icon li{list-style-type:none}.modal-backdrop.show,.op-9{opacity:.9}.button{border:1px solid transparent !important;border-radius:3px !important;font-weight:600 !important;letter-spacing:.025em !important;line-height:1 !important;padding:15px 30px !important;-webkit-transition:.3s !important;-moz-transition:.3s !important;transition:.3s !important;vertical-align:bottom}.button.sm{padding:10px 15px}.button.md{font-size:14px !important;padding:18px 24px}.button.lg{font-size:14px !important;padding:22px 60px}.button.xlg{font-size:16px !important;padding:24px 60px}#scrolltotop:hover,.button.style1,.page-num li.active,a.button.style1{background:var(--theme-color) !important;color:var(--light-color)}.button.style1:hover,a.button.style1:hover{background:var(--theme-color) !important;color:var(--light-color)}.button.style1:disabled,a.button.style1:disabled{background-color:#ddd !important;cursor:not-allowed !important;color:#000}.button.style2,a.button.style2{background-color:#fff !important;color:#212222}.button.style2:hover,a.button.style2:hover{color:#777}.button.style3,a.button.style3{background-color:#fff !important;border:1px solid var(--theme-color) !important;color:var(--theme-color)}.button.style3:hover,a.button.style3:hover{background:var(--theme-color) !important;color:var(--light-color)!important}.button.style4,a.button.style4{background-color:transparent !important;border:1px solid #dadada !important;color:#777}.button.style4:hover,a.button.style4:hover{background-color:#f1f1f1 !important;border:1px solid #f1f1f1 !important;color:#777}.button.style5,a.button.style5{background-color:transparent !important;border:1px solid #212222 !important;color:#212222}.button.style5:hover,a.button.style5:hover{background-color:#ddd !important;border:1px solid transparent !important;color:#212222}.button.icon{font-size:14px !important;line-height:.7 !important;padding:21px 45px}.link-hov.style1,.link-hov.style2{font-size:15px !important;color:#212222 !important;position:relative}.button.icon i{font-size:16px !important;margin-left:8px}a.underline{color:#212222 !important;font-size:12px !important;letter-spacing:.125em !important;line-height:1 !important;padding-bottom:5px !important;text-transform:uppercase !important;-webkit-transition:.3s !important;-moz-transition:.3s !important;transition:.3s !important;vertical-align:bottom}.shopping__btn li a,.shp__pro__details h2{text-transform:none !important;font-size:14px !important;color:#000}.link-hov.style1:before,.link-hov.style2:before{position:absolute !important;height:2px !important;content:"" !important;transition:.4s !important;background:#212222 !important;left:0 !important;top:100%}a.underline:after{background-color:#777 !important;bottom:0 !important;content:"" !important;left:0 !important;position:absolute}.link-hov.style1{transition:.5s !important;font-weight:600}.link-hov.style1:before{width:0 !important;visibility:hidden !important;opacity:0}.link-hov.style1.text-white:hover:before,.link-hov.style1:hover:before,.link-hov.style2:before,.link-hov.style3:hover:before{visibility:visible !important;opacity:1 !important;width:100%}.breadcrumb-section ul li a,.footer-social li a:hover,.link-hov.style1:hover,.link-hov.style2:hover,.price,.sidebar-content-wrap.v2.sidebar-single-active .countdown-deals .cdown{color:#212222}.header-menu,.link-hov.style1.text-white:before{background:#fff}.link-hov.style2{transition:.5s}.link-hov.style2:hover:before{visibility:hidden !important;opacity:0 !important;width:0}.link-hov.style3{color:#212222 !important;transition:.5s !important;position:relative !important;font-size:14px}.cart-quantity-left-minus:hover,.cart-quantity-right-plus:hover,.link-hov.style3:hover,.quantity-left-minus:hover,.quantity-right-plus:hover{color:#999}.shop-btn.style1{background:#212222 !important;color:#fff !important;padding:5px 10px !important;border-radius:7px !important;transition:.5s}.shop-btn.style1:hover{background:#ddd !important;color:#212222}.carousel,.cart-item-color,.cart__menu,.wishlist__menu,.dropdown>li>a,.has-dropdown,.has-dropdown a,.main-menu,.main-menu nav>ul>li a,.section-title,.section-title h3,.user-menu{position:relative}.bottom-v.t-center{bottom:5% !important;left:15%}.section-title{border-bottom:1px solid #e5e8ec}.section-title h3{font-size:20px !important;letter-spacing:normal !important;line-height:1}.section-title p{font-size:20px !important;margin-bottom:20px}.container{max-width:1200px}.has-dropdown .dropdown{background-color:#fff !important;border:1px solid #eee !important;min-width:100px !important;left:100% !important;opacity:0 !important;padding:10px !important;position:absolute !important;top:0 !important;visibility:hidden !important;width:300px !important;transition:.3s !important;z-index:999}.body__overlay.is-visible,.has-dropdown a:hover .dropdown,.insta-num:hover .tiska-tooltip,.main-menu ul li ul.dropdown li:hover ul.dropdown,.single-product-wrapper:hover .product-overlay,.tab-content .tab-pane.active,.user-dropdown-menu.show{visibility:visible !important;opacity:1}.has-dropdown .dropdown li a{display:block !important;padding:11px 12px !important;line-height:1 !important;white-space:nowrap}.logo{padding:10px 0 !important;max-height:160px !important;width:160px}.header-top{background-color:#f1f3f5 !important;line-height:30px}.currency-switcher,.header-top-menu li,.language-switcher{display:inline-block !important;padding:0 10px}.social-links li a{fill:#666}.social-links li a:hover{fill:var(--theme-color)}.footer-social li,.header-top-social li{padding-right:15px}.header-top-menu,.header-top-social{display:inline !important;margin-left:15px}.has-dropdown a{display:block !important;padding:15px}.has-dropdown>a:after{content:"\e5cc" !important;font-family:"Material Symbols Outlined" !important;float:right !important;margin-left:10px}.has-dropdown a img{margin-right:15px !important;width:25px}.header-middle{min-height:100px !important;display:flex !important;flex-direction:column !important;justify-content:center !important;line-height:50px !important;background-color:#e5e5e5}.align-baseline{align-items:baseline}.header-middle.fixed,.header-middle.slim{background-color:#fff !important;border-bottom:1px solid #eee !important;min-height:150px !important;line-height:5px !important;position:absolute!important;z-index:999999 !important;top:0 !important;width:100%}.wishlist__menu .badge,.cart__menu .badge,.header-search .btn-search{background:var(--theme-color) !important;color:var(--light-color)}.header-middle.slim{position:absolute}.header-middle.fixed .logo,.header-middle.slim .logo{padding:5px 0 !important;width:100px}.category__menu i{cursor:pointer}#header-search,.header-search{margin:0 auto !important;max-width:600px !important;position:relative !important;text-align:right !important;width:100%}.header-search button,.header-search input{border:1px solid #eee !important;border-radius:7px 0 0 7px !important;display:inline-block !important;line-height:40px}.bootstrap-typeahead,.header-search-container{display:inline-block !important;width:calc(100% - 100px)!important}.bootstrap-typeahead .dropdown-menu{width:auto!important}.header-search input{border:2px solid var(--theme-color) !important;border-right:none !important;margin-top:4px !important;padding:0 15px !important;width:100%}.header-search .btn-search{border:1px solid var(--theme-color) !important;border-left-color:var(--theme-color) !important;border-left-width:1px !important;border-radius:0 7px 7px 0 !important;border-left:none !important;font-size:20px !important;height:44px !important;margin-left:-7px !important;padding:0 15px !important;position:relative !important;width:auto !important;float:right !important;margin-top:4px !important;display:inline-block}.header-middle.slim .header-search .btn-search{top:-2px}.search-result img{height:30px !important;margin-right:7px !important;width:30px}.search-result.dropdown-item{font-size:14px !important;padding:.25rem 1rem !important;display:-webkit-box !important;-webkit-line-clamp:1 !important;width:calc(100% - 1rem)}.search-result a{display:block}.offset-menu-wrapper{max-width:350px !important;text-align:right !important;width:100%}.language a{font-size:13px}.offset-menu-wrapper li{display:inline-block !important;font-size:16px !important;padding:7px}.offset-menu-wrapper li i{font-size:20px !important;color:#000}.cart__menu i,.panel_setting i{cursor:pointer !important;font-size:24px}.wishlist__menu .badge,.cart__menu .badge{border:2px solid #fff !important;position:absolute !important;top:-5px !important;left:25px !important;width:24px !important;height:24px !important;border-radius:50% 50% 50% 0 !important;padding:.25em !important;text-align:center !important;font-size:11px !important;line-height:16px !important;font-weight:400}.cart__menu .total{background-color:#f1f3f5 !important;border-radius:25px !important;font-size:15px !important;padding:5px 15px}.cart__menu.fixed{background:var(--theme-color) !important;border-radius:5px !important;color:var(--light-color) !important;display:none !important;padding:10px !important;position:fixed !important;right:0 !important;text-align:center !important;top:47% !important;z-index:999991}.whatsapp.fixed{background-color:#fff !important;border-radius:45px !important;border:4px solid #02b353 !important;display:block !important;padding:20px !important;position:fixed !important;right:9px !important;text-align:center !important;top:67% !important;z-index:999991}.cart__menu.fixed .total{background-color:transparent !important;display:block !important;font-size:12px !important;font-weight:500 !important;padding:3px !important;min-width:50px}.cart__menu.fixed .badge{left:auto}.shopping__cart{background:#fff !important;box-shadow:0 0 85px rgba(0,0,0,.2) !important;display:block !important;height:100vh !important;opacity:0 !important;position:fixed !important;right:-110% !important;top:0 !important;transition:.25s !important;z-index:999999 !important;width:320px}.custom-checkbox .custom-control-input:checked~.custom-control-label::before,.shopping__cart__header{background-color:var(--theme-color)}.shopping__cart__header{color:var(--light-color) !important;line-height:40px !important;padding:0 30px !important;background:var(--theme-color)}.shopping__cart__header span{color:var(--light-color)}.product-sidebar-wrap a,.shopping__cart__header .h6,.sidebar-single-active .countdown-deals .cdown,.sidebar-single-active .countdown-deals .cdown:first-child{color:#fff}.shopping__cart__footer{background-color:#f5f6f7 !important;bottom:0 !important;padding:0 15px 10px !important;position:fixed !important;text-align:center !important;width:320px !important;z-index:1}.shopping__cart.shopping__cart__on{opacity:1 !important;padding-bottom:50px !important;right:0 !important;background-color:#fff}.payment-img img{padding-right:10px}.offsetmenu__inner,.shopping__cart__inner{height:calc(100% - 100px) !important;padding:0 0 0 15px}.mCSB_inside>.mCSB_container{margin-right:20px}.mCSB_scrollTools .mCSB_draggerRail{width:4px}.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:20px}.offsetmenu__close__btn{background-color:transparent !important;position:absolute !important;right:5px !important;top:0 !important;z-index:10}.offsetmenu__close__btn span{font-size:26px !important;line-height:30px !important;cursor:pointer}.category-sub-menu ul li:hover>a,.dropdown.dropdown-icon>li:hover:before,.faq-categories h3.active,.filter-area .custom-control-label:hover,.main-menu ul li ul.dropdown li:hover>a,.main-menu ul li ul.megamenu li:hover>a,.main-menu ul li.active a,.main-menu ul li:hover>a,.offsetmenu__close__btn a:hover i,.shop-item-filter-list>li>a.active,.shop-item-filter-list>li>a:hover,.sidebar-content-wrap.v2.sidebar-single-active .countdown-deals .cdown:first-child,.user-sidebar-menu li a.active,.user-sidebar-menu li a:hover,.user-sidebar-menu li button:hover{color:var(--theme-color)}.shp__pro__details h2{border-top-width:0 !important;font-weight:400 !important;line-height:1.4 !important;margin-bottom:5px !important;padding:0 !important;display:-webkit-box !important;-webkit-line-clamp:2}.shoping__total .subtotal{font-size:16px !important;font-weight:400}.shoping__total .total__price{float:right !important;font-size:16px !important;font-weight:600}.shopping__btn li a{background-color:#fff !important;border:1px solid #000 !important;height:57px !important;line-height:57px !important;margin-bottom:15px !important;padding:0 25px !important;text-align:center !important;transition:.5s !important;width:100% !important;display:block}.shopping__btn li a:hover{background:var(--theme-color) !important;border:1px solid var(--theme-color) !important;color:var(--light-color)}.shopping__btn .shp__checkout a{background-color:#fff !important;color:#000}.shp__single__product{display:flex !important;justify-content:space-between !important;padding-bottom:10px !important;padding-top:10px}.shp__pro__thumb{margin-right:10px}.shp__pro__thumb a{display:block}.shp__pro__thumb a img{max-height:50px}.remove__btn{text-align:left !important;width:25px}.shp__pro__details{width:70%}.shoping__total{border-top:1px solid #ddd !important;display:flex !important;justify-content:space-between !important;padding:10px 0}.remove__btn a i{font-size:22px !important;transition:.5s}.remove__btn a:hover i{color:var(--theme-color) !important;transform:rotate(180deg)}.shp__cart__wrap .shp__single__product+.shp__single__product{border-top:1px solid rgba(255,255,255,.3)}.cart-product-name{text-align:left}.cart-product-name img{margin-right:10px !important;max-width:50px}.cart-table .remove{width:30px !important;padding-top:10px}.cart-table .remove .remove-from-cart{background-color:transparent !important;color:var(--theme-color) !important;width:30px !important;line-height:30px !important;text-align:center}.cart-product-quantity{min-width:150px}.category__list{background:#fff !important;border-right:1px solid #eee !important;display:block !important;height:100% !important;opacity:0 !important;overflow-y:scroll !important;padding-top:15px !important;position:fixed !important;left:-110% !important;top:78px !important;transition:.25s !important;z-index:99999 !important;width:250px}.category__list.list__open{opacity:1 !important;padding-bottom:50px !important;left:0 !important;background-color:#fff}.category-list li img,.category__list li img{margin-right:3px !important;width:50px}.category-list li a,.category__list li a{font-size:15px !important;display:block !important;line-height:30px !important;padding:10px 15px}.category-button{background-color:#f1f3f5 !important;border-bottom:none !important;border-top-left-radius:5px !important;border-top-right-radius:5px !important;display:block !important;font-size:15px !important;font-weight:500}.category-list .dropdown.sidebar{left:0 !important;top:50px !important;position:absolute !important;width:100%!important;z-index:999 !important;border:1px solid #eee !important;height:450px !important;padding:0}.dropdown.sidebar .mCSB_container,.dropdown.sidebar .mCustomScrollBox{overflow:inherit}.user-menu i{cursor:pointer}.user-dropdown-menu{position:absolute !important;background:#fff !important;border-radius:3px !important;border:1px solid var(--theme-color) !important;width:200px !important;padding:5px 15px !important;top:52px !important;text-align:left !important;visibility:hidden !important;opacity:0 !important;transition:.3s !important;right:0 !important;z-index:9}.page-num li:hover,.user-sidebar-menu{background-color:#eee}.user-dropdown-menu li{border-bottom:1px solid #f5f6f7 !important;display:block !important;width:100%}.user-dropdown-menu li a,.user-dropdown-menu li button{color:#606060 !important;display:block !important;line-height:2rem !important;padding:5px 0 !important;font-size:14px !important;text-transform:capitalize}.user-dropdown-menu li a:hover,.user-dropdown-menu li button:hover{color:#cd0305 !important;text-decoration:none}.user-dropdown-menu.show{top:70px}.product-overlay,.tab-content .tab-pane,.tiska-tooltip{visibility:hidden !important;opacity:0}.header-bottom{border-bottom:1px solid #eee !important;line-height:50px}.category-list,.category-list .has-dropdown .dropdown li,.single-faq:last-child,.user-login-section .nav-tabs{border-bottom:none}.category-list{position:relative !important;width:100%}.category-list .has-dropdown>a{align-items:center !important;display:flex !important;font-size:15px !important;width:100% !important;background:var(--theme-color) !important;color:#fff!important}.category-list a:hover{color:var(--theme-color)!important}.category-list a>i{font-size:20px !important;margin-right:12px}.category-button:after{transform:rotate(90deg)}.category-list .has-dropdown .dropdown li a,.category__list li a{padding:10px 15px!important}.category-list .has-dropdown .dropdown li a span{display:-webkit-inline-box !important;-webkit-line-clamp:1 !important;overflow:hidden !important;text-overflow:ellipsis !important;-webkit-box-orient:vertical !important;width:80%}.category-list .has-dropdown>a:after{float:right !important;font-size:18px !important;position:absolute !important;right:0}.category-list .dropdown.first{height:450px}.category-list .dropdown li .dropdown{right:100% !important;padding:10px !important;top:0}.category-list .dropdown li{font-size:14px !important;width:100%}.category-list .dropdown>li>a{color:#212222 !important;display:flex !important;font-size:14px !important;font-weight:500 !important;line-height:1.5 !important;padding:15px}.category-list .dropdown>li>a.button{justify-content:center}.main-menu ul li a{font-size:15px !important;color:#212222 !important;font-weight:500 !important;display:block !important;padding:0 12px}.main-menu ul li ul.dropdown{left:-50% !important;width:200px !important;padding:10px !important;top:50px}.main-menu ul li ul.dropdown li{margin-right:0 !important;margin-left:0 !important;border-bottom:none !important;-webkit-flex-basis:100% !important;-moz-flex-basis:100% !important;-ms-flex-basis:100% !important;-ms-flex-preferred-size:100% !important;flex-basis:100% !important;position:relative}.filter-area li:last-child,.main-menu ul li ul.dropdown li:last-child,.page-title,.tooltip-table{margin-bottom:0}.main-menu ul li ul.dropdown li a{color:#606060 !important;font-size:14px !important;font-weight:400 !important;padding:15px 20px!important;text-align:left !important;text-transform:capitalize !important;transition:.5s}.dropdown.dropdown-icon>li>a:before{position:absolute !important;content:"f3d3" !important;font-family:ionicons !important;right:10px !important;font-size:12px}.main-menu ul li ul.dropdown li a i{float:right !important;padding-top:0 !important;padding-right:25px !important;font-size:12px}.main-menu ul li ul.dropdown li ul.dropdown{top:100% !important;left:100% !important;position:absolute !important;width:250px !important;opacity:0 !important;visibility:hidden}.main-menu ul li ul.dropdown li:hover ul.dropdown{top:-10px}.main-menu .megamenu.dropdown{left:-250px!important}.megamenu.dropdown{padding:10px!important;display:flex !important;flex-direction:row !important;width:720px!important}.mega-banner img{width:100% !important;height:100%}.main-menu ul li ul.megamenu li.mega-title>a{color:#212222!important;font-size:15px !important;font-weight:600}.mega-title a,.tooltip-table td,.tooltip-table th{padding:0!important}.main-menu ul li ul.megamenu li ul li{-ms-flex-preferred-size:100% !important;flex-basis:100%}.main-menu ul li{text-align:center !important;position:relative !important;display:inline-block !important;padding:7px}.dropdown li{display:block!important}.user-sidebar-menu{margin-bottom:50px !important;padding:30px 15px}.user-sidebar-menu li a,.user-sidebar-menu li button{color:#212222 !important;font-size:15px !important;font-weight:500}.carousel-item{background-size:cover !important;border-radius:7px !important;height:290px !important;overflow:hidden}.carousel-content.middle-v.t-right h3{font-size:32px !important;line-height:1.2}.single-carousel-item{height:100% !important;width:100%}.carousel-control-next,.carousel-control-prev{background:var(--theme-color) !important;border-radius:50% !important;color:var(--light-color) !important;height:40px !important;padding:0 5px !important;position:absolute !important;top:65% !important;left:15px !important;opacity:.5 !important;text-align:center !important;transform:translateY(-50%) !important;width:40px}.carousel:hover .carousel-control-next,.carousel:hover .carousel-control-prev{color:var(--a-color) !important;opacity:1}.carousel-control-next{left:auto !important;right:15px}.carousel-control-next i,.carousel-control-prev i{font-size:22px !important;line-height:40px}.cat-img{height:calc(50% - 26px) !important;min-height:200px !important;overflow:hidden !important;position:relative}.middle-v.t-center{position:absolute !important;left:50% !important;top:50% !important;transform:translate(-50%,-50%)}.middle-v.t-right{position:absolute !important;right:5%}.middle-v.t-left{position:absolute !important;left:5%}.cat-img.style3 .bottom-v h3,.cat-img.style3 .middle-v h3{font-size:36px !important;line-height:1}.tiska-tooltip{position:absolute !important;width:200px !important;height:auto !important;top:30px !important;background:#fff !important;transition:.6s !important;z-index:999 !important;left:-30px}.tooltip-text{padding:9px 0 6px 7px}.tiska-tooltip p.product-name{font-size:13px !important;padding:5px 7px !important;line-height:14px !important;margin-bottom:5px}.tiska-tooltip h6{font-size:12px !important;margin-bottom:2px}.insta-shop-tags ul li{display:inline-block !important;padding:0 6px}.right-pane{margin-top:75px !important;width:calc(100% - 250px) !important;float:right}.breadcrumb-section{background-color:#f1f3f5 !important;background-size:cover !important;padding:50px 0 !important;text-align:center}.breadcrumb-section ul li{display:inline-block !important;font-size:14px !important;padding:0 10px !important;color:#999}.breadcrumb-section ul li a:after{content:"/" !important;position:sticky !important;right:-12px}.brand-container,.category-container{border:1px solid #eee !important;border-radius:3px !important;text-align:center !important;margin-bottom:5px !important;padding:15px 15px 5px}.category-container img{max-width:60% !important;padding:10px}.brand-img{align-items:center !important;display:flex !important;height:90px !important;justify-content:center}.brand-img img{max-width:130px !important;opacity:.5 !important;filter:grayscale(100%)}.category-container:hover{border:1px solid #999}.category-container .category-name{color:#021523 !important;font-size:14px !important;font-weight:500 !important;margin-top:10px !important;min-height:40px}.category-navigation,.product-navigation{float:left !important;width:60px}.category-button-next,.category-button-prev,.product-button-next,.product-button-prev{width:30px !important;height:30px !important;border-radius:3px !important;text-align:center !important;font-size:20px !important;line-height:30px !important;margin-bottom:15px !important;transition:.5s !important;top:0 !important;cursor:pointer !important;position:absolute !important;z-index:99}.category-button-next,.product-button-next,.product-next div{left:0}.swiper-button-next,.swiper-button-prev{background-image:none}.swiper-button-next i{font-size:22px !important;position:absolute !important;right:3px}.swiper-button-prev i{left:3px !important;font-size:22px !important;position:absolute}.product-grid{display:flex !important;flex-wrap:wrap !important;padding:0 !important;margin:0 !important;width:100%}.single-product-wrapper{background-color:#efefef !important;border:1px solid var(--theme-color) !important;overflow:hidden !important;padding:20px !important;margin:5px !important;position:relative !important;max-width:300px !important;min-width:100px !important;border-radius:10px !important;box-shadow:rgb(173 163 192) 4px 3px 0 1px,rgb(255 255 255 / 50%) -3px -3px 6px 1px inset}.single-product-wrapper:hover{border:1px solid #ddd !important;box-shadow:0 10px 20px rgba(44,44,44,.1)}@media all and (min-width:1025px){.has-dropdown:hover>.dropdown{opacity:1 !important;visibility:visible}.slider-title{text-align:center !important;font-size:19px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}.category-list .dropdown.sidebar.show{visibility:visible !important;opacity:1}.user-menu:hover .user-dropdown-menu{visibility:visible !important;opacity:1 !important;top:40px !important;left:-46px}.product-grid .single-product-wrapper{width:calc(20%)}.show-on-mobile{display:none}}@media all and (max-width:1499px){.single-carousel-item img{object-fit:contain!important;height:35vh!important}.carousel-item{background-size:cover !important;border-radius:7px !important;height:auto !important;overflow:hidden}}@media all and (max-width:1024px){.single-banner-item .offset-md-3{margin-left:0!important;flex:0 0 100% !important;max-width:100%}.single-carousel-item img{object-fit:contain!important;height:26vh!important}.product-grid .single-product-wrapper{width:calc(25%)}.slider-title{text-align:center !important;font-size:19px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}.header-bottom,.header-middle{border-bottom:none!important;position:absolute}.header-middle{min-height:60px}.header-middle .logo{padding:5px 0 !important;width:100px}.category__list{width:300px}.cart__menu .total,.header-middle .header-search{display:none}.header-bottom{background:#fff !important;top:150px !important;width:100% !important;z-index:999}.header-search-container{display:inline-block !important;width:calc(100% - 55px)!important}.bootstrap-typeahead{width:100%!important}.search-result{font-size:13px}.category__menu{font-size:20px !important;padding-right:15px !important;display:flex !important;align-self:center}.dropdown.show{left:0!important;opacity:1 !important;position:relative!important;visibility:visible !important;width:100%}.dropdown li a{padding:15px 0}.right-pane{margin-top:0}.banner-area{margin-top:194px}.breadcrumb-section,.user-login-section{margin-top:100px}.app-header{font-size:2.7rem}}@media all and (min-width:1500px){.carousel-item{height:700px!important}.single-carousel-item img{max-height:600px!important;width:1700px!important;object-fit:cover!important}}@media all and (max-width:768px){.product-grid .single-product-wrapper{width:calc(33.333%)}.single-carousel-item img{object-fit:contain!important;height:18vh!important}.carousel-item{height:22vh!important}.slider-title{text-align:center !important;font-size:12px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}}@media all and (max-width:600px){.product-grid .single-product-wrapper{width:calc(50%)}.d-flex-m{display:flex!important;flex-wrap:wrap}.d-m{max-width:26%}.footer-social li,.header-top-social li{padding-right:4px}.img,svg{max-width:95%}.slider-title{text-align:center !important;font-size:11px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}}@media all and (max-width:400px){.product-grid .single-product-wrapper{width:100%}.slider-title{text-align:center !important;font-size:9px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}}.single-product-item{margin-bottom:20px}.single-product-item img{padding:0 10px !important;width:100%}.product-promo-text{position:absolute !important;top:180px !important;right:18px !important;background:var(--h-color) !important;color:#fff !important;padding:0 7px !important;border-radius:3px !important;line-height:24px !important;font-size:12px !important;font-weight:500}.product-name{font-size:14px !important;font-weight:700 !important;line-height:1.5 !important;margin:10px 0 !important;min-height:42px !important;display:-webkit-box !important;-webkit-line-clamp:2}.product-overlay{height:100px !important;position:absolute !important;top:0 !important;left:0 !important;transition:.2s !important;width:50px}.product-overlay span{display:block !important;width:25px !important;height:25px !important;background:var(--theme-color) !important;color:var(--a-hover) !important;margin-top:7px !important;text-align:center !important;border-radius:25% !important;line-height:26px !important;font-size:25px !important;transform:translate(0,0) !important;transition:.5s}.product-overlay a:nth-child(2) span{transition-delay:.1s}.product-overlay a:nth-child(3) span{transition-delay:.2s}.single-product-wrapper:hover .product-overlay a span{transform:translate(20px,0)}.product-price{margin-bottom:10px}.product-price span{color:var(--h-color) !important;padding-right:7px !important;display:inline-block !important;font-size:18px !important;font-weight:600}span.promo-price{color:#e00!important}span.old-price{text-decoration:line-through !important;color:#a11919!important;font-size:12px}.add-to-cart{align-items:center !important;display:flex !important;justify-content:center}.single-product-wrapper .add-to-cart{height:40px !important;padding:0 !important;width:110px}#amount{width:65% !important;border:none !important;font-size:16px}.range-text{line-height:39px}.price-range .ui-slider-handle.ui-corner-all.ui-state-default{background:#fff !important;border-radius:50% !important;width:12px !important;height:12px !important;border:none !important;box-shadow:0 5px 13px rgba(167,167,167,.7) !important;cursor:pointer}.price-range.ui-slider-horizontal .ui-slider-range{top:0 !important;height:4px !important;background:var(--theme-color)}.ui-slider-horizontal{height:4px !important;background:#ddd}.price-range.ui-widget.ui-widget-content,.shop-cart-section thead{border:none}.promo-area,.tab-bg{background-color:#f7f8f952 !important;position:relative}.shop-wrapper{padding:40px 0}.sidebar-widget{clear:both !important;margin:10px 0 30px}.filter-area li,.footer-menu li a,.item-name,.post-nav,.products-header{margin-bottom:15px}.sidebar-title h2{border-bottom:1px solid #eee !important;display:block !important;font-size:16px !important;font-weight:700 !important;padding:0 0 10px !important;position:relative !important;text-transform:uppercase}.color-block,.page-num li,.size-opt li{display:inline-block}.sidebar-title h2[aria-expanded=true]:after{color:#999 !important;content:"f3d8" !important;font-family:Ionicons !important;font-size:14px !important;position:absolute !important;right:5px !important;font-weight:400}.category-sub-menu ul li.has-sub:after,.sidebar-title h2[aria-expanded=false]:after{color:#999 !important;content:"f3d0" !important;font-family:Ionicons !important;font-size:14px !important;position:absolute !important;right:5px !important;font-weight:400}.post-nav .page-next a span:after,.post-nav .page-prev a span:before{font-family:Ionicons !important;font-size:18px !important;font-weight:400 !important;line-height:1 !important;position:absolute !important;top:0}.category-sub-menu ul li.has-sub{cursor:pointer !important;display:block !important;font-size:15px !important;line-height:1.5 !important;margin-bottom:15px !important;position:relative}.category-sub-menu ul li.has-sub.open{display:block !important;width:auto}.category-sub-menu ul li.has-sub.open:after{content:"f3d8" !important;top:0}.category-sub-menu ul li.has-sub li a{display:block !important;font-size:14px !important;line-height:2 !important;padding-left:10px}.category-sub-menu ul li.has-sub li:last-child a{border:none !important;margin-bottom:10px}.category-sub-menu ul li ul{display:none !important;margin-top:10px}.filter-area{overflow:auto}.custom-control{padding-left:1.8rem}.custom-control-label{color:#212222 !important;cursor:pointer !important;font-size:14px}.custom-control-label::after,.custom-control-label::before{left:-1.8rem !important;top:.09rem}.custom-control-label::before{background-color:transparent !important;border:1px solid #ced4da}.custom-control-input:checked~.custom-control-label::before{border:1px solid var(--theme-color)}.custom-control-input:focus~.custom-control-label::before{box-shadow:none}.filter-area .custom-checkbox{display:inline-block !important;width:calc(100% - 30px)}.filter-area .count{float:right !important;margin-right:5px}.color-block{border:2px solid #eee !important;width:18px !important;height:18px !important;border-radius:50%}.color-name{margin-left:5px !important;vertical-align:top}.post-nav,.products-header{display:flex !important;align-items:center !important;justify-content:space-between !important;flex-wrap:wrap !important;padding-bottom:15px !important;width:100%}.payment-options .custom-checkbox input[type=radio],.products-header-right i{vertical-align:middle}.products-header-right .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn){width:auto}.bootstrap-select .btn-light{color:#212529 !important;background-color:transparent}.shop-item-filter-list{text-align:right !important;width:100%}.shop-item-filter-list li i{font-size:20px !important;line-height:2}.shop-item-filter-list>li{color:#333 !important;font-size:16px !important;padding-left:15px}.size-opt li{border:2px solid transparent !important;cursor:pointer !important;line-height:24px !important;margin:5px 0 !important;padding:0 5px !important;text-align:center !important;min-width:30px}.page-num li,.page-num li a{font-size:14px !important;line-height:30px}.size-opt li:hover{border:2px solid #eee !important;color:#212222}.size-opt li.selected{border:2px solid var(--theme-color) !important;color:#212222}.page-num li,.reviewer-img img{border-radius:50%}.show-more{cursor:pointer !important;display:none !important;margin-top:15px}.post-nav{border-top:1px solid #ddd !important;padding-top:20px}.post-nav .page-next a,.post-nav .page-prev a{color:var(--theme-color) !important;font-weight:600 !important;text-transform:uppercase}.post-nav .page-prev a span:before{content:"f3d2" !important;left:0}.post-nav .page-next a span:after{content:"f3d3" !important;right:0}.page-prev a span{padding-left:15px}.page-next a span{padding-right:15px}.page-num ul,.product-description .product-rating{padding-left:0}.page-num li{height:30px !important;width:30px}.page-num li a{display:block !important;font-weight:600 !important;-webkit-transition:.3s !important;-o-transition:.3s !important;transition:.3s}.product-next,.product-prev{text-align:center !important;transition:.3s !important;top:50% !important;cursor:pointer !important;z-index:1}.product-next,.product-prev{background-color:#999 !important;color:#fff !important;height:70px !important;left:-70px !important;overflow:hidden !important;position:fixed !important;width:95px}.product-next div,.product-prev div{background-position:center !important;background-size:cover !important;height:100% !important;position:absolute !important;top:0 !important;width:70px !important;z-index:1}.product-next i,.product-prev i{line-height:70px !important;text-align:center !important;width:25px}.product-prev i{float:right}.product-next i{float:left}.product-prev div{left:0}.product-prev:hover{background-color:#212222 !important;color:#fff !important;left:0}.product-next:hover{background-color:#212222 !important;color:#fff !important;right:0}.product-next{left:auto !important;right:-70px}.product-details-section{padding:0 0 40px}.product-details-section .breadcrumb-section{background-color:transparent !important;padding:20px 0 !important;text-align:left}.product-description{background-color:#f6f9fc !important;padding:50px 0}.product-description ul{padding-left:20px}.product-description ul li{font-size:16px !important;list-style:disc !important;padding-bottom:15px}.clearfix{display:block !important;width:100% !important;float:left}#scrolltotop,.input-number{text-align:center !important;width:40px}.item-name{font-size:18px !important;font-weight:700 !important;text-transform:capitalize}.item-review ul{display:inline-block !important;margin-right:10px}.item-review ul li{color:var(--h-color) !important;display:inline-block !important;font-size:16px !important;padding-left:0}.item-price .price{color:var(--h-color) !important;font-size:30px !important;font-weight:500 !important;line-height:1 !important;margin:15px 0}.item-price .old-price{font-size:20px !important;font-weight:400 !important;text-decoration:line-through}.item-stock .stock-status{color:#8fbc09 !important;font-weight:700}.item-short-description{margin:15px 0}.item-categories,.item-tags{display:inline !important;margin:15px 10px}.item-categories a,.item-tags a{color:#999 !important;font-weight:400 !important;font-size:14px !important;padding-left:5px}.reviewer-text span{color:#999 !important;font-size:15px !important;font-weight:400}.item-options .input-qty{padding:4px !important;margin-right:20px !important;align-items:center}.cart-quantity-left-minus,.cart-quantity-right-plus,.quantity-left-minus,.quantity-right-plus{border:none !important;background:0 0 !important;cursor:pointer !important;font-weight:600 !important;line-height:1 !important;opacity:.7}.input-number{max-height:30px!important;border:none !important;background:0 0 !important;margin-bottom:0!important;padding:0!important}input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none !important;margin:0}input[type=number]{-moz-appearance:textfield}.input-qty{border:1px solid #ced4da !important;border-radius:3px !important;margin:2px !important;padding:5px !important;width:118px}.input-qty i{font-size:16px!important}.input-qty input{font-weight:600}.product-details-section .swiper-wrapper ul{position:absolute !important;bottom:10% !important;right:4%}.product-details-section .swiper-wrapper ul li{display:inline-block !important;padding:0 10px !important;background:#ddd !important;width:30px !important;height:30px !important;border-radius:50% !important;line-height:28px !important;text-align:center}.product-details-section .swiper-wrapper ul li a{text-align:center}.product-details-tab.nav-tabs{border-bottom:none !important;justify-content:center}.product-details-tab.nav-tabs .nav-link{border:none !important;font-size:16px !important;color:#212222 !important;position:relative !important;display:inline-block !important;padding:5px 0 !important;margin:0 15px !important;font-weight:600}.product-details-tab.nav-tabs .nav-link:before{position:absolute !important;bottom:0 !important;left:0 !important;width:0 !important;height:2px !important;content:"" !important;background:var(--theme-color) !important;visibility:hidden !important;opacity:0 !important;transition:.5s}.product-details-tab.nav-tabs .nav-link.active:before,.product-details-tab.nav-tabs .nav-link:hover:before{visibility:visible !important;opacity:1 !important;width:100%}.table td,.table th{border-top:none}.table-content table{background:#fff !important;margin-bottom:0 !important;width:100% !important;text-align:center}.table-content .table thead th{vertical-align:bottom !important;border-bottom:1px solid #ddd !important;border-top:none !important;background:#fff !important;color:#212222 !important;font-weight:700}.table-content table td{border-top:none !important;font-size:16px !important;vertical-align:middle !important;font-weight:500}.remove a{width:30px !important;background:rgba(0,0,0,.8) !important;height:30px !important;color:#fff !important;display:inline-block !important;border-radius:50% !important;margin-bottom:13px !important;transition:.5s}.remove a:hover{background:rgba(0,0,0,.4) !important;color:#fff}.wishlist-section tbody tr{border-bottom:1px solid #efefef}.tab-content{width:100%}.user-details{background-color:#f1f3f5 !important;border-radius:7px !important;padding:30px 20px !important;text-align:center}.user-img img{width:80px !important;height:80px !important;border-radius:50%}.user-dashboard-tab__content{-webkit-flex-basis:calc(100% - 22rem) !important;-moz-flex-basis:calc(100% - 22rem) !important;-ms-flex-preferred-size:calc(100% - 22rem) !important;flex-basis:calc(100% - 22rem)}.tab-content .tab-pane.active{display:block !important;height:auto !important;overflow:visible}.tab-content .tab-pane{display:none !important;height:0 !important;max-width:100% !important;overflow:hidden}.user-info li span{color:#212222 !important;font-weight:600}.user-info li{color:#212222 !important;padding:10px 0}.upload-img{width:100px !important;height:100px !important;background:#ddd !important;border-radius:50% !important;text-align:center}.upload-img i{font-size:25px !important;line-height:100px}.change-pwd{border:1px solid #ddd !important;padding-top:30px !important;border-radius:7px}.change-pwd p{position:absolute !important;top:0 !important;left:50% !important;transform:translate(-50%,-50%) !important;background:#fff !important;margin-bottom:30px}.faq-categories{flex-direction:column}.faq-categories h3{color:#999 !important;cursor:pointer}.single-faq{border-bottom:1px solid #ddd !important;margin-bottom:30px !important;padding-bottom:30px}.user-login-section .nav-tabs .nav-link{background:#f5f6f7 !important;border-radius:7px !important;border:none !important;font-size:18px !important;color:#212222 !important;margin:0 5px}.user-login-section .nav-tabs .nav-link.active{background:var(--theme-color) !important;color:var(--light-color)}.panel-login{border-color:#eee}.panel_setting.v1 span i{font-size:22px}.panel-login>.panel-heading{color:#00415d !important;background-color:#fff !important;border-color:#fff !important;text-align:center}.panel-login>.panel-heading a{text-decoration:none !important;color:#666 !important;font-weight:700 !important;font-size:15px !important;-webkit-transition:.1s linear !important;-moz-transition:.1s linear !important;transition:.1s linear}.panel-login>.panel-heading a.active{color:#029f5b !important;font-size:18px}.panel-login>.panel-heading hr{margin-top:10px !important;margin-bottom:0 !important;clear:both !important;border:0 !important;height:1px !important;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,.15),rgba(0,0,0,0)) !important;background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,.15),rgba(0,0,0,0)) !important;background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,.15),rgba(0,0,0,0)) !important;background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,.15),rgba(0,0,0,0))}.panel-login input[type=email],.panel-login input[type=password],.panel-login input[type=text]{height:45px !important;border:1px solid #ddd !important;font-size:16px !important;-webkit-transition:.1s linear !important;-moz-transition:.1s linear !important;transition:.1s linear}.panel-login input:focus,.panel-login input:hover{outline:0 !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;border-color:#ccc}.btn-login{background-color:#59b2e0 !important;outline:0 !important;color:#fff !important;font-size:14px !important;height:auto !important;font-weight:400 !important;padding:14px 0 !important;text-transform:uppercase !important;border-color:#59b2e6}.btn-login:focus,.btn-login:hover{color:#fff !important;background-color:#53a3cd !important;border-color:#53a3cd}.forgot-password{color:#888 !important;border-bottom:1px solid #ddd}.cart-table,.cart-table .table-head>div{border-bottom:1px solid #dadada !important;color:#212222}.forgot-password:focus,.forgot-password:hover{color:#666 !important;border-bottom:1px solid #666}.table-body .cart-item-details,.table-head .cart-item-details{width:30%}.cart-item-quantity,.table-body .cart-item-action,.table-body .cart-item-color,.table-body .cart-item-price,.table-body .cart-item-quantity,.table-body .cart-item-size,.table-body .cart-item-total,.table-head .cart-item-action,.table-head .cart-item-color,.table-head .cart-item-price,.table-head .cart-item-quantity,.table-head .cart-item-size,.table-head .cart-item-total{width:20%}.alert-icon{display:inline-block !important;background:#f3f3f3 !important;padding:17px}.modal-backdrop{background:var(--theme-color)}.footer-wrapper{background:#fff !important;padding:10px}.footer-container{background:var(--theme-color) !important;border-radius:15px !important;padding:20px}.footer-link{color:#fff}.alert-icon i{margin-right:8px}.payment-options .custom-control-label::after,.payment-options .custom-control-label::before{top:.7rem}.action-btn{padding-top:3px!important}.action-btn i{font-size:30px !important;color:#212222 !important;cursor:pointer}.cart-table .table-body,.cart-table .table-body>div,.cart-table .table-head{display:table !important;width:100%}.cart-table .table-head>div{display:table-cell !important;font-size:12px !important;font-weight:700 !important;line-height:70px !important;text-align:center !important;text-transform:uppercase !important;vertical-align:middle}.cart-table .table-body>div:nth-of-type(2n){background-color:#f8f8f8}.cart-table .table-body>div>div{display:table-cell !important;padding:30px 0 !important;text-align:center !important;vertical-align:middle}.cart-table .table-body .remove-item a{color:#999 !important;font-size:20px}.cart-table .table-body>div>div:nth-child(3){font-weight:700 !important;letter-spacing:.075em !important;text-transform:uppercase}.cart-item-price,.cart-item-total{width:13%}.cart-options button,.coupon-code button{margin:0 !important;vertical-align:middle}.cart-options a{font-size:12px !important;letter-spacing:.075em !important;margin-right:20px !important;text-decoration:underline}.cart-total .sm-heading{border-bottom:1px dashed #ccc !important;clear:both !important;line-height:2.5 !important;position:relative !important;width:100%}.cart-total .sm-heading span{color:#777 !important;font-size:14px !important;float:left}.cart-total .sm-heading.final-price{border-bottom:none !important;color:#212222 !important;font-size:20px}.cart-total .button{margin:0 0 30px}.payment-options{border-top:1px dashed #ccc !important;padding:10px 0 !important;text-align:left}.payment-options .custom-checkbox{line-height:40px !important;width:100%}.payment-options .sm-heading{border-bottom:none !important;line-height:1 !important;margin-left:0 !important;width:auto}.payment-options .custom-checkbox .card-options{display:inline-block !important;float:right}.about-text-area{padding:40px 0 0}@media all and (min-width:768px){.about-text{margin-top:15%}}.about-text h2{line-height:1.2 !important;margin:30px 0}.about-text span{color:#212222 !important;position:relative !important;display:inline-block !important;padding-bottom:5px}.about-text span::before{position:absolute !important;bottom:0 !important;left:0 !important;width:45px !important;height:2px !important;content:"" !important;background:var(--theme-color)}.countdown-deals{display:flex !important;flex-direction:row !important;justify-content:space-between}.sidebar-content-wrap.v1 .countdown-deals .cdown{color:#fff !important;font-size:45px !important;width:120px}.daily-deals-wrap.v1{padding:0 70px}.sidebar-content-title h3{color:#fff !important;font-size:40px !important;margin-bottom:6px !important;font-weight:600}.sidebar-content-title p{color:#fff !important;font-size:17px}.sidebar-content-title span{color:#fff !important;font-weight:400}.sidebar-content-wrap.v2.sidebar-single-active.text-center{position:absolute !important;bottom:0 !important;width:100%}.sidebar-content-wrap.v2 .cdown span{font-size:25px !important;display:inline-block !important;line-height:31px}.sidebar-content-wrap.v2 .cdown{padding:5px 0 !important;width:50px !important;border:1px solid #ddd!important;background:#fff}.daily-deals-wrap.v2{padding:0 10px 10px}.sidebar-content-wrap.v2 .countdown-deals .cdown p{font-size:12px !important;line-height:12px}.sidebar-content-wrap.v2.style1.sidebar-single-active.text-center{transform:translatex(12%)}.sidebar-content-wrap.v2.style1 .countdown-deals .cdown{width:60px !important;height:60px}#scrolltotop{border:2px solid #f1f3f5 !important;border-radius:50% !important;bottom:40px !important;color:var(--theme-color) !important;cursor:pointer !important;display:none !important;font-size:14px !important;height:40px !important;position:fixed !important;right:30px !important;z-index:999 !important;line-height:40px !important;background:#fff !important;transition:.5s}.modal{z-index:999999}.modal-lg{max-width:1000px}.modal-content{border:1px solid #eee !important;box-shadow:0 15px 15px rgba(0,0,0,.1)}.modal-body{padding:30px}.modal-body .close{position:absolute !important;right:20px !important;top:20px !important;z-index:1}.promo-area .promo-icon{width:80px}.footer-wrapper{padding:70px 0 0 !important;position:relative !important;display:flex !important;flex-direction:column !important;justify-content:center}.footer-logo{width:150px !important;background-color:#f7f8f952 !important;border-radius:15px !important;padding:10px !important;margin:10px !important;text-align:center}.footer-text{margin-top:20px !important;color:#000}.footer-widget h3{font-size:16px !important;margin-bottom:30px !important;text-transform:uppercase}.footer-menu li a{display:block !important;font-size:15px}.footer-social li a{color:#999 !important;font-size:16px}.footer-bottom{border-top:1px solid #ddd !important;margin-top:4px !important;text-align:center !important;padding:10px}.developed-by{color:#4c2796 !important;text-align:right}.contact-info p{display:flex !important;align-items:center}.contact-info p i{font-size:20px !important;margin-right:15px}@media all and (max-width:900px){.app-header{font-size:2rem}.slider-title{text-align:center !important;font-size:12px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}}@media all and (max-width:768px){hr{margin:30px 0}.slider-title{text-align:center !important;font-size:12px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}.faq-categories{flex-direction:row !important;justify-content:center !important;margin:30px 0}.faq-categories h3{font-size:18px !important;margin-right:20px}.faq-categories h3:last-child{margin-right:0}.cart-table .table td{padding-left:0 !important;padding-right:0}}@media all and (max-width:1024px) and (orientation:landscape){.carousel-item{height:50vh!important}}@media all and (max-width:768px) and (orientation:portrait){.single-carousel-item img{object-fit:contain!important;height:63vh!important;max-height:816px!important}.carousel-item{height:64vh!important}.slider-title{text-align:center !important;font-size:11px !important;color:#f3ebeb !important;position:absolute !important;margin:25px !important;padding:15px !important;border-radius:25px}}@media all and (max-width:500px){section{padding:35px 0}.input-qty{border:none !important;background:0 0 !important;cursor:pointer !important;font-weight:900 !important;line-height:4 !important;opacity:.7}.banner-area{height:66vh!important}.footer-logo{width:100% !important;background-color:#f7f8f952 !important;border-radius:15px !important;padding:10px !important;margin:10px !important;text-align:center}.footer-wrapper{padding:70px 0 0 !important;position:relative !important;display:flex !important;flex-direction:column !important;align-items:center !important;text-align:center}.single-carousel-item img{object-fit:contain!important;height:63vh!important;max-height:816px!important}.container-fluid{width:100% !important;padding-right:5px !important;padding-left:5px !important;margin-right:auto !important;margin-left:auto}.carousel-item{height:92vh!important}h4{padding:5px}.add-to-cart span,.remove a i,h4{font-size:13px}.single-product-wrapper .add-to-cart{height:40px !important;padding:0 !important;width:70px !important;font-size:10px}.product-name{font-size:13px !important;color:var(--h-color)}.product-price span{font-size:13px}.button.style3,a.button.style3{font-size:13px}.button.styleoption,a.button.styleoption{background-color:#fff !important;border:1px solid var(--theme-color) !important;color:var(--theme-color) !important;background-color:#f7f7f4 !important;border-bottom:1px solid #c3c3c3 !important;color:#000 !important;float:left !important;font-size:18px !important;line-height:30px !important;padding:5px 0 !important;text-align:left !important;width:100%}h1{font-size:15px}h2{font-size:13px}.header-middle.slim .logo{padding:5px 0 !important;width:100% !important;text-align:center !important;max-width:35%}.header-middle .logo img,.offset-menu-wrapper .language{max-width:100px}.offset-menu-wrapper .language{display:none}.category__list{top:154px}.cart-table.table-content table td{font-size:14px}.cart-table.table-content table td.cart-product-name{padding-right:5px}.cart-product-name img{margin-right:5px !important;max-width:40px}.cart-table .input-qty{background-color:#f1f3f5 !important;border:none !important;border-radius:7px !important;margin-top:10px !important;padding:5px 0}.cart-table .input-qty .input-number{border:none !important;width:25px}.input-qty span{font-size:12px!important}.product-grid{display:block !important;width:100%}.single-product-wrapper{display:block !important;margin:0 auto 20px !important;max-width:290px}}

/* =================================================
   CUSTOM BANNER STYLES (User Added)
   ================================================= */

/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@700;800&family=Cairo:wght@400;500&display=swap');

.new-banner {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  background: #f5f5f5 !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  position: relative !important;
}

.banner-left {
  flex: 1 1 60% !important;
  min-width: 260px !important;
}

.banner-title {
  font-family: 'Tajawal', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.9rem !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #2b2b2b !important;
}

.banner-sub {
  font-family: 'Cairo', sans-serif !important;
  font-size: 1rem !important;
  color: #4b5563 !important;
  margin-bottom: 14px !important;
  line-height: 1.6 !important;
}

.banner-additional {
  background: linear-gradient(90deg, #8a888d, #6fbbbd) !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-weight: 500 !important;
  margin-bottom: 14px !important;
  line-height: 1.5 !important;
}

.banner-features {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 14px !important;
}

.banner-feature {
  background: linear-gradient(90deg, #8a888d, #6fbbbd) !important;
  color: #fff !important;
  padding: 8px 14px !important;
  border-radius: 12px !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
}

.banner-right {
  flex: 0 0 220px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 14px !important;
}

.price-tag {
  background: linear-gradient(90deg, #8a888d, #6fbbbd) !important;
  color: #fff !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  font-weight: bold !important;
  text-align: center !important;
  font-size: 1.2rem !important;
}

.old-price {
  text-decoration: line-through !important;
  color: #d1d5db !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  margin-bottom: 4px !important;
}

.btn-cta {
  background: linear-gradient(90deg, #8a888d, #6fbbbd) !important;
  color: #fff !important;
  padding: 16px 18px !important;
  border-radius: 12px !important;
  font-family: 'Tajawal', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.2rem !important;
  text-decoration: none !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: opacity 0.3s !important;
}

.btn-cta:hover { opacity: 0.9 !important; }

@media (max-width: 760px) {
  .new-banner {
    flex-direction: column !important;
    text-align: center !important;
  }
  .banner-right {
    width: 100% !important;
  }
  .btn-cta {
    width: 100% !important;
  }
  .banner-title {
    font-size: 1.5rem !important;
    justify-content: center !important;
  }
}

/* =================================================
   EXTRAS (User Added)
   Note: server-side Blade/PHP minify snippet omitted (not valid CSS)
   ================================================= */

.search_result {background:#FFF !important;border:1px solid #e4e6fc !important;border-radius:5px !important;box-shadow:0 5px 10px rgba(44,44,44.0.5) !important;display:none !important;overflow-y:scroll !important;position:absolute !important;width:calc(100% - 45px) !important;z-index:999999}
.search_result > a {cursor:pointer !important;display:flex !important;align-items:center !important;padding:10px !important;position:relative !important;}
.search_result > a > img {margin-right:15px !important;max-width:30px !important;}
.search_result > a h4 {font-size:0.85rem !important;font-weight:500 !important;margin-bottom:0 !important;text-align:left !important;}

.p-conf{
  color: #000000 !important;
  font-size: 14px !important;
  width: 100% !important;
  border: 2px solid #b7f7da !important;
  border-radius: 5px !important;
  padding: 8px !important;
  text-align: center !important;
  margin: 4px !important;
  background-color: #2af1c1 !important;
  display:none !important;
}

.n-conf{
  color: #ffffff !important;
  font-size: 14px !important;
  width: 100% !important;
  border: 2px solid #a79b19 !important;
  border-radius: 5px !important;
  padding: 8px !important;
  text-align: center !important;
  margin: 4px !important;
  background-color: #ef5050 !important;
  display:none !important;
}

/* Footer social icons grid */
.footer-wrapper .footer-social {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
}

.footer-wrapper .footer-social li {
  display: inline-flex !important;
}

.footer-wrapper .footer-social li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 90px !important;
  height: 90px !important;
  border-radius: 12px !important;   /* لو تبي دائري خليها 50% */
  background: #f8f9fa !important;
  transition: all 0.3s ease !important;
}

.footer-wrapper .footer-social li a:hover {
  background: #e9ecef !important;
  transform: scale(1.1) !important;
}

.footer-wrapper .footer-social li img {
  max-width: 70px !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

.footer-wrapper .footer-social li svg {
  width: 28px !important;
  height: 28px !important;
  color: #333 !important;
}

/* ====== Custom Modal ====== */
.custom-modal {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999 !important;
  justify-content: center !important;
  align-items: center !important;
  background: rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(3px) !important;
  transition: opacity 0.3s ease-in-out !important;
  direction: rtl !important; /* يجعل الاتجاه من اليمين */
}
.custom-modal.show {
  display: flex !important;
  animation: fadeIn 0.3s ease-in-out !important;
}

/* overlay */
.custom-modal-overlay {
  position: absolute !important;
  inset: 0 !important;
  cursor: pointer !important;
}

/* wrapper */
.custom-modal-wrapper {
  position: relative !important;
  width: 95% !important;
  max-width: 460px !important;
  animation: modalSlideUp 0.35s ease !important;
  text-align: right !important;
}

/* body */
.custom-modal-body {
  position: relative !important;
  background: #fff !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25) !important;
  transition: all 0.3s ease !important;
  text-align: right !important;
}

/* close button */
.custom-modal-close {
  position: absolute !important;
  top: 10px !important;
  left: 15px !important; /* نقل الزر إلى الجهة اليسرى في RTL */
  background: transparent !important;
  border: none !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  color: #777 !important;
  z-index: 10 !important;
  transition: color 0.2s ease !important;
}
.custom-modal-close:hover {
  color: #000 !important;
}

/* iframe */
.custom-modal-iframe {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 520px !important;
  border: none !important;
  border-radius: 0 0 16px 16px !important;
  direction: rtl !important;
}

/* animations */
@keyframes modalSlideUp {
  from { transform: translateY(30px) !important; opacity: 0 !important; }
  to { transform: translateY(0) !important; opacity: 1 !important; }
}
@keyframes fadeIn {
  from { opacity: 0 !important; }
  to { opacity: 1 !important; }
}

/* =================================================
   DROPDOWN FIX
   - Supports Bootstrap (.dropdown-menu.show)
   - Supports custom menu (.has-dropdown > .dropdown)
   ================================================= */

/* Bootstrap dropdown: force visibility when .show is added */
.dropdown-menu.show{
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* If any rule hides dropdown-menu by default, keep it hidden until show */
.dropdown-menu{
  display: none !important;
}

/* Custom theme dropdown (non-bootstrap): open on hover for desktop */
@media (min-width: 1025px){
  .has-dropdown:hover > .dropdown,
  .main-menu ul li:hover > ul.dropdown{
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}

/* When JS toggles classes on parent li (.show or .open), reveal submenu */
.has-dropdown.show > .dropdown,
.has-dropdown.open > .dropdown,
.dropdown.show > .dropdown-menu{
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Make sure dropdown appears above header sections */
.dropdown-menu,
.has-dropdown .dropdown{
  z-index: 999999 !important;
}

/* Prevent parent containers from clipping dropdowns */
.header-bottom,
.header-middle,
.main-menu,
.navbar,
section{
  overflow: visible !important;
}

/* =================================================
   TECH CLEAN LIGHT
   Modern Mobile Store Theme
   ================================================= */

:root{
  --theme-color:#2563eb !important;   /* أزرق تقني */
  --primary:#3b82f6 !important;
  --accent:#60a5fa !important;
  --light-color:#ffffff !important;
  --h-color:#0f172a !important;
  --a-color:#2563eb !important;
  --a-hover:#1d4ed8 !important;
}

/* ===== الخلفية ===== */
body{
  background:
    radial-gradient(circle at 15% 20%, rgba(37,99,235,0.06), transparent 40%),
    #f6f8fc !important;
  color:#1e293b !important;
}

/* ===== الهيدر ===== */
.header-middle,
.navbar,
.header-bottom{
  background:#ffffff !important;
  border-bottom:1px solid #e5e7eb !important;
  box-shadow:0 10px 30px rgba(15,23,42,0.06) !important;
}

/* ===== الأزرار ===== */
.button,
.btn,
.btn-primary{
  background:linear-gradient(135deg,#2563eb,#60a5fa) !important;
  border:none !important;
  color:#fff !important;
  border-radius:14px !important;
  font-weight:700 !important;
  box-shadow:0 8px 22px rgba(37,99,235,0.25) !important;
  transition:.25s ease !important;
}

.button:hover,
.btn:hover,
.btn-primary:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 14px 35px rgba(37,99,235,0.30) !important;
}

/* ===== كروت المنتجات ===== */
.single-product-wrapper,
.card{
  background:#ffffff !important;
  border:1px solid #e5e7eb !important;
  border-radius:18px !important;
  box-shadow:0 10px 30px rgba(15,23,42,0.06) !important;
  transition:.25s ease !important;
}

.single-product-wrapper:hover,
.card:hover{
  transform:translateY(-6px) !important;
  border-color:#93c5fd !important;
  box-shadow:0 20px 45px rgba(15,23,42,0.10) !important;
}

/* خط أزرق أعلى الكرت */
.single-product-wrapper::after,
.card::after{
  content:"" !important;
  position:absolute !important;
  top:0 !important; left:0 !important; right:0 !important;
  height:2px !important;
  background:linear-gradient(90deg,transparent,#60a5fa,transparent) !important;
  opacity:.6 !important;
}

/* ===== اسم المنتج ===== */
.product-name{
  color:#0f172a !important;
}

/* ===== السعر ===== */
.product-price span,
.price,
.total__price{
  color:#2563eb !important;
  font-weight:800 !important;
}

/* ===== البحث ===== */
.header-search input{
  background:#f8fafc !important;
  border:1px solid #cbd5e1 !important;
  color:#0f172a !important;
}

.header-search .btn-search{
  background:linear-gradient(135deg,#2563eb,#60a5fa) !important;
}

/* ===== القوائم ===== */
.dropdown-menu{
  background:#ffffff !important;
  border:1px solid #e5e7eb !important;
  box-shadow:0 20px 50px rgba(15,23,42,0.08) !important;
}

.dropdown-item{
  color:#334155 !important;
}

.dropdown-item:hover{
  background:#f1f5f9 !important;
  color:#2563eb !important;
}

/* ===== الفوتر ===== */
.footer-wrapper{
  background:#0f172a !important;
  color:#cbd5e1 !important;
}

/* ===== زر الصعود ===== */
#scrolltotop{
  background:#ffffff !important;
  border:1px solid #2563eb !important;
  color:#2563eb !important;
}
