body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "iconfont";
    font-size: 14px;
    line-height: 1.55rem;
    letter-spacing: 0.004em;
    color: #73767A;
    background: #F9FAFC;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
a {
    transition: .2s all;
    color: #006FFF;
}
a:hover, a:active, a:focus {
    color: #006FFF;
    text-decoration: none;
}
.appHeader {
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFFFFF;
    color: #282D33;
    border-bottom: 1px solid #dfe4e7;
}
.appHeader.no-border {
    border: 0;
    box-shadow: none;
}
.appHeader.transparent {
    background: transparent;
}
.appHeader .left,
.appHeader .right {
    height: 36px;
    display: flex;
    align-items: center;
    position: absolute;
}
.appHeader .left .icon,
.appHeader .right .icon {
    font-size: 26px;
}
.appHeader .left .headerButton,
.appHeader .right .headerButton {
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    color: #006FFF;
    position: relative;
}
.appHeader .left .headerButton .btn,
.appHeader .right .headerButton .btn {
    font-size: 16px;
    height: 32px;
    padding: 0 14px;
}
.appHeader .left .headerButton:active,
.appHeader .right .headerButton:active {
    opacity: .6;
}
.appHeader .left {
    left: 10px;
    top: 0;
}
.appHeader .right {
    right: 10px;
    top: 0;
}
.appHeader .pageTitle {
    font-size: 18px;
    font-weight: 500;
    padding: 0 10px;
}
.appHeader.text-light {
    color: #FFF;
}
.appHeader.text-light .headerButton {
    color: #FFF;
}
.appHeader.bg-primary, .appHeader.bg-secondary, .appHeader.bg-success, .appHeader.bg-warning, .appHeader.bg-danger, .appHeader.bg-info, .appHeader.bg-light, .appHeader.bg-dark {
    border: 0;
}
.extraHeader {
    position: fixed;
    left: 0;
    top: 50px;
    height: 50px;
    right: 0;
    width: 100%;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    background: #FFF;
    border-bottom: 1px solid #dfe4e7;
}
.appBottomMenu {
    height: 36px;
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #dfe4e7;
}
.appBottomMenu.no-border {
    border: 0 !important;
    box-shadow: none !important;
}
.appBottomMenu .item {
    font-size: 10px;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
    height: 36px;
    line-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.appBottomMenu .item:before {
    content: '';
    display: block;
    height: 2px;
    border-radius: 0 0 10px 10px;
    background: transparent;
    position: absolute;
    left: 4px;
    right: 4px;
    top: 0;
}
.appBottomMenu .item .col {
    width: 100%;
    padding: 0 4px;
}
.appBottomMenu .item .icon {
    font-size: 26px;
    line-height: 1em;
    color: #282D33;
    transition: 0.1s all;
    display: block;
    margin-top: 1px;
    margin-bottom: 3px;
}
.appBottomMenu .item .action-button {
    display: inline-flex;
    width: 50px;
    height: 50px;
    margin-left: -5px;
    margin-right: -5px;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    background: #006FFF;
}
.appBottomMenu .item .action-button.large {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -10px;
    margin-right: -10px;
}
.appBottomMenu .item .action-button .icon {
    color: #FFF !important;
    margin: 0 !important;
    line-height: 0 !important;
}
.appBottomMenu .item strong {
    margin-top: 4px;
    display: block;
    color: #282D33;
    font-weight: 400;
    transition: 0.1s all;
}
.appBottomMenu .item:active {
    opacity: .8;
}
.appBottomMenu .item.active:before {
    background: #006FFF;
}
.appBottomMenu .item.active .icon,
.appBottomMenu .item.active strong {
    color: #006FFF !important;
    font-weight: 500;
}
.appBottomMenu .item:hover .icon,
.appBottomMenu .item:hover strong {
    color: #282D33;
}
.appBottomMenu.text-light {
    color: #FFF;
}
.appBottomMenu.text-light .item {
    color: #FFF;
    opacity: .7;
}
.appBottomMenu.text-light .item .icon,
.appBottomMenu.text-light .item strong {
    color: #FFF;
}
.appBottomMenu.text-light .item.active {
    opacity: 1;
}
.appBottomMenu.text-light .item.active .icon,
.appBottomMenu.text-light .item.active strong {
    color: #FFF !important;
}
.appBottomMenu.bg-primary, .appBottomMenu.bg-secondary, .appBottomMenu.bg-success, .appBottomMenu.bg-warning, .appBottomMenu.bg-danger, .appBottomMenu.bg-info, .appBottomMenu.bg-light, .appBottomMenu.bg-dark {
    border: 0;
}
.appBottomMenu.bg-primary .item:before, .appBottomMenu.bg-secondary .item:before, .appBottomMenu.bg-success .item:before, .appBottomMenu.bg-warning .item:before, .appBottomMenu.bg-danger .item:before, .appBottomMenu.bg-info .item:before, .appBottomMenu.bg-light .item:before, .appBottomMenu.bg-dark .item:before {
    display: none;
}
#appCapsule {
    padding: 36px 0;
}
#appCapsule.extra-header-active {
    padding-top: 86px;
}
.section {
    padding: 0 16px;
}
.section.full {
    padding: 0;
}
.wide-block {
    background: #fff;
    border-top: 1px solid #dfe4e7;
    border-bottom: 1px solid #dfe4e7;
    padding-left: 16px;
    padding-right: 16px;
}
.section-title {
    font-size: 16px;
    padding: 6px 0;
    color: #282D33;
    font-weight: 500;
}
.section-title.large {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 700;
}
.section-title.medium {
    font-size: 18px;
    font-weight: 700;
}
.content-header,
.content-footer {
    font-size: 12px;
    color: #A9ABAD;
    padding-left: 0;
    padding-right: 0;
    line-height: 1.4em;
}
.section.full .section-title {
    padding-left: 16px;
    padding-right: 16px;
}
.section.full .content-header,
.section.full .content-footer {
    padding-left: 16px;
    padding-right: 16px;
}
.section.full .wide-block .content-header,
.section.full .wide-block .content-footer {
    padding-left: 0;
    padding-right: 0;
}
section.inset .wide-block {
    border: 1px solid #dfe4e7;
    border-radius: 6px;
}
.profileBox {
    padding: 0 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dfe4e7;
}
.profileBox .image-wrapper {
    margin-right: 16px;
}
.profileBox .in {
    line-height: 1.2em;
}
.profileBox .in strong {
    display: block;
    font-weight: 500;
    color: #282D33;
}
.profileBox .in .text-muted {
    font-size: 14px;
    color: #A9ABAD !important;
}
.appFooter {
    border-top: 1px solid #dfe4e7;
    padding: 16px;
    font-size: 12px;
    text-align: center;
    line-height: 1.2em;
    background: #FFF;
}
.appFooter .footer-title {
    font-weight: 500;
    color: #282D33;
    margin-bottom: 8px;
}
.exampleBox {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe4e7;
    background: rgba(223, 228, 231, 0.3);
    font-size: 10px;
}
.row {
    margin-left: -8px;
    margin-right: -8px;
}
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
    padding-left: 8px;
    padding-right: 8px;
}
.m-0 {
    margin: 0 !important;
}
.m-02 {
    margin: 2px !important;
}
.m-03 {
    margin: 3px !important;
}
.m-05 {
    margin: 5px !important;
}
.m-1 {
    margin: 10px !important;
}
.m-2 {
    margin: 20px !important;
}
.m-3 {
    margin: 30px !important;
}
.m-4 {
    margin: 40px !important;
}
.m-5 {
    margin: 50px !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-05 {
    margin-top: 5px !important;
}
.mt-1 {
    margin-top: 10px !important;
}
.mt-2 {
    margin-top: 20px !important;
}
.mt-3 {
    margin-top: 30px !important;
}
.mt-4 {
    margin-top: 40px !important;
}
.mt-5 {
    margin-top: 50px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-05 {
    margin-bottom: 5px !important;
}
.mb-1 {
    margin-bottom: 10px !important;
}
.mb-2 {
    margin-bottom: 20px !important;
}
.mb-3 {
    margin-bottom: 30px !important;
}
.mb-4 {
    margin-bottom: 40px !important;
}
.mb-5 {
    margin-bottom: 50px !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.ml-05 {
    margin-left: 5px !important;
}
.ml-1 {
    margin-left: 10px !important;
}
.ml-2 {
    margin-left: 20px !important;
}
.ml-3 {
    margin-left: 30px !important;
}
.ml-4 {
    margin-left: 40px !important;
}
.ml-5 {
    margin-left: 50px !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mr-05 {
    margin-right: 5px !important;
}
.mr-1 {
    margin-right: 10px !important;
}
.mr-2 {
    margin-right: 20px !important;
}
.mr-3 {
    margin-right: 30px !important;
}
.mr-4 {
    margin-right: 40px !important;
}
.mr-5 {
    margin-right: 50px !important;
}
.p-0 {
    padding: 0 !important;
}
.p-05 {
    padding: 5px !important;
}
.p-1 {
    padding: 10px !important;
}
.p-2 {
    padding: 20px !important;
}
.p-3 {
    padding: 30px !important;
}
.p-4 {
    padding: 40px !important;
}
.p-5 {
    padding: 50px !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-05 {
    padding-top: 5px !important;
}
.pt-1 {
    padding-top: 10px !important;
}
.pt-2 {
    padding-top: 20px !important;
}
.pt-3 {
    padding-top: 30px !important;
}
.pt-4 {
    padding-top: 40px !important;
}
.pt-5 {
    padding-top: 50px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-05 {
    padding-bottom: 5px !important;
}
.pb-1 {
    padding-bottom: 10px !important;
}
.pb-2 {
    padding-bottom: 20px !important;
}
.pb-3 {
    padding-bottom: 30px !important;
}
.pb-4 {
    padding-bottom: 40px !important;
}
.pb-5 {
    padding-bottom: 50px !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.pl-05 {
    padding-left: 5px !important;
}
.pl-1 {
    padding-left: 10px !important;
}
.pl-2 {
    padding-left: 20px !important;
}
.pl-3 {
    padding-left: 30px !important;
}
.pl-4 {
    padding-left: 40px !important;
}
.pl-5 {
    padding-left: 50px !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pr-05 {
    padding-right: 5px !important;
}
.pr-1 {
    padding-right: 10px !important;
}
.pr-2 {
    padding-right: 20px !important;
}
.pr-3 {
    padding-right: 30px !important;
}
.pr-4 {
    padding-right: 40px !important;
}
.pr-5 {
    padding-right: 50px !important;
}
.r-0 {
    right: 0 !important;
    left: auto !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #282D33;
    margin: 0 0 10px 0;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    color: rgba(40, 45, 51, 0.6);
}
h1 .badge,
h2 .badge,
h3 .badge,
h4 .badge,
h5 .badge,
h6 .badge {
    line-height: 1em;
}
h1 {
    font-size: 32px;
    font-weight: 700;
}
h2 {
    font-size: 24px;
    font-weight: 700;
}
h3 {
    font-size: 18px;
    font-weight: 700;
}
h4 {
    font-size: 16px;
    font-weight: 500;
}
h5 {
    font-size: 14px;
    font-weight: 500;
}
h6 {
    font-size: 12px;
    font-weight: 500;
}
.lead {
    font-weight: 400;
    font-size: 18px;
    color: #73767A;
}
mark {
    border-radius: 6px;
}
.text-large {
    font-size: 32px;
}
strong,
b {
    font-weight: 500;
}
.imaged {
    height: auto;
    border-radius: 6px;
}
.imaged.w16 {
    width: 16px !important;
}
.imaged.w24 {
    width: 24px !important;
}
.imaged.w32 {
    width: 32px !important;
}
.imaged.w36 {
    width: 36px !important;
}
.imaged.w48 {
    width: 48px !important;
}
.imaged.w64 {
    width: 64px !important;
}
.imaged.w76 {
    width: 76px !important;
}
.imaged.w86 {
    width: 86px !important;
}
.imaged.w100 {
    width: 100px !important;
}
.imaged.w120 {
    width: 120px !important;
}
.imaged.w140 {
    width: 140px !important;
}
.imaged.w160 {
    width: 160px !important;
}
.imaged.w180 {
    width: 180px !important;
}
.imaged.w200 {
    width: 200px !important;
}
.imaged.img-fluid {
    width: 100%;
}
.imaged.rounded {
    border-radius: 100% !important;
}
.imaged.radius {
    border-radius: 6px !important;
}
.imaged.square {
    border-radius: 0 !important;
}
#loader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge {
    font-size: 12px;
    line-height: 1em;
    border-radius: 100px;
    letter-spacing: 0;
    height: 22px;
    min-width: 22px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
.badge-primary,
a.badge-primary {
    background: #006FFF !important;
}
.badge-secondary,
a.badge-secondary {
    background: #8494A8 !important;
}
.badge-success,
a.badge-success {
    background: #1DCC70 !important;
}
.badge-danger,
a.badge-danger {
    background: #ff2d55 !important;
}
.badge-warning,
a.badge-warning {
    background: #FFB400 !important;
    color: #FFF;
}
.badge-info,
a.badge-info {
    background: #754AED !important;
}
.badge-light,
a.badge-light {
    background: #FFF !important;
    color: #282D33;
}
.badge-dark,
a.badge-dark {
    background: #282D33 !important;
}
.badge-empty {
    display: block !important;
    min-width: 8px !important;
    width: 8px !important;
    height: 8px !important;
    padding: 0 !important;
    font-size: 0;
}
.appHeader .badge {
    min-width: 16px;
    height: 16px;
    line-height: 9px !important;
    font-size: 10px;
    padding: 0 4px !important;
    position: absolute;
    right: 2px;
    top: 10px;
}
.appHeader .badge-empty {
    top: 6px;
}
.appBottomMenu .badge {
    min-width: 16px;
    height: 16px;
    line-height: 9px !important;
    font-size: 10px;
    padding: 0 4px !important;
    position: absolute;
    right: 50%;
    transform: translateX(120%);
    top: -15px;
}
.appBottomMenu .badge-empty {
    transform: translateX(200%);
    top: -1px;
}
.listview-title {
    color: #73767A;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 500;
}
.listview {
    display: block;
    padding: 0;
    margin: 0;
    color: #282D33;
    background: #fff;
    border-top: 1px solid #dfe4e7;
    border-bottom: 1px solid #dfe4e7;
    line-height: 1.3em;
}
.listview .text-muted {
    font-size: 14px;
    color: #A9ABAD !important;
}
.listview > li {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 50px;
}
.listview > li:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #dfe4e7;
}
.listview > li:last-child:after {
    display: none;
}
.listview > li footer,
.listview > li header {
    font-size: 12px;
    margin: 0;
    line-height: 1.2em;
}
.listview > li footer {
    color: #73767A;
    margin-top: 3px;
}
.listview > li header {
    margin-bottom: 3px;
}
.listview > li.divider-title {
    background: rgba(223, 228, 231, 0.5);
    margin-top: -1px;
    border-top: 1px solid #dfe4e7;
    border-bottom: 1px solid #dfe4e7;
    padding: 12px 16px;
    font-size: 14px;
    min-height: auto;
    color: #73767A;
}
.listview > li.divider-title:after {
    display: none;
}
.listview.flush {
    border-top: 0;
    border-bottom: 0;
}
.listview.transparent {
    background: transparent;
}
.link-listview > li {
    padding: 0;
    min-height: auto;
}
.link-listview > li a {
    padding: 8px 36px 8px 16px;
    min-height: 50px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #282D33 !important;
}
.link-listview > li a:after {
    content: "\e743";
    font-family: "iconfont";
    font-size: 18px;
    position: absolute;
    right: 16px;
    height: 18px;
    top: 50%;
    margin-top: -9px;
    line-height: 1em;
    color: #A9ABAD;
    opacity: 0.6;
}
.link-listview > li a:active {
    background: rgba(223, 228, 231, 0.3);
}
.image-listview > li {
    padding: 0;
    min-height: auto;
}
.image-listview > li:after {
    left: 68px;
}
.image-listview > li .item {
    padding: 10px 16px;
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
}
.image-listview > li .item .image {
    width: 36px;
    height: 36px;
    border-radius: 400px;
    margin-right: 16px;
}
.image-listview > li .item .icon-box {
    min-width: 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1em;
    font-size: 22px;
    border-radius: 400px;
    margin-right: 16px;
}
.image-listview > li .item .icon-box .iconfont {
    font-size: 22px;
}
.image-listview > li .item .in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.image-listview > li a.item {
    color: #282D33 !important;
    padding-right: 36px;
}
.image-listview > li a.item:active {
    background: rgba(223, 228, 231, 0.3);
}
.image-listview > li a.item:after {
    content: "\e743";
    font-family: "iconfont";
    font-size: 18px;
    position: absolute;
    right: 16px;
    color: #A9ABAD;
    opacity: 0.6;
    line-height: 1em;
    height: 18px;
    top: 50%;
    margin-top: -9px;
}
.image-listview.text > li:after {
    left: 16px;
}
.image-listview.media > li {
    border-bottom: 1px solid #dfe4e7;
}
.image-listview.media > li:last-child {
    border-bottom: 0;
}
.image-listview.media > li .imageWrapper {
    margin-right: 16px;
}
.image-listview.media > li:after {
    display: none;
}
.listview.no-line > li:after,
.listview.no-line .item :after {
    display: none;
}
.listview.no-space > li .item {
    padding: 0;
}
.card {
    background: #FFFFFF;
    border-radius: 6px;
    border: 1px solid #dfe4e7;
}
.card .card-body {
    padding: 16px;
}
.card .card-title {
    color: #282D33;
    font-size: 18px;
    font-weight: 500;
}
.card .card-subtitle {
    color: #282D33;
    font-weight: 400;
    font-size: 14px;
}
.card .listview > li:first-child .item {
    border-radius: 6px 6px 0 0;
}
.card .listview > li:last-child .item {
    border-radius: 0 0 6px 6px;
}
.card .card-header {
    background: transparent;
    color: #282D33;
    font-weight: 500;
    padding: 12px 16px;
    border-bottom: 1px solid #dfe4e7;
}
.card .card-footer {
    background: transparent;
    border-top: 1px solid #dfe4e7;
    color: #73767A;
    padding: 12px 16px;
}
.card .card-img-overlay {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}
.card .card-img-overlay .card-title {
    color: #FFF;
}
.card .card-img-overlay .card-text {
    color: rgba(255, 255, 255, 0.7);
}
.card.bg-primary, .card.bg-secondary, .card.bg-danger, .card.bg-success, .card.bg-warning, .card.bg-info, .card.bg-dark {
    border: 0;
}
.card.bg-primary .card-title, .card.bg-secondary .card-title, .card.bg-danger .card-title, .card.bg-success .card-title, .card.bg-warning .card-title, .card.bg-info .card-title, .card.bg-dark .card-title {
    color: #FFF;
}
.card.bg-primary .card-text, .card.bg-secondary .card-text, .card.bg-danger .card-text, .card.bg-success .card-text, .card.bg-warning .card-text, .card.bg-info .card-text, .card.bg-dark .card-text {
    color: rgba(255, 255, 255, 0.7);
}
.card.bg-primary .card-header, .card.bg-secondary .card-header, .card.bg-danger .card-header, .card.bg-success .card-header, .card.bg-warning .card-header, .card.bg-info .card-header, .card.bg-dark .card-header {
    color: #FFF;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.card.bg-light {
    background: #FFF;
}
.btn {
    height: 36px;
    padding: 3px 18px;
    font-size: 14px;
    line-height: 1.2em;
    font-weight: 500;
    box-shadow: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s all;
    text-decoration: none !important;
    border-radius: 6px;
    border-width: 2px;
}
.btn i.icon {
    font-size: 22px;
    margin-right: 10px;
    margin-top: -2px;
}
.btn.rounded {
    border-radius: 100px !important;
}
.btn.square {
    border-radius: 0 !important;
}
.btn.shadowed {
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2) !important;
}
.btn-lg {
    height: 48px;
    padding: 3px 24px;
    font-size: 18px;
}
.btn-lg i.icon {
    font-size: 26px;
}
.btn-sm {
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
}
.btn-sm i.icon {
    font-size: 20px;
}
.btn-group .btn:active {
    transform: none;
}
.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
}
.btn-icon i {
    text-align: center;
    margin: 0 !important;
}
.btn-facebook {
    color: #fff !important;
    background: #39579b;
}
.btn-twitter {
    color: #fff !important;
    background: #049ff6;
}
.btn-instagram {
    color: #fff !important;
    background: #df237b;
}
.btn-linkedin {
    color: #fff !important;
    background: #0075aa;
}
.btn-twitch {
    color: #fff !important;
    background: #923cff;
}
.btn-whatsapp {
    color: #fff !important;
    background: #0ad561;
}
.btn-primary {
    background: #006FFF !important;
    border-color: #006FFF !important;
    color: #FFFFFF !important;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
    background: #0064e6 !important;
    border-color: #0064e6 !important;
}
.btn-primary.disabled, .btn-primary:disabled {
    background: #006FFF;
    border-color: #006FFF;
    opacity: 0.5;
}
.btn-secondary {
    background: #8494A8 !important;
    border-color: #8494A8 !important;
    color: #FFFFFF !important;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
    background: #75879d !important;
    border-color: #75879d !important;
}
.btn-secondary.disabled, .btn-secondary:disabled {
    background: #8494A8;
    border-color: #8494A8;
    opacity: 0.5;
}
.btn-success {
    background: #1DCC70 !important;
    border-color: #1DCC70 !important;
    color: #FFFFFF !important;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
    background: #1ab664 !important;
    border-color: #1ab664 !important;
}
.btn-success.disabled, .btn-success:disabled {
    background: #1DCC70;
    border-color: #1DCC70;
    opacity: 0.5;
}
.btn-danger {
    background: #ff2d55 !important;
    border-color: #ff2d55 !important;
    color: #FFFFFF !important;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
    background: #ff1440 !important;
    border-color: #ff1440 !important;
}
.btn-danger.disabled, .btn-danger:disabled {
    background: #ff2d55;
    border-color: #ff2d55;
    opacity: 0.5;
}
.btn-warning {
    background: #FFB400 !important;
    border-color: #FFB400 !important;
    color: #FFFFFF !important;
}
.btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active {
    background: #e6a200 !important;
    border-color: #e6a200 !important;
}
.btn-warning.disabled, .btn-warning:disabled {
    background: #FFB400;
    border-color: #FFB400;
    opacity: 0.5;
}
.btn-link {
    color: #006FFF !important;
}
.btn-info {
    background: #754AED !important;
    border-color: #754AED !important;
    color: #FFFFFF !important;
}
.btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active {
    background: #6333eb !important;
    border-color: #6333eb !important;
}
.btn-info.disabled, .btn-info:disabled {
    background: #754AED;
    border-color: #754AED;
    opacity: 0.5;
}
.btn-dark {
    background: #333 !important;
    border-color: #333 !important;
    color: #FFFFFF !important;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active, .btn-dark.active {
    background: #262626 !important;
    border-color: #262626 !important;
}
.btn-dark.disabled, .btn-dark:disabled {
    background: #333;
    border-color: #333;
    opacity: 0.5;
}
.btn-light {
    background: #FFF !important;
    border-color: #FFF !important;
    color: #282D33 !important;
}
.btn-light:hover, .btn-light:focus, .btn-light:active, .btn-light.active {
    background: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
}
.btn-light.disabled, .btn-light:disabled {
    background: #FFF;
    border-color: #FFF;
    opacity: 0.5;
}
.btn-outline-primary {
    background: transparent;
    border-color: #006FFF;
    color: #006FFF;
    transition: 0.2s all;
}
.btn-outline-primary:hover, .btn-outline-primary:active {
    background: rgba(0, 111, 255, 0.15) !important;
    border-color: #006FFF !important;
    color: #006FFF !important;
}
.btn-outline-primary.active {
    background: #006FFF !important;
    color: #FFF !important;
    border-color: #006FFF !important;
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #006FFF !important;
    border-color: #006FFF !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-secondary {
    background: transparent;
    border-color: #8494A8;
    color: #8494A8;
    transition: 0.2s all;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active {
    background: rgba(132, 148, 168, 0.15) !important;
    border-color: #8494A8 !important;
    color: #8494A8 !important;
}
.btn-outline-secondary.active {
    background: #8494A8 !important;
    color: #FFF !important;
    border-color: #8494A8 !important;
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #8494A8 !important;
    border-color: #8494A8 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-success {
    background: transparent;
    border-color: #1DCC70;
    color: #1DCC70;
    transition: 0.2s all;
}
.btn-outline-success:hover, .btn-outline-success:active {
    background: rgba(29, 204, 112, 0.15) !important;
    border-color: #1DCC70 !important;
    color: #1DCC70 !important;
}
.btn-outline-success.active {
    background: #1DCC70 !important;
    color: #FFF !important;
    border-color: #1DCC70 !important;
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #1DCC70 !important;
    border-color: #1DCC70 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-danger {
    background: transparent;
    border-color: #ff2d55;
    color: #ff2d55;
    transition: 0.2s all;
}
.btn-outline-danger:hover, .btn-outline-danger:active {
    background: rgba(255, 45, 85, 0.15) !important;
    border-color: #ff2d55 !important;
    color: #ff2d55 !important;
}
.btn-outline-danger.active {
    background: #ff2d55 !important;
    color: #FFF !important;
    border-color: #ff2d55 !important;
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #ff2d55 !important;
    border-color: #ff2d55 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-warning {
    background: transparent;
    border-color: #FFB400;
    color: #FFB400;
    transition: 0.2s all;
}
.btn-outline-warning:hover, .btn-outline-warning:active {
    background: rgba(255, 180, 0, 0.15) !important;
    border-color: #FFB400 !important;
    color: #FFB400 !important;
}
.btn-outline-warning.active {
    background: #FFB400 !important;
    color: #FFF !important;
    border-color: #FFB400 !important;
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #FFB400 !important;
    border-color: #FFB400 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-info {
    background: transparent;
    border-color: #754AED;
    color: #754AED;
    transition: 0.2s all;
}
.btn-outline-info:hover, .btn-outline-info:active {
    background: rgba(117, 74, 237, 0.15) !important;
    border-color: #754AED !important;
    color: #754AED !important;
}
.btn-outline-info.active {
    background: #754AED !important;
    color: #FFF !important;
    border-color: #754AED !important;
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #754AED !important;
    border-color: #754AED !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-light {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transition: 0.2s all;
}
.btn-outline-light:hover, .btn-outline-light:active {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #fff !important;
    color: #fff !important;
}
.btn-outline-light.active {
    background: #fff !important;
    color: #FFF !important;
    border-color: #fff !important;
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #fff !important;
    border-color: #fff !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-outline-light:active {
    color: #282D33 !important;
}
.btn-text-primary {
    background: transparent;
    border-color: transparent;
    color: #006FFF !important;
    transition: 0.2s all;
}
.btn-text-primary:hover {
    background: transparent;
}
.btn-text-primary:active, .btn-text-primary.active {
    background: rgba(0, 111, 255, 0.15) !important;
    border-color: transparent !important;
    color: #006FFF !important;
}
.btn-text-primary.disabled, .btn-text-primary:disabled {
    color: #006FFF !important;
    border-color: #006FFF !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-secondary {
    background: transparent;
    border-color: transparent;
    color: #8494A8 !important;
    transition: 0.2s all;
}
.btn-text-secondary:hover {
    background: transparent;
}
.btn-text-secondary:active, .btn-text-secondary.active {
    background: rgba(132, 148, 168, 0.15) !important;
    border-color: transparent !important;
    color: #8494A8 !important;
}
.btn-text-secondary.disabled, .btn-text-secondary:disabled {
    color: #8494A8 !important;
    border-color: #8494A8 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-success {
    background: transparent;
    border-color: transparent;
    color: #1DCC70 !important;
    transition: 0.2s all;
}
.btn-text-success:hover {
    background: transparent;
}
.btn-text-success:active, .btn-text-success.active {
    background: rgba(29, 204, 112, 0.15) !important;
    border-color: transparent !important;
    color: #1DCC70 !important;
}
.btn-text-success.disabled, .btn-text-success:disabled {
    color: #1DCC70 !important;
    border-color: #1DCC70 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-danger {
    background: transparent;
    border-color: transparent;
    color: #ff2d55 !important;
    transition: 0.2s all;
}
.btn-text-danger:hover {
    background: transparent;
}
.btn-text-danger:active, .btn-text-danger.active {
    background: rgba(255, 45, 85, 0.15) !important;
    border-color: transparent !important;
    color: #ff2d55 !important;
}
.btn-text-danger.disabled, .btn-text-danger:disabled {
    color: #ff2d55 !important;
    border-color: #ff2d55 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-warning {
    background: transparent;
    border-color: transparent;
    color: #FFB400 !important;
    transition: 0.2s all;
}
.btn-text-warning:hover {
    background: transparent;
}
.btn-text-warning:active, .btn-text-warning.active {
    background: rgba(255, 180, 0, 0.15) !important;
    border-color: transparent !important;
    color: #FFB400 !important;
}
.btn-text-warning.disabled, .btn-text-warning:disabled {
    color: #FFB400 !important;
    border-color: #FFB400 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-info {
    background: transparent;
    border-color: transparent;
    color: #754AED !important;
    transition: 0.2s all;
}
.btn-text-info:hover {
    background: transparent;
}
.btn-text-info:active, .btn-text-info.active {
    background: rgba(117, 74, 237, 0.15) !important;
    border-color: transparent !important;
    color: #754AED !important;
}
.btn-text-info.disabled, .btn-text-info:disabled {
    color: #754AED !important;
    border-color: #754AED !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-text-light {
    background: transparent;
    color: #FFF;
}
.btn-text-light:hover, .btn-text-light:active, .btn-text-light.active {
    color: #FFF;
    background: rgba(255, 255, 255, 0.1);
}
.btn-text-dark {
    background: transparent;
    border-color: transparent;
    color: #282D33 !important;
    transition: 0.2s all;
}
.btn-text-dark:hover {
    background: transparent;
}
.btn-text-dark:active, .btn-text-dark.active {
    background: rgba(40, 45, 51, 0.15) !important;
    border-color: transparent !important;
    color: #282D33 !important;
}
.btn-text-dark.disabled, .btn-text-dark:disabled {
    color: #282D33 !important;
    border-color: #282D33 !important;
    background: transparent !important;
    opacity: 0.5;
}
.btn-group .btn {
    margin-left: -2px !important;
}
.accordion {
    border-top: 1px solid #dfe4e7;
    border-bottom: 1px solid #dfe4e7;
    background: #fff;
}
.accordion .accordion-content {
    padding: 8px 16px 20px 16px;
}
.accordion .accordion-header {
    position: relative;
}
.accordion .accordion-header .btn {
    justify-content: flex-start;
    border-radius: 0 !important;
    width: 100%;
    font-weight: 400;
    background: transparent !important;
    font-size: 16px;
    padding: 8px 50px 8px 16px;
    min-height: 50px;
}
.accordion .accordion-header .btn:active {
    background: rgba(223, 228, 231, 0.3) !important;
}
.accordion .accordion-header .btn:after {
    content: "\e743";
    font-family: "iconfont", serif;
    font-size: 18px;
    position: absolute;
    right: 16px;
    color: #A9ABAD;
    opacity: 0.6;
    line-height: 1em;
    height: 18px;
    top: 50%;
    margin-top: -9px;
    transform: rotate(-90deg);
}
.accordion .accordion-header .btn:before {
    content: "";
    display: block;
    height: 1px;
    background: transparent;
    position: absolute;
    left: 16px;
    bottom: 0;
    right: 0;
}
.accordion .accordion-header .btn.collapsed:after {
    transform: rotate(90deg);
}
.accordion .accordion-header .btn.collapsed:before {
    background: #dfe4e7;
}
.accordion .accordion-header .btn .icon {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion .item:last-child .accordion-header .btn:before {
    display: none;
}
.inset .accordion {
    border-radius: 6px;
    border: 1px solid #dfe4e7;
}
.inset .accordion .item:first-child .btn {
    border-radius: 6px 6px 0 0 !important;
}
.inset .accordion .item:last-child .btn {
    border-radius: 0 0 6px 6px !important;
}
.modal.action-sheet {
    z-index: 200000;
}
.modal.action-sheet .modal-dialog {
    padding: 0;
    margin: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
    min-width: 100%;
    z-index: 12000;
    transform: translate(0, 100%);
}
.modal.action-sheet.show .modal-dialog {
    transform: translate(0, 0);
}
.modal.action-sheet .modal-content {
    box-shadow: none;
    border: 0;
    border-radius: 0;
}
.modal.action-sheet .modal-content .action-sheet-content {
    padding: 20px 16px;
    max-height: 460px;
    overflow: auto;
}
.modal.action-sheet .modal-content .modal-header {
    display: block;
    padding: 0 20px;
}
.modal.action-sheet .modal-content .modal-header .modal-title {
    margin: 0;
    text-align: center;
    display: block;
    font-size: 12px;
    padding: 10px 0;
    color: #282D33;
    font-weight: 500;
}
.modal.action-sheet .modal-content .modal-body {
    padding: 0;
}
.action-button-list {
    padding: 0;
    margin: 0;
}
.action-button-list > li {
    display: block;
}
.action-button-list > li .btn {
    display: flex;
    width: 100%;
    min-height: 50px;
    font-size: 16px;
    color: #282D33;
    line-height: 1.1em;
    justify-content: space-between;
    font-weight: 400;
    border-radius: 0 !important;
    padding: 10px 16px;
}
.action-button-list > li .btn:active, .action-button-list > li .btn.active {
    background: rgba(223, 228, 231, 0.3);
}
.action-button-list > li .btn.text-primary {
    color: #006FFF !important;
}
.action-button-list > li .btn.text-secondary {
    color: #8494A8 !important;
}
.action-button-list > li .btn.text-danger {
    color: #ff2d55 !important;
}
.action-button-list > li .btn.text-success {
    color: #1DCC70 !important;
}
.action-button-list > li .btn.text-warning {
    color: #FFB400 !important;
}
.action-button-list > li .btn.text-info {
    color: #754AED !important;
}
.action-button-list > li .btn.text-light {
    color: #FFF !important;
}
.action-button-list > li .btn.text-dark {
    color: #282D33 !important;
}
.action-button-list > li .btn > span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.action-button-list > li .btn .icon {
    width: 32px !important;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: -3px;
    margin-left: -5px;
    font-size: 24px;
    line-height: 1em;
}
.action-button-list > li.action-divider {
    height: 1px;
    background: #dfe4e7;
}
.action-sheet.inset .modal-dialog {
    padding: 16px;
}
.action-sheet.inset .modal-dialog .modal-content {
    border-radius: 16px;
}
.action-sheet.inset .action-button-list > li:last-child .btn {
    border-radius: 0 0 16px 16px !important;
}
.dialogbox .modal-dialog {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 12000;
    display: flex;
    overflow: auto;
    align-items: center;
    justify-content: center;
    /*transform: translate(0, 0) !important;*/
    transform: scale(0.8) !important;
}
.dialogbox .modal-dialog .modal-content {
    max-width: 300px;
    margin: auto;
    max-height: 560px;
    overflow: auto;
    border: 0;
    border-radius: 16px;
}
.dialogbox .modal-dialog .modal-content .btn-list .btn {
    padding: 0 10px;
    min-height: 54px;
    border-radius: 0;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #dfe4e7 !important;
    font-size: 16px;
}
.dialogbox .modal-dialog .modal-content .btn-list .btn:hover, .dialogbox .modal-dialog .modal-content .btn-list .btn:focus, .dialogbox .modal-dialog .modal-content .btn-list .btn:active, .dialogbox .modal-dialog .modal-content .btn-list .btn.active {
    background: rgba(223, 228, 231, 0.3) !important;
}
.dialogbox .modal-dialog .modal-content .btn-list .btn:last-child {
    border-radius: 0 0 16px 16px;
    border-bottom: 0 !important;
}
.dialogbox .modal-dialog .modal-content .btn-inline {
    display: flex;
}
.dialogbox .modal-dialog .modal-content .btn-inline .btn {
    width: 100%;
    border-radius: 0;
    min-height: 54px;
    border: 0 !important;
    border-right: 1px solid #dfe4e7 !important;
    font-size: 16px;
}
.dialogbox .modal-dialog .modal-content .btn-inline .btn:hover, .dialogbox .modal-dialog .modal-content .btn-inline .btn:focus, .dialogbox .modal-dialog .modal-content .btn-inline .btn:active, .dialogbox .modal-dialog .modal-content .btn-inline .btn.active {
    background: rgba(223, 228, 231, 0.3) !important;
}
.dialogbox .modal-dialog .modal-content .btn-inline .btn:last-child {
    border-right: 0 !important;
    border-radius: 0 0 16px 0 !important;
}
.dialogbox .modal-dialog .modal-content .btn-inline .btn:first-child {
    border-radius: 0 0 0 16px !important;
}
.dialogbox .modal-dialog .modal-content .modal-header {
    border: 0;
    padding: 20px 20px 10px 20px;
}
.dialogbox .modal-dialog .modal-content .modal-header .modal-title {
    color: #282D33;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
}
.dialogbox .modal-dialog .modal-content .modal-body {
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
}
.dialogbox .modal-dialog .modal-content .modal-footer {
    border: 0;
    border-top: 1px solid #dfe4e7;
    padding: 0;
    display: block;
    text-align: right;
}
.dialogbox.show .modal-dialog {
    /*transform: translate(0, 0) !important;*/
    transform: scale(1) !important;
}
.modal-icon {
    font-size: 60px;
    line-height: 1em;
    margin-top: 30px;
    margin-bottom: -10px;
    color: #006FFF;
    text-align: center;
}
.modalbox .modal-dialog {
    transform: translate(0, 100%) !important;
    min-width: 100%;
    margin: 0;
    transition: 0.5s all !important;
}
.modalbox .modal-dialog .modal-content {
    border-radius: 0;
    border: 0;
    height: 100vh;
    margin: auto;
    overflow: auto;
    padding-top: 56px;
}
.modalbox .modal-dialog .modal-content .modal-header {
    border: 0;
    min-height: 56px;
    padding: 10px 16px;
    display: flex;
    border-bottom: 1px solid #dfe4e7;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #FFF;
}
.modalbox .modal-dialog .modal-content .modal-header .modal-title {
    margin: 0;
    color: #282D33;
    font-size: 18px;
}
.modalbox .modal-dialog .modal-content .modal-body {
    padding: 20px 16px;
    min-height: calc(100vh - 56px);
    overflow: auto;
}
.modalbox.show .modal-dialog {
    transform: translate(0, 0) !important;
}
.panelbox .modal-dialog {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.panelbox .modal-dialog .modal-content {
    border: 0;
    border-radius: 0;
    width: 300px;
    height: 100vh;
    overflow: auto;
}
.panelbox .modal-dialog .modal-content .modal-header {
    border-bottom: 0;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}
.panelbox .modal-dialog .modal-content .modal-header .modal-title {
    color: #282D33;
}
.panelbox .modal-dialog .modal-content .modal-body {
    padding: 10px 16px;
}
.panelbox.show .modal-dialog {
    transform: translate(0, 0) !important;
}
.panelbox-left .modal-dialog {
    transform: translate(-100%, 0) !important;
}
.panelbox-right .modal-dialog {
    transform: translate(100%, 0) !important;
    left: auto;
    right: 0;
}
.tooltip .tooltip-inner {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 6px;
}
.dropdown .dropdown-menu,
.dropup .dropdown-menu {
    border: 1px solid #dfe4e7;
    min-width: 120px;
    padding: 8px 0;
    border-radius: 6px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.dropdown .dropdown-menu .dropdown-item,
.dropup .dropdown-menu .dropdown-item {
    padding: 9px 16px;
    line-height: 1.2em;
    color: #282D33;
    font-size: 16px;
}
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:active,
.dropup .dropdown-menu .dropdown-item:hover,
.dropup .dropdown-menu .dropdown-item:active {
    background: rgba(223, 228, 231, 0.5);
    color: #282D33;
}
.dropdown .dropdown-menu .dropdown-item .dropdown-divider,
.dropup .dropdown-menu .dropdown-item .dropdown-divider {
    border-top: 1px solid #dfe4e7;
}
.dropdown .dropdown-menu .dropdown-header,
.dropup .dropdown-menu .dropdown-header {
    padding: 9px 16px;
    color: #73767A;
    font-weight: 400;
    font-size: 12px;
}
.dropdown .dropdown-menu .text,
.dropup .dropdown-menu .text {
    padding: 9px 16px;
    color: #73767A;
}
.dropdown .dropdown-menu .icon,
.dropup .dropdown-menu .icon {
    font-size: 18px;
    margin-right: 4px;
    width: 20px;
    margin-bottom: -4px;
    justify-content: center;
    align-items: center;
    line-height: 1em;
    display: inline-flex;
    color: #282D33;
}
.appHeader .dropdown-menu {
    margin-top: -10px;
}
.dropdown-toggle:after {
    border-radius: 4px;
    margin-left: 7px;
}
.bg-primary {
    background: #006FFF !important;
    color: #FFF;
}
.bg-secondary {
    background: #8494A8 !important;
    color: #FFF;
}
.bg-success {
    background: #1DCC70 !important;
    color: #FFF;
}
.bg-danger {
    background: #ff2d55 !important;
    color: #FFF;
}
.bg-warning {
    background: #FFB400 !important;
    color: #FFF;
}
.bg-info {
    background: #754AED !important;
    color: #FFF;
}
.bg-light {
    background: #FFF !important;
}
.bg-dark {
    background: #282D33 !important;
    color: #FFF;
}
.bg-cyan {
    background: var(--cyan) !important;
    color: #FFF;
}
.text-primary,
a.text-primary {
    color: #006FFF !important;
}
.text-secondary,
a.text-secondary {
    color: #8494A8 !important;
}
.text-success,
a.text-success {
    color: #1DCC70 !important;
}
.text-danger,
a.text-danger {
    color: #ff2d55 !important;
}
.text-warning,
a.text-warning {
    color: #FFB400 !important;
}
.text-info,
a.text-info {
    color: #754AED !important;
}
.text-light,
a.text-light {
    color: #FFF !important;
}
.text-dark,
a.text-dark {
    color: #282D33 !important;
}
.alert {
    margin: 0;
    padding: 6px 16px;
    border: 0;
    font-size: 14px;
    border-radius: 6px;
}
.alert .close {
    text-shadow: none !important;
    outline: 0;
    opacity: 1;
    width: 40px;
    padding: 0;
    line-height: 1em;
    height: 36px !important;
}
.alert.alert-dismissible {
    padding-right: 56px;
}
.alert-primary {
    background: #006FFF;
    color: #fff;
    border: 1px solid #006FFF;
}
.alert-primary a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-primary .close {
    color: #FFF;
}
.alert-outline-primary {
    background: transparent;
    color: #006FFF;
    border: 1px solid #006FFF;
}
.alert-outline-primary a {
    color: #006FFF !important;
    text-decoration: underline !important;
}
.alert-outline-primary .close {
    color: #006FFF;
}
.alert-secondary {
    background: #8494A8;
    color: #fff;
    border: 1px solid #8494A8;
}
.alert-secondary a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-secondary .close {
    color: #FFF;
}
.alert-outline-secondary {
    background: transparent;
    color: #8494A8;
    border: 1px solid #8494A8;
}
.alert-outline-secondary a {
    color: #8494A8 !important;
    text-decoration: underline !important;
}
.alert-outline-secondary .close {
    color: #8494A8;
}
.alert-success {
    background: #1DCC70;
    color: #fff;
    border: 1px solid #1DCC70;
}
.alert-success a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-success .close {
    color: #FFF;
}
.alert-outline-success {
    background: transparent;
    color: #1DCC70;
    border: 1px solid #1DCC70;
}
.alert-outline-success a {
    color: #1DCC70 !important;
    text-decoration: underline !important;
}
.alert-outline-success .close {
    color: #1DCC70;
}
.alert-danger {
    background: #ff2d55;
    color: #fff;
    border: 1px solid #ff2d55;
}
.alert-danger a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-danger .close {
    color: #FFF;
}
.alert-outline-danger {
    background: transparent;
    color: #ff2d55;
    border: 1px solid #ff2d55;
}
.alert-outline-danger a {
    color: #ff2d55 !important;
    text-decoration: underline !important;
}
.alert-outline-danger .close {
    color: #ff2d55;
}
.alert-warning {
    background: #FFB400;
    color: #fff;
    border: 1px solid #FFB400;
}
.alert-warning a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-warning .close {
    color: #FFF;
}
.alert-outline-warning {
    background: transparent;
    color: #FFB400;
    border: 1px solid #FFB400;
}
.alert-outline-warning a {
    color: #FFB400 !important;
    text-decoration: underline !important;
}
.alert-outline-warning .close {
    color: #FFB400;
}
.alert-info {
    background: #754AED;
    color: #fff;
    border: 1px solid #754AED;
}
.alert-info a {
    color: #fff !important;
    text-decoration: underline;
}
.alert-info .close {
    color: #FFF;
}
.alert-outline-info {
    background: transparent;
    color: #754AED;
    border: 1px solid #754AED;
}
.alert-outline-info a {
    color: #754AED !important;
    text-decoration: underline !important;
}
.alert-outline-info .close {
    color: #754AED;
}
.alert-light {
    background: #FFF;
    color: #282D33;
}
.alert-dark {
    background: #333;
    color: #FFF;
}
.alert-dark a {
    color: #FFF !important;
    text-decoration: underline !important;
}
.alert-outline-dark {
    background: transparent;
    color: #333;
    border: 1px solid #333;
}
.table {
    color: #73767A;
    margin: 0;
    font-size: 14px;
    line-height: 1.4em;
}
.table thead th {
    border-top: 0;
    border-bottom: 0;
    color: #282D33;
    font-weight: 500;
}
.table td,
.table th {
    border-top: 1px solid #dfe4e7;
}
.table-dark {
    border-radius: 0;
}
.table-dark thead th {
    color: #fff;
    border-top: 0;
}
.table-dark td,
.table-dark th {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}
.table-striped tbody tr:nth-of-type(odd) {
    background: rgba(223, 228, 231, 0.4);
}
.table-bordered {
    border-radius: 0;
}
.table-bordered td,
.table-bordered th {
    border-color: #dfe4e7;
}
.form-group {
    width: 100%;
}
.form-group .label {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    color: #282D33;
    display: block;
    line-height: 1.2em;
}
.form-group textarea {
    resize: none;
}
.form-group .input-info {
    font-size: 12px;
    color: #A9ABAD;
}
.form-group .clear-input {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    color: #73767A;
    height: 38px;
    font-size: 22px;
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 32px;
    opacity: 0.5;
    display: none;
}
.form-group .clear-input:hover, .form-group .clear-input:active {
    opacity: 0.8;
}
.form-group .input-wrapper {
    position: relative;
}
.form-group .input-wrapper.not-empty .clear-input {
    display: flex;
}
.form-group .input-wrapper.active .label {
    color: #006FFF !important;
}
.form-group.basic {
    padding: 8px 0;
    margin: 0;
}
.form-group.basic .form-control,
.form-group.basic .custom-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #dfe4e7;
    padding: 0 30px 0 0;
    border-radius: 0;
    height: 40px;
    color: #282D33;
    font-size: 16px;
}
.form-group.basic .form-control:focus,
.form-group.basic .custom-select:focus {
    border-bottom-color: #006FFF;
    box-shadow: inset 0 -1px 0 0 #006FFF;
}
.form-group.basic textarea.form-control {
    height: auto;
    padding: 7px 40px 7px 0;
}
.form-group.basic.animated .label {
    margin-top: 20px;
    opacity: 0;
    top: -3px;
    transition: 0.2s all;
    position: absolute;
}
.form-group.basic.animated .input-wrapper {
    padding-top: 5px;
}
.form-group.basic.animated .input-wrapper.not-empty .label {
    margin-top: 0;
    opacity: 1;
}
.form-group.boxed {
    margin: 0;
    padding: 8px 0;
}
.form-group.boxed .form-control {
    background: #FFF;
    box-shadow: none;
    height: 42px;
    border-radius: 6px;
    padding: 0 40px 0 16px;
}
.form-group.boxed .form-control:focus {
    border-color: #006FFF;
}
.form-group.boxed textarea.form-control {
    height: auto;
    padding: 7px 40px 7px 16px;
}
.form-group.boxed .clear-input {
    right: 0;
    height: 42px;
    width: 40px;
}
.form-group.boxed .label {
    margin-bottom: 8px;
}
.nav-tabs {
    width: 100%;
}
.nav-tabs.style1 {
    border: 0;
    background: rgba(223, 228, 231, 0.4);
    border-radius: 6px;
    display: flex;
}
.nav-tabs.style1 .nav-item {
    flex: 1;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-tabs.style1 .nav-item .nav-link {
    color: #73767A;
    font-weight: 500;
    font-size: 14px;
    border: 0 !important;
    line-height: 1.2em;
    width: 100%;
    border-radius: 6px;
    padding: 6px 10px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px !important;
}
.nav-tabs.style1 .nav-item .nav-link .icon {
    margin-right: 8px;
    margin-left: 8px;
    line-height: 1em;
    font-size: 18px;
}
.nav-tabs.style1 .nav-item .nav-link.active {
    color: #282D33;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12), 0 2px 1px 0 rgba(0, 0, 0, 0.04);
}
.nav-tabs {
    width: 100%;
}
.nav-tabs.lined {
    border: 0;
    background: transparent;
    border-radius: 0;
    display: flex;
}
.nav-tabs.lined .nav-item {
    flex: 1;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-tabs.lined .nav-item .nav-link {
    color: #73767A;
    font-weight: 500;
    font-size: 14px;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    line-height: 1.2em;
    width: 100%;
    border-radius: 0;
    padding: 6px 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    border-bottom: 2px solid;
}
.nav-tabs.lined .nav-item .nav-link .icon {
    margin-right: 8px;
    margin-left: 8px;
    line-height: 1em;
    font-size: 18px;
}
.nav-tabs.lined .nav-item .nav-link.active {
    color: #006FFF;
    border-bottom-color: #006FFF !important;
}
.custom-control .custom-control-label {
    padding-left: 10px;
    padding-top: 2px;
    color: #282D33;
}
.custom-control .custom-control-label:before {
    box-shadow: none !important;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    margin-top: -2px;
    background: transparent;
    border-color: #dfe4e7;
}
.custom-control .custom-control-label:after {
    margin-top: 1px;
    margin-left: 3px;
}
.custom-control .custom-control-label:active:before {
    background: #fff !important;
}
.custom-control .custom-control-input:checked ~ .custom-control-label:before {
    background: #006FFF !important;
    border-color: #006FFF !important;
}
.custom-control .custom-control-input:checked ~ .custom-control-label:after {
    width: 16px;
    height: 16px;
    background-size: 12px 12px;
}
.custom-control .custom-control-input:checked ~ .custom-control-label:before {
    border-radius: 100%;
}
.custom-radio .custom-control-label:before {
    border-radius: 100%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label:before {
    border-radius: 100%;
}
.input-list .custom-control {
    padding: 0;
}
.input-list .custom-control:after {
    content: "";
    height: 1px;
    background: #dfe4e7;
    display: block;
    margin-left: 54px;
}
.input-list .custom-control-label {
    width: 100%;
    padding: 10px 20px 10px 54px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s all;
}
.input-list .custom-control-label:active {
    background: rgba(223, 228, 231, 0.3);
}
.input-list .custom-control-label:before, .input-list .custom-control-label:after {
    top: 50%;
    left: 16px;
    transform: translate(0%, -50%);
    margin: 0;
}
.input-list .custom-control-label:after {
    width: 22px;
    height: 22px;
    margin: 0 0 0 3px;
}
.input-list .custom-control:last-child:after {
    display: none;
}
.custom-switch .custom-control-label {
    width: 56px;
    height: 30px;
}
.custom-switch .custom-control-label:before {
    margin: 0;
    left: 0;
    top: 0;
    border-radius: 100px;
    width: 56px;
    height: 30px;
    border-color: #a5b3bb;
    background: rgba(223, 228, 231, 0.5);
}
.custom-switch .custom-control-label:after {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    margin-top: -1px;
    margin-left: 1px;
    left: 3px;
    top: 4px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15), 0 2px 1px 0 rgba(0, 0, 0, 0.05);
}
.custom-switch .custom-control-label:active:before {
    background: rgba(223, 228, 231, 0.5) !important;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:before {
    border-radius: 100px;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    width: 24px;
    height: 24px;
    border-radius: 100px;
    left: 16px;
}
.message-divider {
    font-size: 12px;
    text-align: center;
    padding: 5px 0;
    color: #A9ABAD;
}
.message-item {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2px 16px;
    margin-right: 60px;
}
.message-item .bubble {
    padding: 10px 10px;
    background: #dfe4e7;
    border-radius: 16px 16px 16px 0;
    color: #282D33;
    display: inline-block;
    margin-top: 4px;
    line-height: 1.4em;
}
.message-item .title {
    font-size: 12px;
    font-weight: 500;
    color: #73767A;
    line-height: 1.2em;
    padding: 0 0 0 10px;
}
.message-item .footer {
    font-size: 12px;
    padding: 0 10px;
    text-align: right;
    line-height: 1em;
    margin-top: 5px;
    color: #282D33;
    opacity: .4;
    height: 14px;
}
.message-item .avatar {
    margin-right: 10px;
    width: 32px;
    height: auto;
    border-radius: 100%;
    margin-bottom: 18px;
}
.message-item.user {
    justify-content: flex-end;
    margin-right: 0;
    margin-left: 60px;
}
.message-item.user .bubble {
    background: #006FFF;
    color: #FFF;
    border-radius: 16px 16px 0 16px;
}
.chatFooter {
    height: 56px;
    background: #FFF;
    border-top: 1px solid #dfe4e7;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
}
.chatFooter .form-group {
    width: calc(100% - 100px);
}
.chatFooter form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.progress {
    height: 14px;
}
.progress-bar {
    background: #006FFF;
    height: 14px;
    line-height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
}
.chips {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    overflow: visible;
    margin: 0;
    height: auto;
    max-width: 50%;
    background-color: transparent;
    border-width: 0;
    vertical-align: inherit;
}
.chips > .chip {
    opacity: 0.80;
    filter: alpha(opacity=80);
    display: inline-flex;
    text-align: left;
    flex-direction: column;
    overflow: hidden;
}
.chip {
    background: #dfe4e7;
    font-size: 13px;
    color: #282D33;
    line-height: 1em;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-radius: 100px;
}
.chip .chip-label {
    padding: 0 12px;
}
.chip.chip-outline {
    background: transparent;
    box-shadow: inset 0 0 0 1px #dfe4e7;
}
.chip.chip-media {
    position: relative;
    padding-left: 20px;
}
.chip.chip-media img {
    width: 25px;
    height: 25px;
    border-radius: 100px;
    position: absolute;
    left: 0;
    top: 0;
}
.chip-sm.chip-media img {
    width: 20px;
    height: 20px;
}
.chip .chip-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 26px;
    height: 26px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #73767A;
    color: #fff;
    font-size: 14px;
}
.chip .chip-delete {
    width: 26px;
    margin-left: -10px;
    height: 26px;
    display: inline-flex;
    color: #282D33;
    opacity: 0.7;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 100px;
}
.chip .chip-delete:hover, .chip .chip-delete:active {
    opacity: 1;
}
.chip-sm {
    height: 20px;
    font-size: 11px !important;
}
.chip-sm .chip-icon {
    height: 20px;
    width: 20px;
}
.chip-sm .chip-label {
    padding: 0 6px;
    line-height: 20px !important;
}
.chip-primary {
    background: #006FFF;
    color: #fff;
}
.chip-primary .chip-delete {
    color: #fff;
}
.chip-primary.chip-outline {
    color: #006FFF;
    box-shadow: inset 0 0 0 1px #006FFF;
}
.chip-danger {
    background: #ff2d55;
    color: #fff;
}
.chip-danger .chip-delete {
    color: #fff;
}
.chip-danger.chip-outline {
    color: #ff2d55;
    box-shadow: inset 0 0 0 1px #ff2d55;
}
.chip-success {
    background: #1DCC70;
    color: #fff;
}
.chip-success .chip-delete {
    color: #fff;
}
.chip-success.chip-outline {
    color: #1DCC70;
    box-shadow: inset 0 0 0 1px #1DCC70;
}
.chip-warning {
    background: #FFB400;
    color: #fff;
}
.chip-warning .chip-delete {
    color: #fff;
}
.chip-warning.chip-outline {
    color: #FFB400;
    box-shadow: inset 0 0 0 1px #FFB400;
}
.chip-info {
    background: #754AED;
    color: #fff;
}
.chip-info .chip-delete {
    color: #fff;
}
.chip-info.chip-outline {
    color: #754AED;
    box-shadow: inset 0 0 0 1px #754AED;
}
.chip-light {
    background: #fff;
    color: #222;
}
.chip-light .chip-delete {
    color: #222;
}
.chip-light.chip-outline {
    color: #fff;
    box-shadow: inset 0 0 0 1px #fff;
}
.chip-dark {
    background: #222;
    color: #fff;
}
.chip-dark .chip-delete {
    color: #fff;
}
.chip-dark.chip-outline {
    color: #222;
    box-shadow: inset 0 0 0 1px #222;
}
#search {
    display: none;
    padding: 10px 16px 0 16px;
}
.search-form {
    display: block;
    width: 100%;
}
.search-box {
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.search-box .form-control {
    box-shadow: none;
    border-radius: 6px;
    border: 1px solid #c2cbd1;
    height: 36px;
    padding: 0 16px 0 36px;
}
.search-box .form-control:focus {
    border-color: #b3bfc6;
}
.search-box .form-control:focus ~ .input-icon {
    color: #282D33;
}
.search-box .icon {
    font-size: 26px;
    line-height: 1em;
    margin: 0;
}
.search-box .close {
    opacity: 1;
    color: #A9ABAD;
}
.search-box .input-icon {
    font-size: 26px;
    position: absolute;
    left: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A9ABAD;
    top: 0;
}
.carousel-slider {
    text-align: center;
}
.carousel-button-footer {
    padding: 16px;
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
}
.modal-icon .iconfont {
    font-size: 60px !important;
}
/****/
.bg-mint {
    background-color: #249e92 !important;
    color: #fff;
}
.mint,
.text-mint,
a.text-mint:hover,
a.text-mint:focus {
    color: #1c7d74 !important;
}
.btn-mint,
.btn-mint:focus,
.btn-mint.focus {
    background-color: #249e92 !important;
    border-color: #26a69a;
}
.btn-mint:hover,
.btn-mint:focus:hover,
.btn-mint.focus:hover,
.btn-mint:active:hover,
.btn-mint:focus:active,
.open > .btn-mint.dropdown-toggle,
.open > .btn-mint.dropdown-toggle:hover,
.open > .btn-mint.dropdown-toggle:focus,
.open > .btn-mint.dropdown-toggle.focus,
.open > .btn-mint.dropdown-toggle:active {
    background-color: #1d8177 !important;
    border-color: #1f897f;
}
.btn-mint.no-border:hover,
.btn-mint.no-border:active {
    border-color: #629B58;
}
.btn-mint.no-hover:hover,
.btn-mint.no-hover:active {
    background-color: #1f897f !important;
}
.open > .btn-mint.dropdown-toggle.active,
.btn-mint.active,
.btn-mint.focus.active,
.btn-mint.active:focus,
.btn-mint.active:hover {
    background-color: #1d8177 !important;
    border-color: #1f897f;
}
.btn-mint.no-border.active {
    background-color: #1d8177 !important;
    border-color: #1f897f;
}
.btn-mint.disabled,
.btn-mint[disabled],
fieldset[disabled] .btn-mint,
.btn-mint.disabled:hover,
.btn-mint[disabled]:hover,
fieldset[disabled] .btn-mint:hover,
.btn-mint.disabled:focus,
.btn-mint[disabled]:focus,
fieldset[disabled] .btn-mint:focus,
.btn-mint.disabled:active,
.btn-mint[disabled]:active,
fieldset[disabled] .btn-mint:active,
.btn-mint.disabled.active,
.btn-mint[disabled].active,
fieldset[disabled] .btn-mint.active {
    background-color: #249e92 !important;
    border-color: #249e92;
}
.ribbon {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100px;
    height: 100px;
    pointer-events: none;
}
.ribbon:after,
.ribbon:before {
    position: absolute;
    z-index: -1;
    top: 2px;
    left: 77px;
    width: 10px;
    height: 10px;
    content: '';
    -webkit-transform: rotate(-45deg);
    background-color: rgba(0, 0, 0, .3);
}
.ribbon:before {
    top: 79px;
    left: 0;
}
.ribbon > div {
    position: relative;
    z-index: 100;
    top: 8px;
    left: -35px;
    width: 100px;
    padding: 0;
    -webkit-transform: rotate(-45deg);
    text-align: center;
    color: #fff;
    opacity: 0.8;
    filter: alpha(opacity=80);
}
.ribbon-tr {
    right: 0;
    left: auto;
}
.ribbon-tr:after,
.ribbon-tr:before {
    right: 79px;
    left: auto;
    -webkit-transform: rotate(45deg);
}
.ribbon-tr:before {
    top: 79px;
    right: 2px;
}
.ribbon-tr > div {
    right: -30px;
    left: auto;
    -webkit-transform: rotate(45deg);
}
.hidden {
    display: none;
}
.hide {
    display: none !important;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: .6 !important;
}
.card-footer .prop {
    justify-content: space-between;
}
.card-widget {
    border: none;
    position: relative;
}
.widget-user .widget-user-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    -webkit-filter: blur(3px);
}
.widget-user .widget-tool {
    position: absolute;
    right: 10px;
    -webkit-box-flex: 1;
    flex: 1;
    z-index: 9;
}
.widget-user .widget-tool .iconfont {
    font-size: 30px;
}
.widget-user .widget-user-header {
    padding: 1rem;
    height: 120px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.widget-user .widget-user-username {
    position: absolute;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 25px;
    font-weight: 300;
}
.widget-user .widget-user-note {
    position: absolute;
    margin-top: 30px;
}
.widget-user .widget-user-desc {
    position: absolute;
    margin-top: 5px;
}
.widget-user .widget-user-image {
    position: absolute;
    top: 65px;
    left: 50%;
    margin-left: -45px;
}
.widget-user .widget-user-cover {
    position: absolute;
    top: 65px;
    right: 5%;
    margin-left: -45px;
}
.widget-user .widget-user-image > img, .widget-user .widget-user-cover > img {
    width: 90px;
    height: auto;
    border: 3px solid #efefef;
}
.widget-user .card-footer.note {
    border-top: 0;
    padding-top: 40px;
}
.widget-user .card-footer.desc {
    border-top: 0;
    padding-right: 110px;
    min-height: 90px;
}
.blink-purple {
    text-shadow: 0 0 5px #f562ff, 0 0 15px #f562ff, 0 0 25px #f562ff,
    0 0 20px #f562ff, 0 0 30px #890092, 0 0 80px #890092, 0 0 80px #890092;
    font-family: "Microsoft YaHei UI Light", cursive;
    animation: blink 12s infinite;
    -webkit-animation: blink 12s infinite;
}
.blink-warning {
    text-shadow: 0 0 5px #ffa500, 0 0 15px #ffa500, 0 0 20px #ffa500, 0 0 40px #ffa500, 0 0 60px #ff0000, 0 0 10px #ff8d00, 0 0 98px #ff0000;
    color: #fff6a9;
}
.blink-white {
    text-shadow: 0 0 5px #eeeeee, 0 0 15px #ffffff, 0 0 20px #ffffff, 0 0 40px #ffffff, 0 0 60px #ffffff, 0 0 10px #ffffff, 0 0 98px #ffffff;
    color: #ff8d00;
}
.card .title {
    display: block;
    line-height: 24px;
    height: 24px;
    width: 100%;
    position: relative;
    bottom: 0;
    background-color: rgba(0, 0, 0, .2);
    text-align: center;
    color: #FFF;
    font-weight: bold;
    font-size: 12px;
    margin-top: -24px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}
.grid2,
.grid3,
.grid4 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    margin: 0 1%;
    padding: 0 2%;
    float: left;
    border-left: 1px solid #E3E3E3;
}
.grid2:first-child,
.grid3:first-child,
.grid4:first-child {
    border-left: none;
}
.grid2 {
    width: 48%;
}
.grid3 {
    width: 31.33%;
}
.grid4 {
    width: 23%;
    padding: 0 1%;
}
.bigger {
    font-size: 110% !important;
}
.bigger-125 {
    font-size: 125%
}
.bigger-150 {
    font-size: 150%
}
.fz-64 {
    font-size: 64px !important;
}
.fz-32 {
    font-size: 32px !important;
}
.fz-24 {
    font-size: 24px !important;
}
.fz-16 {
    font-size: 16px !important;
}
.fz-12 {
    font-size: 12px !important;
}
.thanks ul {
    height: 30px;
    overflow: hidden;
    margin: 2px !important;
}
.thanks li {
    height: 30px;
    text-indent: 5px;
    font-size: 12px;
    line-height: 30px;
    list-style: none
}
.pageTitle a {
    position: relative;
}
.modal-content .btn.close {
    padding: 0.5rem;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    filter: alpha(opacity=50);
}
.pageTitle .icon {
    position: absolute !important;
    top: -5px;
    right: -25px;
    padding: 1px 3px;
    text-align: center;
    color: #ff1440;
}
.pageTitle .mask {
    font-size: 34px;
    top: auto;
    bottom: -6px;
    left: -24px;
    text-align: center;
    color: #08e2ffb5;
}
.pics .plus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    line-height: 1.5;
    font-size: 1.5rem;
    color: #fff;
}
.steps {
    list-style: none;
    display: table;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
.steps > li {
    display: table-cell;
    text-align: center;
    width: 1%;
}
.steps > li .step {
    border: 5px solid #CED1D6;
    color: #546474;
    font-size: 15px;
    border-radius: 100%;
    background-color: #FFF;
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 30px;
    text-align: center;
}
.steps > li:before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    font-size: 0;
    overflow: hidden;
    border-top: 4px solid #CED1D6;
    position: relative;
    top: 21px;
    z-index: 1;
}
.steps > li.last-child:before {
    max-width: 50%;
    width: 50%;
}
.steps > li:last-child:before {
    max-width: 50%;
    width: 50%;
}
.steps > li:first-child:before {
    max-width: 51%;
    left: 50%;
}
.steps > li.active:before,
.steps > li.complete:before,
.steps > li.active .step,
.steps > li.complete .step {
    border-color: #5293C4;
}
.steps > li.complete .step {
    cursor: default;
    color: #FFF;
    -webkit-transition: transform ease 0.1s;
    -o-transition: transform ease 0.1s;
    transition: transform ease 0.1s;
}
.steps > li.complete .step:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    content: "\e618";
    background-color: #FFF;
    z-index: 3;
    font-family: 'iconfont';
    font-size: 17px;
    color: #87BA21;
}
.steps > li.complete:hover .step {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    border-color: #80afd4;
}
.steps > li.complete:hover:before {
    border-color: #80afd4;
}
.steps > li .title {
    display: block;
    margin-top: 4px;
    max-width: 100%;
    color: #949EA7;
    font-size: 14px;
    z-index: 104;
    text-align: center;
    table-layout: fixed;
    word-wrap: break-word;
}
.steps > li.complete .title,
.steps > li.active .title {
    color: #2B3D53;
}
.step-content {
    position: relative;
}
.step-content .step-pane {
    display: none;
    min-height: 200px;
    padding: 4px 8px 12px;
}
.step-content .step-pane.active {
    display: block;
}
.banner {
    margin-top: 4px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner :first-child {
    display: inline-block;
    background: #F7F7F7;
    padding: 0 8px;
    color: #5090C1;
    font-size: 13px;
}
.banner:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px dotted #A6C4DB;
}
.select-group {
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.select-group-vertical {
    -ms-flex-direction: column;
    flex-direction: column;
}
.select-group-item {
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}
.select-group:not(.select-group-vertical) > .select-group-item + .select-group-item {
    margin-left: -1px;
}
.select-group:not(.select-group-vertical) > .select-group-item:not(:first-child) .select-group-button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.select-group:not(.select-group-vertical) > .select-group-item:not(:last-child) .select-group-button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.select-group-vertical > .select-group-item:not(:last-child) {
    margin-bottom: 0;
}
.select-group-vertical > .select-group-item + .select-group-item {
    margin-top: -1px;
    margin-left: 0;
}
.select-group-vertical > .select-group-item:not(:first-child) .select-group-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select-group-vertical > .select-group-item:not(:last-child) .select-group-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select-group-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.select-group-button {
    display: block;
    border: 1px solid rgba(0, 40, 100, 0.12);
    text-align: center;
    padding: 0.375rem 1rem;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
    color: #9aa0ac;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.9375rem;
    line-height: 1.5rem;
    min-width: 2.375rem;
}
.select-group-button-icon {
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 1rem;
}
.select-group-input:checked + .select-group-button {
    border-color: #467fcf;
    z-index: 1;
    color: #467fcf;
    background: #edf2fa;
}
.select-group-input:focus + .select-group-button {
    border-color: #467fcf;
    z-index: 2;
    color: #467fcf;
    box-shadow: 0 0 0 2px rgba(70, 127, 207, 0.25);
}
.select-group-pills {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: start;
    align-items: flex-start;
}
.select-group-pills .select-group-item {
    margin-right: .5rem;
    -ms-flex-positive: 0;
    flex-grow: 0;
}
.select-group-pills .select-group-button {
    border-radius: 50px !important;
}
.timeline {
    position: relative;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}
.timeline:before {
    background-color: #e9ecef;
    position: absolute;
    display: block;
    content: '';
    width: 1px;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 4px;
}
.timeline-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding-left: 2rem;
    margin: .5rem 0;
}
.timeline-item:first-child:before, .timeline-item:last-child:before {
    content: '';
    position: absolute;
    background: #fff;
    width: 1px;
    left: .25rem;
}
.timeline-item:first-child {
    margin-top: 0;
}
.timeline-item:first-child:before {
    top: 0;
    height: .5rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-item:last-child:before {
    top: .5rem;
    bottom: 0;
}
.timeline-badge {
    position: absolute;
    display: block;
    width: 0.4375rem;
    height: 0.4375rem;
    left: 1px;
    top: .5rem;
    border-radius: 100%;
    border: 1px solid #fff;
    background: #adb5bd;
}
.timeline-time {
    white-space: nowrap;
    margin-left: auto;
    color: #9aa0ac;
    font-size: 87.5%;
}
.tag {
    font-size: 0.75rem;
    color: #6e7687;
    background-color: #e9ecef;
    border-radius: 3px;
    padding: 0 .5rem;
    line-height: 2em;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: default;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
a.tag {
    text-decoration: none;
    cursor: pointer;
    transition: .3s color, .3s background;
}
a.tag:hover {
    background-color: rgba(110, 118, 135, 0.2);
    color: inherit;
}
.tag-addon {
    display: inline-block;
    padding: 0 .5rem;
    color: inherit;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.06);
    margin: 0 -.5rem 0 .5rem;
    text-align: center;
    min-width: 1.5rem;
}
.tag-addon:last-child {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.tag-addon i {
    vertical-align: middle;
    margin: 0 -.25rem;
}
a.tag-addon {
    text-decoration: none;
    cursor: pointer;
    transition: .3s color, .3s background;
}
a.tag-addon:hover {
    background: rgba(0, 0, 0, 0.16);
    color: inherit;
}
.tag-avatar {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 3px 0 0 3px !important;
    margin: 0 .5rem 0 -.5rem;
}
.tag-blue {
    background-color: #467fcf;
    color: #fff;
}
.tag-indigo {
    background-color: #6574cd;
    color: #fff;
}
.tag-purple {
    background-color: #a55eea;
    color: #fff;
}
.tag-pink {
    background-color: #f66d9b;
    color: #fff;
}
.tag-red {
    background-color: #cd201f;
    color: #fff;
}
.tag-orange {
    background-color: #fd9644;
    color: #fff;
}
.tag-yellow {
    background-color: #f1c40f;
    color: #fff;
}
.tag-green {
    background-color: #5eba00;
    color: #fff;
}
.tag-teal {
    background-color: #2bcbba;
    color: #fff;
}
.tag-cyan {
    background-color: #17a2b8;
    color: #fff;
}
.tag-white {
    background-color: #fff;
    color: #fff;
}
.tag-gray {
    background-color: #868e96;
    color: #fff;
}
.tag-gray-dark {
    background-color: #343a40;
    color: #fff;
}
.tag-azure {
    background-color: #45aaf2;
    color: #fff;
}
.tag-lime {
    background-color: #7bd235;
    color: #fff;
}
.tag-primary {
    background-color: #467fcf;
    color: #fff;
}
.tag-secondary {
    background-color: #868e96;
    color: #fff;
}
.tag-success {
    background-color: #5eba00;
    color: #fff;
}
.tag-info {
    background-color: #45aaf2;
    color: #fff;
}
.tag-warning {
    background-color: #f1c40f;
    color: #fff;
}
.tag-danger {
    background-color: #cd201f;
    color: #fff;
}
.tag-light {
    background-color: #f8f9fa;
    color: #fff;
}
.tag-dark {
    background-color: #343a40;
    color: #fff;
}
.tag-rounded {
    border-radius: 50px;
}
.tag-rounded .tag-avatar {
    border-radius: 50px;
}
.tags {
    margin-bottom: -.5rem;
    font-size: 0;
}
.tags > .tag {
    margin-bottom: .5rem;
}
.tags > .tag:not(:last-child) {
    margin-right: .5rem;
}
.hr {
    display: block;
    height: 0;
    overflow: hidden;
    font-size: 0;
    border-width: 1px 0 0 0;
    border-top: 1px solid #E3E3E3;
    margin: 12px 0;
    border-top-color: rgba(0, 0, 0, 0.11);
}
.hr-double {
    height: 3px;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    border-top-color: rgba(0, 0, 0, 0.11);
    border-bottom-color: rgba(0, 0, 0, 0.11);
}
.hr.dotted,
.hr-dotted {
    border-style: dotted;
}
.hr-32,
.hr32 {
    margin: 32px 0;
}
.hr-30,
.hr30 {
    margin: 30px 0;
}
.hr-28,
.hr28 {
    margin: 28px 0;
}
.hr-26,
.hr26 {
    margin: 26px 0;
}
.hr-24,
.hr24 {
    margin: 24px 0;
}
.hr-22,
.hr22 {
    margin: 22px 0;
}
.hr-20,
.hr20 {
    margin: 20px 0;
}
.hr-18,
.hr18 {
    margin: 18px 0;
}
.hr-16,
.hr16 {
    margin: 16px 0;
}
.hr-14,
.hr14 {
    margin: 14px 0;
}
.hr-12,
.hr12 {
    margin: 12px 0;
}
.hr-10,
.hr10 {
    margin: 10px 0;
}
.hr-8,
.hr8 {
    margin: 8px 0;
}
.hr-6,
.hr6 {
    margin: 6px 0;
}
.hr-4,
.hr4 {
    margin: 4px 0;
}
.hr-2,
.hr2 {
    margin: 2px 0;
}
.custom-file-input:lang(zh) ~ .custom-file-label::after {
    content: "打开相册";
}
.custom-file-label::after {
    content: "打开相册";
}
.bottom {
    position: fixed;
    bottom: 0;
}
/*颜色补充*/
.bg-purple {
    background-color: #9585bf !important;
    color: #fff;
}
.border-purple {
    border-color: #9585bf !important;
}
.chip-purple {
    background: #9585bf;
    color: #fff;
}
.chip-purple.chip-outline {
    color: #9585bf;
    box-shadow: inset 0 0 0 1px #9585bf;
}
.m-01 {
    margin: 1px;
}
@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}
@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}
@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}
/**viewer**/
.viewer-zoom-in::before,
.viewer-zoom-out::before,
.viewer-one-to-one::before,
.viewer-reset::before,
.viewer-prev::before,
.viewer-play::before,
.viewer-next::before,
.viewer-rotate-left::before,
.viewer-rotate-right::before,
.viewer-flip-horizontal::before,
.viewer-flip-vertical::before,
.viewer-fullscreen::before,
.viewer-fullscreen-exit::before,
.viewer-close::before {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAAUBAMAAACkFT9wAAAAA3NCSVQICAjb4U/gAAAAMFBMVEX///////////////////////////////////////////////////////////////9Or7hAAAAAEHRSTlMAESIzRFVmd4iZqrvM3e7/dpUBFQAAAAlwSFlzAAAK6wAACusBgosNWgAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAGXSURBVEiJ7VRLToRAEC0jCMoornTpCUy8gAknIHMCkrkBNxhuMHMUFq4djjDxBC7YuRBXM3ESy267umiaT1ioMZGXAJXiva7X3dUNMGHCH4WfjiQGuZ3Z5OoRcB9fIj3QfaG+D0ycPVHgSR60FIzVTn1DBMBKhQAqOBdCd0vEsGqZqdQjR0E80H/nlVwju5l93NEYG8Q92AqGj5hqB9oDm3FKgCTqNRNWQa6yDi6uaCaQvNNvZDdHm1LPeHGNkaUQ9X2rRm3GWKM4ckuwiA0zhcoGO/BIcoJrNsNuznBOZlJY5k2FJ95h1lfDgFPqhQnE0Jg3IylV8os3liz3OkLDjW4GgZvnpmIpefsRZiDWC/NloWhG32NmJXm6cQfNJLxLgz0jFp2WH9yubTqlbap5deTLKaUjzLhlHA2aoZ5xZTuqehAfLrWZVgPXPEORib6xanQ2cBI5gw3M2RVvOxwPHG2DZygYHmJmmamPtjxKvDRBYWtlhrLiCpvr9C0ROy49g2cqGLrh+i49Z9uS/By87BeLTfg3+AQ8vfP2NY067QAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    color: transparent;
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    width: 20px;
}
.viewer-next {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    height: 100px;
    overflow: hidden;
    position: absolute;
    right: -70px;
    top: 40%;
    width: 100px;
}
.viewer-left {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    height: 100px;
    overflow: hidden;
    position: absolute;
    left: -70px;
    top: 40%;
    width: 100px;
}
.viewer-left::before {
    top: 40px;
    left: 70px;
    position: absolute;
}
.viewer-right {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 50%;
    cursor: pointer;
    height: 100px;
    overflow: hidden;
    position: absolute;
    right: -70px;
    top: 40%;
    width: 100px;
}
.viewer-right::before {
    left: 10px;
    top: 40px;
    position: absolute;
}
.img-gray {
    filter: grayscale(100%)
}
.divider {
    height: 1px;
    background: #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider .icon-box {
    background: #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    font-size: 18px;
}
.divider.inset {
    margin-left: 16px;
    margin-right: 16px;
}
.quick-close {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1000;
}
.pagination {
    padding: 0;
    text-align: center;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-item .page-link {
    background: #1E74FD;
    border: 0;
    color: #FFF;
    box-shadow: 0 !important;
    outline: 0 !important;
    margin: 0 4px;
    border-radius: 6px !important;
    font-size: 13px;
}
.pagination .page-item .page-link.active {
    box-shadow: none !important;
    padding: .2rem !important;
    background: none !important;
}
.pagination .page-item .page-link:focus {
    box-shadow: none !important;
}
.pagination.pagination-secondary .page-item .page-link {
    background: #FFF;
    color: #4F5050;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
.pagination.pagination-rounded .page-item .page-link {
    border-radius: 400px !important;
}
.pagination.pagination-square .page-item .page-link {
    border-radius: 0 !important;
}
.button.goTop,.autoDown {
    width: 32px;
    height: 32px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    color: #FFF;
    position: fixed;
    z-index: 9999;
    right: 8px;
    bottom: 50px;
    font-size: 18px;
    margin-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
}
/*.button.goTop:hover, .button.goTop:active {*/
/*    background: #617085;*/
/*}*/
.button.goTop.show, .button.autoDown.show {
    display: flex;
}
.button.autoDown {
    bottom: 90px;
}
.blog-post .title {
    padding: 0 8px;
    margin: 0 0 10px 0;
}
.blog-post .post-header {
    font-size: 11px;
    padding: 10px 0;
    margin: 8px 8px;
    color: #A1A1A2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
}
.blog-post .post-header a {
    color: #141515;
    font-weight: 700;
}
.blog-post .post-body {
    padding: 0 8px;
}
.profile-head {
    display: flex;
    align-items: center;
}
.profile-head .avatar {
    margin-right: 8px;
}
.profile-head .in .name {
    margin: 0 0 5px 0;
    font-weight: 500;
}
.profile-head .in .subtext {
    color: #A1A1A2;
    font-weight: 400;
    margin: 0;
}
.profile-info {
    font-size: 13px;
    line-height: 1.5em;
}
.profile-info .bio {
    color: #4F5050;
}
.profile-info .link {
    margin-top: 4px;
    color: #1E74FD;
}
.profile-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.profile-stats .item {
    font-size: 11px;
    line-height: 1.6em;
    padding: 5px;
    color: #4F5050;
    text-align: center;
}
.profile-stats .item:last-child {
    border-right-color: transparent;
}
.profile-stats .item strong {
    display: block;
    line-height: 1.4em;
    color: #141515;
    font-size: 17px;
}
.sidebar-buttons {
    background: #FFF;
    border-top: 1px solid #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: env(safe-area-inset-bottom);
}
.sidebar-buttons .button {
    float: 'left';
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #141515;
}
.sidebar-buttons .button:hover, .sidebar-buttons .button:active {
    background: rgba(225, 225, 225, 0.2);
}
.sidebar-buttons:last-child {
    border-right-color: transparent;
}
/* 自定义旋转类 */
.rotate-5 {
    transform: rotate(5deg);
}
.rotate-45 {
    transform: rotate(45deg);
}
.rotate-90 {
    transform: rotate(90deg);
}
.rotate-180 {
    transform: rotate(180deg);
}
.rotate-custom {
    transform: rotate(30deg); /* 自定义角度 */
}
div[aria-hidden="true"] {
    display: none !important;
}