/* Fimobile custom css @ Fimobile @maxartkiller.com */
/* ==============================================
=================================================

[ Table of content ]
-------------------------------------
1. Basic 
2. primary colors
3. sidebar
4. bread crumb
5. Loader css
6. swiper slider css
7. form elements
8. button
9. input group
10. h group 
11. heights
12. top
13. bottom
14. popover
15. Notifications
16. List items
17. Nav tabs
18. card
19. header
20. footer
21. page specific
22. siders
23. Rules for sizing the icon
24. progress bar
25. avatar
26. theme color

=================================================
=================================================*/

/* basic */

html {
    height: 100%;
}

body {
    min-height: 100%;
    height: auto;
    overflow-y: auto;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 22px;
    -webkit-overflow-scrolling: touch;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.modal-footer>*:not(.col){
    margin: 0;
}
/* primary colors */
.bg-none {
    background-color: transparent
}

.bg-primary,
.badge-primary {
    background-color: #0D76FF !important
}

.text-primary {
    color: #0D76FF !important
}

.text-secondary {
    color: #666666 !important;
}

.text-default {
    color: #FF0068 !important
}

.text-info {
    color: #5ED0FB !important
}

.text-danger {
    color: #F16060 !important
}

.bg-primary-light {
    background-color: #CEE3FF !important
}

.bg-success,
.badge-success {
    background-color: #00BE7D !important
}

.text-success {
    color: #00BE7D !important
}

.bg-succss-light {
    background-color: #C0E9DB !important
}

.bg-warning,
.badge-warning {
    background-color: #FFC400 !important
}

.text-warning {
    color: #FFC400 !important
}

.bg-warning-light {
    background-color: #FFF0C1 !important
}

.bg-orange,
.badge-orange {
    background-color: #FF6F00 !important
}

h5 .badge {
    font-size: 50%
}

.bg-orange-light {
    background-color: #FFE5D1 !important
}

.bg-grey,
.badge-grey {
    background-color: #999999 !important
}

.bg-grey-light {
    background-color: #BBBBBB !important
}

.text-white a {
    color: #ffffff !important
}

.row.proh {
    position: relative;
    overflow-x: hidden;
}

.text-mute {
    opacity: 0.7;
}

.wrapper {
    height: auto;
    width: 100%;
    position: relative;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    margin-left: 0;
    z-index: 1;
    min-height: 100vh;
    padding-bottom: 80px;
}

p.small {
    line-height: 1.45em;
}

p:last-child {
    margin-bottom: 0;
}

sup {
    top: -.2em;
}

.background {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    opacity: 0.4;
    z-index: 0;
}

.background + div {
    position: relative;
    z-index: 1
}

/* sidebar  */
body.menuactive {
    overflow: hidden;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    opacity: 1;
}

html.menuactive {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body.menuactive .wrapper {
    overflow: hidden;
    height: 100vh;
}

body.sidemenu-open .wrapper {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    opacity: 0.05;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    /*margin-left: 300px;*/
    border-radius: 4px;
}

body.sidemenu-open .wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    z-index: 10;
    cursor: pointer
}

.sidebar {
    position: absolute;
    padding-top: env(safe-area-inset-top);
    width: 100%;
    height: 100%;
    z-index: 9;
    left: -100%;
    padding: 0 15%;
    top: 0;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    overflow-y: auto;
}


.sidebar .main-menu .list-group-item {
    background-color: transparent;
    font-size: 16px;
    border: 0;
    border-radius: 30px;
    padding: 3px;
    margin-bottom: 15px
}

.sidebar .main-menu .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05);

}

.sidebar .main-menu .list-group-item.active {
    background-color: rgba(255, 255, 255, 0.15);
}

body.sidemenu-open .sidebar {
    left: 0;
}


.sidebar .figure-menu {
    height: 100px;
    width: 100px;
    border-radius: 50px;
    padding: 2px;
    display: block;
    margin: 45px auto 20px auto;
    background-color: #ffffff;
}

.sidebar .figure-menu figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.sidebar .figure-menu figure img {
    width: 100%;
}

.icons-raised {
    position: relative;
    border-radius: 30px;
    height: 44px;
    width: 44px;
    display: inline-block;
    vertical-align: middle;
    line-height: 44px;
    text-align: center;
    margin-right: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    -ms-box-shadow: 0 3px 10px rgba(0, 0, 0, .05);
    background-color: rgba(255, 255, 255, 0.1)
}

.icons-raised .new-notification {
    top: 10px;
}

.closesidemenu {
    position: fixed;
    top: -100px;
    opacity: 0;
    transition: all ease 1s;
    -webkit-transition: all ease 1s;
    -moz-transition: all ease 1s;
    -ms-transition: all ease 1s;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: right;
    display: inline-block;
    z-index: 9
}

body.sidemenu-open .closesidemenu {
    top: 20px;
    opacity: 1;
}

/* bread crumb */
.breadcrumb-item.active {
    color: #b9b9b9;
}

/* Loader css */
.laoderhorizontal {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.laoderhorizontal div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.laoderhorizontal div:nth-child(1) {
    left: 6px;
    animation: laoderhorizontal1 0.6s infinite;
}

.laoderhorizontal div:nth-child(2) {
    left: 6px;
    animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(3) {
    left: 26px;
    animation: laoderhorizontal2 0.6s infinite;
}

.laoderhorizontal div:nth-child(4) {
    left: 45px;
    animation: laoderhorizontal3 0.6s infinite;
}


@keyframes laoderhorizontal1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes laoderhorizontal3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes laoderhorizontal2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

.btn-loader {
    vertical-align: middle;
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.btn-loader div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 3px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: btnloader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #ffffff transparent transparent transparent;
}

.btn-loader div:nth-child(1) {
    animation-delay: -0.45s;
}

.btn-loader div:nth-child(2) {
    animation-delay: -0.3s;
}

.btn-loader div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes btnloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    background-color: #FF0068;
}

/* introduction swiper slider css */
.demo-swiper,
.swiper-init {
    height: 450px;
    margin-top: 30px;
}

.demo-swiper .swiper-slide,
.swiper-init .swiper-slide {
    background-color: #ffffff
}

.demo-swiper .swiper-slide,
.swiper-init .swiper-slide {
    background-size: cover
}

.demo-swiper-gallery-top {
    height: 350px;
    margin-top: 30px;
}

.demo-swiper-gallery-top .swiper-slide {
    background-size: cover
}

.demo-swiper-gallery-thumbs {
    height: 80px;
}

.demo-swiper-gallery-thumbs .swiper-slide > div {
    height: 100%;
    width: 100%;
    background-size: cover;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000000;
}

.introduction.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 0px;
}

.introduction .swiper-slide {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    padding-top: env(safe-area-inset-bottom);
}

.bottom-button-container {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}



/* form elements */
.form-control {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

select.form-control option,
select.form-control optgroup {
    color: #000000
}

.form-control:focus {
    box-shadow: none;
    -ms-box-shadow: none;
}

.form-control::placeholder {
    color: #bbbbbb;
}

.float-label {
    padding-top: 20px;
    position: relative;
}

.form-group .form-control-label {
    font-size: 13px;
    line-height: 18px;
    color: #BBBBBB;
}

.float-label .form-control-label {
    position: absolute;
    left: 15px;
    top: 28px;
    margin: 0;
    line-height: 20px;
    color: #BBBBBB;
    font-size: 15px;
    transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
    -moz-transition: ease all 0.5s;
    z-index: 1;
}

.float-label .form-control,
.float-label .chosen-container .chosen-choices,
.float-label .chosen-container .chosen-single {
    background-color: #ffffff;
    border-radius: 20px;
    z-index: 1;
    position: relative;
    background-image: none;
}

.float-label .form-control:focus {
    border-width: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    outline: none;
}

.form-control-lg {
    font-size: 18px;
}

.float-label .form-control-lg + .form-control-label {
    top: 32px;
}

.float-label .form-control-lg:focus + .form-control-label,
.float-label.active .form-control-lg + .form-control-label,
.float-label .form-control:focus + .form-control-label,
.float-label.active label {
    top: 0;
    font-size: 13px;
    line-height: 20px;
}

.form-group {
    margin-bottom: 0.5rem;
}


.search {
    border-radius: 30px;
    background: url('../img/search.png') no-repeat center right #fff;
}

.chosen-container-active .chosen-choices,
.chosen-container .chosen-single,
.chosen-container-active.chosen-with-drop .chosen-single {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.chosen-container-multi .chosen-choices,
.chosen-container .chosen-single {
    padding: 5px;
    height: auto;
    border-color: #ced4da;
}

.chosen-container-multi .chosen-choices li.search-choice,
.chosen-container .chosen-single li.search-choice {
    position: relative;
    padding: 5px 25px 5px 15px;
    line-height: 18px;
    border: 0px none;
    border-radius: 30px;
    background-image: none;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    outline: none;
}

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: 8px;
    right: 6px;
    width: 12px;
    height: 12px;
    border-radius: 20px;
    padding: 5px;
}

.chosen-container.chosen-with-drop .chosen-drop {
    border: 0;
}

.chosen-container .chosen-results li.highlighted {
    background-image: none;
}

/* button */
.btn {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: normal;
    border-width: 0;
}

[class*="outline"] {
    border-width: 1px;
}

body a.btn-primary,
body a.btn-warning,
body a.btn-danger,
body a.btn-success {
    color: #ffffff;
}

.btn-lg {
    padding: .815rem 1.5rem;
}

.btn-sm {
    font-size: 14px;
}

.btn i,
.btn span,
a i {
    vertical-align: middle
}

.btn img {
    max-width: 20px;
    vertical-align: middle;
}

.btn:focus {
    box-shadow: none;
    -ms-box-shadow: none;
}

.btn i:first-child {
    margin-right: 5px;
    margin-left: -4px;
}

.btn i:last-child {
    margin-left: 5px;
    margin-right: -4px;
}

.btn i:last-child:first-child {
    margin-left: 0px;
    margin-right: 0px;
}

.btn-rounded-54 {
    height: 54px;
    width: 54px;
    line-height: 50px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 28px;
}

.btn-rounded-36 {
    height: 36px;
    width: 36px;
    line-height: 32px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 28px;
}


.btn-rounded-40 {
    height: 40px;
    width: 40px;
    line-height: 32px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 28px;
}

.btn-rounded-26 {
    height: 26px;
    width: 26px;
    line-height: 22px;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    border-radius: 13px;
}

.float-bottom-right {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    margin-bottom: env(safe-area-inset-bottom);
}

.float-bottom-right.stylepicker {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 1002
}

.btn-rounded {
    border-radius: 30px;
}

.btn-rounded-10 {
    border-radius: 10px;
}

.btn-rounded-15 {
    border-radius: 15px;
}

.btn-default,
body .btn.btn-secondary {
    color: #ffffff
}

.btn-warning {
    background-color: #FFC400;
    color: #ffffff;
}

.btn-warning:focus,
.btn-warning:active,
.btn-warning:hover {
    background-color: #f0b000;
    color: #ffffff !important;
}

.btn.btn-link-default {
    color: #bbbbbb;
}

.shadow-sm {
    box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .05) !important;
    -webkit-box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .05) !important;
    -moz-box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .05) !important;
    -ms-box-shadow: 0 .1rem .25rem rgba(0, 0, 0, .05) !important;
}

.btn.shadow-sm {
    box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -webkit-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -moz-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
    -ms-box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .2) !important;
}

.btn.shadow-xs {
    box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -webkit-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -moz-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
    -ms-box-shadow: 0 .15rem .3rem rgba(0, 0, 0, .1) !important;
}

.btn-light,
body a.btn-light {
    background-color: #ffffff;
    color: #999999;
}

.btn-light-grey,
body a.btn-light-grey {
    background-color: #E3EAF1;
    color: #BBBBBB;
    border-color: #F3F6F8
}

.btn-group > .btn:first-child,
.btn-group > .btn:first-of-type,
.btn-group > .btn-group:first-child > .btn {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.btn-group > .btn:last-child,
.btn-group > .btn:last-of-type,
.btn-group > .btn-group:last-child > .btn {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}


.btn h6,
.btn h5,
.btn h4,
.btn h3,
.btn h2,
.btn h1 {
    vertical-align: middle
}

.vm {
    vertical-align: middle
}

.shadow {
    box-shadow: 0 .3rem 0.6rem rgba(0, 0, 0, .1) !important;
    -webkit-box-shadow: 0 .3rem 0.6rem rgba(0, 0, 0, .1) !important;
    -moz-box-shadow: 0 .3rem 0.6rem rgba(0, 0, 0, .1) !important;
    -ms-box-shadow: 0 .3rem 0.6rem rgba(0, 0, 0, .1) !important;
}

/*  input group */
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    margin: 2px;
    border-radius: 30px;
}

.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
    margin: 2px;
    border-radius: 30px;
}

.input-group {
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0;
    border-radius: 30px;
}

.input-group > .form-control {
    border: 0;
}

.input-group > .form-control:last-child {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.input-group > .input-group-prepend > .input-group-text + .input-group-text {
    border-radius: 0;
}

.w-45 {
    width: 45px !important;
    text-align: center
}

.w-35 {
    width: 35px !important;
    text-align: center
}

.input-group.input-group-sm > .form-control {
    height: calc(1.6em + .5rem + 2px);
    border-color: #E3EAF1;
}

.border-top-dashed {
    border-top: 2px dashed #e3ead7 !important;
}

.border-left-dotted {
    border-left: 1px dashed rgba(0, 0, 0, 0.1) !important;
}

.border-top,
.border-left,
.border-bottom,
.border-right {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.progress {
    background-color: rgba(0, 0, 0, 0.05)
}

/* h group  */
h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

/* heights  */
.h-2 {
    height: 2px;
}

.h-4 {
    height: 4px;
}

.h-6 {
    height: 6px;
}

.h-8 {
    height: 8px;
}

.h-10 {
    height: 10px;
}

.h-100px {
    height: 100px;
}

.h-150 {
    height: 150px;
}

.h-200 {
    height: 200px;
}

.h-190 {
    height: 190px;
}

.h-250 {
    height: 250px;
}

/* top  */
.top-30 {
    margin-top: -30px;
}

.top-50 {
    margin-top: -50px;
}

.top-100 {
    margin-top: -100px;
}

.top-150 {
    margin-top: -150px;
}

.top-200 {
    margin-top: -200px;
}

/* bottom  */
.bottom-15 {
    position: relative;
    bottom: -15px;
}

.bottom-20 {
    position: relative;
    bottom: -20px;
}

.bottom-40 {
    position: relative;
    bottom: -40px;
}

.bottom-50 {
    position: relative;
    bottom: -50px;
}

.z-1 {
    z-index: 1
}

.z-0 {
    z-index: 0
}

/* popover  */
.popover {
    border: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.10);
}

/* Notifications  */
.new-notification {
    height: 10px;
    width: 10px;
    border-radius: 6px;
    background-color: #FF0068;
    display: block;
    position: absolute;
    top: 23px;
    right: 5px;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.counts {
    height: 16px;
    width: 16px;
    border-radius: 10px;
    background-color: #FF0068;
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    color: #ffffff;
    text-align: center;
    line-height: 16px;
    vertical-align: middle;
}

/* List items  */
.list-items {
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
}

.list-items li {
    margin-bottom: 5px;
    border-radius: 10px;
    background-color: #eef2f5;
    width: 100%;
    display: block;
    padding: 10px 15px;
    line-height: 20px;
}

.list-items li:last-child {
    margin-bottom: 0
}

.list-group .list-group-item {
    padding: 0.75rem 15px;
}

/*.list-group .list-group-item:hover {
    background-color: #FF0068;
}

.list-group .list-group-item:hover * {
    color: #FFFFFF !important
}
.list-group .list-group-item:hover .form-control{
    color: #000000 !important ;
}*/

.list-group-item.active {
    z-index: 2;
    color: #343a40;
    background-color: #e1f0ff;
    border-color: #ffffff;
}

.list-group-item.active:hover * {
    color: #343a40 !important;
}

/* Nav tabs  */
.nav-tabs {
    z-index: 0;
    border: 0;
    margin-bottom: -11px;
}



.nav-tabs .nav-link {
    padding: 15px 15px 25px 15px;
    border: 0;
    border-radius: 15px 15px 0 0;
}


.nav-tabs .nav-link.active {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

.tab-content {
    position: relative;
    z-index: 1;
}

.tab-content .tab-pane {
    padding: 5px;
    background-color: #ffffff;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 .25rem .25rem rgba(0, 0, 0, .075);
    border-radius: 15px;
}

/* card */
.card .card-header .nav-tabs {
    margin-bottom: -1px;
    text-align: center
}

.card-img:first-child {
    border-radius: 10px 10px 0 0;
}

.card .card-header .nav-tabs .nav-link {
    padding: 15px;
}

.card .card-header .nav-tabs .nav-link.active {
    box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -webkit-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -moz-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
    -ms-box-shadow: 0 -0.125rem .125rem rgba(0, 0, 0, .075);
}

.card .card-header {
    border: 0;
    border-radius: 11px;
}

.card .card-footer {
    border: 0;
    border-radius: 0 0 12px 12px;
}

.card .card-header .card-title {
    margin-bottom: 0;
}

.card .tab-content .tab-pane {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.card {
    border-radius: 10px;
    border: 0;
}

.card .card-body {
    padding: 15px 15px;
}

/* Notification */
.notification {
    padding: 15px;
    background-color: #ffffff;
    position: fixed;
    top: -30%;
    width: 84%;
    max-width: 400px;
    margin: 0 auto;
    left: 0;
    right: 0;
    border-left-width: 3px;
    border-left-style: solid;
    z-index: 10;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    border-radius: 5px;
    overflow: hidden;
}

.notification.active {
    top: 30px;
    opacity: 1;

}

.notification.bottom {
    bottom: -30%;
    opacity: 0;
    top: auto;
}

.notification.bottom.active {
    bottom: 30px;
    opacity: 1;

}

/* header */

.header {
    width: 100%;
    height: auto;
    position: fixed;
    padding: env(safe-area-inset-top);
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    z-index: 9999;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    -webkit-backdrop-filter: saturate(125%) blur(10px);
    -moz-backdrop-filter: saturate(125%) blur(10px);
    -ms-backdrop-filter: saturate(125%) blur(10px);
    backdrop-filter: saturate(125%) blur(10px);
}

.header.active0 {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.header-logo {
    height: auto;
    max-height: 51px;
    display: inline-block;
    vertical-align: middle;
    margin: 2px auto 0px auto;
}

.header .btn {
    height: 54px;
    width: 54px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 50px;
}

.header + div {
    padding-top: 54px;
}


/* footer */
.footer {
    width: 100%;
    height: auto;
    position: fixed;
    padding-bottom: env(safe-area-inset-bottom);
    bottom: 0;
    left: 0;
    z-index: 9;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    -moz-transition: all ease 0.5s;
    -ms-transition: all ease 0.5s;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px -3px 10px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: saturate(125%) blur(10px);
    -moz-backdrop-filter: saturate(125%) blur(10px);
    -ms-backdrop-filter: saturate(125%) blur(10px);
    backdrop-filter: saturate(125%) blur(10px);
}


.footer .btn {
    width: 70px;
    height: 60px;
    line-height: 56px;
    padding: 0;
    text-align: center;
    display: block;
    vertical-align: middle;
}
.footer a p {
    font-size: 6px;
    line-height: 12px;
}
.footer .btn i {
    width: 24px;
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

/*.footer .btn.active i:after {
    content: "";
    left: 0;
    right: 0;
    bottom: -8px;
    height: 4px;
    width: 70%;
    border-radius: 2px;
    display: block;
    margin: 0 auto;
    position: absolute;
}*/


/* page specific */
.subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    text-transform: uppercase
}

.subtitle span {
    vertical-align: middle;
    display: inline-block;
    line-height: 26px;
    border-bottom: 2px solid #ffffff;
}

.logo-small {
    width: 220px;
}

.form-signin {
    max-width: 320px;
    margin: 0 auto;
}

/* siders */

.small-slide {
    height: 150px;
}

.small-slide .swiper-slide {
    width: 165px;
    padding-bottom: 10px;
    padding-right: 15px;
}

.small-slide .swiper-slide .card {
    border-radius: 15px;
    margin-left: 15px;
    height: 100%;
    width: 92%;
}

.small-slide .swiper-slide .card-body {
    position: relative
}

.small-slide .swiper-slide .small-slide-right {
    max-height: 100%;
    margin-right: -45px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

.badge {
    border-radius: 30px;
    font-weight: 400;
    padding-left: 10px;
    padding-right: 10px
}


.two-slide {
    height: 120px;
}

.two-slide .swiper-slide {
    padding: 0 15px;
}

.two-slide .swiper-slide p small {
    width: 100%;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.icon-slide {
    /*height: 85px;*/
}

.icon-slide .swiper-slide {
    padding: 0 15px;
    width: auto;
    max-width: 100px;
}

.offer-slide {
    height: auto;
    margin-bottom: -15px;
}

.offer-slide .swiper-slide {
    padding: 0 15px;
    width: 310px;
}

.offer-slide .swiper-slide > .card {
    margin-bottom: 15px;
}

.icon-slide .swiper-slide p,
.icon-slide .swiper-slide:hover p,
.icon-slide .swiper-slide:focus p {
    color: #000000;
    text-decoration: none
}

.news-slide {
    height: 180px;
    padding-bottom: 20px;
}

.news-slide .swiper-slide {
    padding: 0 15px 10px 15px;
}

.news-slide .swiper-slide .card {
    overflow: hidden;
    height: 100%;
    margin: 0;
}

.news-slide.swiper-container-horizontal > .swiper-pagination-bullets {
    margin-bottom: -10px;
}




/* Rules for sizing the icon. */
.material-icons.md-18 {
    font-size: 18px;
}

.material-icons.md-24 {
    font-size: 24px;
}

.material-icons.md-36 {
    font-size: 36px;
}

.material-icons.md-48 {
    font-size: 48px;
}

.text-normal {
    text-transform: none
}

/* progress bar */
.progress-bar {
    border-radius: 10px;
}

.progress-sm {
    height: 8px;
    padding: 2px;
}

/* product details  */
.product-details {
    height: 300px;
}

.product-details {}

.product-details .swiper-slide {
    padding: 20px 15px 40px 15px;
    line-height: 200px;
    text-align: center
}

.product-details .swiper-slide > img {
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;

}


/* avatar */

.avatar {
    border-radius: 200px;
    display: inline-block;
    margin: 0px auto;
    background-color: #ffffff;
    overflow: hidden;
    border: 2px solid #ffffff;
    vertical-align: top;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.avatar.no-shadow {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
}

.avatar .overlay {
    overflow: hidden;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
}

.avatar img {
    width: 100%;
    vertical-align: top;
    position: relative;
    z-index: 1;
}

.avatar i {
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.avatar-20 {
    height: 20px;
    line-height: 16px;
    vertical-align: middle;
    width: 20px;
}

.avatar-40 {
    height: 40px;
    line-height: 36px;
    vertical-align: middle;
    width: 40px;
}

.avatar-60 {
    height: 60px;
    line-height: 56px;
    vertical-align: middle;
    width: 60px;
}

.avatar-80 {
    height: 80px;
    line-height: 76px;
    vertical-align: middle;
    width: 80px;
}

.avatar-100 {
    height: 100px;
    line-height: 96px;
    vertical-align: middle;
    width: 100px;
}

.avatar-120 {
    height: 120px;
    line-height: 116px;
    vertical-align: middle;
    width: 120px;
}

.avatar-50 {
    height: 50px;
    line-height: 46px;
    vertical-align: middle;
    width: 50px;
}

.avatar-70 {
    height: 70px;
    line-height: 66px;
    vertical-align: middle;
    width: 70px;
}

.avatar-90 {
    height: 90px;
    line-height: 86px;
    vertical-align: middle;
    width: 90px;
}

.figure-profile {
    height: 178px;
    width: 178px;
    border-radius: 90px;
    border: 10px solid #FF0068;
    margin: 0 auto;
    position: relative;
}

.figure-profile figure {
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 50%;
}

.figure-profile figure img {
    width: 100%;
    min-height: 100%;
}

.figure-profile > .floating-btn {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    line-height: 38px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
    right: 0px;
    bottom: 0px;
}

.figure-profile .floating-btn i {
    font-size: 22px;
    margin: 0;
}

.float-file {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    opacity: 0
}

pre {
    background: #e8f4ff;
    padding: 15px;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-dialog-end {
    display: -ms-flexbox;
    display: -moz-flexbox;
    display: -webkit-flexbox;
    display: flex;
    -ms-flex-align: flex-end;
    -moz-flex-align: flex-end;
    -webkit-flex-align: flex-end;
    align-items: flex-end;
    min-height: calc(100% - 3.5rem);
}



/* theme color  */

/* blue theme */
.blue-theme .bg-background,
.blue-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.blue-theme .wrapper {
    background: #edf3f8;
    background: -moz-linear-gradient(top, #edf3f8 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #edf3f8), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #edf3f8 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #edf3f8 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #edf3f8 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #edf3f8 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#edf3f8', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.blue-theme-bg,
.blue-theme body,
.blue-theme body.sidemenu-open,
.blue-theme .bg-template,
.blue-theme .loader-screen {
    background: #5ba8ff;
    background: -moz-linear-gradient(-45deg, #5ba8ff 0%, #975efb 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #5ba8ff), color-stop(100%, #975efb));
    background: -webkit-linear-gradient(-45deg, #5ba8ff 0%, #975efb 100%);
    background: -o-linear-gradient(-45deg, #5ba8ff 0%, #975efb 100%);
    background: -ms-linear-gradient(-45deg, #5ba8ff 0%, #975efb 100%);
    background: linear-gradient(135deg, #5ba8ff 0%, #975efb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5ba8ff', endColorstr='#975efb', GradientType=1);
}


.blue-theme .btn-default,
.blue-theme .custom-control-input:checked ~ .custom-control-label::before,
.blue-theme .small-slide .swiper-slide .card:hover,
.blue-theme .small-slide .swiper-slide .card:focus,
.blue-theme .filter,
.blue-theme .chosen-container .chosen-results li.highlighted,
.blue-theme .page-item.active .page-link,
.blue-theme .nav-pills .nav-link.active,
.blue-theme .nav-pills .show > .nav-link,
.blue-theme .footer .btn i:after {
    background-color: #975EFB;
}

.blue-theme .bg-template,
.blue-theme .icons-raised,
.blue-theme .filter,
.blue-theme .filter .form-control,
.blue-theme .filter .form-group label,
.blue-theme .float-label .chosen-container-multi .chosen-choices,
.blue-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.blue-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.blue-theme .btn-default,
.blue-theme .sidebar,
.blue-theme .sidebar .main-menu .list-group-item,
.blue-theme .small-slide .swiper-slide .card:hover *,
.blue-theme .small-slide .swiper-slide .card:focus *,
.blue-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.blue-theme .filter .form-group label {
    opacity: 0.85;
}

.blue-theme .btn-default:hover,.blue-theme .btn-default.active,
.blue-theme .btn-default:focus {
    color: #ffffff;
    background-color: #6b29dd;
}

.blue-theme .figure-profile,
.blue-theme .form-control:focus,
.blue-theme .custom-control-input:focus ~ .custom-control-label::before,
.blue-theme .custom-control-input:checked ~ .custom-control-label::before,
.blue-theme .float-label .form-control:focus,
.blue-theme .page-item.active .page-link,
.blue-theme .btn-outline-default {
    border-color: #975EFB
}


.blue-theme .filter .form-control:focus,
.blue-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.blue-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.blue-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.blue-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.blue-theme .btn-light:hover,
.blue-theme .btn-light:focus,
.blue-theme .btn-light:not(:disabled):not(.disabled).active,
.blue-theme .bg-template-light {
    background-color: #c8daff
}


.blue-theme .text-template,
.blue-theme .btn-link,
.blue-theme a,
.blue-theme .float-label .form-control:focus + .form-control-label,
.blue-theme .btn-light:hover,
.blue-theme .btn-light:focus,
.blue-theme .btn-light:not(:disabled):not(.disabled).active,
.blue-theme .btn.btn-link-default:hover,
.blue-theme .btn.btn-link-default:focus,
.blue-theme .btn.btn-link-default.active {
    color: #975EFB;
}


.blue-theme .bg-warning,
.blue-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.blue-theme .bg-success,
.blue-theme .badge-success {
    background-color: #00BB32 !important;
}

.blue-theme .bg-danger,
.blue-theme .badge-danger {
    background-color: #F16060 !important;
}

.blue-theme .bg-orange,
.blue-theme .badge-orange {
    background-color: #ff9133 !important;
}

.blue-theme .bg-primary,
.blue-theme .badge-primary {
    background-color: #1E88FF !important;
}

.blue-theme .bg-info,
.blue-theme .badge-info {
    background-color: #5ED0FB !important;
}




/* red theme */
.red-theme .bg-background,
.red-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.red-theme .wrapper {
    background: #fff0f0;
    background: -moz-linear-gradient(top, #fff0f0 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #fff0f0), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #fff0f0 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #fff0f0 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #fff0f0 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #fff0f0 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0f0', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.red-theme-bg,
.red-theme body,
.red-theme body.sidemenu-open,
.red-theme .bg-template,
.red-theme .loader-screen {
    background: #e50000;
    background: -moz-linear-gradient(-45deg, #e50000 0%, #6a00e5 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #e50000), color-stop(100%, #6a00e5));
    background: -webkit-linear-gradient(-45deg, #e50000 0%, #6a00e5 100%);
    background: -o-linear-gradient(-45deg, #e50000 0%, #6a00e5 100%);
    background: -ms-linear-gradient(-45deg, #e50000 0%, #6a00e5 100%);
    background: linear-gradient(135deg, #e50000 0%, #6a00e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e50000', endColorstr='#6a00e5', GradientType=1);
}


.red-theme .btn-default,
.red-theme .custom-control-input:checked ~ .custom-control-label::before,
.red-theme .small-slide .swiper-slide .card:hover,
.red-theme .small-slide .swiper-slide .card:focus,
.red-theme .filter,
.red-theme .chosen-container .chosen-results li.highlighted,
.red-theme .page-item.active .page-link,
.red-theme .nav-pills .nav-link.active,
.red-theme .nav-pills .show > .nav-link,
.red-theme .footer .btn i:after {
    background-color: #e50000;
}

.red-theme .bg-template,
.red-theme .icons-raised,
.red-theme .filter,
.red-theme .filter .form-control,
.red-theme .filter .form-group label,
.red-theme .float-label .chosen-container-multi .chosen-choices,
.red-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.red-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.red-theme .btn-default,
.red-theme .sidebar,
.red-theme .sidebar .main-menu .list-group-item,
.red-theme .small-slide .swiper-slide .card:hover *,
.red-theme .small-slide .swiper-slide .card:focus *,
.red-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.red-theme .filter .form-group label {
    opacity: 0.85;
}

.red-theme .btn-default:hover,.red-theme .btn-default.active,
.red-theme .btn-default:focus {
    color: #ffffff;
    background-color: #be0101;
}

.red-theme .figure-profile,
.red-theme .form-control:focus,
.red-theme .custom-control-input:focus ~ .custom-control-label::before,
.red-theme .custom-control-input:checked ~ .custom-control-label::before,
.red-theme .float-label .form-control:focus,
.red-theme .page-item.active .page-link,
.red-theme .btn-outline-default {
    border-color: #e50000
}


.red-theme .filter .form-control:focus,
.red-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.red-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.red-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.red-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.red-theme .btn-light:hover,
.red-theme .btn-light:focus,
.red-theme .btn-light:not(:disabled):not(.disabled).active,
.red-theme .bg-template-light {
    background-color: #f4cfcf
}


.red-theme .text-template,
.red-theme .btn-link,
.red-theme a,
.red-theme .float-label .form-control:focus + .form-control-label,
.red-theme .btn-light:hover,
.red-theme .btn-light:focus,
.red-theme .btn-light:not(:disabled):not(.disabled).active,
.red-theme .btn.btn-link-default:hover,
.red-theme .btn.btn-link-default:focus,
.red-theme .btn.btn-link-default.active {
    color: #e50000;
}


.red-theme .bg-warning,
.red-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.red-theme .bg-success,
.red-theme .badge-success {
    background-color: #00BB32 !important;
}

.red-theme .bg-danger,
.red-theme .badge-danger {
    background-color: #F16060 !important;
}

.red-theme .bg-orange,
.red-theme .badge-orange {
    background-color: #ff9133 !important;
}

.red-theme .bg-primary,
.red-theme .badge-primary {
    background-color: #1E88FF !important;
}

.red-theme .bg-info,
.red-theme .badge-info {
    background-color: #5ED0FB !important;
}





/* green theme */
.green-theme .bg-background,
.green-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.green-theme .wrapper {
    background: #eafaf6;
    background: -moz-linear-gradient(top, #eafaf6 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #eafaf6), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #eafaf6 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #eafaf6 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #eafaf6 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #eafaf6 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eafaf6', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.green-theme-bg,
.green-theme body,
.green-theme body.sidemenu-open,
.green-theme .bg-template,
.green-theme .loader-screen {
    background: #00cb9c;
    background: -moz-linear-gradient(-45deg, #18e586 0%, #00cb9c 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #18e586), color-stop(100%, #00cb9c));
    background: -webkit-linear-gradient(-45deg, #18e586 0%, #00cb9c 100%);
    background: -o-linear-gradient(-45deg, #18e586 0%, #00cb9c 100%);
    background: -ms-linear-gradient(-45deg, #18e586 0%, #00cb9c 100%);
    background: linear-gradient(135deg, #18e586 0%, #00cb9c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5ba8ff', endColorstr='#00cb9c', GradientType=1);
}


.green-theme .btn-default,
.green-theme .custom-control-input:checked ~ .custom-control-label::before,
.green-theme .small-slide .swiper-slide .card:hover,
.green-theme .small-slide .swiper-slide .card:focus,
.green-theme .filter,
.green-theme .chosen-container .chosen-results li.highlighted,
.green-theme .page-item.active .page-link,
.green-theme .nav-pills .nav-link.active,
.green-theme .nav-pills .show > .nav-link,
.green-theme .footer .btn i:after {
    background-color: #00c177;
}

.green-theme .bg-template,
.green-theme .icons-raised,
.green-theme .filter,
.green-theme .filter .form-control,
.green-theme .filter .form-group label,
.green-theme .float-label .chosen-container-multi .chosen-choices,
.green-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.green-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.green-theme .btn-default,
.green-theme .sidebar,
.green-theme .sidebar .main-menu .list-group-item,
.green-theme .small-slide .swiper-slide .card:hover *,
.green-theme .small-slide .swiper-slide .card:focus *,
.green-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.green-theme .filter .form-group label {
    opacity: 0.85;
}

.green-theme .btn-default:hover,.green-theme .btn-default.active,
.green-theme .btn-default:focus {
    color: #ffffff;
    background-color: #00985e;
}

.green-theme .figure-profile,
.green-theme .form-control:focus,
.green-theme .custom-control-input:focus ~ .custom-control-label::before,
.green-theme .custom-control-input:checked ~ .custom-control-label::before,
.green-theme .float-label .form-control:focus,
.green-theme .page-item.active .page-link,
.green-theme .btn-outline-default {
    border-color: #00c177
}


.green-theme .filter .form-control:focus,
.green-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.green-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.green-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.green-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.green-theme .btn-light:hover,
.green-theme .btn-light:focus,
.green-theme .btn-light:not(:disabled):not(.disabled).active,
.green-theme .bg-template-light {
    background-color: #c9f4e3
}


.green-theme .text-template,
.green-theme .btn-link,
.green-theme a,
.green-theme .float-label .form-control:focus + .form-control-label,
.green-theme .btn-light:hover,
.green-theme .btn-light:focus,
.green-theme .btn-light:not(:disabled):not(.disabled).active,
.green-theme .btn.btn-link-default:hover,
.green-theme .btn.btn-link-default:focus,
.green-theme .btn.btn-link-default.active {
    color: #00c177;
}


.green-theme .bg-warning,
.green-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.green-theme .bg-success,
.green-theme .badge-success {
    background-color: #00BB32 !important;
}

.green-theme .bg-danger,
.green-theme .badge-danger {
    background-color: #F16060 !important;
}

.green-theme .bg-orange,
.green-theme .badge-orange {
    background-color: #ff9133 !important;
}

.green-theme .bg-primary,
.green-theme .badge-primary {
    background-color: #1E88FF !important;
}

.green-theme .bg-info,
.green-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* pink theme */
.pink-theme .bg-background,
.pink-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.pink-theme .wrapper {
    background: #edf3f8;
    background: -moz-linear-gradient(top, #f8edf4 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f8edf4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f8edf4 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f8edf4 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f8edf4 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f8edf4 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8edf4', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.pink-theme-bg,
.pink-theme body,
.pink-theme body.sidemenu-open,
.pink-theme .bg-template,
.pink-theme .loader-screen {
    background: #ff33b5;
    background: -moz-linear-gradient(-45deg, #ff9756 0%, #ff33b5 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff9756), color-stop(100%, #ff33b5));
    background: -webkit-linear-gradient(-45deg, #ff9756 0%, #ff33b5 100%);
    background: -o-linear-gradient(-45deg, #ff9756 0%, #ff33b5 100%);
    background: -ms-linear-gradient(-45deg, #ff9756 0%, #ff33b5 100%);
    background: linear-gradient(135deg, #ff9756 0%, #ff33b5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9756', endColorstr='#ff33b5', GradientType=1);
}


.pink-theme .btn-default,
.pink-theme .custom-control-input:checked ~ .custom-control-label::before,
.pink-theme .small-slide .swiper-slide .card:hover,
.pink-theme .small-slide .swiper-slide .card:focus,
.pink-theme .filter,
.pink-theme .chosen-container .chosen-results li.highlighted,
.pink-theme .page-item.active .page-link,
.pink-theme .nav-pills .nav-link.active,
.pink-theme .nav-pills .show > .nav-link,
.pink-theme .footer .btn i:after {
    background-color: #ff33b5;
}

.pink-theme .bg-template,
.pink-theme .icons-raised,
.pink-theme .filter,
.pink-theme .filter .form-control,
.pink-theme .filter .form-group label,
.pink-theme .float-label .chosen-container-multi .chosen-choices,
.pink-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.pink-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.pink-theme .btn-default,
.pink-theme .sidebar,
.pink-theme .sidebar .main-menu .list-group-item,
.pink-theme .small-slide .swiper-slide .card:hover *,
.pink-theme .small-slide .swiper-slide .card:focus *,
.pink-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.pink-theme .filter .form-group label {
    opacity: 0.85;
}

.pink-theme .btn-default:hover,.pink-theme .btn-default.active,
.pink-theme .btn-default:focus {
    color: #ffffff;
    background-color: #de1194;
}

.pink-theme .figure-profile,
.pink-theme .form-control:focus,
.pink-theme .custom-control-input:focus ~ .custom-control-label::before,
.pink-theme .custom-control-input:checked ~ .custom-control-label::before,
.pink-theme .float-label .form-control:focus,
.pink-theme .page-item.active .page-link,
.pink-theme .btn-outline-default {
    border-color: #ff33b5
}


.pink-theme .filter .form-control:focus,
.pink-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.pink-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.pink-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.pink-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.pink-theme .btn-light:hover,
.pink-theme .btn-light:focus,
.pink-theme .btn-light:not(:disabled):not(.disabled).active,
.pink-theme .bg-template-light {
    background-color: #fde3f4
}


.pink-theme .text-template,
.pink-theme .btn-link,
.pink-theme a,
.pink-theme .float-label .form-control:focus + .form-control-label,
.pink-theme .btn-light:hover,
.pink-theme .btn-light:focus,
.pink-theme .btn-light:not(:disabled):not(.disabled).active,
.pink-theme .btn.btn-link-default:hover,
.pink-theme .btn.btn-link-default:focus,
.pink-theme .btn.btn-link-default.active {
    color: #ff33b5;
}


.pink-theme .bg-warning,
.pink-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.pink-theme .bg-success,
.pink-theme .badge-success {
    background-color: #00BB32 !important;
}

.pink-theme .bg-danger,
.pink-theme .badge-danger {
    background-color: #F16060 !important;
}

.pink-theme .bg-orange,
.pink-theme .badge-orange {
    background-color: #ff9133 !important;
}

.pink-theme .bg-primary,
.pink-theme .badge-primary {
    background-color: #1E88FF !important;
}

.pink-theme .bg-info,
.pink-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* yellow theme */
.yellow-theme .bg-background,
.yellow-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.yellow-theme .wrapper {
    background: #f8f4e1;
    background: -moz-linear-gradient(top, #f8f4e1 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f8f4e1), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f8f4e1 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f8f4e1 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f8f4e1 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f8f4e1 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f4e1', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.yellow-theme-bg,
.yellow-theme body,
.yellow-theme body.sidemenu-open,
.yellow-theme .bg-template,
.yellow-theme .loader-screen {
    background: #ffce00;
    background: -moz-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ffce00), color-stop(100%, #ffa700));
    background: -webkit-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -o-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -ms-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: linear-gradient(135deg, #ffce00 0%, #ffa700 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffce00', endColorstr='#ffa700', GradientType=1);
}


.yellow-theme .btn-default,
.yellow-theme .custom-control-input:checked ~ .custom-control-label::before,
.yellow-theme .small-slide .swiper-slide .card:hover,
.yellow-theme .small-slide .swiper-slide .card:focus,
.yellow-theme .filter,
.yellow-theme .chosen-container .chosen-results li.highlighted,
.yellow-theme .page-item.active .page-link,
.yellow-theme .nav-pills .nav-link.active,
.yellow-theme .nav-pills .show > .nav-link,
.yellow-theme .footer .btn i:after {
    background-color: #ffc400;
}

.yellow-theme .bg-template,
.yellow-theme .icons-raised,
.yellow-theme .filter,
.yellow-theme .filter .form-control,
.yellow-theme .filter .form-group label,
.yellow-theme .float-label .chosen-container-multi .chosen-choices,
.yellow-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.yellow-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.yellow-theme .btn-default,
.yellow-theme .sidebar,
.yellow-theme .sidebar .main-menu .list-group-item,
.yellow-theme .small-slide .swiper-slide .card:hover *,
.yellow-theme .small-slide .swiper-slide .card:focus *,
.yellow-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.yellow-theme .filter .form-group label {
    opacity: 0.85;
}

.yellow-theme .btn-default:hover,.yellow-theme .btn-default.active,
.yellow-theme .btn-default:focus {
    color: #ffffff;
    background-color: #edb600;
}

.yellow-theme .figure-profile,
.yellow-theme .form-control:focus,
.yellow-theme .custom-control-input:focus ~ .custom-control-label::before,
.yellow-theme .custom-control-input:checked ~ .custom-control-label::before,
.yellow-theme .float-label .form-control:focus,
.yellow-theme .page-item.active .page-link,
.yellow-theme .btn-outline-default {
    border-color: #ffc400
}


.yellow-theme .filter .form-control:focus,
.yellow-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.yellow-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.yellow-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.yellow-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.yellow-theme .btn-light:hover,
.yellow-theme .btn-light:focus,
.yellow-theme .btn-light:not(:disabled):not(.disabled).active,
.yellow-theme .bg-template-light {
    background-color: #f8f0d2
}


.yellow-theme .text-template,
.yellow-theme .btn-link,
.yellow-theme a,
.yellow-theme .float-label .form-control:focus + .form-control-label,
.yellow-theme .btn-light:hover,
.yellow-theme .btn-light:focus,
.yellow-theme .btn-light:not(:disabled):not(.disabled).active,
.yellow-theme .btn.btn-link-default:hover,
.yellow-theme .btn.btn-link-default:focus,
.yellow-theme .btn.btn-link-default.active {
    color: #ffc400;
}


.yellow-theme .bg-warning,
.yellow-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.yellow-theme .bg-success,
.yellow-theme .badge-success {
    background-color: #00BB32 !important;
}

.yellow-theme .bg-danger,
.yellow-theme .badge-danger {
    background-color: #F16060 !important;
}

.yellow-theme .bg-orange,
.yellow-theme .badge-orange {
    background-color: #ff9133 !important;
}

.yellow-theme .bg-primary,
.yellow-theme .badge-primary {
    background-color: #1E88FF !important;
}

.yellow-theme .bg-info,
.yellow-theme .badge-info {
    background-color: #5ED0FB !important;
}


/* amazon theme */
.amazon-theme .btn-rounded{
    border-radius: .3rem !important;
}
.amazon-theme .btn-default{
    background: linear-gradient(to bottom,#f7dfa5,#f0c14b);
    border-color: #a88734 #9c7e31 #846a29;
    color: #111;
}
.amazon-theme .btn-default.btn-rounded{
    border-radius: .3rem;
    border-style: solid;
    border-width: .1rem;
}
.amazon-theme .btn-default.btn-important{
    background: #faa41a !important;
    border:none;
}
.amazon-theme .btn-lg{
    height: 55px;
}

.amazon-theme .input-group,
.amazon-theme .form-control{
    border-radius: .3rem;
    outline: none !important;
　　appearance:none !important;
　　-moz-appearance:none !important; /* Firefox */
　　-webkit-appearance:none !important; /* Safari 和 Chrome */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}
.amazon-theme .form-control.form-control-lg{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    height: 47px !important;
    font-size: 15px !important;
}

.amazon-theme .bg-background,
.amazon-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.amazon-theme .passport .header,
.amazon-theme .header.bg-template {
    background: #000 !important;
    color: white !important;
}
.amazon-theme .passport .header .btn{
    display: block !important;
    color: white !important;
}
.amazon-theme .passport .container.title .row{
    display: block !important;
}
.amazon-theme .passport .container .bg-default{
    background: white !important;
    margin-top: 15px;
    padding-bottom: 50px;
}
.amazon-theme .passport .login-row img, .amazon-theme .passport .login-row p{
    display: none !important;
}
.amazon-theme .passport .form-signin img{
    display: block !important;
    border-radius: 0 .3rem .3rem 0 !important;
}
.amazon-theme .card.bg-template {
    background: linear-gradient(to right, rgb(133, 147, 152), rgb(40, 48, 72));
    color: white !important;
    opacity: 1 !important;
}
.amazon-theme .card h3 {
    color: #faa41a !important;
}

.amazon-theme .wrapper {
    background: #f1f1f1 !important;
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}
.amazon-theme .footer {
    display: none;
}

.amazon-theme body{
    background: #f1f1f1 !important;
}
.amazon-theme-bg,
.amazon-theme .bg-template,
.amazon-theme .loader-screen {
    background: linear-gradient(to bottom,#f7dfa5,#f0c14b); !important;
    background: -moz-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ffce00), color-stop(100%, #ffa700));
    background: -webkit-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -o-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: -ms-linear-gradient(-45deg, #ffce00 0%, #ffa700 100%);
    background: linear-gradient(135deg, #ffce00 0%, #ffa700 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffce00', endColorstr='#ffa700', GradientType=1);
}
.amazon-theme .container.bg-template {
    background: linear-gradient(to right, rgb(67, 67, 67) , rgb(0, 0, 0)) !important;
    color: white !important;
}
.amazon-theme body.sidemenu-open .closesidemenu{
    display: none;
}
.amazon-theme body.sidemenu-open .wrapper{
    transform: none;
    opacity: 1;
}
.amazon-theme body.sidemenu-open .sidebar{
    width: 86%;
    background: #f8f8f8 !important;
    padding: 0 0 100px 15px !important;
    max-height: 100% !important;
    overflow-x: hidden;
    overflow-y: scroll;
}
.amazon-theme .sidebar .row{
    padding-bottom: 10px !important;
    border-bottom: 2px solid #dcdddd;
}
.amazon-theme .sidebar .main-menu .list-group-item{
    margin-bottom: 5px !important;
}
.amazon-theme .closesidemenu .bg-dark{
    background: none !important;
}
.amazon-theme .btn-default,
.amazon-theme .custom-control-input:checked ~ .custom-control-label::before,
.amazon-theme .small-slide .swiper-slide .card:hover,
.amazon-theme .small-slide .swiper-slide .card:focus,
.amazon-theme .filter,
.amazon-theme .chosen-container .chosen-results li.highlighted,
.amazon-theme .page-item.active .page-link,
.amazon-theme .nav-pills .nav-link.active,
.amazon-theme .nav-pills .show > .nav-link,
.amazon-theme .footer .btn i:after {
    background-color: #ffc400;
}

.amazon-theme .bg-template,
.amazon-theme .icons-raised,
.amazon-theme .filter,
.amazon-theme .filter .form-control,
.amazon-theme .filter .form-group label,
.amazon-theme .float-label .chosen-container-multi .chosen-choices,
.amazon-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.amazon-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.amazon-theme .btn-default,
.amazon-theme .sidebar,
.amazon-theme .sidebar .main-menu .list-group-item,
.amazon-theme .small-slide .swiper-slide .card:hover *,
.amazon-theme .small-slide .swiper-slide .card:focus *,
.amazon-theme .sidebar .list-group-item.active:hover * {
    color: #111 !important;
}

.amazon-theme .filter .form-group label {
    opacity: 0.85;
}

.amazon-theme .btn-default:hover,.amazon-theme .btn-default.active,
.amazon-theme .btn-default:focus {
    color: #ffffff;
    background: #edb600;
}

.amazon-theme .figure-profile,
.amazon-theme .form-control:focus,
.amazon-theme .custom-control-input:focus ~ .custom-control-label::before,
.amazon-theme .custom-control-input:checked ~ .custom-control-label::before,
.amazon-theme .float-label .form-control:focus,
.amazon-theme .page-item.active .page-link,
.amazon-theme .btn-outline-default {
    border-color: #ffc400
}


.amazon-theme .filter .form-control:focus,
.amazon-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.amazon-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.amazon-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.amazon-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.amazon-theme .btn-light:hover,
.amazon-theme .btn-light:focus,
.amazon-theme .btn-light:not(:disabled):not(.disabled).active,
.amazon-theme .bg-template-light {
    background-color: #f8f0d2
}


.amazon-theme .text-template,
.amazon-theme .btn-link,
.amazon-theme a,
.amazon-theme .float-label .form-control:focus + .form-control-label,
.amazon-theme .btn-light:hover,
.amazon-theme .btn-light:focus,
.amazon-theme .btn-light:not(:disabled):not(.disabled).active,
.amazon-theme .btn.btn-link-default:hover,
.amazon-theme .btn.btn-link-default:focus,
.amazon-theme .btn.btn-link-default.active {
    color: rgb(255, 183, 69);
}


.amazon-theme .bg-warning,
.amazon-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.amazon-theme .bg-success,
.amazon-theme .badge-success {
    background-color: #00BB32 !important;
}

.amazon-theme .bg-danger,
.amazon-theme .badge-danger {
    background-color: #F16060 !important;
}

.amazon-theme .bg-orange,
.amazon-theme .badge-orange {
    background-color: #ff9133 !important;
}

.amazon-theme .bg-primary,
.amazon-theme .badge-primary {
    background-color: #1E88FF !important;
}

.amazon-theme .bg-info,
.amazon-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* orange theme */
.orange-theme .bg-background,
.orange-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.orange-theme .wrapper {
    background: #fcf0e7;
    background: -moz-linear-gradient(top, #fcf0e7 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #fcf0e7), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #fcf0e7 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #fcf0e7 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #fcf0e7 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #fcf0e7 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcf0e7', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.orange-theme-bg,
.orange-theme body,
.orange-theme body.sidemenu-open,
.orange-theme .bg-template,
.orange-theme .loader-screen {
    background: #ff6c00;
    background: -moz-linear-gradient(-45deg, #ff9900 0%, #f24708 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff9900), color-stop(100%, #f24708));
    background: -webkit-linear-gradient(-45deg, #ff9900 0%, #f24708 100%);
    background: -o-linear-gradient(-45deg, #ff9900 0%, #f24708 100%);
    background: -ms-linear-gradient(-45deg, #ff9900 0%, #f24708 100%);
    background: linear-gradient(135deg, #ff9900 0%, #f24708 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9900', endColorstr='#f24708', GradientType=1);
}


.orange-theme .btn-default,
.orange-theme .custom-control-input:checked ~ .custom-control-label::before,
.orange-theme .small-slide .swiper-slide .card:hover,
.orange-theme .small-slide .swiper-slide .card:focus,
.orange-theme .filter,
.orange-theme .chosen-container .chosen-results li.highlighted,
.orange-theme .page-item.active .page-link,
.orange-theme .nav-pills .nav-link.active,
.orange-theme .nav-pills .show > .nav-link,
.orange-theme .footer .btn i:after {
    background-color: #ff6c00;
}

.orange-theme .bg-template,
.orange-theme .icons-raised,
.orange-theme .filter,
.orange-theme .filter .form-control,
.orange-theme .filter .form-group label,
.orange-theme .float-label .chosen-container-multi .chosen-choices,
.orange-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.orange-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.orange-theme .btn-default,
.orange-theme .sidebar,
.orange-theme .sidebar .main-menu .list-group-item,
.orange-theme .small-slide .swiper-slide .card:hover *,
.orange-theme .small-slide .swiper-slide .card:focus *,
.orange-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.orange-theme .filter .form-group label {
    opacity: 0.85;
}

.orange-theme .btn-default:hover,.orange-theme .btn-default.active,
.orange-theme .btn-default:focus {
    color: #ffffff;
    background-color: #c45300;
}

.orange-theme .figure-profile,
.orange-theme .form-control:focus,
.orange-theme .custom-control-input:focus ~ .custom-control-label::before,
.orange-theme .custom-control-input:checked ~ .custom-control-label::before,
.orange-theme .float-label .form-control:focus,
.orange-theme .page-item.active .page-link,
.orange-theme .btn-outline-default {
    border-color: #ff6c00
}


.orange-theme .filter .form-control:focus,
.orange-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.orange-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.orange-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.orange-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.orange-theme .btn-light:hover,
.orange-theme .btn-light:focus,
.orange-theme .btn-light:not(:disabled):not(.disabled).active,
.orange-theme .bg-template-light {
    background-color: #f5dfcf
}


.orange-theme .text-template,
.orange-theme .btn-link,
.orange-theme a,
.orange-theme .float-label .form-control:focus + .form-control-label,
.orange-theme .btn-light:hover,
.orange-theme .btn-light:focus,
.orange-theme .btn-light:not(:disabled):not(.disabled).active,
.orange-theme .btn.btn-link-default:hover,
.orange-theme .btn.btn-link-default:focus,
.orange-theme .btn.btn-link-default.active {
    color: #ff6c00;
}


.orange-theme .bg-warning,
.orange-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.orange-theme .bg-success,
.orange-theme .badge-success {
    background-color: #00BB32 !important;
}

.orange-theme .bg-danger,
.orange-theme .badge-danger {
    background-color: #F16060 !important;
}

.orange-theme .bg-orange,
.orange-theme .badge-orange {
    background-color: #ff9133 !important;
}

.orange-theme .bg-primary,
.orange-theme .badge-primary {
    background-color: #1E88FF !important;
}

.orange-theme .bg-info,
.orange-theme .badge-info {
    background-color: #5ED0FB !important;
}


/* brown theme */
.brown-theme .bg-background,
.brown-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.brown-theme .wrapper,.brown-theme .bg-light{
    background: #f7e6c0;
    background: -moz-linear-gradient(top, #f7e6c0 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f7e6c0), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f7e6c0 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f7e6c0 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f7e6c0 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f7e6c0 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7e6c0', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.brown-theme-bg,
.brown-theme body,
.brown-theme body.sidemenu-open,
.brown-theme .bg-template,
.brown-theme .loader-screen {
    background: #93523b;
    background: -moz-linear-gradient(-45deg, #93523b 0%, #f24708 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #93523b), color-stop(100%, #f24708));
    background: -webkit-linear-gradient(-45deg, #93523b 0%, #f24708 100%);
    background: -o-linear-gradient(-45deg, #93523b 0%, #f24708 100%);
    background: -ms-linear-gradient(-45deg, #93523b 0%, #f24708 100%);
    background: linear-gradient(135deg, #93523b 0%, #f24708 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9900', endColorstr='#f24708', GradientType=1);
}


.brown-theme .btn-default,
.brown-theme .custom-control-input:checked ~ .custom-control-label::before,
.brown-theme .small-slide .swiper-slide .card:hover,
.brown-theme .small-slide .swiper-slide .card:focus,
.brown-theme .filter,
.brown-theme .chosen-container .chosen-results li.highlighted,
.brown-theme .page-item.active .page-link,
.brown-theme .nav-pills .nav-link.active,
.brown-theme .nav-pills .show > .nav-link,
.brown-theme .footer .btn i:after {
    background-color: #93523b;
}

.brown-theme .bg-template,
.brown-theme .icons-raised,
.brown-theme .filter,
.brown-theme .filter .form-control,
.brown-theme .filter .form-group label,
.brown-theme .float-label .chosen-container-multi .chosen-choices,
.brown-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.brown-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.brown-theme .btn-default,
.brown-theme .sidebar,
.brown-theme .sidebar .main-menu .list-group-item,
.brown-theme .small-slide .swiper-slide .card:hover *,
.brown-theme .small-slide .swiper-slide .card:focus *,
.brown-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.brown-theme .filter .form-group label {
    opacity: 0.85;
}

.brown-theme .btn-default:hover,.brown-theme .btn-default.active,
.brown-theme .btn-default:focus {
    color: #ffffff;
    background-color: #c45300;
}

.brown-theme .figure-profile,
.brown-theme .form-control:focus,
.brown-theme .custom-control-input:focus ~ .custom-control-label::before,
.brown-theme .custom-control-input:checked ~ .custom-control-label::before,
.brown-theme .float-label .form-control:focus,
.brown-theme .page-item.active .page-link,
.brown-theme .btn-outline-default {
    border-color: #93523b
}


.brown-theme .filter .form-control:focus,
.brown-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.brown-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.brown-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.brown-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.brown-theme .btn-light:hover,
.brown-theme .btn-light:focus,
.brown-theme .btn-light:not(:disabled):not(.disabled).active,
.brown-theme .bg-template-light {
    background-color: #f5dfcf
}


.brown-theme .text-template,
.brown-theme .btn-link,
.brown-theme a,
.brown-theme .float-label .form-control:focus + .form-control-label,
.brown-theme .btn-light:hover,
.brown-theme .btn-light:focus,
.brown-theme .btn-light:not(:disabled):not(.disabled).active,
.brown-theme .btn.btn-link-default:hover,
.brown-theme .btn.btn-link-default:focus,
.brown-theme .btn.btn-link-default.active {
    color: #93523b;
}


.brown-theme .bg-warning,
.brown-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.brown-theme .bg-success,
.brown-theme .badge-success {
    background-color: #00BB32 !important;
}

.brown-theme .bg-danger,
.brown-theme .badge-danger {
    background-color: #F16060 !important;
}

.brown-theme .bg-orange,
.brown-theme .badge-orange {
    background-color: #ff9133 !important;
}

.brown-theme .bg-primary,
.brown-theme .badge-primary {
    background-color: #1E88FF !important;
}

.brown-theme .bg-info,
.brown-theme .badge-info {
    background-color: #5ED0FB !important;
}

/* purple theme */
.purple-theme .bg-background,
.purple-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.purple-theme .wrapper {
    background: #fbf1fd;
    background: -moz-linear-gradient(top, #fbf1fd 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #fbf1fd), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #fbf1fd 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #fbf1fd 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #fbf1fd 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #fbf1fd 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbf1fd', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.purple-theme-bg,
.purple-theme body,
.purple-theme body.sidemenu-open,
.purple-theme .bg-template,
.purple-theme .loader-screen {
    background: #e65bff;
    background: -moz-linear-gradient(-45deg, #e65bff 0%, #6412d4 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #e65bff), color-stop(100%, #6412d4));
    background: -webkit-linear-gradient(-45deg, #e65bff 0%, #6412d4 100%);
    background: -o-linear-gradient(-45deg, #e65bff 0%, #6412d4 100%);
    background: -ms-linear-gradient(-45deg, #e65bff 0%, #6412d4 100%);
    background: linear-gradient(135deg, #e65bff 0%, #6412d4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e65bff', endColorstr='#6412d4', GradientType=1);
}


.purple-theme .btn-default,
.purple-theme .custom-control-input:checked ~ .custom-control-label::before,
.purple-theme .small-slide .swiper-slide .card:hover,
.purple-theme .small-slide .swiper-slide .card:focus,
.purple-theme .filter,
.purple-theme .chosen-container .chosen-results li.highlighted,
.purple-theme .page-item.active .page-link,
.purple-theme .nav-pills .nav-link.active,
.purple-theme .nav-pills .show > .nav-link,
.purple-theme .footer .btn i:after {
    background-color: #6412d4;
}

.purple-theme .bg-template,
.purple-theme .icons-raised,
.purple-theme .filter,
.purple-theme .filter .form-control,
.purple-theme .filter .form-group label,
.purple-theme .float-label .chosen-container-multi .chosen-choices,
.purple-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.purple-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.purple-theme .btn-default,
.purple-theme .sidebar,
.purple-theme .sidebar .main-menu .list-group-item,
.purple-theme .small-slide .swiper-slide .card:hover *,
.purple-theme .small-slide .swiper-slide .card:focus *,
.purple-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.purple-theme .filter .form-group label {
    opacity: 0.85;
}

.purple-theme .btn-default:hover,.purple-theme .btn-default.active,
.purple-theme .btn-default:focus {
    color: #ffffff;
    background-color: #4600a7;
}

.purple-theme .figure-profile,
.purple-theme .form-control:focus,
.purple-theme .custom-control-input:focus ~ .custom-control-label::before,
.purple-theme .custom-control-input:checked ~ .custom-control-label::before,
.purple-theme .float-label .form-control:focus,
.purple-theme .page-item.active .page-link,
.purple-theme .btn-outline-default {
    border-color: #6412d4
}


.purple-theme .filter .form-control:focus,
.purple-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.purple-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.purple-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.purple-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.purple-theme .btn-light:hover,
.purple-theme .btn-light:focus,
.purple-theme .btn-light:not(:disabled):not(.disabled).active,
.purple-theme .bg-template-light {
    background-color: #d9c8f0
}


.purple-theme .text-template,
.purple-theme .btn-link,
.purple-theme a,
.purple-theme .float-label .form-control:focus + .form-control-label,
.purple-theme .btn-light:hover,
.purple-theme .btn-light:focus,
.purple-theme .btn-light:not(:disabled):not(.disabled).active,
.purple-theme .btn.btn-link-default:hover,
.purple-theme .btn.btn-link-default:focus,
.purple-theme .btn.btn-link-default.active {
    color: #6412d4;
}


.purple-theme .bg-warning,
.purple-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.purple-theme .bg-success,
.purple-theme .badge-success {
    background-color: #00BB32 !important;
}

.purple-theme .bg-danger,
.purple-theme .badge-danger {
    background-color: #F16060 !important;
}

.purple-theme .bg-orange,
.purple-theme .badge-orange {
    background-color: #ff9133 !important;
}

.purple-theme .bg-primary,
.purple-theme .badge-primary {
    background-color: #1E88FF !important;
}

.purple-theme .bg-info,
.purple-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* deeppurple theme */
.deeppurple-theme .bg-background,
.deeppurple-theme .header.active0 {
    background-color: rgba(255, 255, 255, 0.8)
}

.deeppurple-theme .wrapper {
    background: #fcedff;
    background: -moz-linear-gradient(top, #fcedff 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #fcedff), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #fcedff 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #fcedff 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #fcedff 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcedff', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.deeppurple-theme-bg,
.deeppurple-theme 
.deeppurple-theme body.sidemenu-open,
.deeppurple-theme .bg-template,
.deeppurple-theme .loader-screen {
    background: #a700ff;
    background: -moz-linear-gradient(-45deg, #84caec 0%, #3a7896 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #84caec), color-stop(100%, #3a7896));
    background: -webkit-linear-gradient(-45deg, #84caec 0%, #3a7896 100%);
    background: -o-linear-gradient(-45deg, #84caec 0%, #3a7896 100%);
    background: -ms-linear-gradient(-45deg, #84caec 0%, #3a7896 100%);
    background: linear-gradient(135deg, #84caec 0%, #3a7896 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#84caec', endColorstr='#3a7896', GradientType=1);
}


.deeppurple-theme .btn-default,
.deeppurple-theme .custom-control-input:checked ~ .custom-control-label::before,
.deeppurple-theme .small-slide .swiper-slide .card:hover,
.deeppurple-theme .small-slide .swiper-slide .card:focus,
.deeppurple-theme .filter,
.deeppurple-theme .chosen-container .chosen-results li.highlighted,
.deeppurple-theme .page-item.active .page-link,
.deeppurple-theme .nav-pills .nav-link.active,
.deeppurple-theme .nav-pills .show > .nav-link,
.deeppurple-theme .footer .btn i:after {
    background-color: #3a7896;
}

.deeppurple-theme .bg-template,
.deeppurple-theme .icons-raised,
.deeppurple-theme .filter,
.deeppurple-theme .filter .form-control,
.deeppurple-theme .filter .form-group label,
.deeppurple-theme .float-label .chosen-container-multi .chosen-choices,
.deeppurple-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.deeppurple-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.deeppurple-theme .btn-default,
.deeppurple-theme .sidebar,
.deeppurple-theme .sidebar .main-menu .list-group-item,
.deeppurple-theme .small-slide .swiper-slide .card:hover *,
.deeppurple-theme .small-slide .swiper-slide .card:focus *,
.deeppurple-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.deeppurple-theme .filter .form-group label {
    opacity: 0.85;
}

.deeppurple-theme .btn-default:hover,.deeppurple-theme .btn-default.active,
.deeppurple-theme .btn-default:focus {
    color: #ffffff;
    background-color: #3a7896;
}

.deeppurple-theme .figure-profile,
.deeppurple-theme .form-control:focus,
.deeppurple-theme .custom-control-input:focus ~ .custom-control-label::before,
.deeppurple-theme .custom-control-input:checked ~ .custom-control-label::before,
.deeppurple-theme .float-label .form-control:focus,
.deeppurple-theme .page-item.active .page-link,
.deeppurple-theme .btn-outline-default {
    border-color: #3a7896
}


.deeppurple-theme .filter .form-control:focus,
.deeppurple-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.deeppurple-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.deeppurple-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.deeppurple-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.deeppurple-theme .btn-light:hover,
.deeppurple-theme .btn-light:focus,
.deeppurple-theme .btn-light:not(:disabled):not(.disabled).active,
.deeppurple-theme .bg-template-light {
    background-color: #dbc7ea
}


.deeppurple-theme .text-template,
.deeppurple-theme .btn-link,
.deeppurple-theme a,
.deeppurple-theme .float-label .form-control:focus + .form-control-label,
.deeppurple-theme .btn-light:hover,
.deeppurple-theme .btn-light:focus,
.deeppurple-theme .btn-light:not(:disabled):not(.disabled).active,
.deeppurple-theme .btn.btn-link-default:hover,
.deeppurple-theme .btn.btn-link-default:focus,
.deeppurple-theme .btn.btn-link-default.active {
    color: #3a7896;
}


.deeppurple-theme .bg-warning,
.deeppurple-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.deeppurple-theme .bg-success,
.deeppurple-theme .badge-success {
    background-color: #00BB32 !important;
}

.deeppurple-theme .bg-danger,
.deeppurple-theme .badge-danger {
    background-color: #F16060 !important;
}

.deeppurple-theme .bg-orange,
.deeppurple-theme .badge-orange {
    background-color: #ff9133 !important;
}

.deeppurple-theme .bg-primary,
.deeppurple-theme .badge-primary {
    background-color: #1E88FF !important;
}

.deeppurple-theme .bg-info,
.deeppurple-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* lightblue theme */
.lightblue-theme .bg-background,
.lightblue-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.lightblue-theme .wrapper {
    background: #ecf8fc;
    background: -moz-linear-gradient(top, #ecf8fc 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #ecf8fc), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #ecf8fc 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #ecf8fc 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #ecf8fc 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #ecf8fc 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ecf8fc', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.lightblue-theme-bg,
.lightblue-theme body,
.lightblue-theme body.sidemenu-open,
.lightblue-theme .bg-template,
.lightblue-theme .loader-screen {
    background: #0075f8;
    background: -moz-linear-gradient(-45deg, #17c0ff 0%, #0075f8 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #17c0ff), color-stop(100%, #0075f8));
    background: -webkit-linear-gradient(-45deg, #17c0ff 0%, #0075f8 100%);
    background: -o-linear-gradient(-45deg, #17c0ff 0%, #0075f8 100%);
    background: -ms-linear-gradient(-45deg, #17c0ff 0%, #0075f8 100%);
    background: linear-gradient(135deg, #17c0ff 0%, #0075f8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#17c0ff', endColorstr='#0075f8', GradientType=1);
}


.lightblue-theme .btn-default,
.lightblue-theme .custom-control-input:checked ~ .custom-control-label::before,
.lightblue-theme .small-slide .swiper-slide .card:hover,
.lightblue-theme .small-slide .swiper-slide .card:focus,
.lightblue-theme .filter,
.lightblue-theme .chosen-container .chosen-results li.highlighted,
.lightblue-theme .page-item.active .page-link,
.lightblue-theme .nav-pills .nav-link.active,
.lightblue-theme .nav-pills .show > .nav-link,
.lightblue-theme .footer .btn i:after {
    background-color: #0073d6;
}

.lightblue-theme .bg-template,
.lightblue-theme .icons-raised,
.lightblue-theme .filter,
.lightblue-theme .filter .form-control,
.lightblue-theme .filter .form-group label,
.lightblue-theme .float-label .chosen-container-multi .chosen-choices,
.lightblue-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.lightblue-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.lightblue-theme .btn-default,
.lightblue-theme .sidebar,
.lightblue-theme .sidebar .main-menu .list-group-item,
.lightblue-theme .small-slide .swiper-slide .card:hover *,
.lightblue-theme .small-slide .swiper-slide .card:focus *,
.lightblue-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.lightblue-theme .filter .form-group label {
    opacity: 0.85;
}

.lightblue-theme .btn-default:hover,.lightblue-theme .btn-default.active,
.lightblue-theme .btn-default:focus {
    color: #ffffff;
    background-color: #005cac;
}

.lightblue-theme .figure-profile,
.lightblue-theme .form-control:focus,
.lightblue-theme .custom-control-input:focus ~ .custom-control-label::before,
.lightblue-theme .custom-control-input:checked ~ .custom-control-label::before,
.lightblue-theme .float-label .form-control:focus,
.lightblue-theme .page-item.active .page-link,
.lightblue-theme .btn-outline-default {
    border-color: #0073d6
}


.lightblue-theme .filter .form-control:focus,
.lightblue-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.lightblue-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.lightblue-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.lightblue-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.lightblue-theme .btn-light:hover,
.lightblue-theme .btn-light:focus,
.lightblue-theme .btn-light:not(:disabled):not(.disabled).active,
.lightblue-theme .bg-template-light {
    background-color: #c7dcef
}


.lightblue-theme .text-template,
.lightblue-theme .btn-link,
.lightblue-theme a,
.lightblue-theme .float-label .form-control:focus + .form-control-label,
.lightblue-theme .btn-light:hover,
.lightblue-theme .btn-light:focus,
.lightblue-theme .btn-light:not(:disabled):not(.disabled).active,
.lightblue-theme .btn.btn-link-default:hover,
.lightblue-theme .btn.btn-link-default:focus,
.lightblue-theme .btn.btn-link-default.active {
    color: #0073d6;
}


.lightblue-theme .bg-warning,
.lightblue-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.lightblue-theme .bg-success,
.lightblue-theme .badge-success {
    background-color: #00BB32 !important;
}

.lightblue-theme .bg-danger,
.lightblue-theme .badge-danger {
    background-color: #F16060 !important;
}

.lightblue-theme .bg-orange,
.lightblue-theme .badge-orange {
    background-color: #ff9133 !important;
}

.lightblue-theme .bg-primary,
.lightblue-theme .badge-primary {
    background-color: #1E88FF !important;
}

.lightblue-theme .bg-info,
.lightblue-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* teal theme */
.teal-theme .bg-background,
.teal-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.teal-theme .wrapper {
    background: #e4faf4;
    background: -moz-linear-gradient(top, #e4faf4 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #e4faf4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #e4faf4 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #e4faf4 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #e4faf4 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #e4faf4 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e4faf4', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.teal-theme-bg,
.teal-theme body,
.teal-theme body.sidemenu-open,
.teal-theme .bg-template,
.teal-theme .loader-screen {
    background: #d4f29c;
    background: -moz-linear-gradient(-45deg, #d4f29c 0%, #00a888 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #d4f29c), color-stop(100%, #00a888));
    background: -webkit-linear-gradient(-45deg, #d4f29c 0%, #00a888 100%);
    background: -o-linear-gradient(-45deg, #d4f29c 0%, #00a888 100%);
    background: -ms-linear-gradient(-45deg, #d4f29c 0%, #00a888 100%);
    background: linear-gradient(135deg, #d4f29c 0%, #00a888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5ba8ff', endColorstr='#00a888', GradientType=1);
}


.teal-theme .btn-default,
.teal-theme .custom-control-input:checked ~ .custom-control-label::before,
.teal-theme .small-slide .swiper-slide .card:hover,
.teal-theme .small-slide .swiper-slide .card:focus,
.teal-theme .filter,
.teal-theme .chosen-container .chosen-results li.highlighted,
.teal-theme .page-item.active .page-link,
.teal-theme .nav-pills .nav-link.active,
.teal-theme .nav-pills .show > .nav-link,
.teal-theme .footer .btn i:after {
    background-color: #00a888;
}

.teal-theme .bg-template,
.teal-theme .icons-raised,
.teal-theme .filter,
.teal-theme .filter .form-control,
.teal-theme .filter .form-group label,
.teal-theme .float-label .chosen-container-multi .chosen-choices,
.teal-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.teal-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.teal-theme .btn-default,
.teal-theme .sidebar,
.teal-theme .sidebar .main-menu .list-group-item,
.teal-theme .small-slide .swiper-slide .card:hover *,
.teal-theme .small-slide .swiper-slide .card:focus *,
.teal-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.teal-theme .filter .form-group label {
    opacity: 0.85;
}

.teal-theme .btn-default:hover,.teal-theme .btn-default.active,
.teal-theme .btn-default:focus {
    color: #ffffff;
    background-color: #008e73;
}

.teal-theme .figure-profile,
.teal-theme .form-control:focus,
.teal-theme .custom-control-input:focus ~ .custom-control-label::before,
.teal-theme .custom-control-input:checked ~ .custom-control-label::before,
.teal-theme .float-label .form-control:focus,
.teal-theme .page-item.active .page-link,
.teal-theme .btn-outline-default {
    border-color: #00a888
}


.teal-theme .filter .form-control:focus,
.teal-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.teal-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.teal-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.teal-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.teal-theme .btn-light:hover,
.teal-theme .btn-light:focus,
.teal-theme .btn-light:not(:disabled):not(.disabled).active,
.teal-theme .bg-template-light {
    background-color: #c4efe7
}


.teal-theme .text-template,
.teal-theme .btn-link,
.teal-theme a,
.teal-theme .float-label .form-control:focus + .form-control-label,
.teal-theme .btn-light:hover,
.teal-theme .btn-light:focus,
.teal-theme .btn-light:not(:disabled):not(.disabled).active,
.teal-theme .btn.btn-link-default:hover,
.teal-theme .btn.btn-link-default:focus,
.teal-theme .btn.btn-link-default.active {
    color: #00a888;
}


.teal-theme .bg-warning,
.teal-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.teal-theme .bg-success,
.teal-theme .badge-success {
    background-color: #00BB32 !important;
}

.teal-theme .bg-danger,
.teal-theme .badge-danger {
    background-color: #F16060 !important;
}

.teal-theme .bg-orange,
.teal-theme .badge-orange {
    background-color: #ff9133 !important;
}

.teal-theme .bg-primary,
.teal-theme .badge-primary {
    background-color: #1E88FF !important;
}

.teal-theme .bg-info,
.teal-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* lime theme */
.lime-theme .bg-background,
.lime-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.lime-theme .wrapper {
    background: #f5f7e4;
    background: -moz-linear-gradient(top, #f5f7e4 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f5f7e4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f5f7e4 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f5f7e4 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f5f7e4 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f5f7e4 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f7e4', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.lime-theme-bg,
.lime-theme body,
.lime-theme body.sidemenu-open,
.lime-theme .bg-template,
.lime-theme .loader-screen {
    background: #cddc39;
    background: -moz-linear-gradient(-45deg, #cddc39 0%, #71b700 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #cddc39), color-stop(100%, #71b700));
    background: -webkit-linear-gradient(-45deg, #cddc39 0%, #71b700 100%);
    background: -o-linear-gradient(-45deg, #cddc39 0%, #71b700 100%);
    background: -ms-linear-gradient(-45deg, #cddc39 0%, #71b700 100%);
    background: linear-gradient(135deg, #cddc39 0%, #71b700 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cddc39', endColorstr='#71b700', GradientType=1);
}


.lime-theme .btn-default,
.lime-theme .custom-control-input:checked ~ .custom-control-label::before,
.lime-theme .small-slide .swiper-slide .card:hover,
.lime-theme .small-slide .swiper-slide .card:focus,
.lime-theme .filter,
.lime-theme .chosen-container .chosen-results li.highlighted,
.lime-theme .page-item.active .page-link,
.lime-theme .nav-pills .nav-link.active,
.lime-theme .nav-pills .show > .nav-link,
.lime-theme .footer .btn i:after {
    background-color: #71b700;
}

.lime-theme .bg-template,
.lime-theme .icons-raised,
.lime-theme .filter,
.lime-theme .filter .form-control,
.lime-theme .filter .form-group label,
.lime-theme .float-label .chosen-container-multi .chosen-choices,
.lime-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.lime-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.lime-theme .btn-default,
.lime-theme .sidebar,
.lime-theme .sidebar .main-menu .list-group-item,
.lime-theme .small-slide .swiper-slide .card:hover *,
.lime-theme .small-slide .swiper-slide .card:focus *,
.lime-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.lime-theme .filter .form-group label {
    opacity: 0.85;
}

.lime-theme .btn-default:hover,.lime-theme .btn-default.active,
.lime-theme .btn-default:focus {
    color: #ffffff;
    background-color: #609b00;
}

.lime-theme .figure-profile,
.lime-theme .form-control:focus,
.lime-theme .custom-control-input:focus ~ .custom-control-label::before,
.lime-theme .custom-control-input:checked ~ .custom-control-label::before,
.lime-theme .float-label .form-control:focus,
.lime-theme .page-item.active .page-link,
.lime-theme .btn-outline-default {
    border-color: #71b700
}


.lime-theme .filter .form-control:focus,
.lime-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.lime-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.lime-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.lime-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.lime-theme .btn-light:hover,
.lime-theme .btn-light:focus,
.lime-theme .btn-light:not(:disabled):not(.disabled).active,
.lime-theme .bg-template-light {
    background-color: #d3e8b1
}


.lime-theme .text-template,
.lime-theme .btn-link,
.lime-theme a,
.lime-theme .float-label .form-control:focus + .form-control-label,
.lime-theme .btn-light:hover,
.lime-theme .btn-light:focus,
.lime-theme .btn-light:not(:disabled):not(.disabled).active,
.lime-theme .btn.btn-link-default:hover,
.lime-theme .btn.btn-link-default:focus,
.lime-theme .btn.btn-link-default.active {
    color: #71b700;
}


.lime-theme .bg-warning,
.lime-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.lime-theme .bg-success,
.lime-theme .badge-success {
    background-color: #00BB32 !important;
}

.lime-theme .bg-danger,
.lime-theme .badge-danger {
    background-color: #F16060 !important;
}

.lime-theme .bg-orange,
.lime-theme .badge-orange {
    background-color: #ff9133 !important;
}

.lime-theme .bg-primary,
.lime-theme .badge-primary {
    background-color: #1E88FF !important;
}

.lime-theme .bg-info,
.lime-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* deeporange theme */
.deeporange-theme .bg-background,
.deeporange-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.deeporange-theme .wrapper {
    background: #fff9f1;
    background: -moz-linear-gradient(top, #fff9f1 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #fff9f1), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #fff9f1 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #fff9f1 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #fff9f1 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #fff9f1 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f1', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.deeporange-theme-bg,
.deeporange-theme body,
.deeporange-theme body.sidemenu-open,
.deeporange-theme .bg-template,
.deeporange-theme .loader-screen {
    background: #ff7600;
    background: -moz-linear-gradient(-45deg, #ff91b7 0%, #ff7600 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff91b7), color-stop(100%, #ff7600));
    background: -webkit-linear-gradient(-45deg, #ff91b7 0%, #ff7600 100%);
    background: -o-linear-gradient(-45deg, #ff91b7 0%, #ff7600 100%);
    background: -ms-linear-gradient(-45deg, #ff91b7 0%, #ff7600 100%);
    background: linear-gradient(135deg, #ff91b7 0%, #ff7600 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff91b7', endColorstr='#ff7600', GradientType=1);
}


.deeporange-theme .btn-default,
.deeporange-theme .custom-control-input:checked ~ .custom-control-label::before,
.deeporange-theme .small-slide .swiper-slide .card:hover,
.deeporange-theme .small-slide .swiper-slide .card:focus,
.deeporange-theme .filter,
.deeporange-theme .chosen-container .chosen-results li.highlighted,
.deeporange-theme .page-item.active .page-link,
.deeporange-theme .nav-pills .nav-link.active,
.deeporange-theme .nav-pills .show > .nav-link,
.deeporange-theme .footer .btn i:after {
    background-color: #ff7600;
}

.deeporange-theme .bg-template,
.deeporange-theme .icons-raised,
.deeporange-theme .filter,
.deeporange-theme .filter .form-control,
.deeporange-theme .filter .form-group label,
.deeporange-theme .float-label .chosen-container-multi .chosen-choices,
.deeporange-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.deeporange-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.deeporange-theme .btn-default,
.deeporange-theme .sidebar,
.deeporange-theme .sidebar .main-menu .list-group-item,
.deeporange-theme .small-slide .swiper-slide .card:hover *,
.deeporange-theme .small-slide .swiper-slide .card:focus *,
.deeporange-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.deeporange-theme .filter .form-group label {
    opacity: 0.85;
}

.deeporange-theme .btn-default:hover,.deeporange-theme .btn-default.active,
.deeporange-theme .btn-default:focus {
    color: #ffffff;
    background-color: #cc5f00;
}

.deeporange-theme .figure-profile,
.deeporange-theme .form-control:focus,
.deeporange-theme .custom-control-input:focus ~ .custom-control-label::before,
.deeporange-theme .custom-control-input:checked ~ .custom-control-label::before,
.deeporange-theme .float-label .form-control:focus,
.deeporange-theme .page-item.active .page-link,
.deeporange-theme .btn-outline-default {
    border-color: #ff7600
}


.deeporange-theme .filter .form-control:focus,
.deeporange-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.deeporange-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.deeporange-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.deeporange-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.deeporange-theme .btn-light:hover,
.deeporange-theme .btn-light:focus,
.deeporange-theme .btn-light:not(:disabled):not(.disabled).active,
.deeporange-theme .bg-template-light {
    background-color: #ffe0c5
}


.deeporange-theme .text-template,
.deeporange-theme .btn-link,
.deeporange-theme a,
.deeporange-theme .float-label .form-control:focus + .form-control-label,
.deeporange-theme .btn-light:hover,
.deeporange-theme .btn-light:focus,
.deeporange-theme .btn-light:not(:disabled):not(.disabled).active,
.deeporange-theme .btn.btn-link-default:hover,
.deeporange-theme .btn.btn-link-default:focus,
.deeporange-theme .btn.btn-link-default.active {
    color: #ff7600;
}


.deeporange-theme .bg-warning,
.deeporange-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.deeporange-theme .bg-success,
.deeporange-theme .badge-success {
    background-color: #00BB32 !important;
}

.deeporange-theme .bg-danger,
.deeporange-theme .badge-danger {
    background-color: #F16060 !important;
}

.deeporange-theme .bg-orange,
.deeporange-theme .badge-orange {
    background-color: #ff9133 !important;
}

.deeporange-theme .bg-primary,
.deeporange-theme .badge-primary {
    background-color: #1E88FF !important;
}

.deeporange-theme .bg-info,
.deeporange-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* gray theme */
.gray-theme .bg-background,
.gray-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.gray-theme .wrapper {
    background: #f2f2f2;
    background: -moz-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f2f2f2), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f2f2f2 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.gray-theme-bg,
.gray-theme body,
.gray-theme body.sidemenu-open,
.gray-theme .bg-template,
.gray-theme .loader-screen {
    background: #62b2c5;
    background: -moz-linear-gradient(-45deg, #62b2c5 0%, #888888 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #62b2c5), color-stop(100%, #888888));
    background: -webkit-linear-gradient(-45deg, #62b2c5 0%, #888888 100%);
    background: -o-linear-gradient(-45deg, #62b2c5 0%, #888888 100%);
    background: -ms-linear-gradient(-45deg, #62b2c5 0%, #888888 100%);
    background: linear-gradient(135deg, #62b2c5 0%, #888888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62b2c5', endColorstr='#888888', GradientType=1);
}


.gray-theme .btn-default,
.gray-theme .custom-control-input:checked ~ .custom-control-label::before,
.gray-theme .small-slide .swiper-slide .card:hover,
.gray-theme .small-slide .swiper-slide .card:focus,
.gray-theme .filter,
.gray-theme .chosen-container .chosen-results li.highlighted,
.gray-theme .page-item.active .page-link,
.gray-theme .nav-pills .nav-link.active,
.gray-theme .nav-pills .show > .nav-link,
.gray-theme .footer .btn i:after {
    background-color: #666666;
}

.gray-theme .bg-template,
.gray-theme .icons-raised,
.gray-theme .filter,
.gray-theme .filter .form-control,
.gray-theme .filter .form-group label,
.gray-theme .float-label .chosen-container-multi .chosen-choices,
.gray-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.gray-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.gray-theme .btn-default,
.gray-theme .sidebar,
.gray-theme .sidebar .main-menu .list-group-item,
.gray-theme .small-slide .swiper-slide .card:hover *,
.gray-theme .small-slide .swiper-slide .card:focus *,
.gray-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.gray-theme .filter .form-group label {
    opacity: 0.85;
}

.gray-theme .btn-default:hover,.gray-theme .btn-default.active,
.gray-theme .btn-default:focus {
    color: #ffffff;
    background-color: #444444;
}

.gray-theme .figure-profile,
.gray-theme .form-control:focus,
.gray-theme .custom-control-input:focus ~ .custom-control-label::before,
.gray-theme .custom-control-input:checked ~ .custom-control-label::before,
.gray-theme .float-label .form-control:focus,
.gray-theme .page-item.active .page-link,
.gray-theme .btn-outline-default {
    border-color: #666666
}


.gray-theme .filter .form-control:focus,
.gray-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.gray-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.gray-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.gray-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.3);
}

.gray-theme .btn-light:hover,
.gray-theme .btn-light:focus,
.gray-theme .btn-light:not(:disabled):not(.disabled).active,
.gray-theme .bg-template-light {
    background-color: #999999
}


.gray-theme .text-template,
.gray-theme .btn-link,
.gray-theme a,
.gray-theme .float-label .form-control:focus + .form-control-label,
.gray-theme .btn-light:hover,
.gray-theme .btn-light:focus,
.gray-theme .btn-light:not(:disabled):not(.disabled).active,
.gray-theme .btn.btn-link-default:hover,
.gray-theme .btn.btn-link-default:focus,
.gray-theme .btn.btn-link-default.active {
    color: #666666;
}


.gray-theme .bg-warning,
.gray-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.gray-theme .bg-success,
.gray-theme .badge-success {
    background-color: #00BB32 !important;
}

.gray-theme .bg-danger,
.gray-theme .badge-danger {
    background-color: #F16060 !important;
}

.gray-theme .bg-orange,
.gray-theme .badge-orange {
    background-color: #ff9133 !important;
}

.gray-theme .bg-primary,
.gray-theme .badge-primary {
    background-color: #1E88FF !important;
}

.gray-theme .bg-info,
.gray-theme .badge-info {
    background-color: #5ED0FB !important;
}



/* black theme */
.black-theme .bg-background,
.black-theme .header.active {
    background-color: rgba(255, 255, 255, 0.8)
}

.black-theme .wrapper {
    background: #f4f4f4;
    background: -moz-linear-gradient(top, #f4f4f4 0%, #ffffff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #f4f4f4), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, #f4f4f4 0%, #ffffff 100%);
    background: -o-linear-gradient(top, #f4f4f4 0%, #ffffff 100%);
    background: -ms-linear-gradient(top, #f4f4f4 0%, #ffffff 100%);
    background: linear-gradient(to bottom, #f4f4f4 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#ffffff', GradientType=0);
    background-attachment: fixed;
    background-position: center top;
    background-size: 100% 100%;
}

.black-theme-bg,
.black-theme body,
.black-theme body.sidemenu-open,
.black-theme .bg-template,
.black-theme .loader-screen {
    background: #888888;
    background: -moz-linear-gradient(-45deg, #888888 0%, #222222 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, #888888), color-stop(100%, #222222));
    background: -webkit-linear-gradient(-45deg, #888888 0%, #222222 100%);
    background: -o-linear-gradient(-45deg, #888888 0%, #222222 100%);
    background: -ms-linear-gradient(-45deg, #888888 0%, #222222 100%);
    background: linear-gradient(135deg, #888888 0%, #222222 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#222222', GradientType=1);
}


.black-theme .btn-default,
.black-theme .custom-control-input:checked ~ .custom-control-label::before,
.black-theme .small-slide .swiper-slide .card:hover,
.black-theme .small-slide .swiper-slide .card:focus,
.black-theme .filter,
.black-theme .chosen-container .chosen-results li.highlighted,
.black-theme .page-item.active .page-link,
.black-theme .nav-pills .nav-link.active,
.black-theme .nav-pills .show > .nav-link,
.black-theme .footer .btn i:after {
    background-color: #000000;
}

.black-theme .bg-template,
.black-theme .icons-raised,
.black-theme .filter,
.black-theme .filter .form-control,
.black-theme .filter .form-group label,
.black-theme .float-label .chosen-container-multi .chosen-choices,
.black-theme .float-label .chosen-container-multi .chosen-choices li.search-field input[type=text],
.black-theme .filter .chosen-container-multi .chosen-choices li.search-choice,
.black-theme .btn-default,
.black-theme .sidebar,
.black-theme .sidebar .main-menu .list-group-item,
.black-theme .small-slide .swiper-slide .card:hover *,
.black-theme .small-slide .swiper-slide .card:focus *,
.black-theme .sidebar .list-group-item.active:hover * {
    color: #ffffff !important;
}

.black-theme .filter .form-group label {
    opacity: 0.85;
}

.black-theme .btn-default:hover,.black-theme .btn-default.active,
.black-theme .btn-default:focus {
    color: #ffffff;
    background-color: #000000;
}

.black-theme .figure-profile,
.black-theme .form-control:focus,
.black-theme .custom-control-input:focus ~ .custom-control-label::before,
.black-theme .custom-control-input:checked ~ .custom-control-label::before,
.black-theme .float-label .form-control:focus,
.black-theme .page-item.active .page-link,
.black-theme .btn-outline-default {
    border-color: #222222
}


.black-theme .filter .form-control:focus,
.black-theme .filter .custom-control-input:focus ~ .custom-control-label::before,
.black-theme .filter .custom-control-input:checked ~ .custom-control-label::before,
.black-theme .filter .float-label .form-control:focus {
    border-color: #ffffff
}

.black-theme .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 104, 0.3);
}

.black-theme .btn-light:hover,
.black-theme .btn-light:focus,
.black-theme .btn-light:not(:disabled):not(.disabled).active,
.black-theme .bg-template-light {
    background-color: #999999
}


.black-theme .text-template,
.black-theme .btn-link,
.black-theme a,
.black-theme .float-label .form-control:focus + .form-control-label,
.black-theme .btn-light:hover,
.black-theme .btn-light:focus,
.black-theme .btn-light:not(:disabled):not(.disabled).active,
.black-theme .btn.btn-link-default:hover,
.black-theme .btn.btn-link-default:focus,
.black-theme .btn.btn-link-default.active {
    color: #000000;
}


.black-theme .bg-warning,
.black-theme .badge-warning {
    background-color: #FFBB00 !important;
}

.black-theme .bg-success,
.black-theme .badge-success {
    background-color: #00BB32 !important;
}

.black-theme .bg-danger,
.black-theme .badge-danger {
    background-color: #F16060 !important;
}

.black-theme .bg-orange,
.black-theme .badge-orange {
    background-color: #ff9133 !important;
}

.black-theme .bg-primary,
.black-theme .badge-primary {
    background-color: #1E88FF !important;
}

.black-theme .bg-info,
.black-theme .badge-info {
    background-color: #5ED0FB !important;
}






.gradient-warning {
    background: #ffe785;
    background: -moz-linear-gradient(top, #ffe785 0%, #ffbb00 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffe785), color-stop(100%, #ffbb00));
    background: -webkit-linear-gradient(top, #ffe785 0%, #ffbb00 100%);
    background: -o-linear-gradient(top, #ffe785 0%, #ffbb00 100%);
    background: -ms-linear-gradient(top, #ffe785 0%, #ffbb00 100%);
    background: linear-gradient(to bottom, #ffe785 0%, #ffbb00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe785', endColorstr='#ffbb00', GradientType=0);
}

.gradient-success {
    background: #50eb67;
    background: -moz-linear-gradient(top, #50eb67 0%, #00bb32 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #50eb67), color-stop(100%, #00bb32));
    background: -webkit-linear-gradient(top, #50eb67 0%, #00bb32 100%);
    background: -o-linear-gradient(top, #50eb67 0%, #00bb32 100%);
    background: -ms-linear-gradient(top, #50eb67 0%, #00bb32 100%);
    background: linear-gradient(to bottom, #50eb67 0%, #00bb32 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#50eb67', endColorstr='#00bb32', GradientType=0);
}

.gradient-danger {
    background: #ffb5b5;
    background: -moz-linear-gradient(top, #ffb5b5 0%, #f16060 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffb5b5), color-stop(100%, #f16060));
    background: -webkit-linear-gradient(top, #ffb5b5 0%, #f16060 100%);
    background: -o-linear-gradient(top, #ffb5b5 0%, #f16060 100%);
    background: -ms-linear-gradient(top, #ffb5b5 0%, #f16060 100%);
    background: linear-gradient(to bottom, #ffb5b5 0%, #f16060 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb5b5', endColorstr='#f16060', GradientType=0);
}

.gradient-primary {
    background: #99caff;
    background: -moz-linear-gradient(top, #99caff 0%, #1e88ff 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #99caff), color-stop(100%, #1e88ff));
    background: -webkit-linear-gradient(top, #99caff 0%, #1e88ff 100%);
    background: -o-linear-gradient(top, #99caff 0%, #1e88ff 100%);
    background: -ms-linear-gradient(top, #99caff 0%, #1e88ff 100%);
    background: linear-gradient(to bottom, #99caff 0%, #1e88ff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#99caff', endColorstr='#1e88ff', GradientType=0);
}

.gradient-info {
    background: #c7f0ff;
    background: -moz-linear-gradient(top, #c7f0ff 0%, #5ed0fb 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #c7f0ff), color-stop(100%, #5ed0fb));
    background: -webkit-linear-gradient(top, #c7f0ff 0%, #5ed0fb 100%);
    background: -o-linear-gradient(top, #c7f0ff 0%, #5ed0fb 100%);
    background: -ms-linear-gradient(top, #c7f0ff 0%, #5ed0fb 100%);
    background: linear-gradient(to bottom, #c7f0ff 0%, #5ed0fb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7f0ff', endColorstr='#5ed0fb', GradientType=0);
}


.theme-dark .wrapper {
    background: #222222;
    background: -moz-linear-gradient(top, #222222 0%, #000000 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, #222222), color-stop(100%, #000000));
    background: -webkit-linear-gradient(top, #222222 0%, #000000 100%);
    background: -o-linear-gradient(top, #222222 0%, #000000 100%);
    background: -ms-linear-gradient(top, #222222 0%, #000000 100%);
    background: linear-gradient(to bottom, #222222 0%, #000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#222222', endColorstr='#000000', GradientType=0);
    color: #ffffff
}
.theme-bg .wrapper {
    background:url(bg.jpg) repeat-y center top !important; background-size:100% auto !important;;
}

.theme-dark .list-group-item,
.theme-dark .modal-content,
.theme-dark .avatar:not(.bg-template),
.theme-dark .card:not(.bg-template) {
    background: #333333;
    color: #ffffff
}

.theme-dark .modal-content .form-control,
.theme-dark .text-dark,
.theme-dark .icon-slide .swiper-slide p,
.theme-dark .icon-slide .swiper-slide:hover p,
.theme-dark .icon-slide .swiper-slide:focus p,
.theme-dark .text-secondary {
    color: #ffffff !important;
}

.theme-dark .swiper-pagination-bullet {
    background: #ffffff;
}

.theme-dark .footer,
.theme-dark .bg-background,
.theme-dark .header.active {
    background-color: rgba(100, 100, 100, 0.5);
}

.theme-dark .notification .text-secondary {
    color: #666666 !important;
}

.theme-dark .form-control,
.theme-dark .input-group,
.theme-dark .progress {
    background-color: rgba(255, 255, 255, 0.09);
}

.theme-dark .modal-footer,
.theme-dark .border-top,
.theme-dark .border-left,
.theme-dark .border-bottom,
.theme-dark .border-right {
    border-color: rgba(255, 255, 255, 0.09) !important;
}

.theme-dark .input-group .form-control {
    background-color: transparent
}

.theme-dark .header-logo {
    content: url('../img/logo-header-white.png');
}

.theme-dark .logo-small {
    content: url('../img/logo-login-white.png');
}

.theme-dark .btn-white {
    background-color: #000000 !important;
    color: #ffffff;
}

/* media query */

@media screen and (max-width:374px) {
    .footer .btn {
        width: 50px;
    }

    .icons-raised {
        height: 40px;
        width: 40px;
        line-height: 40px;
    }

    .sidebar .main-menu .list-group-item {
        margin-bottom: 10px;
    }

    .two-slide figure.avatar {
        display: none
    }

    .introduction .swiper-slide img {
        max-width: 60% !important
    }
}



.theme-dark *::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.theme-dark *::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

.theme-dark *::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(0, 0, 0, 1);
}

/* RTL */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl body,
.rtl .text-left {
    text-align: right !important;
    direction: rtl;
}


.rtl body .sidebar {
    left: auto;
    right: -100%;
}

.rtl body.sidemenu-open .sidebar {
    left: auto;
    right: 0;
}

.rtl .sidebar .main-menu .list-group-item i {
    margin-right: 0;
    margin-left: 15px;
}

.rtl .pl-3 {
    padding-left: 0rem !important;
    padding-right: 1rem !important;
}

.rtl .ml-3 {
    margin-left: 0rem !important;
    margin-right: 1rem !important;
}

.rtl .pl-2 {
    padding-left: 0rem !important;
    padding-right: 0.5rem !important;
}

.rtl .ml-2 {
    margin-left: 0rem !important;
    margin-right: 0.5rem !important;
}


.rtl .mr-2 {
    margin-right: 0rem !important;
    margin-left: 0.5rem !important;
}

.rtl .ml-1 {
    margin-left: 0rem !important;
    margin-right: 0.25rem !important;
}

.rtl .mr-1 {
    margin-right: 0rem !important;
    margin-left: 0.25rem !important;
}

.rtl .pl-0 {
    padding-right: 0 !important;
    padding-left: 15px !important;
}

.rtl .pr-0 {
    padding-left: 0 !important;
    padding-right: 15px !important;
}

.rtl .modal-header .close {
    margin: -1rem auto -1rem -1rem;
}

.rtl .text-right {
    text-align: left !important;
}


.rtl .custom-switch .custom-control-label::after {
    left: calc(-1.50rem + 2px);
}

.rtl .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
    left: calc(-3rem + 2px);
}

.rtl .nav-tabs {
    padding: 0
}

.rtl .float-right {
    float: left !important;
}

.rtl .search {
    background-position: center left;
}

.rtl .float-label .form-control-label {
    left: auto;
    right: 0;
}
.rtl .border-left {
    border-left: 0 !important;
    border-right: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.rtl .list-group{
    padding: 0
}

/* Chrome safari scrollbar */
::-webkit-scrollbar {
    width: 4px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background: rgba(230, 230, 230, 0.7);
}


/* added after 2020/11/8 */
.dropdown-item-icon{width:36px;height: 36px}
.dropdown-item-text{padding-left:15px;font-family:Averta;font-size:16px;line-height:0.88;letter-spacing:0.2px;text-align:left;display: inline}
.avatar {border:0}
.avatar span, .avatar i {
    vertical-align: middle;
}
.avatar.rounded {
    border-radius: 10px !important;
}
.card .card-footer {
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 0 0 15px 15px;
    border: 0;
    background-color: transparent;
}
.icon.icon-60 {
    height: 60px;
    line-height: 60px;
    width: 60px;
}
.icon.icon-60 img{
    height: 60px;
    width: 60px;
}
.pagination{display:inline-block;padding-left:0;margin-bottom:24px}
.pagination > li{display:inline}
.pagination > li > a,.pagination > li > span{position:relative;float:left;width:48px;margin:0 4px;font-weight:500;line-height:48px;color:#37517e;text-align:center;text-decoration:none;border-radius:50%}
.pagination > li:first-child > a,.pagination > li:first-child > span{margin-left:0}
.pagination > li:last-child > a,.pagination > li:last-child > span{margin-right:0}
.pagination > li > a:hover,.pagination > li > a:focus{z-index:3;color:#37517e;background-color:#f2f5f7}
.pagination > .active > a,.pagination > .active > span,.pagination > .active > a:hover,.pagination > .active > span:hover,.pagination > .active > a:focus,.pagination > .active > span:focus{z-index:2;color:#37517e;cursor:default;background-color:#f2f5f7}
.pagination > .disabled > span,.pagination > .disabled > span:hover,.pagination > .disabled > span:focus,.pagination > .disabled > a,.pagination > .disabled > a:hover,.pagination > .disabled > a:focus{color:#a8aaac;cursor:not-allowed;background-color:#fff}
.pagination-text{margin-bottom:0;line-height:48px;color:#2e4369}
.pagination-text .btn-group{margin-top:-1px;vertical-align:top}
.pagination-inverse > li > a:hover,.pagination-inverse > li > a:focus,.pagination-inverse > li.active > a,.pagination-inverse > li.active > span,.pagination-inverse > li.active > a:hover,.pagination-inverse > li.active > a:focus{background-color:#fff}
.pager{padding-left:0;margin:24px 0;text-align:center;list-style:none}
.pager li{display:inline}
.pager li > a,.pager li > span{display:inline-block;padding:7px 15px;background-color:transparent;border-radius:3px}
.pager li > a:hover,.pager li > a:focus{color:#fff;text-decoration:none;background-color:#f2f5f7}
.pager .next > a,.pager .next > span{float:right}
.pager .previous > a,.pager .previous > span{float:left}
.pager .disabled > a,.pager .disabled > a:hover,.pager .disabled > a:focus,.pager .disabled > span{color:#a8aaac;cursor:not-allowed;background-color:transparent}

.modal-content .close.close-rounded {
    position: absolute;
    width: 25px;
    height: 25px;
    background: #fff;
    border: 0.5px solid #dbdddd;
    right: 0px;
    top: 0px;
    z-index: 999;
    padding: 0;
    -webkit-transform: translate(30%, -30%);
    transform: translate(30%, -30%);
    border-radius: 50%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    opacity: 1 !important;
}

.van-icon-star:before {
  content: ""
}
.van-icon:before {
    display: inline-block;
}
@font-face {
  font-weight: 400;
  font-family: vant-icon;
  font-style: normal;
  font-display: auto;
  src: url(data:font/woff2;charset=utf-8;base64,d09GMgABAAAAAGNAAA0AAAAA6ngAAGLlAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP0ZGVE0cGh4GYACCWhEICoOqHILKFAuEDgABNgIkA4QUBCAFhQ4HllAbe7dFB2rYOIAxOG/nKOrEpKWbGbVlVHRZ9v816Tis0RbhPC4JZQk1ws72WlBGJJIsL3bc5Y/x5HdtBrzwoZQX/Ls/uAhsXMZIVk73Ds/ntvd3cezvhO1/2HExro3B2ID/4d7GxjXObZwqxy0gG8pQPDBFMAW980hTNIuhpqZleVwJlHSKR6WkDM3KECuz083Qu+8BCnabd+4tsemRGtBnHBAHxuTmuLWNUbd7fuSZA88fOBlzekCqfDPnV1BArpTKjp/r0AfE0+Lc97SXNa3ugaSqW2AfIo5Ghr2YAos8H+krfQ3L8DwA+F1V4Mecr9JV2ljSM/wUzQWAITlxoJSfEmfsi321rwHH2TjhEuUPgNJu+Hcty5uF3l0Cy0kEaR28qmxd8hKkAt5Trc38Jr9PItjeThzVmTUBj5z82tS8UPpag3jw7WchyoaNGucZYxmcV1Jb6vJBqnCMkPdKndPjulEbt2VSBNS4ZVtIZLN6T9OnLc4cOBve6vc6m1plHO0oxsXKP/eW/2ZnuXyddAuKQbgYR1EK4cAhrOf/N9XeX86QVOD/DqRT/CFXTqcPKVVuujv3vcG8eW/eYDAguOCA5CJIaxCg/iJIaxCgdgkCwgnk0qC01BF/yHEArvaQ3ASR0kYHOuVQ5djFTsfVlluULl2UrlNo3fUuSpcu3ZQuqpCWpVYrmWKnTAyidINbXlvu8bu//dIWc5DsbS7GIKHEPJFYjquWVH/3b/fH9Hv+26O9ju21WlGpogESSNAeY5MiykWEExSVOOK47UMhvaS1xPVqDWvyXAAAoBcwRQlvI/bwC/dtkISEsc4loVoTIbIVCZ0AIJHYfDMgr9cTJpanTeQN9AuIhrzvf00mgr8/5Nen14LLjxN/LCL2eHpgQbwHVi9DEjNBPAZfTAsKwnMSwP7qC7wBARAe6x9bHpf9WOTxAPA48XFR7j2u+DZ/LOBswPsBp1TOAERZQSgIVpzf/feAvzvI47F6AFF6BLhHCukZF45LVMtBJKlnIvAGFHtJAGRAaHoLQiKLSNqKGJ/iSh1q4tXURKt6IBdS5ApVMI26ClYVZuVQVnhVZgY4CYyzCpOoqw1rsgcEu7Q3GuxKXG3aJn0qjxMHVImq1jrHlwJ5PVtvHrX3Ko2IEfgjlbcFnyYathK4PgKjqatOPbBMVV8xGuwT1DE0AxC6x+5SJJyBz+Fn2AkJxZ4glrASujSdxsleq/PHWbE0RywisaeK8VEJZLLrdigkOat2y1CZLYwZ1YnRRpTdTk64eN4CfgfsjqnucvDALVR3A2vlb2hX0wNceye5Hmm5fEBzdP+Qyb085kH1PuANU75Jzsv7ZS/lLnC4ZoKnV+dJLf4NlekCzHB3ZLelfqmuL45JnZvrXJsJkHk15+TdfdqgwG+izf3JCXOj2RyinXv/VMefCSdPVMiY8jjXOo2MAP4mI/AtycatkqmIALn6l0Uq0lI87BIJ04zYwdq+uVjZCxY2jV+rwhDAwgMpoizZa05SYFIIR3JHR+IKxpnh40BpkzSirZGEOCAuOR/KRAje55CKZod135qzlfbXOMuOPHx1h7YxinH5Uij/5Dwy73HhX1B5ZKvVwRDanqFUFff3wOnQyxyWdERob6qK7Gi12nOhCPvVtZnIYtm2NwfM3k5EXA3H+6YC2B5AN2ejHZQofD50sdRcRWiq+zbZmwWxUU4+e26XKyCyQz1nkYmVlZIqmHnHyniMwALg7W0ge9iTxu3Hui5LzZirrSnxcNzQbrVOEohrbh4R6ilExdRG3ok7V4wlzRGOHiwv0cB50pZ+3m+urqJjt0nyn1mdwTS7GeBAZd7buqpOLOJOzjswwyHGHZYUl6VSbXyOF+71XRUd3IVOwPN4SxT9WirnGy624oNiyc5Or9oH0Xk7cnuxO8pCwYb5hEzNIdfsbrKorNqB2QzwQQmn/Qwb5NRYcbDz1o26MSF3dPfSrJMiL/dAGlRNHMtCEVt3nDSsVrHaufOEusODmTKY8DriHN07hL0EzqFkNyJpnLfFzsVNmR74ahkk6gGTe9J/GHlIpI2GNPlqZ3r+IevE+3Wt703n+Go4OwVuvCrAuzjuoMxtExVKOPdlyui9uI5AoqdxF83KGIUjIoIfDD06nOXu3SMUijv0qc4/wnkmI17W2EBApdJANX4zFNC4sVrhfKJCiHMfHYMLKqu4E37QzW/mhSNfGcYXYxwzR0nViMWyCzAiTOQcKTKZLcduJ+FwJUGuGFwrbmOUnyKEOuXZiVUugONRFLS+hbbikD6NOwjMNHWdlyhkKG64GPuGgnEYa5WqB2KiSgX1MmfwEBm02vhE1dZl9lyNSCFhrsrfe5XGiqVa1cMkU+UwTlQxTOPv1XioWX5gB/GSKMyxDWafvs/FDTk6t+XgVh5hDrEDKqVCJBGTkSYUgljvEqQ6bX8in0iutaWULcSirLCQch+B+4LqWLZVu96F3YTcUWEbTfUuWMYGlYLcl1zdCTpEBDfs014M6OiYmvsMCIXwx0V7JAxjfRyKkVFaGEVsCBnZ25CPrHY1H0ZHSGEcL6cw3ZXrV4fh+8ttExFKOPXlVTmZ2h8sy2L73Q/KF6h0AEjYCuELIVkkL9Te8+OtKEF97Uunyl4YSaJUkKmMocCOWwjY/HhRk2M1YpKE80TkVkpOzRPxXfcYpfowYEOo+JbRI/lBpFv1iKhXtfDc3p6PK2K0rKQKrqiZNpZgQt4pHxotxzgGi2ldPdBYX+3MY5kvdDts5F6XPARl0YNNJv/GGJwwcMCqrFLH4Hlo3S0sxzaAicMhZyfeEeBtitFEcscUDkUNDGtqmrzADU1kYnLOclO4yba+dwmSK4ix+qyrNPM4i4z0tinwCAEBby+PPZy2pdmiVmTTU1m5QdV+2iSEcV+/IBX2r2DuL70bzb87V+D5jl0Umt1rny6hpufLPsTPEId2fxKswvnv8E6ZhgNiOVn6k+0tbffCvHzl79fW1VuTnkhTCFspS+uZnEzLnFmqwL9L5Sbf3gU+GCOMx+CJ9dvlIg5qhJYgltBMHcEKQ4w9AaVHebnXT+0RfSf4PPoy/OoM4wYkiIrbKCNXEIxL+tQTblS7fmRe/YU/n1rXfl0mNuSennYFZFBXD5oDpfYN7L4vLvR+Bozp5fDL6PPgi1Xan1fW9Tt/vTQvXkZUCP7RupSEs5w2dNvUliTerBVUUrCDsklwAFASjm+7blXNTKldPwLkM82lNMQM/wz7zPq/rM4kotIv/rrZFXy8faP/saE+AtzdyiqQy9kx1tjznWamFvA2los64ONCg9erx80RGjYCGbtXyFkPgiDd4q1FlacgoO6+RUeq0gkpFfbePZwXQxywYtBsBtQ1oevUhlV7zrEfjrZ1zOFOM3Jr52OqVOdwkMLTmZ7pVvcLFSqvDqpc1jsevuMIs41Hvh8jEdIr5VCz+3chcDxe09IS0nwVYDY2RXOtnk+jSw77g7lrBevvyePfhIwOlkRq4YW9M5UfHGSWZnUapsXprah2Ah4zUBUo3Lj/atA+pp1wWnJvH6JUpYLz/X3ZuyLn+80YzbnZG3/LKazt3IV2fhn2a8pkxgG8IioDL1po8B0XdsiUsrG/0L4ThA+9MWbSMS+d2etmuer1MaWcTjfqNhhSD+ExEvtSBVUoyL1RTUc9/KS9/HR06btoPDwqJnCQCGZ1rCMOuDf0blRD7srP9tMJBGxeLFiZwhGGzvtbXFxVCJ725SqgK3vLu7a739PuJgS2BcjZJS5OFSioEzAvPJM/tL9gp8piaShTHVs15xBNvfp89jDgaRny92xKf2vlmcAOZDOQDMu31tdet7tWnw2dULFC1V4SLdnacGtQk4dwIppwVgKOpxj0asPoZ9yo9uby077lS0Ygm3Zgb6y7wbvXnouWRKodKpYTOpvrbw7oN441mbSu/5ayYmjNXjn+bfaibsPvbWzZkkO6g9xUZOfJVEGKS20pbtyxM8CnVZvRxvUpgAEI9Fn3Ld55Q47pDgIbgRd0zWKTPYw6vRQeo+ibZ8+jKA3hDI1f3wlTjZkUlbufOvwRnFxJi0dJ28Vd8BdwkESik4R+H5twr1NRMTkwunZCeXB2RcZvcyW1EzL7pzX0qJgCx6YVMBr68LiU6U6n4q/RuIPCB8/4AdGKWXTn/44H+8IBV9xDRjJfVOi8rFnd+P925llwS9uWPMDgSGiu4yIoCfgRhtASRPw1ioQFAwW6T2CSbOIBjbiv2n1cRSZxjcWpd1kyFo4vNJGTxiw/csJ5FvYN5+afU6z17j2/i1PPbVAwWidc8TmTixlzxpi5Oy+bNHof4lsmlAl18vJnpveUtAanFOhNzqQ03DMO/2iEqjWvgppPYvXH97bCOrMb99th2os6SXnLO96NncC2FHqpJdiNOgor3xR1GQP6mP2SHkKIph5NcS9/DGTWqmOAwh9fRIQh5/TDXqfseVDBWDQ4PLaITdXtH35rVMHaVwu/NcENIkjEzuwN2ndLrV8HdTcae0buLY+efoi1k+ZyHQMOjWOFe/3s4iS9VqGOEI4pFYApALYqwvXeo9LiKWI5HhHmFi1n3lap534+/k2F2Psr6pWrc0qRI4BEZH2ABOcb3hqQbOIBqjN7/Mr6s0IL/IS12cOqgeqr4TWJKvtBfK1u7nKL2pHB+pQ+5KZtGISD1PFNxjyqw+WH93CKwpYk9PU9FcrErSApKIgq7+Q0IdBAmxxiCqMUcwEHEUuzAGU/FNIuGbkpqCWg4ByAWpss999fG8z5IvwKxZ9VQhnlhzGoMEI8qKhPz1ObEmMMMMBXtfWXuShxre7Dy3X7dz2qTBHWFywLPojO6jBKCzWuRbenfZSgRgwflw5HbCOuCx9Re05YhmRdKkGNUAxkZT6zBF2myWSf77yw15mMtqIrLeZb0PRvKIqw2xGUW7uMMQDX6WH8621RNpZHqird7JJ91mlSQ8hJrTOMBK8JCP9SR/ffPcruAyvYooRhSUrCLos4Q7jISeC/L1PyiQcjLjlC5Wd47wBm52StDg9Eg1xHy9cM2yUZSBXipSGPeuLlMUaAE96phx+r3qXUYhV2KSu5+AFUevGMNM3Y0s+8nJsKxBdvKYoVWc7Wer0SBrY6r1VIc0WLoK5VkW5tDbizVeaHWtrlyyMHKLxSHSOc+nBnTjz0KJtWNwxOe/1eU7p1JeUCZjwW7rg4QIrBFQWQaPNdQqX08GRqWijgOaR0lUfmB6JwbH3fjvhiml11Ty1Xr6wx9YO++nDQKoHaWBDNRgy42MK4tv3Ph0zX9RXbHetwhoa9iD2PgmwcbMSGsXeErvNLAKACtGipFpaHVsyoDESzRhzIaR4BZKgDR5p6TehGgcGaxaEWuomsCqakdBfLejJ4BNwUqZBC/8mJJuHtd7AJ1XEL+1TRoEZuWwk00WQjhUpbvVa0nvEo80+pxDASFbCrIM7ouwdEAHfKPbgEzWmj9tyocroYW6BSJJviEBu+oPlzcys7A3j9tM5IhFuiEg3hWBYNurPnxtvNbhxu+e7SQBPosQvbtBcMlCBGNE3rPtikG/uo2oxZueowVQjWeWH15EiVm3sl+vl5RFQgONfWcSMOlBnzKXKu2MoXTUuV922QzKIl0ax5X3ltqhJfNQvIvwoGorKiFsXu8/DMZ7pZNjYrts4M8ShRUAfDtDraG/y0vz/jvpiQsZM1DtywV1x2Cofq98JgpY+mrVGEfTSm4cVcvyQVhtw4pApXvDeUFSw6dNGgDTw1ioWGf/xJFBo7el4iCBo/EBEWevRgppx/4IIpLuDk9aZoEiseOjuutwUBMmchPE2Oa1Br53tR1mpRwM1YpaGwchsnNNoX5eVfwFBE4IZ877vUcNsykCZmbfe7FSWN8IFq3ZL+SI6pQ8VG+naSvfXqeO6ZYf9e/MKQrzlfnc4nNQlxaSE8zCQB/10NKYoRZaI0RdHG/no3YD/X5Hhgt2H6/i+K7JllF2r3fMn3qr/8ytxDUejMLr/Yd0zTkWF73VQ7ND/5t/U1rgeIGJMx50YP7o27zym2BtbhUwIYTYkJCX2L5kAS3m6jXC3L4iL5DEkiUjvuKU+q7UXYl0SYYHRIErPa8E0AVrS9GHx1TADOPuC3+heQ5wKWL/S6y0/ng2ZbkigaLy/N6jDp3avdWTYTLJ3euv38bkds05t9+3Wl5bPhirkd5ZcOGKwZkw0tDbG5ta0YLc1SK4xvxmYLtRa+IUrzIxbFGKXw6lXtPd1M3m+NEODjkFIBv8+GcmWFw4zu6IGtDmbGCxdIFCJV2FZmdozcAXZFKT0YKpZKQWr0rfWl0zNTq1DHjStpUwr9Y0s7opcOIuUVSyeIubKKqBE0fNSiQfHTAcp07vfCjY/B4ODHH0aFSOS9Pvn44EefECzd0uMXCwpK2D5tfdw2o5vPilPTmu3n+cPo9hSgFDNl/UTPef1uiyE2lpl5ZSdJZmO07saDZQlwB3g2kK+4bnNnHnp9AeOYYKNG6IqUptBn9WVPOkiU//fQPnf0G5VHjQnYduZmuH1zzriJu7JWp8mxm4KJvmL2rvZ1EUF/0D64ZWZk5RlnU6Cr78OEdW0rq8+6m0MRGlebzjeMsVSdc2yJGXAip7UXlyD3SUZmmBIKZ6UhEeFLOZ4ScYpi5oRIfG7ROdFcYBvz7NwMW/CACmnJ8MLhRJa+pq5l2pF51rWi4SrtlggNkcQMsemlRvtlgvSMqUM5Sp+4qpQ7ddg63uRwB+ZWXAro24JdAjap6YHXlc+6U7Fokd9MlVezEOM7EXRQKNO/E+KD0DZ7Od3snxDmV/QXMG/DAovxfiIRITkTYzBEB4XYS2Al24go0Q71V+3qqZltVzXnR2XWojTCygjsVuW2a+f/PnFCEloBwRn+Y8z/6OMvnpCR0eqCmuPUjLx2Kn5nnUR5OPZE32cnP83hs5nVH3MMiPvsc8pNO4BMF0IQXIGCWPnK/3vgGY114TxjzmIkY4idbGPt4LvD0WXmj884QLtSoF7SjBsNNgSnMQPslbUo6V8PeeViX4poMW6IAdFGTmEJNcLzOsLOsx9cLu8wZVl6liE8cdlbtUaUaI0GRBLaKcJf1iUzNHaaKrbsSVziLfaodIk34nFJRpgycTwCjnUZu3xvlJpEwDX+bwX3Aii0E4WoGSukTjnGXVxK6w5sRnck9mRmxBuh6Dc2nrhQlsEa62jLlZzvqd0Kzs2RNvx/6ga/MGDApGco41YM8QLdZy0BD+a1wrrEHdgkH2o6uQ0PQWwmHaHkKC3Ege7q1bODT5dENDYBBpxtCz7+6HPt9sQ/lE584qGpmbWfcrW+pnKlRoKCq7TaiSeXD5eFSKiLm2U09ruFjsHBJf1Bit2sbrLLeBli/PRW3+LtYyZ0jktEsN/yxIgOp/3D2m4Rd2R/EqyZy7Fs2o5/m87BLcpHT7TBMZHFE+BbdhcbXRJ2BYD9MoPQWaoc4rxOQChxJo1t4BKfjTGM8MFEmaY3KjYRB7ZdWikTV/oUt74AKNrSvLn7eW70G8cAnISYVAC+gK4abPStRgQoEgBHYnPolBwiRAujX/qNh6JVmtTaHkYXEKATmBFnroXQnnmSRDG6K+7sAUhEuOElr4dekBfHt6DpJJosO79tmYXCMGwsh7YE1Le2LgekWXM6r8nUIVvs0xQFURSUZwqmCsx0DgMjAyHj1ndNIHdhci9tGWgk7W16E56rg3NPscCJjMtbAxRbrXYiiJAXCiarouxGq3e0ijF/esUKmfcD/AYxEC7lLLNL6N005ZSfvNREpcCJzkdOFatMf7rRnpiSLRgyDuiyG52tN7vW5fYsIrHIF5o7VjbVchMJWGDuOnNo5klbfYO/WLGzy9bN9T1N01Z75M3UtYbLFfOOxycU9Q9e3tvJOG7j28cYImdEelZ4qDawW0PxcXY+ER1NNxJFwdf7JHoMOUI3ODHGx+70zOJXZF1XktcDXI7GzUzizy7jhK14IQzEVg57zOPOwUHrWOk1LQcF6cQCvIBiYKi4qmByqcihCJU73lZj6ifygmBuC2wBxyB5S8qqRHEJjhUuYdR7oiQBpKFWkKcu2hAqy6nA0XKm1gcXNR9+XErFelk7en+pKLXowwmtobl/9trN9a2OzQJf5rttWfWNzo6bXRKH9CuopBWK9tU+MTkffHGKuzDasVkUfm3RCrV1xu6wco9D7KmJ5/6MFdlLM82tmI+dZlhsFzr2fA6cjXUd6PxmVI8eQy/YOaXduQnGRcYdXAT4JHgM8LC4MnAHef+W8j8oImHAHjr0/7lNH87nTRgfPSnfniRyUwv/NYjO97Gl/7tvEW19cCG4OJzEn40vh5dGc28JyiRsUVwZrseSUgwdDgA64zjC0+/IETD5bIMgPKQAxiQ63mJQ5SobrLWBNJkk+tJcSr6crEDEq+FyyhzTkEkIn+Xwr+8FbThXRksOmiEjsIM5vJXTO+2109o+Z0rLL8YXq2KTsGbetn5UDKETwMK3BDktSyskAufu0kkHErprx4h/GfKK4JonEWisQOOGpeeOFDAgwdok+JQAsY+hcZUszyIj0WVLroNq2br6BexLTnCEo3ryd5JyGeqnqETTkNFD4DDdC8xoLEWh0PIqJEmSwAcdwNInxEs/S5NklJehqasPryC+eF3+3K8UECx2dMJDAwC0gXx5bfS25BaTKidgGB+3W1ISRx5iXZqnch7nKVV+Bdrluq7qYGjrz4/6be562uw8dkW415iY+HxPjFS+QSW6ZWdnmgzGgQVCrXsNHsw6nJ/1gNhiytxBtW75ccb1VcJiQ/ucB/6GG0BSLhLd26eWdjPjdY2WgrVMS7wEXs0n+vsFbtk9j8Wfe1xsEgDDaV0FAszZFsDQAwyjWfhtsl8hqI+gwe2YDMbifpvLhsZYJOdDvUxvwtnBlMxGjy66MlQViPOSC+hmFUC1db/CzfzyZeWtQ5hv1JmLZ4S4Cs6qEsbJuyUpH6h1whZs2RX2l5YbxIg/IaxjJG3HPC2/Vmt0Qk347qUJLHIB707wCtpKqUhxeQK38LL6ZlvOrNe5ak6iECtcm1o2FURLJKOQ1VQY1eJrta86ixjC/N6+WvZAfSOWNUEmqgdE3atvSJMG9XoLsxhtu8RcKh5y/36qW3FT2oWz8dDu/LnFaqMpt1gVzdpoAqn+Y5ijo7EDvwc3odUJ+LV96qk2qCld4hUDAgVZU98LozOatOpOniMv8k0hLCtguJEPqTNV0ijTSeqnyhYlVing2A9rA2LwTEoQ9oXO08S3bhHA/XwOyJRKn6LOiNkGgsGiPyivtpOvKomkKQ0uOlXprY2yJ4JJ0wdlc3/d3O2aGtRjuqL+q1Rte7qsI2ikExd0uqKFbmRP6Ecgm8nyOLk/+ZlZ655Sf1v1skJ7ZjJ6udqpmQSRqoZ2hurrDnJ3cYbkCR1klWvGYd47jPCUVY8DtYRvw74ggIxqQpHS1KsyuDJHKyc3a6TTB54WGXiuoFEzd+LWrCBqZzj4DCXI3R0UjqQRPaBj7A8m5+ZInB6FJd1MnPBfnRT1Eq1sT+Rd8bgptZqjFi+C2xZ/IZvIWYgJwRe2QCHYdJwveiDwiaDPi12b7q8XWPriw0NyFl4YDNrA+baj3qQ1aT5x2Jec0vdRQ0Pa8j2lHJNbtj7dXjqmaHLzOJ5mucPlg8DaJudyicBFHskzd/ODA4VMk+DKM8bXNYfbQEFYKuuDQuyUUB2FrX3OuMZP1kx+9Fz3UFViJ2u6AFWIwVxFnLmnfdd9IgsVztf4KttS7aNr6z4lHpX1ptuhsc7exbEQ8DWPGUmIGQTntNFuRPdeV6roYlowsWJui+QBNWU/zudEgYQgkvZLIw0Mi5DmC9ngGcWxjmMPUcggJ4WmZ0ZREqJCQzr+MTcbalaX4mqafKqegxq2JrhW2Dtc2SNrjxp7nJ683gAlma+GkJsmU0nAfmqGXMODYa2xaJ1PXxgUjnoXrz9qCBoLBPnScIlsdm8x/NIR/SPs660vBektKHCsZi9eROj7yDusw3bwTyjgTUkSNyZnzx87n6EOCemQeKygt4GOffPsFYv3OMqFRbmSc+QrwmuffvXTY2gnI0zuiH67HalK5ALdZ16AHHxatYa1KKn3wftKpe1GhxVnkcnNL3TcbabC+tIgvbf8Rnby9Nn1mLRfT5jhuiWFpE2jzMomh7kEg9CphlTa+vGOMi7LD6Y1Cs1qVUiQLOs1Z3I/pZHop8dNuQ1FykthtjL5cVaTw5fnwloSL3PvNRXtrSGvoTANoAOyedPPjeIdXW6XmsKhKsOYxnQpqZ/hBWy6fDpv5mSapFmi1AjZLt9fSp+3NwHYXI/7CC8XBz5idux2eeUl0ifzHzH88VjkC7vmJ6zmHOqlDn5pEO3MYi0G4Adc9NxWzx3kLP4wD0mIg0OFIFGwzXI/nU1HNB6JBPEj2GQ53hGioicAXCm0/2rc75C5e3EcrRxuglT9mV3kFjupNwe5DYzL8cD/umNOLs8VMrtBKgCV611j5koR2yv4QRaOXgf4bnNJqlqV1kOnhfHEjE+RM4SfmAryOBRrsFPgoXZuDU5u10oV90a1OWLOI9ZCLdsRN7oBvFJTVEVt4sG7aWDO3vFi4By4CSSIGD9kv8sFC3u65CUI2vwgZfE9yIgOKw3qSbDAG0lsU1Nak/0qOtMSNyKVdbwCw4KWzJdING4VFDi1SRReAFE4ZERlo7IPP43pVWsKYW81YT6MlOrtYgxy3HG9Yt3yrQqhF99gq5Pzz61Y2nHJJ3Zq9hWC7tbom9mkLE5RpmcosearYTw+p3kD2w8bUsO5xXQBDDlFUYTb69RKtfb5jSsLjK0SOehPXf0lkJjYvX701z4UGBzYt1/ywHI6FJ279qs3tZhz6/TAOdEM7N/j74Vd5IHNtbRv3+o/0Fz27pk9u4IKZArkOXwuJAl9ZP1zlGDfMuiPqx67IcFEOBPUJ8nIqHd2n/jm23EqIB7yVuoofKc4rQcyNMugZe1gF3r5qmpHdO7cPgubEhSaczo9xRYdSzXB+g2bZfPx08U+xl2c0HjiAAyH//GDUBgAW0d9zzxdWlmAlctMhqd44Pnz/a0H28E72jQNEKW14IxkT5ZprFa3xlStl7cltMLFH8PnEnNlFoAvFTey9Z8b8otPyMnk/N3S/4ATxdZNS6mNposW2XwdVunoPLGQpZdlaDoLItv3J/Clt1d8R42CzoQr+tov7sB1mn1H9ks+J6SwPrPNTb2nPwMoSEVq1+/4rlxls4GqV2dL8JLLf86KROKD3bxlQyQfqL3Y2sRT/IhMWInfl3jZ1+YUath8VVFkGcoqjIVxobf0mqAwOM9wzGH/800Rk7srNTFYnauMIQzVMHcJ64+1mOiCAt7AnCuFzC74rBBCAWnf74yMnKiG+4ZE+ARnS7cHckKDcIIrMz9Rm7W0NoB1ka3YxPyai3TZ/Cwt3OV6Ph3ykeglFnSMciD2YJTekQJKpx4jb7KIwKEewih5hf4xs0bVIo/aS2Yql17C5eyJHl2/X+PppsQ8m5VfkF+9j+WeOYaGY9ltZfaw2shCxBmIca2GXl1Nj3DeicY0uWtCBOYc+yOsN0PxsTxxutJ8WfV2JJ7PI1OCBY5oFMXo8tYFra/ocMkBlc7NtxVrRyad7OUyT2I7RGgojeHtKzTGRoqvIEq5A4Vgtv3BpsD2EtpgcjFUVWiUeVzbolpolzQeDZLVyQuxphVDc9CbU8TCUlxBfu/dFmIBaydLZJl5DNsJZp4RmBe4RR4X8I+ScHSBXWX5GinwbEe0ax4UmtYXAUhLQqwjmM0Y9l3zn8IT6F9Wx7XjN+tQadAO6fbjtHmxagilhxAtWr6A5tV1chqC03gykxjT48PwsUK29o/DWCXbFzDLEIHrR/bW5GqOVqiNdLOlYRE+k5h3c/vwQO96qHIgt854Se5htoDBwbbkBaBlsJ6vK1BMnrRZAqmQiHlCXgK2N0DoCCJ7VyQ1gBjCeOTzcCyQ9/aHXRXS7fINInEYVK8JYoo7V/yHOdSqfNbBZrlyioCabnqbzxwd2837JYvlZFtXqsDKghJDTpkNbNxAU26drPs/1WIDnSd7Nzok75RxUdMZiWkV7kbgLwzF54RdAex9mHy6swPa2A1mIVLyp2wY9hRH53D8ruGNtw/tzKWccCiyyZWxxYW7Jg7KXHERhldfRPcTZhyNiJxzoi01RApuh2w+YWqzjEpdHfqI4TlGKDjZHGFqF2btd0uFw1vm/Tktf9rcZd8EOLtl13lbMDEpDKaUxsDB9TEywuB58QIM8pX6DwfrIV5DjaCA4jJv6UnjBWfXls/zUOEvo/D2TWXp7lt0+mS5XBLe3RXAZYokNBOjWVb30xehf+WSXtxJmybtT/d8Ou0fjy9esmNBZuWPS1mUkOgWfwxlbCK7fi+fDOet/nmlHCmVvU4Vz0vz5KrWFV4tcyTYrkt/ztVOLT2PYwy7bpq918Lp4EpPxxznmVEd3gCvDaFaAqPmCqSkUNF6IW2PNBlFUxVJCdWYEK+QprWff1mzdo3LcFA9Hz+313Ts7k0Fv54VtpeqyD7Cu8qC+8iPkwOEa+7Cfg2H4Zz8fhgVK7rWI94+WkbSMfNHEc+3Pt1oyd3be7wYGU8SIXrNz7YnyF6ryO902KmV8zs5I3sxvXjqEs/QLspQBbJXcHRBOuH6x0M5sSl5YNIAsOQBbHNGtgbE6X7vuJzCtNiQ/exV9ZwZlDj5EO/60bdO+9KhFKZ+zhz0mMD60LjLRzswIRnL6i/NSbFPxxT8D2QGNUP73FGJR0mL93djpw8/p1aPyV8qxcT+ylAva+DrYJ2AkXTQtupZgOvv8KS/Xqm3Umi4pKHJ/i6PVGlYgJ8HPuoMFeDun9+6om9I6PHL9GrZ8uNx29Uca4u3obR6Ft/lS74gijV/cs3kfHvNXXDInxMZJ0ckwXckroXMuGQcwcPgn1fBKTY82dyDGNiPv+t0RWm5SMSvp583pO2NPGIK5uaHsrx4LzgA/H0Nv164B+xn3ILaqsmosvGCY+8sEzCXKSjja025saLcagdnZUjY4vOHKEjlLfQE4g00qpstnrmmO3YwIzsBYzxlNjLjK+fTBfdCTt0xFW1VpedWdERL7mxQ3pDVBoW/p0qw3U509y09d61yY5k5DfrTstXNrnLQzYbLd8yMsoVQKw6C4e2xR0gtqdeb7SNXavdSCUYWDUy7UlU6t3rWCQ1XEaZlYIs20B7AcZd79MtuZpjNxVfawjLCtZ62+JWe7qgK2TxSzqSMxZFeD7iwrx6Csh/LT6kjynYoYCWVxbYKl+7petCEFDWbLKKv0vg8PQ3O78nna0dHmfpSIjgnaVCxLJkej4M8qjVWLA2/CKcj4d6R5LFD8aZ0hHY5GBkMDI3W8PZYVSdP9Ou/OrSwcl/wX/SGZUcBepQu8jbtApiBemCBbUMPyoBd7kEYIADerqLaW3PcI1SAMqgjVz9nAFCtibGyrTdsLNuDHzQFBRwi0ffLME4hWR92dvTIESuX35pEphOjWgX29CNvv8u9z/XlkDIbDsRkBazG8W3nmtMKHO62YSdPveHnCnb57fKpbhuyRJRE1rVUxJRqtaUxFXc1TJCg3LSl1hZhUba9xUzbUVea0safKkrrEqxlqoLkIWMOzKGMOdzoHDpXLWDJZ7qUWUUNAJgOwJ69az2QXlMN1JcVuAvvd4dxPIgj5zAGRhwjA9gIFcBuGFBH4DmfmqNaBwcEWzSHekLsDu8MO6jtfVuoBbGrpMRql9nnRy2wT90+X+M+sNpcIMwNMuYTcnII+cYgfpNCrwAhQgUbGMAw1MRvZhVNvCBT94fGFMTrb+5CfE4WJxfJys5CzEU35GcK5LTI933j5bkh8d1B4PsmF/9SfycKUDdJjHw6dfZfiv1F5qNpabEC6z//aHyjrTJq9E8XpFRJSXz0Fo1iPQxglx1gfRiAV5Oc1NiQuHwGF+zeT1hL7evxStrhD4sfU5nXHRi/zqQ+bsoP04Dde9s2rmu0Af71o3NXr3jQMhS87YIZKAPmnw/z2mHQSgF42O5G4ar8wbklvH6r9VxQv2wibu0dOyHrDzpntTqtL30UIkU2cF45PyhLgpiDneDhGzIWy6pRbSUlwPd9OkCYKN2HhQAUOg50AQCGMWAH3gHfndnoAi4AEA6visc5YZIhj4wM24H9EumnMhHIob4+wL13nMpAGdRxNzKHzlUzDwcbdmVcFozWjIwkLUzEHdWM7zfTy5uS6hMS6pOa/tIwQYKy/V/77uDvzaf6LNYJWb/sRtxKHJNrtTrTAVzeBSD+wYr4hVvMfuw7TkWXn0g/RJuC2M3TsVUZ+f8WqhaUgzyl6zX/7QWgPCJPVXh4PqdE7DSygBq3YEFshXZhK7jUFrtAW7EQtLZd+hZtBm0w02OZP7BKfALuGsS9j020H1JQBgqSOe/ngfBN/Sm9KTum/EBoeAcoFgPRZcC9dwyeg8HRHf10cpZRPwVjVA/yLC5Y4E7hHi477e9ya1+IhePLVtTvdOnBQOn+g7+/ES/eZUA/CstA5+/DLosvz8/1iWWTCq+Kr8YeFOMzd4v5v+TSfvmxNfvLAz55QabadbhRF5Qq06Y1RH9pI0sDD0qFSriwuSO69/wPHjVKx1T52gjPF5u31XzfZwTqqyE6/Y14+/X3bXAfNHiKAjhske1nVzPshGxXsdwtdVoNQtQ3mJyUHgxPDx9KHwpMDzwYqilSq4vq1BY+UmdRszoEeP5eYgAAD/ZRiSDTguoJIK/AaLdE4U8yEBNNXruwN/AB2IN64IEqSkF0vlqdH11AqbqFAAU00IEu7JwwILsiBwVRtT9wLT4CA5iS1qIqKZH9HSrB5ZQj+cGnS+/Ny1XlKCNyIvI+YuAgQdn+4326wi1KdqtEUnKS21cClTPA6rRYb5QfFst1tHk/8EyadcEvFsh1e+Rp8tQ/MtuzsD8CvGCJ6ha8yGM52EgPYY7I/TgiVzMA2gxAOWFGt4Eu2JWwO353wq5x2cFAY8CQcSjAGHhwe7U9UvUcWutYi1VYsRELFm5MVPdaLLz8h0vigyjAvqolZSMt/Jfa8+1GAYLPe2JwnhijlPYKl2Jq7fPXsFBwU4SrlOZDVg7gtlRVMywMeQXDNFfOtDHl8yt/h+hmBHAbVeaICPM8BAzO219I/SgK0CULEpIbExMbk6PDivMWlrrcVD8r2yqNNuzcdC2uAJ8J1oRPOD+czEV9brBu+KAK72rSW8FHTqDrWueqDa/XWJ3d3QJLkLBOc2Gdm2wGVp/oDwhwogzE+fPPXrCLMmAvyZzgoM5erD90uYzAz9PAUmOYEvG6VczB+gnm9im+dWLETRAlo/v+HCYfRDj3OTCpH3x6wn4bWG/uq2PVFRTmlUZZ77mAq35fV+32i602a7/s4k/UvoaGPgQg/fe5xWhEwVdwhJASZTBCgTbj3u9HAFBXRnSnCeU0ufF/yU4vQgZ908zNSxL6hJPbnKLcwaKOT0pgeFrs6+RGCkoOeRl+/ihSjyADNGusXpuWK772eo32Ty4H5XL/1HYsu2YWx6TF6OlW7oCv7qhLv9hAMywu2nM+2Dn/iXPvO1Efc9Z3+iV8n6NDLFwQrqkbzvcaajgyh3quKgCuUZfd1Y4tHSnZUoPxHXw75kCYKB9lIo6Byn9T+5hjLIFCyNiGO2ZTJQgERmsQZqRSQGxttfsTaNB9L56bnDtZfKHz+tnTatRlUQDh9UsCup6+kJgA1DlKAcw19oltjenyCCVr+GkonuQf614Ag93N9T30ve8/5eu3u97/V/96iLWL72b7zvq38A1Cg1jAcZZz3zdA/thjy9Grn2ZZCzX/oCA5Kaj5eTxwGfku/jDmWvDohPUfF447xrBxBHISQxDdkgv90w57YAcJFG8cVo6k8lMj8/h5gngQIg68XwoszyMjzLkRFRqciJyzR0Xu5NV1i+btbnuGN/x4CED9f5k8+l/of2Y74czDS/48FABwFkDAmYSjfZ9zFMa7LFAEKiPs/zmsG9UAoFE7jrCQGToZbl808rGFm74s9AMWmoxlZMksHlhtKLRRBueFZobllPBtQRG212vUxi9poQf9P0NsFCHsAR7aau+77bFgf+mjPfLJA96bJ2Nef5R5HLSB45mPXo+Z3Ox9YFK+51HpflBSm6NfgqCLs/Wf6fhiFFlSjtdgXwj4dXTiz3m38/AFgYFBJJ+oJzmbw7t57K+CJ+aR48VhwcpewWAGXJC8r4iqSK9SQRsGCl9wxN0bFGm0rCteZ3GbBfUOrL04djE6qTJi/tL5Ea5guofKgPGJi+dPhzNxO+pLr5Ras22lJ0rrtnV2Ic5+JzqHdDn7ENNSmAGDOakvgBlNz7bXlV7OtCVA6clSW/vCPqTPeTE0h0ofBKivPkr/6DfbbyaNffoZCt6+Y9hJNwohNgRC3ekzLfvG6RaBHyFOOhy7b2xcJdpv3FmbT47z/1sT+evIJoC66fgMPozZU+lj2d0YNj1hR5ldk+kPgaLohkR9t/oPcUqBa6/dZR+ww5tlC9gHuHub2TnVkdFWdAsUWw9d8PVlRHXLRIHRpctyll0NSA2I7BGwowKiOFjAxoA4TuSrUj/qwl2eYZx/tTPICyRG/voC1NdMOD7o909MM82atfoejbgqyYuvddo+r//c5tTyvZJWEWn3VmdZm2kx//gN4njcNPb5zdor3J0/4qvUSXyq0RJx6hMxd9EZkcVI5SepV+E/7uReqb3pxBwYwOaoc/AIFSAR52FPxOAYgByFTWPYILbRB7CE48y/94v2/yT66S3RW3+P0eWBn27DT1dDwxf70nxf+P4XkGgNv3mQshJb5d3OXV/FNja/FL0Q+4pjbvr+T83XI8vHu07kYLwDC+wPYQCT/GJcoT/7ujAXn3npS8mXl+xMQYPwR3jgNUCYFSAsRBDoYSfddQQKPJf5LoSFvPOhox2/SwqHZvh3f0Fu2XscFRVu5U6kddcyXqXLflw1uAsvHq8dTwktbD3BrGWeaA1GnzzNgw/N+4+faGycX9JaOQksAOzVKmzs8WIP6zGppXAwD/YJg1GqNUIrtW7evsNaZlwG60Rp3Qvyk6yvrcwK7JOAD+yYnSOiksvUiN0RSFj88GIG3fhGfX+zvm/Cn0iFFQIFVgsUpGuCM9F343r6wZMZqgfxUNtgD9z2r7TI+SG7jd0a2yZDCJv0xUxYbE9bz0DhKj0qF7O80NjZttm4zGdzhbgM/OmTwV3zVaN8nWDmSIzXm9sth9J38N8d0lK+WVcNsJNnwngtPfmqLeUFwa+li3PnYf8atDyJBL8HVT6DziFzl9sT13vJECLpdO204ZuilRbdA00u3fLA4DQwrPX1TrQfiIn05U0x9dqE0qSKuxocJChvwXLDKsmiLaptWC8e3Z0ib0toOTrebXFRof8Qg2TLPYEuG+UYc6NYfUjfho2r50TBC0jWB6No10Z8PK5z42HAvvaaF8kqavBlrRWqUqXGHJN7NiZXwBtK+7sPL7yK2qQiLOG8ou3/atQG3QM44+fjwuM/C/9EXXSsHNkv2k+ydR46ngVqoyS+RXLTy2Qn+aUGUBOVl0qiktj3BrHmK32EW0NTO0y6K9ovDLB+45pOzpItxBXRaiSxYBoGivpYoCfHjBsGEPeYoVyz3tx7Z8NGwKD6RnPHLlG6hlDyKO4qOoHjS75N8PnJfz4/fnrbra3RO8L75csX3YPfuvfzy9iWdiWrPWFxhWOdoqOqU14VviiVnUoAfX6zU359f1wTq5ZWyZdUqZb5OxmmBa/bKpYtzar5AHgozWXaEo2mRFs2qS3TlJRoyvaTH9belKLW7Oik3WEPT1S7vogk2Y+oQAECzU7ZguWTC1/oeYnm963jps9f9Jo+i7QZ22wgQAGNT6KoYGBhqdcoNjpBgAkRnzUmHEokOsm2wh54hkKAPZPx+7DkOcRT+cYGRQGNoaZXG+vOc+wYpklpRXQJLZyBrT3Tt5DBo0noRdvrPIINSuVDQxrACy9uTBtVjSOId+PaCNonggga28a7NcdRlYbaFuf2Afa9uurS3sS711w7PqR3WsYsfseAaxLiOw4MPMWFyxMAHySs3vufj8XHxgbffSCqa7AhrThVPn1ZP++Qx1jYd2YtxgiPlkg1c5FcCtTX6Lh1ag7F8eunMh/T/89kQVYAMWXemn/+qe+haBYtiiZBZNmbmi3RJfESqvSnC5KedB7uwjFqGoueKuFhzBXEMrGC/hwG2PQtWiz5i0L1ZRd/jI/9CA7SwsuROYA9Dy9pwNFOtN0S2J+aXRv1l1B67LgTdXb1oQxb4OxHhry7WAJcJQCyzEveh4E4+7rmAmyU/iYde0CfQGCcHkHcN2vj3oribj7pp8FVvTrDgvGr1El1bdjK5gj8oknsAb608EOfvsATbj8TyzYYVYakuKA4Q2JkukF6Jm4RVrVXWWxWIwpxkFjJjbaZ9yqqRqMoMS96Nv6tvpucxKBZEYhifqvXJwhQQH3dLZbXr6E6hhzGBmaDjkHHrtRXTGPY2LB9Bp+x2sdd48Q1VlT68FA7LrCpLjm+gEba5ZExxI+MCtwU0qDzQf9Jtfnyj9ETt9cHNPdPlGbCUjizNHwLmwPW7772hfKLQ2HmTRIsWfEwH8MnEh4hXWOdamniv/lA1Hb+B1phd6VAnHRfzL6RIA6VotoANhon4CAcj4tbcPCjfeeFwuCNQDaG1gyjntjcN9MTY3ql1qvZt6oMJlCXVXeGK3996ssREIC0EBOKw63YzNW9BHEoO0CLStE4Qbuw2Q25k0CrEGZS3wgkC++ByxVoturjuNL9klaSyDeC+oPOk0krSfcwMrik81McJimSh+wPFDcpXV1O1Flbe+AAQaig6rvy8vqc5iLETN2dpeb+jtPS9otOKhUksmh/2nOY5ldT40eDwdlJjvZhCesT+uuk2olaYX+tBbQ1fbHXsyfv3j0XNQEmgs6hAYw5gKIxuks80fll+SR7N3jgMz396+AWT1rVbq6/J+DJlEo19STA48/dXZXm2TL465krmFl6RRM/gfgRYQriFanuBsdzzVOHmVxOFmX3uwgla/9HJz4kVx7POMm2z9PMb5fZF0TNt/+zdat+OxKZdkG3xKdNLazLFZcDzzzqSbydytOeThsbHu6HXNA7wyHDfwX1ayzUI+gm0ktiIS4BPA4KXh77XoyPqS/jfOV2x8lV9mFL/Jf0YsperCqxCmgffMD56rGKbXatzNnbu1uwu6+PKUk6kxo5N4KxarvfHNrVu/Y29CEMtA94Jm25Qn3ACcprf9pENIbt8daXl8pEnvB43sD/0sutj20Mmsj252uUEyWcOqV12g7lR3hkLBPLSBVgL43dz9r3JrTMOYsC9CNW/92N9dHKlI3ZPgzPes41vXmJ6QLr7AGx7yUOXJOulTKQC395V+wjcRFJunuMD+AlJiO1jvf6d84mw3Vi6U9Do1ceHxD9mvdfGcIc0WENrq+/3h0oO+8N+RHaborNabhJmCXaCgCQ9sAsvtlG8INoY3DuZH5OYBrysXY/VqwJquls+sLw2cvMwM24o5efGb5o6qwJ0hRj+7UfpyE5gXkDmnJyK4Bm9F/LXXEtBdRXblUrVv/aamW81a/Vq4vVXAdbKrdaRvKctPdx+jXNq/bYMf3XR5C9XQMt6ab77farpX/4c+1xaMmu4TrA7zBVFb5AuucdXPxOwsprjxWR779x7nPi4/8l/vsineOeqNMRPQG1W8rnFRUJWm1yYU5my4G1/MrxDR8quIYUE61UoIvIjFoUnl5ofj11z/ru0k5nxWEw+orS5WXxcnpRA7z6KYmUfi/lRyiIBFEgEhCMhSzZ8+HCXW7MjRy2CB+Y7UdZaP+sx4k6WdTOs73q4jpi8T+h4sSz1ekLKna/f/iNxTcVoac2LUo4JF4ckmeE9kkeTofwralleCaW0RSZ1uRfyyrIMHwm521Y2LUM8j/5UlA0Ql94dNa+daxpTcqr+6vzW5eMpfQNBVBfBTUqU0k1tv83NqOf3fiQlspd2NbdSPHAtNV7NbaK0sqVWdKGViw9RnrsKz+h2USbf5O0gbzpuVCWlgs+e/VB+PXD3uM7T6QRs1AT9OrlpX0/pfzz4Qcfbc/i9Px2IZ2QuHznncTkH0FNpyUwNZuQzm6KqUj8y+fKBzl+OeyFmx/M4+wy5ph/+ufkbQ+IKaLP5uA8N/PjifvDFrLLATO4/wWQHSOwB/liy2XRYcy1hgcwIOEjjLzCoDz33xWAtobu/VNI7atgkXXE3WDvcz1KjwyufhXyk88YxtxYvrD86MoC34K35LkZuUfMox+D0Y34KP290fOm0Wsg9FJsaKoupGoog2jXh4bpEC8nA3A+rOv9M/zKmzn0Oj1Uf77pQMjEu113TmWU00AGhAO7rjQGK9b73XxUXfcN89mp9NZ5tzoe8PYtTW/eYLz2w5uHQko4Ib4n5VhZWWz1rh8LeAWJeQ+Ztc6lTacbWHFdmiXBBdaaJTUwQBmoB52rZMBzyBxKn4krzwTXRXfFybRGHxjA9A1Lm5y1zIeJebwCEPoLdw4m+wNprbVGnkwVGW4b6J1c92jTo4y6bYu2DXRurtyMYZmel6EH9No89JizBwJ1Hoh/qgFrRdbOW7e0r5SizR9iH7wlUs5qHz3amZUZdLj+sG17k5aBMZq0223LyZRvQvHX9zu/zoZNhNyr5xPEQ/NJliExgV9/L2QiDIRo6LHlWm15bEJyZQjIYHcsEOvF6bkQBDOoHVRApUA5EoM4rWN+BguEJi9IiI0pL9MeS6N//XpGdGhp3ryQzne86pp9P/chM+LaK3Mvgm2afHWEIjtbCXQ38TcW6GIbEyGCr9gOypGliZYWmn6BDjBQBvzlNsrw4DS5PM0sT00L5gVU5KlylMocVd483BysW/Bim28mZ0M9ObmHDj7vA33Yg/3xXTEyjRvb5p04gq8kvCxRFIWkyuWpuRpewdwPPRtjy2O0ZS3a8nJtS00BWFnzKAOPMUyZOs2z8mh6alQ4AE46tnTOzSsqKGBgQl01q+hiwE46OrkL89UtKuTuMjAtGXz9tDzf9cHzBRSng21EV6LdGYP1ocq9RD/Ceogd2hniHRmpbsOkRShAB1GADif3D/vyA7EonpQWBzVK435gCa1oCTNNVUS9hhSGtnYGfzRgH7SDqb3rL8ZdXJ+wxZyikR2Ljz8m05hTtpSgABlBAWo1Nro4OIK4nQdzvtTqAJfDBdy0g21LrjUZr108RyErOoe67Q7c4bK4rK6B3w+BuUfco64Npnn8i+sPrr/o4b2rC3s8gn+dGSPi1mcGZe189Eg7qxS9tQJbuVmkfKW9dWvn+ZVTw+IDzSMZHlULDWguMm1/42sH9rNd3L666P/D/zeJPu5De9bC5vbmc5uxzbynlqeBUfynv4b/ilNRgZur+mkPND23pAQ5iWr255ikP3WeBtG+0eCvd8UzYD6NLCdIWb8ePf9rmif02eGZw8/UA+D758GCAy9f34kCVCIi07kaJ8MkDyOGZwZFpTrTuXSOX5Iu7IIo+E+5LoRC6YMgCAw/Sy9qH3iMMhHcGxiGaRyfC9gLqQKYAQ+MZnr4Hx6wE0AaIOwI/BBOIhEIMovvYwoNOYvQKCJCG6dxvshzdruM1z58WS0uEEZOismsKu5CNgAAQJsVDMPavGjJWcGHEGBFp2zXQ8qBHNDhRxZPRiafPPgX97nRCCl/C/AieONQXOnjCanjo09rJDcel8wLoUAQiRDwm3ZAGbSz7rM4vGEilP7dFZmvYv5RuPjPRWmL/hRjUar8BrnZ+OLFhw/Tou9yAVZTMxc1x/hAG4CbYkQx1vUc+9WdmFfKeHV8xJEIvVqvPFgY2mJaGCog/a6eCz4f8EIww0de8F+04/1hqhXKFarnbkosNbgC4LhLu7xROmkGUQFwPR9zjVFJCclYJKKtnMKoAMapAIlbY1Q3dSGQ/ehyOwwc28I/Z/q64aTkcXdGXVaXBbMWoi8uoiRU2CPoM8LxJyYADAUdBZxTvFUKVo2AskCl70FGRwQZX/yHmmPY+OD4x94YXdkiXar9rSR5//t5RSyVhTlWv1ya+/Xf3tnQYyyZj/l2IpWSSm4XYr/ivW35c0k3t1pSjaQ6MoCPJIxd9wWle3L9ryE3//uE/kkzoX9taMG+BuqzrSG9T0P/Dks3xlWHkpMYx5QbS3zEFxrzZFJCS6o0ifWUcHvndfenP/IS1F4ymSysAIQEy4JDw6RhKplEvJrlDwvO9gztUCtlyhDQ8XVfKUFfHYnWx+mj7d7Hx8WvKRTYouI0QYLQc/nnkQC5UI7w/cWcVQvDNCuiV2jCQFfGnySCuC9oXU1Nr1TFWbt3s+AH2FppbY1snaiPWLyQ8eB53Dc2Ohzqkbd7aRngY3wwYPLNBud69VuBxFsC8qLS/lkR70PiN8RpNHENfKvji+4d3B3mmP/G29txe1dE7LiwN+TqExxYNL/O0tQY0Mxvys1tDGwIrGdJ6i1Ex5y7gcHLLs7O2b2btVbaq+Dq+bW1qNXd/8iBL0gxfjL2GMr2/vvrXOny+jELU1XEynt/f3LJb9ql0hYlnXtcilRLqrndkufLt3lfsSNd3EpJZXW5V5jEB2TYCOsnuymX/K58Qv/kv7f9KfsKQtfeR572hmz1YsnCZDKZlzqB9+On7us7bxOespKkqS0EqSyv8YLYp2Sj8hgjiRxaHWdMXxwSFKKUKdU7hnrOCmB/1mqxRKYKk4aFBsuCgZiYMS8vIkehzFbllP+n1ADwYE6p/bdclaPMzlHkRZRj5jR5alD2yuwZXhBf9ig7Z+UfaXLzaHAaytAyfFhw5MF4QwRFmkBoD8rS/xmfV773mKE41ZPW/Gs4tnez1fg/hmlkyysflY9ni2qLxx95tQUMhCf0EOgMqQ5H185Wj+IIE8UZBx6z+s/wzrD7bx9g4CHVpWcdSQxbNMlhOnDYDhpm2bgjzJ3lO4LlaViod1owUF/m/I39zRvgHTIj82+K084QVquZzM+3V9DKzreneatqqfDTFfxHo2/s3uW+OpD4LVuBApQ1sNPdvZFRdWrF+CkAwKnxFafSp/Fx3D2dXI1dxCxNSRuzjYx3dIyP2MbSUpbGqHhJ0kAcfgOhNfSwaaf88hoFx8xWspgbKodilA81Tzjf47yBkoWV+neHxYUKisFxw/LjMr+fMjU6irCCmVZBXZps4iiGQB1yW5R7M/lmbtJ3WYAVF+Bgy09o6iUSUdZFZ6phBtXx9AwdVAb2O6jZGP/BcgfcgJkzhVt27ICAk/2trRfLfrJ6+svOtUSV/OlFOcFiNyLrOso7uXPwR76X7euA64Prrusf2BK/lK396Vl+C5wd57q3UrOPMvDUYDZL196bi5rLz/dEGp7XANgs0qNmIkzUceOYzqfT0Wm8YzccQNNF43U6Xd2jDsmLyCH4uyHHXCb/+2H3/E2cibDPL364WFfrTfR96gNKlgeaBPDl+MtUgUlAvSygQMuyFTWM0dhSG2+sabdrIQU7Futqi/eu1OJswEbAvdecJn+xIFi3R2faTG6ewdxxI+MjSY1JiQ3LNbg9frH004JVMmGqKF4QXyGUsFurvGBfS6IgUaQTBlWt/Hhtvbj3TO6/x4vimkTi99W5h8kIpemNn0HZ27963rtHxEphifcI9ohZOv85/VB7/bTlQE2H8uvG4cGL1sCUnJR92bocHfxv19WuA8LV8au/b7AnpgjfFCZVdIPx+Yf53MIr7+EX4vDMtsrxyvn7Kcx0AX+PkJSqkhnlmUWBsmcrCsoMSveYWgbYldXHj7FK9kDjXrCkt+BHyA8p1Pm25v7y1GhG/s41pz/9dqo5Lz9vPVlIFy9CCfG2ALrelBvwLS6yifBvA3LbMVdfWITeHKKyqQwEn7BtQ7IRYWI1VCNKBUm10M00Wc1I7jdZmiBOkB01Ic0yuSvYzwEhDgHigJAFl0zWuYgch3ty9wx1lpqUJHpXOCIYFh0WfSQYEZ4VaZOos4k2QaOgyHfWV5U35sxS/XHvPV5qrz3e5y5/WXxO0MUPPGlMJe/y1vaYc3OTvHaRe85qvd+gxBkXGZLSc+Mob1BxQu3Tw6PbRx0jDp77xYYjc8IuqylAlYwOuz0Es0abhYpIgJrs2HfYNctiYWPlv8srZcI0XqIo0ewDk1evZD+//lgxEcZLFkrmVW5Nkz4YgIzju3QEqyhoOGhYJG7QRJ8/7li9XcZMYMre2ta7XcpMYQY1VjoLrxQdzPUeO7riu/qwaGOC8TtjilH77vXF12VF2hXacqWhuTxBtE+U3AHkpbuZdeI65uPvJFDfNKGiNELJB3wlhGIYLsA9bhVWjHx38F2WbyisYSwVNYYeTkxRD8v49Q1iwhFZHZRUK3CpGmhv9YMqm5QmRzNIO4hxyoA9fIw/Zh+W5yQu7av8Y4DbZcf5PjnGj2ORZnssOC+Stsr1he+7LhgFjP3LQ02teI62XEdoPR8+0kTs1L9rS74AnDc/yCRjMGn7y8dATL7CbncbSZtjCZq1YcMkNbwydMGqtiY3oWxpqlrKcY+E/UKjcS6wDHmPnGcnjYBccu7YGQYGnYTgttNFb8sFludBrCAMhemic6nsYh04FD5ey9gc7i5mzKryimPTijH+mPqyHXrIdNxf7+mqwufk5TlRZ15+X/a6Xq3nnbqsFZkY5hiOS4wsyDXhANZ0iPHsIf/XF6AmBHcaYIMO6+Q4N/YZYO2X2q919szor6KVT/VfUeO2bQN5qZlpE9uYZnN+aTV3XDwa5D+0xhO2fDiRrgeApH/90g80Xkoj5GI2pvBo///7rpYEgNYy0c0iQ+kV2cGaY8TfT7mhJEVK1Hcax+HrFogcMe2y4SGpJYU4nMylD3zuYRz+xU8wVLtG67N7sx4zhgv8LmbNee7dpXPdl7fJS1JDtoGISQBBYgvka16pMnv57mcBy90D7TnKO2afOQMbaOrOv/3racUdKMiqbl8UZVOb6qcyz++qup0zT22QGfH5rKuxelmqupSUSa6YlX7zlZjQutvju8gQ4Q0LvzXUN+j3zZ0cVKW3UVNSd99WQ3CEph/E5Ne6XC4cBWheRFOYNjk6PIxd0e6yo2DZQH6Zzndh7mtfMDgZ6juYmfHsIGyw8cYVSz/obzXI/Y9DxrlfFlIEHNifEu9QQb4Acx0lZBQ//01kmEN7D6KjdjThaYThkBMNGv8mCLSV/1oMa/c2dkPz/IQVVdOXJp7u18p92m/apPCi1COHU9suy2xJpmZTnl608x/urcDTZ9a+G4XG3xW5QswVruHemiO9XPAYVwQGb8jJni3bpq3x8uVnZG0qTWfve/SaL2179gaAPYcZKEDnUA/Vrtr7pmmIMcTnkoxMRiTDlAzy157ml9nt08vFYv82J+Zlcdi/EWLhtkeeYLG6QtZ9824dF8D5vl9VrwNqSe1A8s7qr3xXwAzukvRkWRfcxa6Tv57TR7nJMF5YEpKK21x121JDSuTbLru59Lv3PHPkRT9BuBHTb97to11TOyTw++Uww/P5wF0A9OkTH7LIALJcP+zQfBeVokiC3Kd+Jx7TBGdXpENkVveERQsASfvuv//TeI0pTBeU0sij/XDpdT1QbaPOkadcdXtRCHGAnQutpdDcAQi9bP14igwq77v6L0DHd7t+rfxjD7CCOMvXQ3hwB95u95sBnqG3Sq07/gqH/EiJbacvD9E0bhqCwv/aYS31CnPzdaB3jbQ7hN9+WsMKf7LWahrs6LeobsPQJpOWDKML+0/3wIh7EDAkd6329oDB/ML+8+f7J+7nz3UxizKZb6EAiUfm2vERpbfO8UAp29IP8j8HI03fvLuu+ivffBhw69ifkpAu1rGlZUI9rtVJCq++hk5RAXXEzhWrX7rUJXmNjs0beAbAarjxvfpHtb/Af6U1m6ybUAjZNOY53ju19xUbxoocYCXPx5F2AIDdeT6BejDZ6nazGxYVG30lY0yDSdpCurWO4v3K6npeeP/EHBnFVtu9rKVFKun7p6z/xHv9T5rrwjCEiT7pf+9E/9aIv+pFLr01OvAiMnf+Ibl42pibZ4Do0bxoOhRODlRI08UoeaT9l01slAxoGh4kVChM7fTTG1aosEydqdX//Pchu0OGQ/pB70QnyaSpT1sSffRoLNebRPH3k7pGnKiHmKFZuvRJZUFEnlJljso9qzIrs3MiclUVhHgqA/liS2pEgUGukwenhqbtCk7Nfc1sJvwBgm5qh+1jwvFhe6/uB2pDBmW9OlofYBRaGMUMa6wOMwwnFjMsdF1cOiaw7M4iEok5G3afzc47EVRXqM/X1bGb2J9lGgp1eax6v6agOmHRrxNDCTZyPHVKB9xnEYDOIADBUYAI+AIEoDgCkBkUINZReA5uLM6vyJnUjq86qaGmNsKgzpK+S7dE/RmByQ0RRpc481Pt9Pm0pncp2PvAuMSgX7JBjyzRb2CGqBiyhljc48kF3Tyv/gY5bjWFGcMwbnKFZaAmhsNc2PPqkGGNC6oDsm30PHzUvNwIc4QSTw2uxXxuIKw7haviiF/fjtkV+7sV3Ok/Jds7S9W1jiKeOf7toU8+jNbYOhqDVTWNx8ICVmHtWea0s7D89VI12pKYMqhZllH94RXKXGV2doRZVQbgUmCOyFIqsyoPlJFHfrxHyBzqsGZK4eVRfAZvd38Jfym4jeEQe8Bu9O5YgyYQHxwewlZ7Zc6G+56cMdyjYIvNEPOoGQmdfP8/AyD3GZt7IzvphnQiJ/Ucwnq3ONtX77NVfMTwaW+o+3CbOZzCyy37dGb+Oyk7Mi5mCvPFlTSgkT6qPZsaWrjiALOWeaA1tLAdBYgLYaLt9xpGrMNprjSrC3O549wEe3h7OAh2k3MM5wg3ckw3KOyRt7uCK0V/3un5VA2FzXKrVflJzVWGzsIjyFE2RbUuGf2jegenwVitj2+f3bEt/ydSIJqKeiU+fQKC9dkmxooMsg/9ZesDjmErx/Cg9SXdh7wiw8QA3+en5n8PRq3/rqYYT+Lj2bv4mqb7uONYtzOfLKPHHMd9OrBam3+hX02aSQNCah2/z/8y9rVtX3CDmMXur7A3C0KZN2u+02cq8WPLr0U/0d/65cfw8CQjPtax7XNEtoASGcr4pOaGLuOcsUSAsyabQMg2OmNjd3yJi5gbIPEyV+vXvZHRNZ3ckJTUsFwTgIw2oGm178jZo3Uf+f+okw7OGqcOG2HXqPHwVPUpkA3qfvTbX1ruyXxWXv5MztEG4AFaf7ln5Ef/DdgGT3vO2xMzg7a/jQa++WlgaJ8XFAV59eX3hUJq/9JCAz99MxB9OyJl0X/OUYH6Cl2UNCMiMasIwaUyAADYrBDq1tilrHcE7wAAOcAhQ6TyzRywmE0WTSaJJFdO8o753dFJN9yXhoWmG0LDgp5lZf2Q8UNZ1g9B/jH+GipAGNQ0Vh87ecdE+n3pBt0dP90MCmm1rEiWlzfkhUNxJY+fqh3f/WKP/uxFaUUIiYKy+UeTg7YeRkKdeZ0UQiSB0pnbGUKIOu/pDEUOK3CqB5mjquZbtbEfAhRc9hHM3PlzZ0zbyhpDNSh5/H5zQlZ9xkr9ycxKaG44ksDOMFcrWqsUmWZ2wpGNV/zPhZ4POx96LiS5E8B7DV3iK47ZgwLEh2sRp74NeNFq31fUoGzJC5JQxbHUUuSVNPGv/uOpj4u2t9pxxj/AJSVGGXZMck6JT9PTcXz9PXxp+jmYQoVaK5WPkp5Rg9Hvve7uWPWfP0WyerVnC2yZDbysdbs9J/jHeBx4wIO9NnsQ1nsKDdPTQEmVj1sKviIMX/w7tueeAgsxEfDq5wa8DWGe9sPFWcEUHvejr7oofQY7M37j89K6HTUxDlL61PuB3PQu7FyQ78OD3tVg3t6XuAu3a63EAbsDL3L7XD1OWCBVRG5ORHl2HK4HqOC69KYqUfANnUCdK8bV+4lRdiju5rmD8pwMlpP16YFBmidUzsBXbCbfXZbz1FJfD6vGqi6IiipQW0c1OEhQth+9961OXFwdXxkXVxlf/USDgwRl+yf3u2GiUbTRisCW0cDrLYEV1xfCUf5Ms4Owc+bTCc3OIwnsTHOVorVakcFddgPnfZsAT7yn/XBJZrAXj7O/71Ude69TvHtzqA8PtP+sYml9g39xZrFuyckltVF1N7uX5NeNOEmdf/75seScyXWSp5bUPA8YSK7Rkziz3F+4sxwf7hRXHFvnATd2UJanPxbR8/xrmtp3+85RjG7qzm0n6szPd1INfRcvtD3OMa+8RxC0eAMEpcbklkcf6xo/n/wYWzZK7iSzryzNiQ7Dt6WdxpFfyfVZvLzT2KMtzPcAGMCZCKgn+z8bMmGgd5xI4d8lyY+i5Jm8rnFbuD4EIiGZl03w9yYF+tCz5UQiwX9Ip4hiH/F7hx78tZF2asOh5UWScNPN1N9cfzw96D+00Q2iIVhm3TTly+87/J2MVE8kevuQ5MH+FBIpkJRF4NC4xHAfHkogayuzvSW72OQi6hRakQsaUmJ+/Z/giFy/pd40hUuKlh/acMpI+zqY/o7fEbYiSjfkTyAS5dl0n0CStz8hm5dMIBJ8uC3cayavTzuH/A8e/+nEFJVcxN4lyfau1JIJKM8nnMilcQhZpEASieIfLCf5eBOJ9aTvZIf7+L5Tm6wyGIoG/6/6j0aEvVLTW9r0aRSRwsVEAQpooJOCibPueHoKdQrBcQ7+xIxgPM/u/gtPl8t7mCKxQIVVt+QgOKnmWEsglzJsN5ta6nJSz2J2e2rBsBIdhHeRvhM4hEtj2VZmsjXktQ+cPz0DBp0HDN92OMF0CPdHMBdwTXhdXrC9Pkvu/rkDA5hSeLly+5IsUwr9RL1y2nuYEsg91lKT1HqrCiqUWCjDYMB4Qq1UBucDmzv1CXL6+696SJe8+1I/Rj/njT0K3SikSxW236MO/B76R6i/ZXWlO0uT5oeGfF0Yz3tN+RoPJDpqB2eM2MeS+Nj5Kut5WOi0bOLj/BFJoflJH+vKNJfHA2y6tvb0wzCbkbIjdX0Eh0PZ1B2UdaGCzeILNU9a5ItLy39e1Ufbg0CXC1jIiH0EairIrvbQnPaHlL766P/DwaG9ZzkTYROcb8f/JZeft4187v/X8EQ4XuSA8LM/7Ptsvo0fDZ7Fxti9zNPMXvbYtAv1YlKYXqjm6aykQFb0sQZXMutsEBiFmUMAkNuQn98Z3rAYHqzT+UxWWDH9zM+B6Bz3bWqkmh/Cnlp+mkEtx8nibhqCPOiCV9LDw3g7rh0HtuzDfkKKvtaRkdm5/fKCQgrMgK9Q5Fn128PzjjKvRZmIK3yAu34xgg7C9E385kpu1AFov9/9knWW9eVdd98dxt7TMvjvZY49bupDnAZDxntXNThympf4RMpeF/pOONFF7V1I/zmVfaUW54pkXBM8rx4eLZo+tATpd+VSVoOkXtIpccJnEkhWslcX0UoKJ9EL6t1FtgLPZOj+qgXYdUtC2xcfWMF+/qrPN2VXv/TE4tvvG+2XHUPX47PKwisUzYtrNAuiMSte0liqyAvLydayF3ntvL4sLyY7sLBjsFJ29/mQXjRzDlwkW0kJlCJ7d5F268syUbSaVS9pkDglneAMMK1MNtSnaObOBbOQvOLI1QOibM9URvOqjOYpz+xc7uvx8+p/gOg5019lLE6XbgE0ZM3DF37tcaIF3/8Rkpr95b5tGYmtDIMwXWgVWoYSJpL5BvaP7F1Bu9X4ri8vNgNPjvd4GZRd6IaKDWiXEn169MnFvK5/jf92vQDqHHzNYivMXqIX1z9ijVZi9EU/cr+ExAW7wyq2TS00aoqSVqt71Bbi19+FU4dywnbrKh1N9rlbjheXrgZtz0e+bV5tGXsa/PWfMIlMJgaXUb3FjNAsTmIY2Rsh6WJYuT4957wpJej/HVGrp7yTCle6vmPZwH97C1rfFq8vbDs8kfUB420UoPSWgrb3P8++o/uBpCGGkzQkMkzUE4VEDZFTEeSO4v3U9hrVHcGOMiqB/o0gUXWz1i0GVBAZYc4+BtRluapol8xuM6X4dcBz9qhf6zfYVUKVNvauY1PnRN9Lf+8z1ZOPqn6faa9LC1PXtc/8XvVosvqMt//LvhtOliprl+WUBneq46zTc/klKxBJbG6R0qYaR0BI3+YSRPH7d9+hxoCM3OW86SzP7UH/p5+Kzr+iA0Pf9noxOUP6/Zvoh0NRQw+jv/mdNDP5wuvt0MDov2zURyPDLtw1EVCvvRnlCsyAwr8zM8PIsWMO1zSOtyvgCibs97cNSPSpcTXGrdw3dZmZb1TGTeoF2znb9LxvKmP6M19/NL7J2WqMrYlNhkBcTQF5X5Tz17yINLlRUCQ3KrNVR5+H7CMXxGuoHhhs3QHPcT3wDrCd+ozroe7YBnu4c/C2bTAD1H0cvSP9/VMRWVkRyrL68qQb2WtLT4enk1Kwp/7Z136NI+3/WO7OUKxbn76Tr+uIX+BL++Tr/L7u+P1+lmEtFbGlGk1pbEVLs6Y8utgWkzZvJHSASn7aunxWyRW1fElKy05UU1rGK2PJ299uKoupCFMAIlY7NVGPHdaJa7pk/Od0mLaiNHadbkdNo8y4NH1p8zoQl19+WYj8CCLmd5wOb/E7UHqKYCQ8lMkeGgmEU6WbiS3hpzvmR3grvjb15Evkugpky6O+YjdhIb9IWPKVXvuJTvNAWMy3EFpehlY/8KrQySVglaSZ5gU06eAqI+6/PuEg5fQxGHpxgu9hfwktD77JilR8NSd5yhxzjI1XngYi/bq+3nVRVqBkaK82/uwXZQNKRuzlLv5OH/jr76avwoA1je/4mNel/d/Hwet41r7TeWuJdeDqoc7fsSsvXwBrPyme2sP+7wl4EUlCoyje7pi49Yspq39jrbfJBuVybcxvi7fEHZo9N2VSpYbZ/Ar9cshFlFS/goD/d3gV0CBN+QRpa+gKly1r+mIRX1z3QS7IyFgWtI3SrTEV1mTkd4dvofw/kVEW0W/UA+g+KZ2y0iTtufzGxt3zaQw/dcbVJ5uuxG3xu12Vdkx+a809ZXbMw3/Ey59/llp4r+J6Tgo3K7BcUKPeUklimCVVhB+PiidXf9tpZ57OB0ObAcPAgL85BSBI4idsz/Eiet/zn/KFJCI+vfAn3yn/+75zYvYa/vw9XwDht8wS8XxyYcTospAFjmUg/qSe+HJde8fn/gWc/HO5nDz2vTRdf887/Wh/StqrXKEtT+Tp4y8KWNTU1jy8iNcmKCgQVP+mp9SxZCpfomBPF0bcbg7JcywDCZf1xJed9o7P/Qr888/lcXLZT3W6/gAW2lUV7b0h6aSf/hNQ++DRRkZr0dk9FfppKUUjvlCTaiKPogau4ebO2ibQGLcT3H3r+AGoV9w/WJS/rOtU6aUtSMETf7Ogz2/zmOYvEhcwEl94U0ngf+LMB54eEiD2CNMb9BnI/7FpVUzYSnqm3TYpoQ2Pow4wAkqoCGDsI/AxG8XBGpWAVKAiAopBPDUCRQBAjo6BY+KQOMALvMZKjFS4Vfl4Fg4lon1bVUsMrrPVVDjkBabGxFC8z8VOApUYSFq78cwOAofGhC287dwPAh2kgWfM5le4RvAVZ1BRtB4ZIx2FnKmBFVJZH4HK+QMA9dSFNajUmPWklpWWrM40LJvirQbyvhYEiENhDWp47KEdRAMHpKE1yi5X5597K0sn27KN/qvUSQoA8LoXFEmtQlr4S9B/33lxEdAASHlEX2UAeAA4ssEU2vuBUGoQ8AH5RgBeoJnEUXsdSdA+bGRABaOkQPux+QIFlPGaCvygNwFR9kk++2AAKoMAGyQaAdBBGYnYdpAE7c1GBlxwnBRof2O+wAbmfqOCYGgx0AMHqANVYLF9WAvEoBosXfPtN4EasAi0gXoYbtwECO2RlBVJXrMAdIKq72BEUmhZVZdHxPYGoBDUgQawBLSAqvmiX4nzCaQ4oZgJG6irzI6f+HW8GKiBCkQBQPL8KKlVUalVk2jLYdH2mh1Sow0gGqRZzwKZDkmztRHGHDCh2VKbi36K9nCzmTNrROtUAJDgF3Z0NkQvXlyP/4wXPYQUvoHLw48B0Jj/TDuIB5F1u/qcharGSqtOZyzrpRFvdgEn6zJ8v8IQJeSfmAkQASJCJIgMUQ6C0nTDtGzH9bCw+fHHwYVABQjEwycgJCImISUTRC5YiFBhwikoRVCJFEUtmoZWjFhxMLh4CRIlSZYiFQAEgSFQGByBRKExWByeQCSRKVQanREAYrLYHC6PLxCKxBKpTK5QqtQarU5vMJrMFqvN7nC63B6vDwyBwuAIJAqNweLwBCKJTKHS6Awmi83h8vh5BgiEIrFEKpMrlKH7KkCt0er0BqPJbLHa7A6nyx2pC16fH4RgBMVwgqRohuV4fIFQJJZIZXKFUqXWaHV6g9FktlhtdofT5fZ4fX5AmFDGhVTaWEc6nywp93pjEF+esQ5zxc211BcU3l3bQP0GBbiXA9hus8PXPfpPvt/1UsJdwi78Tl+EZZdHSF5LWXfn9UtrpVXKz2s+r7YVnrwW8xpbb/wSFqSXK3Awx+QOKc7r3/lPJEr2Xmii9t5G2ae8M5IO04xIJQS/w45A+N84Fmmz9Li+XGsjTIsTub6fYtt9Yd4B26Qg/FWuYgAVVm1RGrZ2ghFOaM1HqG2ggDkAC3MgM7ZetybkcL+0Cv0LF9pmXtvKwDhNZU2FU60zdQ9z4TAbDQU4ge+Rw8WPrfMcmIbDVGsmnKbfXJLmYNMEB/eEiSOLwk23fQ05jLl4WY8Qray1Y/ntYG3ghSDGJtwJ78gyzMmCp2SCaIGUy4JVGKArttX27ahK8aupMlJooOHQIghimWEaG5WV/Co50Ja/kzCKBd2c1FxDSZBx6Bj1ELT4kDQUniGjmaczG2uPwk5g/khBQNZ+6cjQ92gO0xsqhbAEye+WcWLzFHc3KJPD1LXtYoG+KxgXLLjZTXwYOHp+h8XYhvQ4/cStuUeokLUtnMaiTazAWuS0DBUycA78yWCYoGR4ZZP2KIREy1oXHgicFMhx7Jgt3Hu9f73MZ5sLnTPXKknmT5aiwwTjEU7Vx6394kwYKFZZo99aJA6SnBTIQZcJgG2iOYEsA/LgjmzKES2ZorolhWDN4CQuJuRsFswnDcUAAZi2TRY7JPXJAYgZ+rwVJO3T4yAk0pyCAGwjaFvwZo0PWAJpnAVMR/IKkLFD3rrE4CXkkh7ZdmWq3JjRmQOLM4eFIcU3V4kDVT6REKckYXPGANSPBMWlNOQYjkIawhCXnuM5prZCQwfdXgqfZidhGfJpYOqTA/Y0500ZB4LQReO8YZ6mjq2e6QIdzdGLzR8ziEWSLVQd2NoiYGkRGaMXLCt0oq7fOWoCTc11KgkMttjj0jFJ6zIc7BafifCk0pZOhSbraAopcEpG4/kOwyNmF39Mt5ppTW7jRoB8WgPkOc51rC8oKZl62iKAamlu4DmuBkvCcCtjwcMLAlVzR32t10CwTyM6AbagGllb48gU5ACDzUmBCyJqxlxs8U4XAyTcTtjWMNGdH9GuwTBmjyI3YJFEgrovcQDR5kFZ0NMkmgTDZclc183uTcoBDNAaimIE2Cwu9OXklBGRkNvItMU7zXTlX5Zz/V8YIO2iK//xMnpu22WBNXRyG9vGQuJ0mGsc26/Aag5YQelZZs5Bi2ubsxHV/DzGXRt3P3KTOvQ4HG8aKpm9OyoHnIgzG/GkIEerHqEBaYCQ8UJPWbg8/vNFDyFvqkhIe6O6l0WordG9pHAAyyTWbhCGHCtBD7vDjzljqRT4+8E2POgLpACHDw+E5jqrtyanHw0AAA==) format("woff2"), url(font_2553510_ciljc7axaw7.woff?t=1705587463221) format("woff")
}