
.appHeader {
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: env(safe-area-inset-top);
    left: 0;
    right: 0;
    z-index: 999;
    background: #FFF;
    color: #141515;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  }
  
  .appHeader:before {
    content: '';
    height: env(safe-area-inset-top);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #1E74FD;
  }
  
  .appHeader.no-border {
    border: 0;
    box-shadow: none;
  }
  
  .appHeader.transparent {
    background: transparent;
    box-shadow: none;
  }
  
  .appHeader .left,
  .appHeader .right {
    height: 56px;
    display: flex;
    align-items: center;
    position: absolute;
  }
  
  .appHeader .left i.bi,
  .appHeader .left i.icon,
  .appHeader .left ion-icon,
  .appHeader .right i.bi,
  .appHeader .right i.icon,
  .appHeader .right ion-icon {
    font-size: 26px;
    --ionicon-stroke-width: 36px;
  }
  
  .appHeader .left .headerButton,
  .appHeader .right .headerButton {
    min-width: 36px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #141515;
    position: relative;
  }
  
  .appHeader .left .headerButton .btn,
  .appHeader .right .headerButton .btn {
    font-size: 16px;
    height: 32px;
    padding: 0px 14px;
    font-weight: 400;
  }
  
  .appHeader .left .headerButton:active,
  .appHeader .right .headerButton:active {
    opacity: 0.6;
  }
  
  .appHeader .left {
    left: 8px;
    top: 0;
  }
  
  .appHeader .right {
    right: 8px;
    top: 0;
  }
  
  .appHeader .pageTitle {
    font-size: 17px;
    font-weight: 500;
    padding: 0 10px;
  }
  
  .appHeader .pageTitle .logo {
    max-height: 18px;
  }
  
  .appHeader.text-light {
    color: #fff;
  }
  
  .appHeader.text-light .headerButton,
  .appHeader.text-light .pageTitle {
    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: 56px;
    height: 56px;
    right: 0;
    width: 100%;
    padding: 5px 16px;
    margin-top: env(safe-area-inset-top);
    display: flex;
    align-items: center;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  }
  
  .header-large-title {
    padding: 0 16px;
  }
  
  .header-large-title .title {
    margin: 4px 0 0 0;
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1.3em;
  }
  
  .header-large-title .subtitle {
    font-size: 17px;
    font-weight: 400;
    margin: 6px 0 0 0;
    color: #141515;
    line-height: 1.6em;
  }
  
  .appHeader.scrolled {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    height: 0;
    transition: 0.1s all;
  }
  
  .appHeader.scrolled .pageTitle {
    opacity: 0;
  }
  
  .appHeader.scrolled.is-active {
    background: #FFF;
    min-height: 56px;
    border-bottom-color: #E1E1E1;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  }
  
  .appHeader.scrolled.is-active .pageTitle {
    opacity: 1;
  }
  
  .appHeader.scrolled.bg-primary {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-primary .headerButton {
    color: #1E74FD;
  }
  
  .appHeader.scrolled.bg-primary.is-active {
    background: #1E74FD !important;
  }
  
  .appHeader.scrolled.bg-primary.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-secondary {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-secondary .headerButton {
    color: #6C7C94;
  }
  
  .appHeader.scrolled.bg-secondary.is-active {
    background: #6C7C94 !important;
  }
  
  .appHeader.scrolled.bg-secondary.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-success {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-success .headerButton {
    color: #34C759;
  }
  
  .appHeader.scrolled.bg-success.is-active {
    background: #34C759 !important;
  }
  
  .appHeader.scrolled.bg-success.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-danger {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-danger .headerButton {
    color: #EC4433;
  }
  
  .appHeader.scrolled.bg-danger.is-active {
    background: #EC4433 !important;
  }
  
  .appHeader.scrolled.bg-danger.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-warning {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-warning .headerButton {
    color: #FE9500;
  }
  
  .appHeader.scrolled.bg-warning.is-active {
    background: #FE9500 !important;
  }
  
  .appHeader.scrolled.bg-warning.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-info {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-info .headerButton {
    color: #592BCA;
  }
  
  .appHeader.scrolled.bg-info.is-active {
    background: #592BCA !important;
  }
  
  .appHeader.scrolled.bg-info.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appHeader.scrolled.bg-dark {
    background: transparent !important;
    border-bottom: 0 !important;
  }
  
  .appHeader.scrolled.bg-dark .headerButton {
    color: #000;
  }
  
  .appHeader.scrolled.bg-dark.is-active {
    background: #000 !important;
  }
  
  .appHeader.scrolled.bg-dark.is-active .headerButton {
    color: #FFF !important;
  }
  
  .appBottomMenu {
    max-height: 5px;
    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 #E1E1E1;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .appBottomMenu.no-border {
    border: 0 !important;
    box-shadow: 0 !important;
  }
  
  .appBottomMenu.rounded {
    border-radius: 24px 24px 0 0 !important;
  }
  
  .appBottomMenu.rounded .item:before {
    display: none;
  }
  
  .appBottomMenu .item {
    font-size: 9px;
    letter-spacing: 0;
    text-align: center;
    width: 100%;
    height: 56px;
    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;
    text-align: center;
  }
  
  .appBottomMenu .item i.bi,
  .appBottomMenu .item i.icon,
  .appBottomMenu .item ion-icon {
    display: inline-flex;
    margin: 1px auto 3px auto;
    font-size: 26px;
    line-height: 1em;
    color: #141515;
    transition: none;
    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: #1E74FD;
  }
  
  .appBottomMenu .item .action-button.large {
    width: 60px;
    height: 60px;
    margin-top: -20px;
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .appBottomMenu .item .action-button i.bi,
  .appBottomMenu .item .action-button i.icon,
  .appBottomMenu .item .action-button ion-icon {
    color: #FFF !important;
    margin: 0 !important;
    line-height: 0 !important;
  }
  
  .appBottomMenu .item strong {
    margin-top: 4px;
    display: block;
    color: #141515;
    font-weight: 400;
    transition: none;
  }
  
  .appBottomMenu .item:active {
    opacity: .8;
  }
  
  .appBottomMenu .item.active:before {
    background: transparent;
  }
  
  .appBottomMenu .item.active i.bi,
  .appBottomMenu .item.active i.icon,
  .appBottomMenu .item.active ion-icon,
  .appBottomMenu .item.active strong {
    color: #1E74FD !important;
    font-weight: 500;
  }
  
  .appBottomMenu .item:hover i.bi,
  .appBottomMenu .item:hover i.icon,
  .appBottomMenu .item:hover ion-icon,
  .appBottomMenu .item:hover strong {
    color: #141515;
  }
  
  .appBottomMenu.text-light {
    color: #FFF;
  }
  
  .appBottomMenu.text-light .item {
    color: #FFF;
    opacity: .7;
  }
  
  .appBottomMenu.text-light .item i.bi,
  .appBottomMenu.text-light .item i.icon,
  .appBottomMenu.text-light .item ion-icon,
  .appBottomMenu.text-light .item strong {
    color: #FFF;
  }
  
  .appBottomMenu.text-light .item.active {
    opacity: 1;
  }
  
  .appBottomMenu.text-light .item.active i.bi,
  .appBottomMenu.text-light .item.active i.icon,
  .appBottomMenu.text-light .item.active ion-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;
  }
  
  .infinite-menu {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    margin: 0;
  }
  
  .infinite-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  
  .infinite-menu .item {
    display: inline-flex;
    flex: unset;
    margin: 0 5px 0 0;
    width: 20%;
  }
  
  #appCapsule {
    padding: 56px 0;
    margin-bottom: env(safe-area-inset-bottom);
    margin-top: env(safe-area-inset-top);
  }
  
  #appCapsule.extra-header-active {
    padding-top: 112px;
  }
  
  #appCapsule.full-height {
    min-height: 100vh;
  }
  
  .section {
    padding: 0 16px;
  }
  
  .section.full {
    padding: 0;
  }
  
  .wide-block {
    background: #fff;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .wide-block.transparent {
    background: transparent !important;
  }
  
  .section-title {
    font-size: 15px;
    padding: 6px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #141515;
    font-weight: 500;
  }
  
  .section-title.large {
    font-size: 24px;
    line-height: 1.2em;
    font-weight: 700;
  }
  
  .section-title.medium {
    font-size: 17px;
    font-weight: 700;
  }
  
  .content-header,
  .content-footer {
    font-size: 11px;
    color: #A1A1A2;
    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 #E1E1E1;
    border-radius: 6px;
  }
  
  .profileBox {
    width: 300px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    align-items: center;
    position: relative;
    background: rgb(183 183 183);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    margin-top: env(safe-area-inset-top);
    border-radius: 0px 25px 0px 0px;
  }
  
  .profileBox:before {
    background: #1E74FD;
    content: '';
    height: env(safe-area-inset-top);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
  }
  
  .profileBox .image-wrapper {
    margin-right: 16px;
    padding: 16px 0;
  }
  
  .profileBox .image-wrapper .imaged {
    width: 42px;
    height: 42px;
    border: 2px solid #FFF;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
  }
  
  .profileBox .in {
    line-height: 1.4em;
    padding: 16px 25px 16px 0;
  }
  
  .profileBox .in strong {
    display: block;
    font-weight: 500;
    color: rgb(48,48,48);
  }
  
  .profileBox .in .text-muted {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5) !important;
  }
  .sidebar-titulo {
      width: 300px;
      background: #FFF;
      border-top: 1px solid #E1E1E1;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      position: fixed;
      left: 0;
      bottom: 50px;
      right: 0;
      padding-bottom: env(safe-area-inset-bottom);
      color: #4F5050;
      padding: 2px 0px 0px 16px;
      font-size: 13px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }
  .sidebar-buttons {
    width: 300px;
    background: #FFF;
    border-top: 0px solid #E1E1E1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 50px;
    right: 0;
    padding-bottom: env(safe-area-inset-bottom);
  
  }
  
  .sidebar-buttons .button {
    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;
  }
  
  .close-sidebar-button {
    font-size: 22px;
    position: absolute;
    width: 36px;
    display: flex;
    align-items: center;
    border-radius: 100%;
    justify-content: center;
    height: 36px;
    right: 10px;
    top: 50%;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: -18px;
  }
  
  .close-sidebar-button:active {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .action-group {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0px 16px 10px 16px;
    background: #1E74FD;
  }
  
  .action-group .action-button {
    padding: 10px 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    line-height: 1em;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .action-group .action-button .iconbox {
    background: rgba(0, 0, 0, 0.3);
    width: 38px;
    height: 38px;
    margin: 0 auto 8px auto;
    border-radius: 100%;
    font-size: 18px;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .action-group .action-button:last-child {
    border-right: 0;
  }
  
  #sidebarPanel {
    padding: 0;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 0px 25px 0px 0px;
  }
  
  #sidebarPanel .offcanvas-body {
    padding: 0 0 70px 0;
    margin-top: 74px;
  }
  
  #sidebarPanel .modal-content {
    width: 300px;
    padding-top: env(safe-area-inset-top);
  }
  
  .panelbox-left .listview > li,
  .panelbox-right .listview > li {
    padding: 10px 16px;
  }
  
  .panelbox-left .link-listview > li,
  .panelbox-right .link-listview > li {
    padding: 0;
  }
  
  .panelbox-left .link-listview > li a,
  .panelbox-right .link-listview > li a {
    padding: 10px 36px 10px 16px;
  }
  
  .panelbox-left .image-listview > li,
  .panelbox-right .image-listview > li {
    padding: 0;
  }
  
  .panelbox-left .image-listview > li .item,
  .panelbox-right .image-listview > li .item {
    padding: 10px 16px;
  }
  
  .panelbox-left .image-listview > li a.item,
  .panelbox-right .image-listview > li a.item {
    padding-right: 36px;
  }
  
  .sidebar-close {
    position: absolute;
    right: 10px;
  }
  
  .appFooter {
    border-top: 1px solid #E1E1E1;
    padding: 24px 16px;
    font-size: 12px;
    text-align: center;
    line-height: 1.2em;
    background: #fff;
  }
  
  .appFooter .footer-title {
    font-weight: 500;
    color: #141515;
    margin-bottom: 8px;
  }
  
  .appFooter .btn {
    margin: 0 5px;
  }
  
  .fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    min-height: 84px;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .fixed-footer > div {
    width: 100%;
  }
  
  .fixed-footer.transparent {
    background: transparent !important;
  }
  
  .footer-logo {
    height: 16px;
  }
  
  .footer-link {
    padding: 0;
    border-top: 1px solid rgba(225, 225, 225, 0.5);
    border-bottom: 1px solid rgba(225, 225, 225, 0.5);
    margin-left: -16px;
    margin-right: -16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .footer-link a {
    flex: 1;
    padding: 12px 2px;
    width: 100%;
    color: #4F5050;
    display: block;
  }
  
  .footer-link a span {
    display: block;
  }
  
  .footer-link a i.bi,
  .footer-link a i.icon,
  .footer-link a ion-icon {
    font-size: 24px;
    margin-bottom: 4px;
  }
  
  .exampleBox {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E1E1;
    background: rgba(225, 225, 225, 0.3);
    font-size: 10px;
  }
  
  .demoPage .appHeader {
    position: relative;
    z-index: 0;
  }
  
  .demoPage .appHeader:before {
    height: 0 !important;
    display: none;
  }
  
  .demoPage .appBottomMenu {
    position: relative;
    z-index: 0;
    padding-bottom: 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: 14px;
  }
  
  .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: 10px;
  }
  
  .appBottomMenu .badge-empty {
    transform: translateX(200%);
    top: 10px;
  }
  
  .listview-title {
    color: #4F5050;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .listview-title .link {
    color: #A1A1A2;
    font-weight: 500;
    font-size: 11px;
    display: flex;
    align-items: center;
  }
  
  .listview-title .link i.bi,
  .listview-title .link i.icon,
  .listview-title .link ion-icon {
    font-size: 15px;
    margin-right: 4px;
  }
  
  .listview-title.sticky-title {
    background: #F9F9F9;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    padding-top: 8px;
    padding-bottom: 8px;
    z-index: 500;
    top: 56px;
    font-weight: 500;
    color: #141515;
    box-shadow: 0px 1px 0 #E1E1E1, 0px -1px 0 #E1E1E1;
  }
  
  .listview-title.sticky-title strong {
    font-size: 15px;
  }
  
  .listview-title .text-small {
    font-size: 11px;
    color: #A1A1A2;
    line-height: 1.3em;
  }
  
  .listview {
    display: block;
    padding: 0;
    margin: 0;
    color: #141515;
    background: #fff;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    line-height: 1.3em;
  }
  
  .listview .text-muted {
    font-size: 13px;
    color: #A1A1A2 !important;
  }
  
  .listview > li {
    padding: 8px 16px;
    display: block;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 50px;
  }
  
  .listview > li .item {
    position: relative;
  }
  
  .listview > li:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #E1E1E1;
  }
  
  .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: #4F5050;
    margin-top: 3px;
  }
  
  .listview > li header {
    margin-bottom: 3px;
  }
  
  .listview > li.divider-title {
    background: rgba(225, 225, 225, 0.5);
    margin-top: -1px;
    border-top: 1px solid #E1E1E1;
    border-bottom: 1px solid #E1E1E1;
    padding: 12px 16px;
    font-size: 13px;
    min-height: auto;
    color: #4F5050;
  }
  
  .listview > li.divider-title:after {
    display: none;
  }
  
  .listview.flush {
    border-top: 0;
    border-bottom: 0;
  }
  
  .listview.transparent {
    background: transparent;
  }
  
  .simple-listview > li {
    display: flex;
  }
  
  .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: #141515 !important;
  }
  
  .link-listview > li a:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg width='10px' height='16px' viewBox='0 0 10 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='Listview' transform='translate(-112.000000, -120.000000)' stroke='%23A1A1A2' stroke-width='2.178'%3E%3Cpolyline id='Path' points='114 122 120 128 114 134'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    right: 12px;
    opacity: 0.5;
    top: 50%;
    margin-top: -8px;
  }
  
  .link-listview > li a:active {
    background: rgba(225, 225, 225, 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 {
    min-width: 36px;
    max-width: 36px;
    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: 20px;
    border-radius: 400px;
    margin-right: 16px;
  }
  
  .image-listview > li .item .icon-box.bg-primary, .image-listview > li .item .icon-box.bg-secondary, .image-listview > li .item .icon-box.bg-success, .image-listview > li .item .icon-box.bg-danger, .image-listview > li .item .icon-box.bg-warning, .image-listview > li .item .icon-box.bg-info, .image-listview > li .item .icon-box.bg-dark, .image-listview > li .item .icon-box.bg-light {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }
  
  .image-listview > li .item .in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .image-listview > li a.item {
    color: #141515 !important;
    padding-right: 36px;
    text-decoration: none;
  }
  
  .image-listview > li a.item:active {
    background: rgba(225, 225, 225, 0.3);
  }
  
  .image-listview > li a.item:after {
    background-image: url("data:image/svg+xml,%0A%3Csvg width='10px' height='16px' viewBox='0 0 10 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg id='Listview' transform='translate(-112.000000, -120.000000)' stroke='%23A1A1A2' stroke-width='2.178'%3E%3Cpolyline id='Path' points='114 122 120 128 114 134'%3E%3C/polyline%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center center;
    width: 16px;
    height: 16px;
    content: "";
    position: absolute;
    right: 12px;
    opacity: 0.5;
    top: 50%;
    margin-top: -8px;
  }
  
  .image-listview.text > li:after {
    left: 16px;
  }
  
  .image-listview.media > li {
    border-bottom: 1px solid #E1E1E1;
  }
  
  .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;
  }
  
  .multi-level > a:after {
    transform: rotate(90deg);
  }
  
  .multi-level ul {
    border: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
    transition: height 0.15s ease-in-out !important;
  }
  
  .multi-level ul > li {
    border: 0 !important;
  }
  
  .multi-level ul > li:after {
    height: 0;
  }
  
  .multi-level ul > li a,
  .multi-level ul > li .item {
    padding-left: 68px !important;
  }
  
  .multi-level.active > a:after {
    transform: rotate(-90deg);
  }
  
  .multi-level.active ul {
    overflow: auto;
  }
  
  .link-listview .link-listview a,
  .link-listview .link-listview .item,
  .link-listview .image-listview a,
  .link-listview .image-listview .item {
    padding-left: 16px !important;
  }
  
  .link-listview .image-listview.media > li {
    border: 0;
  }
  
  .link-listview .simple-listview {
    padding-left: 0 !important;
  }
  
  .image-listview .simple-listview {
    padding-left: 52px !important;
  }
  
  .image-listview.text .simple-listview {
    padding-left: 0 !important;
  }
  
  .image-listview.text .link-listview a,
  .image-listview.text .link-listview .item,
  .image-listview.text .image-listview a,
  .image-listview.text .image-listview .item {
    padding-left: 16px !important;
  }
  
  .image-listview.media .simple-listview {
    padding-left: 80px !important;
  }
  
  .image-listview.media .link-listview a,
  .image-listview.media .link-listview .item,
  .image-listview.media .image-listview a,
  .image-listview.media .image-listview .item {
    padding-left: 96px !important;
  }
  
  
  .card .listview > li:first-child .item {
    border-radius: 6px 6px 0 0;
  }
  
  .card .listview > li:last-child .item {
    border-radius: 0 0 6px 6px;
  }
  
  
  .offcanvas.action-sheet {
    border: 0;
    height: auto;
    z-index: 9999;
  }
  
  .offcanvas.action-sheet .offcanvas-body {
    padding: 0;
  }
  
  .offcanvas.action-sheet .offcanvas-body .action-sheet-content {
    padding: 20px 16px;
    max-height: 460px;
    overflow: auto;
  }
  
  .offcanvas.action-sheet .offcanvas-header {
    padding: 2px 20px;
    display: block;
    min-height: auto;
    box-shadow: none;
    border-bottom: 1px solid #E1E1E1;
  }
  
  .offcanvas.action-sheet .offcanvas-header .offcanvas-title {
    padding: 0;
    margin: 0;
    text-align: center;
    display: block;
    font-size: 13px;
    padding: 6px 0;
    color: #141515;
    font-weight: 500;
  }
  
  .offcanvas.action-sheet .offcanvas-header .close-button {
    font-size: 20px;
    color: #A1A1A2;
    position: absolute;
    right: 0;
    top: 2px;
    width: 48px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .offcanvas.action-sheet .offcanvas-header .close-button:hover, .offcanvas.action-sheet .offcanvas-header .close-button:active {
    opacity: .7;
  }
  
  .offcanvas.action-sheet.inset {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 16px;
    border-radius: 16px;
    padding-bottom: 0;
    margin-bottom: env(safe-area-inset-bottom);
  }
  
  .offcanvas.action-sheet.inset .action-button-list > li:last-child .btn {
    border-radius: 0 0 16px 16px !important;
  }
  
  .action-button-list {
    padding: 0;
    margin: 0;
  }
  
  .action-button-list > li {
    display: block;
  }
  
  .action-button-list > li .btn {
    padding: 0;
    display: flex;
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    color: #141515;
    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(225, 225, 225, 0.3);
  }
  
  .action-button-list > li .btn.text-primary {
    color: #1E74FD !important;
  }
  
  .action-button-list > li .btn.text-secondary {
    color: #6C7C94 !important;
  }
  
  .action-button-list > li .btn.text-danger {
    color: #EC4433 !important;
  }
  
  .action-button-list > li .btn.text-success {
    color: #34C759 !important;
  }
  
  .action-button-list > li .btn.text-warning {
    color: #FE9500 !important;
  }
  
  .action-button-list > li .btn.text-info {
    color: #592BCA !important;
  }
  
  .action-button-list > li .btn.text-light {
    color: #fff !important;
  }
  
  .action-button-list > li .btn.text-dark {
    color: #141515 !important;
  }
  
  .action-button-list > li .btn > span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .action-button-list > li .btn i.bi,
  .action-button-list > li .btn i.icon,
  .action-button-list > li .btn ion-icon {
    width: 24px !important;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-left: -5px;
    font-size: 24px;
    line-height: 1em;
  }
  
  .action-button-list > li.action-divider {
    height: 1px;
    background: #E1E1E1;
  }
  
  .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 .form-group {
    text-align: left;
  }
  
  .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 {
    margin: 0;
  }
  
  .dialogbox .modal-dialog .modal-content .btn-list .btn {
    padding: 0px 10px;
    min-height: 58px;
    border-radius: 0;
    margin: 0;
    border: 0;
    border-bottom: 1px solid #E1E1E1 !important;
    font-size: 15px;
  }
  
  .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(225, 225, 225, 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;
    margin: 0;
    background: #E1E1E1;
  }
  
  .dialogbox .modal-dialog .modal-content .btn-inline .btn {
    width: 100%;
    border-radius: 0;
    min-height: 58px;
    border: 0 !important;
    font-size: 15px;
    margin-right: 1px;
    background: #FFF;
  }
  
  .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(255, 255, 255, 0.8) !important;
  }
  
  .dialogbox .modal-dialog .modal-content .btn-inline .btn:last-child {
    margin-right: 0;
    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: #141515;
    text-align: center;
    margin: 0 auto;
    font-size: 17px;
  }
  
  .dialogbox .modal-dialog .modal-content .modal-body {
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
  }
  
  .dialogbox .modal-dialog .modal-content .modal-footer {
    border: 0;
    border-top: 1px solid #E1E1E1;
    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: #1E74FD;
    text-align: center;
  }
  
  .modalbox {
    padding-top: env(safe-area-inset-top);
    overflow: hidden;
  }
  
  .modalbox .modal-dialog {
    transform: translate(0, 100%) !important;
    min-width: 100%;
    margin: 0;
    transition: 0.5s all !important;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin-top: env(safe-area-inset-top);
  }
  
  .modalbox .modal-dialog .modal-content {
    border-radius: 0;
    border: 0;
    margin: auto;
    overflow: hidden;
    padding-top: 56px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  
  .modalbox .modal-dialog .modal-content .modal-header {
    border: 0;
    padding: 0;
    min-height: 56px;
    padding: 10px 16px;
    border-radius: 0;
    display: flex;
    border-bottom: 1px solid #E1E1E1;
    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: #141515;
    font-size: 17px;
  }
  
  .modalbox .modal-dialog .modal-content .modal-body {
    padding: 20px 16px;
    overflow: auto;
  }
  
  .modalbox.show .modal-dialog {
    transform: translate(0, 0) !important;
  }
  
  .offcanvas {
    width: 300px;
    border: 0;
  }
  
  .offcanvas .offcanvas-header {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    min-height: 56px;
    padding: 10px 16px;
  }
  
  .offcanvas .offcanvas-header .offcanvas-title {
    font-size: 15px;
    font-weight: 500;
  }
  
  .offcanvas .offcanvas-header .offcanvas-close {
    color: #1E74FD;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .offcanvas .offcanvas-header .offcanvas-close i.bi,
  .offcanvas .offcanvas-header .offcanvas-close i.icon,
  .offcanvas .offcanvas-header .offcanvas-close ion-icon {
    font-size: 26px;
  }
  
  .offcanvas .offcanvas-body {
    padding: 16px;
  }
  
  .offcanvas-start,
  .offcanvas-end,
  .offcanvas-top {
    padding-top: env(safe-area-inset-top);
  }
  
  .offcanvas-top {
    transform: translateY(-120%);
  }
  
  .offcanvas-bottom {
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(120%);
  }
  
  .offcanvas-top,
  .offcanvas-bottom {
    width: 100%;
    height: 40vh;
  }
  
  .cookies-modal {
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    border: 1px solid #E1E1E1;
    position: fixed;
    z-index: 100;
    bottom: 72px;
    left: 16px;
    right: 16px;
    padding: 16px;
    font-size: 13px;
    line-height: 1.56em;
    transform: translate(0%, 150%);
    transition: .4s ease-in-out;
  }
  
  
  .blog-post .post-body img {
    width: calc(100% + 32px);
    height: auto;
    margin: 0px -16px;
    margin-bottom: 16px;
  }
  
  .profile-head {
    display: flex;
    align-items: center;
  }
  
  .profile-head .avatar {
    margin-right: 16px;
  }
  
  .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;
  }