
/**
 * = Sections
 */
.section {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.section-header {
    position: relative;
    padding-top: 9rem;
    padding-bottom: 3rem;
}

@media (min-width: 576px) {
    .section {
        position: relative;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .section-header {
        position: relative;
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .section-header.section-sm {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .section-xl {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .section-lg {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .section-sm {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 992px) {
    .section {
        position: relative;
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .section-header {
        position: relative;
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-header.section-sm {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .section-xl {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

    .section-lg {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .section-sm {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .section-hero {
        height: 100vh;
    }
}

.line-bottom::after {
    content: '';
    display: block;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(ellipse at center, #D1D5DB 0, rgba(255, 255, 255, 0) 80%);
}

.section-profile-cover {
    height: 580px;
    background-size: cover;
    background-position: center center;
}

@media (max-width: 767.98px) {
    .section-profile-cover {
        height: 400px;
    }
}

.components-section > .form-control + .form-control {
    margin-top: .5rem;
}

.components-section > .nav + .nav,
.components-section > .alert + .alert,
.components-section > .navbar + .navbar,
.components-section > .progress + .progress,
.components-section > .progress + .btn,
.components-section .badge,
.components-section .btn {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.components-section .btn-group {
    margin-top: .5rem;
    margin-bottom: .5rem;
}

.components-section .btn-group .btn {
    margin: 0;
}

.components-section .alert {
    margin: 0;
}

.components-section .alert + .alert {
    margin-top: 1.25rem;
}

.components-section .badge {
    margin-right: .5rem;
}

.components-section .modal-footer .btn {
    margin: 0;
}

.copy-docs {
    position: absolute;
    top: 5px;
    right: 5px;
    transition: all 0.2s ease;
}

.copy-docs.copied {
    background: #05A677;
}

.copy-docs:hover {
    cursor: pointer;
}

.kanban-container {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

/**
 * = Footers
 */
.footer ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.footer ul li {
    display: inline-block;
}

.footer ul li a {
    text-decoration: none;
    position: relative;
    display: block;
    color: #4B5563;
}

.footer ul li a:hover {
    color: #262B40;
}

.footer ul li .btn {
    margin: 0;
}

.footer ul.links-horizontal:first-child a {
    padding-left: 0;
}

.footer ul.links-horizontal:last-child a {
    padding-right: 0;
}

.footer ul.links-vertical li {
    display: block;
    margin-left: -5px;
    margin-right: -5px;
}

.footer ul.links-vertical li a {
    padding: 5px;
}

.footer ul.links-vertical li a:hover {
    color: inherit !important;
}

.footer ul.icon-box i {
    line-height: 1.7;
}

.footer .social-buttons a,
.footer .social-buttons .btn {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0.125rem 0.375rem;
}

.footer .footer-brand {
    font-size: 1.25rem;
    font-weight: 600;
}

.footer .footer-brand img.common {
    height: 40px;
}

.footer .footer-brand img {
    height: 40px;
    width: 40px;
}

.footer .footer-brand:hover, .footer .footer-brand:focus {
    color: #2e3650;
}

.footer .footer-language-link {
    font-size: 0.875rem;
}

.footer .footer-language-link i {
    font-size: 0.75rem;
}

.footer .copyright {
    font-size: 0.875rem;
}

.footer .pull-center {
    display: inline-block;
    float: none;
}

/**
 * = Sidebars
 */
#doc-index:not(.collapse.show), .doc-sidebar {
    display: none;
}

@media (min-width: 992px) {
    #doc-index {
        display: block;
    }

    .doc-sidebar {
        display: block;
        height: calc(100vh - 2rem);
        overflow-y: scroll;
        position: -webkit-sticky;
        position: sticky;
        top: 2rem;
    }

    .doc-sidebar .nav-link[data-toggle="collapse"] > .icon {
        transform: rotateZ(-90deg);
        position: relative;
        right: .25rem;
    }

    .doc-sidebar .nav .nav-item {
        font-size: 0.875rem;
    }
}

/*
 * Sidebar
*/
.sidebar {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    max-height: 100%;
    overflow-y: auto;
    width: 100%;
    transition: ease-out 0.1s;
}

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

@media (min-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 260px;
    }
}

.sidebar .nav {
    white-space: nowrap;
}

.sidebar .nav-item {
    margin-bottom: -3px;
}

.sidebar .nav-item.active > .nav-link {
    color: #000000;
    background-color: #cbcbcb;
}

.sidebar .nav-item .nav-link {
    color: #f8f8f8;
    cursor: pointer;
    font-weight: 600;
    }

.sidebar .nav-item .nav-link:hover {
    color: #000000;
    background-color: #e1e1e1;
}

.sidebar .nav-link + .multi-level {
    margin-top: .2rem;
}

.sidebar .nav-link {
    font-size: 15px;
    vertical-align: middle;
    padding: 8px 15px;
    border-radius: 0;
}

.sidebar .nav-link .sidebar-icon {
    margin-right: .5rem;
    color: #ffffff;
}

.sidebar .nav-link .sidebar-icon span {
    min-width: 22px;
}

.sidebar .nav-link .link-arrow {
    font-size: 0.875rem;
}

.sidebar .nav-link[data-bs-toggle=collapse][aria-expanded=true] .link-arrow {
    transform: rotate(90deg);
    transition: all 0.2s ease;
}

.sidebar .nav-link.active {
    color: #363c54;
}

.sidebar .multi-level .nav-link {
    padding-left: 45px;
}

.sidebar .sidebar-text,
  .sidebar .link-arrow,
  .sidebar .badge,
  .sidebar .notification-count {
    opacity: 1;
    transition: opacity 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .sidebar .sidebar-text,
      .sidebar .link-arrow,
      .sidebar .badge,
      .sidebar .notification-count {
        transition: none;
    }
}

.sidebar-inner {
    position: relative;
    overflow-y: hidden;
}

.sidebar-heading {
    font-size: .75rem;
    text-transform: uppercase;
}

.user-card {
    border-bottom: 0.0625rem solid #2e3650;
}

@media (max-width: 575.98px) {
    .sidebar {
        width: 100%;
    }
}

.content {
    overflow: visible;
    padding: 0 1rem 0 1rem;
    transition: all 0.3s;
}

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

@media (min-width: 768px) {
    .content {
        margin-left: 243px;
    }
}

.sidebar-toggle {
    font-size: 1.3rem;
}

.sidebar-toggle:hover, .sidebar-toggle:focus {
    outline: none;
    box-shadow: none;
    background: #D1D5DB;
}

iframe {
    border: 0;
}

figcaption,
figure,
main {
    display: block;
    margin: 0;
}

main {
    overflow: hidden;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 600;
}

button:focus {
    outline: 0;
}

label {
    font-weight: bold;
    margin-bottom: .5rem;
    font-size: 14px;
}

/**
 * = Accordions
*/
.accordion-button {
    text-align: left;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotateZ(45deg);
}

.accordion-button::after {
    background-image: none;
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-size: 1rem;
    font-weight: 900;
}

.accordion-button:hover {
    background-color: #F3F4F6;
}

.accordion-flush .accordion-button {
    background-color: transparent;
}

.accordion-flush .accordion-button:not(.collapsed) {
    color: #2CA58D;
}

.accordion-flush .accordion-button:focus {
    border-color: #E5E7EB;
    box-shadow: none;
}

.accordion-flush .accordion-collapse {
    border: 0;
}

.alert-heading {
    font-weight: 600;
}

.alert-icon {
    margin-bottom: .5rem;
}

.alert-icon span {
    font-size: 2rem;
}

/**
 * = Avatars
 */
.avatar + .avatar-content {
    display: inline-block;
    margin-left: .75rem;
}

.avatar-link img {
    width: 4rem;
    height: 4rem;
}

.avatar-md img {
    height: 2rem;
}

.user-avatar {
    height: 2.5rem;
    width: 2.5rem;
    min-height: 2.5rem;
    min-width: 2.5rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 50%;
}

.user-avatar.xs-avatar {
    height: 1.5rem;
    width: 1.5rem;
}

.user-avatar.xs-avatar img {
    height: 1.5rem;
    width: 1.5rem;
}

.user-avatar .md-avatar {
    height: 2rem;
    width: 2rem;
    min-height: 2rem;
    min-width: 2rem;
}

.user-avatar.lg-avatar {
    height: 3.5rem;
    width: 3.5rem;
    min-height: 3.5rem;
    min-width: 3.5rem;
    font-size: 0.75rem;
}

@media (max-width: 991.98px) {
    .user-avatar.lg-avatar {
        height: 2rem;
        width: 2rem;
        min-height: 2rem;
        min-width: 2rem;
    }
}

.user-avatar.xl-avatar {
    height: 4.5rem;
    width: 4.5rem;
    min-height: 4.5rem;
    min-width: 4.5rem;
}

.user-avatar.large-avatar {
    border: 2px solid #ffffff;
    height: 10rem;
    width: 10rem;
    min-height: 10rem;
    min-width: 10rem;
}

/**
 * = Badges
 */
.badge {
    font-size: 0.75em;
    font-weight: bolder;
}

.badge a {
    color: #ffffff;
}

.badge.super-badge {
    vertical-align: super;
}

.badge-pill {
    padding-right: 0.875em;
    padding-left: 0.875em;
}

.badge-inline {
    margin-right: .625rem;
}

.badge-inline + span {
    top: 2px;
    position: relative;
}

.badge-inline + span > a {
    text-decoration: underline;
}

.badge-md {
    padding: .25rem .4rem;
}

.badge-lg {
    padding: .35rem .85rem;
}

.badge-xl {
    font-size: 1.25rem;
    padding: .35rem .85rem;
}

.btn .badge-corner {
    position: absolute;
    top: -50%;
    right: .5rem;
    transform: translate(50%, 50%);
    margin: 0;
    border: 3px solid;
    padding-left: .5rem;
    padding-right: .5rem;
}

.wi-tags a {
    display: inline-block;
    padding: 0.125rem 0.875rem;
    margin: 0.25rem;
    line-height: 2;
    font-size: 0.875rem;
    box-shadow: 0 2px 5px rgba(140, 152, 164, 0.2);
    background-color: #ffffff;
}

.pixel-pro-badge {
    position: relative;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 600;
    right: -11px;
    padding: 4px 12px;
    top: -30px;
    background: #ffffff;
    border-radius: 0.6rem;
    box-shadow: 0 2px 5px rgba(140, 152, 164, 0.2);
}

@media (max-width: 575.98px) {
    .pixel-pro-badge {
        font-size: 1rem;
        right: -13px;
        padding: 5px 10px;
        top: -23px;
    }
}

.subscription-badge {
    top: -19px;
    right: -12px;
    font-size: .75rem;
}

/*
* = Buttons
*/
.btn.btn-circle {
    border-radius: 50%;
}

.btn.btn-md {
    padding: 0.65rem 1.25rem;
}

.btn.btn-xs {
    padding: .2rem 0.35rem;
    font-size: 0.55rem;
    box-shadow: none;
}

.btn.large-form-btn {
    padding: 1.2rem 1rem;
}

.btn.dashed-outline {
    border-style: dashed;
}

.btn-icon-only {
    width: 2.575rem;
    height: 2.575rem;
    padding: 0;
    display: flex;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.btn-icon-only.btn-xs {
    width: 1.7rem;
    height: 1.7rem;
}

.btn-icon-only.btn-sm, .btn-group-sm > .btn-icon-only.btn {
    width: 2rem;
    height: 2rem;
}

.btn-upgrade-pro {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 190px;
}

@media (min-width: 768px) {
    .btn-upgrade-pro {
        left: 35px;
    }
}

.btn-primary:hover {
    background-color: #1d2030;
    border-color: #1d2030;
}

.btn-secondary:hover {
    background-color: #f1ab5c;
    border-color: #f1ab5c;
}

.btn-tertiary:hover {
    background-color: #27917c;
    border-color: #27917c;
}

.btn-dark:hover {
    background-color: #1d2030;
    border-color: #1d2030;
}

.btn-success:hover {
    background-color: #048d65;
    border-color: #048d65;
}

.btn-info:hover {
    background-color: #083e9b;
    border-color: #083e9b;
}

.btn-warning:hover {
    background-color: #f4ad41;
    border-color: #f4ad41;
}

.btn-danger:hover {
    background-color: #f93939;
    border-color: #f93939;
}

.btn-white:hover {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}

.btn-black:hover {
    background-color: #252b40;
    border-color: #252b40;
}

.btn-pink:hover {
    background-color: #c25171;
    border-color: #c25171;
}

.btn-indigo:hover {
    background-color: #292959;
    border-color: #292959;
}

.btn-purple:hover {
    background-color: #7950dc;
    border-color: #7950dc;
}

.btn-gray-100:hover {
    background-color: #eaedf1;
    border-color: #eaedf1;
}

.btn-gray-200:hover {
    background-color: #e4e7eb;
    border-color: #e4e7eb;
}

.btn-gray-300:hover {
    background-color: #d7dae0;
    border-color: #d7dae0;
}

.btn-gray-400:hover {
    background-color: #c3c8d0;
    border-color: #c3c8d0;
}

.btn-gray-500:hover {
    background-color: #8e96a4;
    border-color: #8e96a4;
}

.btn-gray-600:hover {
    background-color: #5f6672;
    border-color: #5f6672;
}

.btn-gray-700:hover {
    background-color: #404954;
    border-color: #404954;
}

.btn-gray-800:hover {
    background-color: #2d3542;
    border-color: #2d3542;
}

.btn-facebook:hover {
    background-color: #344e87;
    border-color: #344e87;
}

.btn-twitter:hover {
    background-color: #0d95e8;
    border-color: #0d95e8;
}

.btn-github:hover {
    background-color: #151515;
    border-color: #151515;
}

.btn-facebook {
    color: #ffffff;
    background-color: #3b5999;
    border-color: #3b5999;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-facebook:hover {
    color: #ffffff;
    background-color: #324c82;
    border-color: #2f477a;
}

.btn-check:focus + .btn-facebook, .btn-facebook:focus {
    color: #ffffff;
    background-color: #324c82;
    border-color: #2f477a;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(88, 114, 168, 0.5);
}

.btn-check:checked + .btn-facebook,
  .btn-check:active + .btn-facebook, .btn-facebook:active, .btn-facebook.active,
  .show > .btn-facebook.dropdown-toggle {
    color: #ffffff;
    background-color: #2f477a;
    border-color: #2c4373;
}

.btn-check:checked + .btn-facebook:focus,
    .btn-check:active + .btn-facebook:focus, .btn-facebook:active:focus, .btn-facebook.active:focus,
    .show > .btn-facebook.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(88, 114, 168, 0.5);
}

.btn-facebook:disabled, .btn-facebook.disabled {
    color: #ffffff;
    background-color: #3b5999;
    border-color: #3b5999;
}

.btn-facebook.btn-link {
    color: #3b5999;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-facebook.btn-link:hover, .btn-facebook.btn-link:focus, .btn-facebook.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #3b5999;
}

.btn-twitter {
    color: #262B40;
    background-color: #1da1f2;
    border-color: #1da1f2;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-twitter:hover {
    color: #262B40;
    background-color: #3faff4;
    border-color: #34aaf3;
}

.btn-check:focus + .btn-twitter, .btn-twitter:focus {
    color: #262B40;
    background-color: #3faff4;
    border-color: #34aaf3;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(30, 143, 215, 0.5);
}

.btn-check:checked + .btn-twitter,
  .btn-check:active + .btn-twitter, .btn-twitter:active, .btn-twitter.active,
  .show > .btn-twitter.dropdown-toggle {
    color: #262B40;
    background-color: #4ab4f5;
    border-color: #34aaf3;
}

.btn-check:checked + .btn-twitter:focus,
    .btn-check:active + .btn-twitter:focus, .btn-twitter:active:focus, .btn-twitter.active:focus,
    .show > .btn-twitter.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(30, 143, 215, 0.5);
}

.btn-twitter:disabled, .btn-twitter.disabled {
    color: #262B40;
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.btn-twitter.btn-link {
    color: #1da1f2;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-twitter.btn-link:hover, .btn-twitter.btn-link:focus, .btn-twitter.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #1da1f2;
}

.btn-google {
    color: #ffffff;
    background-color: #DB4337;
    border-color: #DB4337;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-google:hover {
    color: #ffffff;
    background-color: #ba392f;
    border-color: #af362c;
}

.btn-check:focus + .btn-google, .btn-google:focus {
    color: #ffffff;
    background-color: #ba392f;
    border-color: #af362c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(224, 95, 85, 0.5);
}

.btn-check:checked + .btn-google,
  .btn-check:active + .btn-google, .btn-google:active, .btn-google.active,
  .show > .btn-google.dropdown-toggle {
    color: #ffffff;
    background-color: #af362c;
    border-color: #a43229;
}

.btn-check:checked + .btn-google:focus,
    .btn-check:active + .btn-google:focus, .btn-google:active:focus, .btn-google.active:focus,
    .show > .btn-google.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(224, 95, 85, 0.5);
}

.btn-google:disabled, .btn-google.disabled {
    color: #ffffff;
    background-color: #DB4337;
    border-color: #DB4337;
}

.btn-google.btn-link {
    color: #DB4337;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-google.btn-link:hover, .btn-google.btn-link:focus, .btn-google.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #DB4337;
}

.btn-instagram {
    color: #ffffff;
    background-color: #e4405f;
    border-color: #e4405f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-instagram:hover {
    color: #ffffff;
    background-color: #c23651;
    border-color: #b6334c;
}

.btn-check:focus + .btn-instagram, .btn-instagram:focus {
    color: #ffffff;
    background-color: #c23651;
    border-color: #b6334c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(232, 93, 119, 0.5);
}

.btn-check:checked + .btn-instagram,
  .btn-check:active + .btn-instagram, .btn-instagram:active, .btn-instagram.active,
  .show > .btn-instagram.dropdown-toggle {
    color: #ffffff;
    background-color: #b6334c;
    border-color: #ab3047;
}

.btn-check:checked + .btn-instagram:focus,
    .btn-check:active + .btn-instagram:focus, .btn-instagram:active:focus, .btn-instagram.active:focus,
    .show > .btn-instagram.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(232, 93, 119, 0.5);
}

.btn-instagram:disabled, .btn-instagram.disabled {
    color: #ffffff;
    background-color: #e4405f;
    border-color: #e4405f;
}

.btn-instagram.btn-link {
    color: #e4405f;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-instagram.btn-link:hover, .btn-instagram.btn-link:focus, .btn-instagram.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #e4405f;
}

.btn-pinterest {
    color: #ffffff;
    background-color: #bd081c;
    border-color: #bd081c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-pinterest:hover {
    color: #ffffff;
    background-color: #a10718;
    border-color: #970616;
}

.btn-check:focus + .btn-pinterest, .btn-pinterest:focus {
    color: #ffffff;
    background-color: #a10718;
    border-color: #970616;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(199, 45, 62, 0.5);
}

.btn-check:checked + .btn-pinterest,
  .btn-check:active + .btn-pinterest, .btn-pinterest:active, .btn-pinterest.active,
  .show > .btn-pinterest.dropdown-toggle {
    color: #ffffff;
    background-color: #970616;
    border-color: #8e0615;
}

.btn-check:checked + .btn-pinterest:focus,
    .btn-check:active + .btn-pinterest:focus, .btn-pinterest:active:focus, .btn-pinterest.active:focus,
    .show > .btn-pinterest.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(199, 45, 62, 0.5);
}

.btn-pinterest:disabled, .btn-pinterest.disabled {
    color: #ffffff;
    background-color: #bd081c;
    border-color: #bd081c;
}

.btn-pinterest.btn-link {
    color: #bd081c;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-pinterest.btn-link:hover, .btn-pinterest.btn-link:focus, .btn-pinterest.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #bd081c;
}

.btn-youtube {
    color: #ffffff;
    background-color: #cd201f;
    border-color: #cd201f;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-youtube:hover {
    color: #ffffff;
    background-color: #ae1b1a;
    border-color: #a41a19;
}

.btn-check:focus + .btn-youtube, .btn-youtube:focus {
    color: #ffffff;
    background-color: #ae1b1a;
    border-color: #a41a19;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(213, 65, 65, 0.5);
}

.btn-check:checked + .btn-youtube,
  .btn-check:active + .btn-youtube, .btn-youtube:active, .btn-youtube.active,
  .show > .btn-youtube.dropdown-toggle {
    color: #ffffff;
    background-color: #a41a19;
    border-color: #9a1817;
}

.btn-check:checked + .btn-youtube:focus,
    .btn-check:active + .btn-youtube:focus, .btn-youtube:active:focus, .btn-youtube.active:focus,
    .show > .btn-youtube.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(213, 65, 65, 0.5);
}

.btn-youtube:disabled, .btn-youtube.disabled {
    color: #ffffff;
    background-color: #cd201f;
    border-color: #cd201f;
}

.btn-youtube.btn-link {
    color: #cd201f;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-youtube.btn-link:hover, .btn-youtube.btn-link:focus, .btn-youtube.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #cd201f;
}

.btn-slack {
    color: #262B40;
    background-color: #3aaf85;
    border-color: #3aaf85;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-slack:hover {
    color: #262B40;
    background-color: #58bb97;
    border-color: #4eb791;
}

.btn-check:focus + .btn-slack, .btn-slack:focus {
    color: #262B40;
    background-color: #58bb97;
    border-color: #4eb791;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(55, 155, 123, 0.5);
}

.btn-check:checked + .btn-slack,
  .btn-check:active + .btn-slack, .btn-slack:active, .btn-slack.active,
  .show > .btn-slack.dropdown-toggle {
    color: #262B40;
    background-color: #61bf9d;
    border-color: #4eb791;
}

.btn-check:checked + .btn-slack:focus,
    .btn-check:active + .btn-slack:focus, .btn-slack:active:focus, .btn-slack.active:focus,
    .show > .btn-slack.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(55, 155, 123, 0.5);
}

.btn-slack:disabled, .btn-slack.disabled {
    color: #262B40;
    background-color: #3aaf85;
    border-color: #3aaf85;
}

.btn-slack.btn-link {
    color: #3aaf85;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-slack.btn-link:hover, .btn-slack.btn-link:focus, .btn-slack.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #3aaf85;
}

.btn-dribbble {
    color: #ffffff;
    background-color: #ea4c89;
    border-color: #ea4c89;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-dribbble:hover {
    color: #ffffff;
    background-color: #c74174;
    border-color: #bb3d6e;
}

.btn-check:focus + .btn-dribbble, .btn-dribbble:focus {
    color: #ffffff;
    background-color: #c74174;
    border-color: #bb3d6e;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(237, 103, 155, 0.5);
}

.btn-check:checked + .btn-dribbble,
  .btn-check:active + .btn-dribbble, .btn-dribbble:active, .btn-dribbble.active,
  .show > .btn-dribbble.dropdown-toggle {
    color: #ffffff;
    background-color: #bb3d6e;
    border-color: #b03967;
}

.btn-check:checked + .btn-dribbble:focus,
    .btn-check:active + .btn-dribbble:focus, .btn-dribbble:active:focus, .btn-dribbble.active:focus,
    .show > .btn-dribbble.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(237, 103, 155, 0.5);
}

.btn-dribbble:disabled, .btn-dribbble.disabled {
    color: #ffffff;
    background-color: #ea4c89;
    border-color: #ea4c89;
}

.btn-dribbble.btn-link {
    color: #ea4c89;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-dribbble.btn-link:hover, .btn-dribbble.btn-link:focus, .btn-dribbble.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #ea4c89;
}

.btn-dropbox {
    color: #ffffff;
    background-color: #1E90FF;
    border-color: #1E90FF;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-dropbox:hover {
    color: #ffffff;
    background-color: #1a7ad9;
    border-color: #1873cc;
}

.btn-check:focus + .btn-dropbox, .btn-dropbox:focus {
    color: #ffffff;
    background-color: #1a7ad9;
    border-color: #1873cc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(64, 161, 255, 0.5);
}

.btn-check:checked + .btn-dropbox,
  .btn-check:active + .btn-dropbox, .btn-dropbox:active, .btn-dropbox.active,
  .show > .btn-dropbox.dropdown-toggle {
    color: #ffffff;
    background-color: #1873cc;
    border-color: #176cbf;
}

.btn-check:checked + .btn-dropbox:focus,
    .btn-check:active + .btn-dropbox:focus, .btn-dropbox:active:focus, .btn-dropbox.active:focus,
    .show > .btn-dropbox.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(64, 161, 255, 0.5);
}

.btn-dropbox:disabled, .btn-dropbox.disabled {
    color: #ffffff;
    background-color: #1E90FF;
    border-color: #1E90FF;
}

.btn-dropbox.btn-link {
    color: #1E90FF;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-dropbox.btn-link:hover, .btn-dropbox.btn-link:focus, .btn-dropbox.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #1E90FF;
}

.btn-twitch {
    color: #ffffff;
    background-color: #4B367C;
    border-color: #4B367C;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-twitch:hover {
    color: #ffffff;
    background-color: #402e69;
    border-color: #3c2b63;
}

.btn-check:focus + .btn-twitch, .btn-twitch:focus {
    color: #ffffff;
    background-color: #402e69;
    border-color: #3c2b63;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(102, 84, 144, 0.5);
}

.btn-check:checked + .btn-twitch,
  .btn-check:active + .btn-twitch, .btn-twitch:active, .btn-twitch.active,
  .show > .btn-twitch.dropdown-toggle {
    color: #ffffff;
    background-color: #3c2b63;
    border-color: #38295d;
}

.btn-check:checked + .btn-twitch:focus,
    .btn-check:active + .btn-twitch:focus, .btn-twitch:active:focus, .btn-twitch.active:focus,
    .show > .btn-twitch.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(102, 84, 144, 0.5);
}

.btn-twitch:disabled, .btn-twitch.disabled {
    color: #ffffff;
    background-color: #4B367C;
    border-color: #4B367C;
}

.btn-twitch.btn-link {
    color: #4B367C;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-twitch.btn-link:hover, .btn-twitch.btn-link:focus, .btn-twitch.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #4B367C;
}

.btn-paypal {
    color: #262B40;
    background-color: #ecb32c;
    border-color: #ecb32c;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-paypal:hover {
    color: #262B40;
    background-color: #efbe4c;
    border-color: #eebb41;
}

.btn-check:focus + .btn-paypal, .btn-paypal:focus {
    color: #262B40;
    background-color: #efbe4c;
    border-color: #eebb41;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(206, 159, 47, 0.5);
}

.btn-check:checked + .btn-paypal,
  .btn-check:active + .btn-paypal, .btn-paypal:active, .btn-paypal.active,
  .show > .btn-paypal.dropdown-toggle {
    color: #262B40;
    background-color: #f0c256;
    border-color: #eebb41;
}

.btn-check:checked + .btn-paypal:focus,
    .btn-check:active + .btn-paypal:focus, .btn-paypal:active:focus, .btn-paypal.active:focus,
    .show > .btn-paypal.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(206, 159, 47, 0.5);
}

.btn-paypal:disabled, .btn-paypal.disabled {
    color: #262B40;
    background-color: #ecb32c;
    border-color: #ecb32c;
}

.btn-paypal.btn-link {
    color: #ecb32c;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-paypal.btn-link:hover, .btn-paypal.btn-link:focus, .btn-paypal.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #ecb32c;
}

.btn-behance {
    color: #ffffff;
    background-color: #0057ff;
    border-color: #0057ff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-behance:hover {
    color: #ffffff;
    background-color: #004ad9;
    border-color: #0046cc;
}

.btn-check:focus + .btn-behance, .btn-behance:focus {
    color: #ffffff;
    background-color: #004ad9;
    border-color: #0046cc;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(38, 112, 255, 0.5);
}

.btn-check:checked + .btn-behance,
  .btn-check:active + .btn-behance, .btn-behance:active, .btn-behance.active,
  .show > .btn-behance.dropdown-toggle {
    color: #ffffff;
    background-color: #0046cc;
    border-color: #0041bf;
}

.btn-check:checked + .btn-behance:focus,
    .btn-check:active + .btn-behance:focus, .btn-behance:active:focus, .btn-behance.active:focus,
    .show > .btn-behance.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(38, 112, 255, 0.5);
}

.btn-behance:disabled, .btn-behance.disabled {
    color: #ffffff;
    background-color: #0057ff;
    border-color: #0057ff;
}

.btn-behance.btn-link {
    color: #0057ff;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-behance.btn-link:hover, .btn-behance.btn-link:focus, .btn-behance.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #0057ff;
}

.btn-reddit {
    color: #ffffff;
    background-color: #E84422;
    border-color: #E84422;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-reddit:hover {
    color: #ffffff;
    background-color: #c53a1d;
    border-color: #ba361b;
}

.btn-check:focus + .btn-reddit, .btn-reddit:focus {
    color: #ffffff;
    background-color: #c53a1d;
    border-color: #ba361b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(235, 96, 67, 0.5);
}

.btn-check:checked + .btn-reddit,
  .btn-check:active + .btn-reddit, .btn-reddit:active, .btn-reddit.active,
  .show > .btn-reddit.dropdown-toggle {
    color: #ffffff;
    background-color: #ba361b;
    border-color: #ae331a;
}

.btn-check:checked + .btn-reddit:focus,
    .btn-check:active + .btn-reddit:focus, .btn-reddit:active:focus, .btn-reddit.active:focus,
    .show > .btn-reddit.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(235, 96, 67, 0.5);
}

.btn-reddit:disabled, .btn-reddit.disabled {
    color: #ffffff;
    background-color: #E84422;
    border-color: #E84422;
}

.btn-reddit.btn-link {
    color: #E84422;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-reddit.btn-link:hover, .btn-reddit.btn-link:focus, .btn-reddit.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #E84422;
}

.btn-github {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075);
}

.btn-github:hover {
    color: #ffffff;
    background-color: #1d1d1d;
    border-color: #1b1b1b;
}

.btn-check:focus + .btn-github, .btn-github:focus {
    color: #ffffff;
    background-color: #1d1d1d;
    border-color: #1b1b1b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(67, 67, 67, 0.5);
}

.btn-check:checked + .btn-github,
  .btn-check:active + .btn-github, .btn-github:active, .btn-github.active,
  .show > .btn-github.dropdown-toggle {
    color: #ffffff;
    background-color: #1b1b1b;
    border-color: #1a1a1a;
}

.btn-check:checked + .btn-github:focus,
    .btn-check:active + .btn-github:focus, .btn-github:active:focus, .btn-github.active:focus,
    .show > .btn-github.dropdown-toggle:focus {
    box-shadow: inset 0 3px 5px rgba(46, 54, 80, 0.125), 0 0 0 0.2rem rgba(67, 67, 67, 0.5);
}

.btn-github:disabled, .btn-github.disabled {
    color: #ffffff;
    background-color: #222222;
    border-color: #222222;
}

.btn-github.btn-link {
    color: #222222;
    background: transparent;
    box-shadow: none;
    border: 0;
    border-style: none;
}

.btn-github.btn-link:hover, .btn-github.btn-link:focus, .btn-github.btn-link.active {
    background-color: transparent !important;
    box-shadow: none;
    border: 0;
    color: #222222;
}

/**
 * = Breadcrumbs
 */
.breadcrumb-item {
    font-size: 0.75rem;
}

.breadcrumb-item, .breadcrumb-item a {
    color: #4B5563;
    font-weight: 400;
    font-size: 0.75rem;
}

@media (min-width: 576px) {
    .breadcrumb-item, .breadcrumb-item a {
        font-size: 0.875rem;
    }
}

.breadcrumb-item.active {
    font-weight: 400;
}

.breadcrumb-item + .breadcrumb-item:before {
    content: "\f101";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #6B7280;
}

.breadcrumb-transparent {
    background: transparent;
    padding: 0;
}

.breadcrumb-primary {
    background: #262B40;
}

.breadcrumb-primary .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-primary.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-primary.breadcrumb-transparent .breadcrumb-item.active {
    color: #262B40;
}

.breadcrumb-secondary {
    background: #f3b773;
}

.breadcrumb-secondary .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-secondary.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-secondary.breadcrumb-transparent .breadcrumb-item.active {
    color: #f3b773;
}

.breadcrumb-tertiary {
    background: #2CA58D;
}

.breadcrumb-tertiary .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-tertiary.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-tertiary.breadcrumb-transparent .breadcrumb-item.active {
    color: #2CA58D;
}

.breadcrumb-dark {
    background: #262B40;
}

.breadcrumb-dark .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-dark.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-dark.breadcrumb-transparent .breadcrumb-item.active {
    color: #262B40;
}

.breadcrumb-success {
    background: #05A677;
}

.breadcrumb-success .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-success.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-success.breadcrumb-transparent .breadcrumb-item.active {
    color: #05A677;
}

.breadcrumb-info {
    background: #0948B3;
}

.breadcrumb-info .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-info.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-info.breadcrumb-transparent .breadcrumb-item.active {
    color: #0948B3;
}

.breadcrumb-warning {
    background: #f5b759;
}

.breadcrumb-warning .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-warning.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-warning.breadcrumb-transparent .breadcrumb-item.active {
    color: #f5b759;
}

.breadcrumb-danger {
    background: #FA5252;
}

.breadcrumb-danger .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-danger.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-danger.breadcrumb-transparent .breadcrumb-item.active {
    color: #FA5252;
}

.breadcrumb-white {
    background: #ffffff;
}

.breadcrumb-white .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-white.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-white.breadcrumb-transparent .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-black {
    background: #2e3650;
}

.breadcrumb-black .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-black.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-black.breadcrumb-transparent .breadcrumb-item.active {
    color: #2e3650;
}

.breadcrumb-pink {
    background: #C96480;
}

.breadcrumb-pink .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-pink.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-pink.breadcrumb-transparent .breadcrumb-item.active {
    color: #C96480;
}

.breadcrumb-indigo {
    background: #31316A;
}

.breadcrumb-indigo .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-indigo.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-indigo.breadcrumb-transparent .breadcrumb-item.active {
    color: #31316A;
}

.breadcrumb-purple {
    background: #8965e0;
}

.breadcrumb-purple .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-purple.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-purple.breadcrumb-transparent .breadcrumb-item.active {
    color: #8965e0;
}

.breadcrumb-gray-100 {
    background: #F9FAFB;
}

.breadcrumb-gray-100 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-100.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-100.breadcrumb-transparent .breadcrumb-item.active {
    color: #F9FAFB;
}

.breadcrumb-gray-200 {
    background: #F3F4F6;
}

.breadcrumb-gray-200 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-200.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-200.breadcrumb-transparent .breadcrumb-item.active {
    color: #F3F4F6;
}

.breadcrumb-gray-300 {
    background: #E5E7EB;
}

.breadcrumb-gray-300 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-300.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-300.breadcrumb-transparent .breadcrumb-item.active {
    color: #E5E7EB;
}

.breadcrumb-gray-400 {
    background: #D1D5DB;
}

.breadcrumb-gray-400 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-400.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-400.breadcrumb-transparent .breadcrumb-item.active {
    color: #D1D5DB;
}

.breadcrumb-gray-500 {
    background: #9CA3AF;
}

.breadcrumb-gray-500 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-500.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-500.breadcrumb-transparent .breadcrumb-item.active {
    color: #9CA3AF;
}

.breadcrumb-gray-600 {
    background: #6B7280;
}

.breadcrumb-gray-600 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-600.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-600.breadcrumb-transparent .breadcrumb-item.active {
    color: #6B7280;
}

.breadcrumb-gray-700 {
    background: #4B5563;
}

.breadcrumb-gray-700 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-700.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-700.breadcrumb-transparent .breadcrumb-item.active {
    color: #4B5563;
}

.breadcrumb-gray-800 {
    background: #374151;
}

.breadcrumb-gray-800 .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-gray-800.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-gray-800.breadcrumb-transparent .breadcrumb-item.active {
    color: #374151;
}

.breadcrumb-facebook {
    background: #3b5999;
}

.breadcrumb-facebook .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-facebook.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-facebook.breadcrumb-transparent .breadcrumb-item.active {
    color: #3b5999;
}

.breadcrumb-twitter {
    background: #1da1f2;
}

.breadcrumb-twitter .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-twitter.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-twitter.breadcrumb-transparent .breadcrumb-item.active {
    color: #1da1f2;
}

.breadcrumb-github {
    background: #222222;
}

.breadcrumb-github .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-github.breadcrumb-transparent {
    background: transparent;
}

.breadcrumb-github.breadcrumb-transparent .breadcrumb-item.active {
    color: #222222;
}

.breadcrumb-text-light .breadcrumb-item, .breadcrumb-text-light .breadcrumb-item a {
    color: #ffffff;
}

.breadcrumb-text-light .breadcrumb-item:before {
    color: #ffffff;
}

/**
 * = Cards
 */
.card {
    position: relative;
}

.card .card-header {
    background: transparent;
}

.card.hover-state:hover {
    background-color: #F3F4F6;
}

.card .profile-cover {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 200px;
}

.message-wrapper .card,
.task-wrapper .card {
    border: 0;
}

.customer-testimonial .content-wrapper:before {
    content: "";
    position: absolute;
    top: 25px;
    left: -1px;
    margin-left: .75rem;
    border: 8px solid #2e3650;
    border-color: transparent #e0e6ec #e0e6ec transparent;
    box-sizing: border-box;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: 0 0.5rem 1rem rgba(46, 54, 80, 0.15);
}

.card-footer {
    background-color: transparent;
}

.card-stats {
    padding-left: 1.9rem;
}

.card .card-blockquote {
    position: relative;
    padding: 2rem;
}

.card .card-blockquote .svg-bg {
    display: block;
    position: absolute;
    width: 100%;
    height: 95px;
    top: -94px;
    left: 0;
}

.page-preview {
    display: block;
    position: relative;
}

.page-preview .show-on-hover {
    position: absolute;
    bottom: -25px;
    background: rgba(38, 43, 64, 0.85);
    padding: 10px 0;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    width: calc(100% + 28px);
    left: -14px;
    opacity: 0;
    transition: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
    .page-preview .show-on-hover {
        transition: none;
    }
}

.page-preview.page-preview-lg .show-on-hover {
    left: -30px;
    width: calc(100% + 60px);
    bottom: -20px;
}

.page-preview:hover .show-on-hover {
    z-index: 99;
    opacity: 1;
}

.theme-settings {
    z-index: 99;
    position: fixed;
    right: 15px;
    bottom: 0;
}

.theme-settings, .theme-settings .card-body {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.theme-settings-close {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: .65rem;
}

.theme-settings-expand {
    right: 15px;
    bottom: 0;
    height: 0;
    transition: 0.3s height;
}

@media (prefers-reduced-motion: reduce) {
    .theme-settings-expand {
        transition: none;
    }
}

.theme-settings-expand.show {
    height: 40px;
}

.theme-settings-expand:hover {
    background: #F3F4F6;
    cursor: pointer;
}

/**
 * = Bootstrap carousels
 */
.carousel-caption, .carousel-caption h5, .carousel-caption .h5 {
    color: #ffffff;
}

.carousel-indicators li {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffffff;
}

.carousel-indicators .active {
    opacity: 1;
    background: #ffffff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: auto;
    height: auto;
    font-weight: 900;
}

.carousel-control-prev-icon {
    background-image: none;
}

.carousel-control-prev-icon::before {
    content: '\f060';
    font-family: "Font Awesome 5 Free";
    font-size: 2rem;
}

.carousel-control-next-icon {
    background-image: none;
}

.carousel-control-next-icon:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 2rem;
}

/**
 * = Close
 */
.close {
    transition: all 0.2s ease;
}

.close > span:not(.sr-only) {
    display: block;
    height: 1.25rem;
    width: 1.25rem;
    background-color: transparent;
    color: rgba(0, 0, 0, 0.6);
    line-height: 17px;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.close:hover, .close:focus {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.9);
    outline: none;
}

.close:hover span:not(.sr-only), .close:focus span:not(.sr-only) {
    background-color: transparent;
}

/**
 * = Custom forms
 */
.custom-control-label:before {
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.custom-control-label span {
    position: relative;
    top: 2px;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-input:active ~ .custom-control-label::before {
    border-color: #262B40;
}

.custom-file-label {
    background-color: #f3f3f5;
}

.custom-file-label::after {
    background-color: #f3f3f5;
}

.custom-select {
    font-size: 1rem;
    box-shadow: none;
}

.custom-select.custom-select-shadow {
    box-shadow: inset 0 1px 2px rgba(46, 54, 80, 0.075);
    transition: box-shadow .15s ease;
}

.custom-select.custom-select-shadow:focus {
    box-shadow: 0.1rem 0.1rem 0 rgba(243, 244, 246, 0.5);
}

.custom-select:hover {
    cursor: pointer;
}

.rating-star.star-lg label {
    margin-bottom: .5rem;
}

.rating-star.star-lg label::before {
    font-size: 1.5rem;
}

.rating-star label {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    color: #D1D5DB;
}

.rating-star label:before {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: all .2s ease;
    font-size: 1.0625rem;
}

.rating-star input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.rating-star > input:checked ~ label {
    color: #f5b759;
}

.rating-star > label:hover {
    color: #f5b759;
}

.rating-star > label:hover ~ label {
    color: #f5b759;
}

.ct-bar {
    stroke-linecap: round;
    stroke-width: 10px;
}

.ct-label {
    fill: #29313d;
    color: #29313d;
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 600;
}

.ct-slice-pie {
    stroke: #ffffff;
    stroke-width: 3px;
}

.ct-chart-donut .ct-series {
    stroke: #ffffff;
    stroke-width: 3px;
}

.ct-chart-pie .ct-label,
.ct-chart-donut .ct-label {
    font-size: 0.75rem;
    font-weight: 600;
}

.small-chart {
    margin-left: -1rem;
}

.ct-chart-pie .ct-label,
.ct-chart-donut .ct-label {
    color: #ffffff;
    fill: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.ct-series-g .ct-grid {
    stroke: #F8BD7A;
    stroke-width: 2px;
    stroke-dasharray: 2px;
}

.ct-series-g .ct-label.ct-horizontal.ct-end {
    margin-left: -9px;
    margin-top: 10px;
    color: #262B40;
}

/**
 * = Dropdowns
 */
.dropdown-menu {
    min-width: 12rem;
}

.dropdown-menu .dropdown-header,
  .dropdown-menu .dropdown-item {
    padding: .5rem 1rem;
    font-size: 1rem;
}

.dropdown-menu .dropdown-header {
    color: #29313d;
    font-weight: 600;
}

.dropdown-menu .dropdown-item {
    color: #4B5563;
    transition: all 0.2s ease;
    font-weight: 300;
}

.dropdown-menu .dropdown-itema:hover {
    color: #29313d;
}

.show .dropdown-menu {
    animation: show-dropdown .2s ease forwards;
}

.dropdown-menu.dropdown-menu-xs {
    min-width: 120px;
    max-width: 120px;
    border: 0.0625rem solid #D1D5DB;
    box-shadow: 0 2px 5px rgba(140, 152, 164, 0.2);
}

.dropdown-divider {
    margin: 0.375rem 0;
    border-color: #D1D5DB;
}

[data-toggle]:hover {
    cursor: pointer;
}

.dropdown-toggle:after, .dropend .dropdown-toggle:after, .dropstart .dropdown-toggle:before, .dropup .dropdown-toggle:after {
    display: none;
}

.dropdown-menu-sm {
    min-width: 100px;
    border: 2.25rem;
}

.dropdown-menu-md {
    min-width: 180px;
    border: 2.25rem;
}

.dropdown-menu-lg {
    min-width: 350px;
    border-radius: 2.25rem;
}

@media (max-width: 991.98px) {
    .dropdown-menu-lg {
        min-width: 285px;
        transform: translateX(15%);
    }
}

.dropdown-menu-xl {
    min-width: 450px;
    border-radius: 2.25rem;
}

@media (max-width: 1199.98px) {
    .dropdown-menu-xl {
        min-width: 285px;
        transform: translateX(15%);
    }
}

@media (min-width: 992px) {
    .form-control.form-control-lg {
        padding: 1rem 0.75rem;
    }
}

.form-check-input.round-check[type="checkbox"] {
    border-radius: 50%;
}

.search-bar .form-control {
    width: 280px;
    transition: width .2s ease-in-out;
    display: inline-block;
}

@media (max-width: 575.98px) {
    .search-bar .form-control {
        width: 120px;
    }

    .search-bar .form-control:focus {
        width: 150px;
    }
}

.input-group .form-control:focus {
    border-color: #D1D5DB;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #D1D5DB;
}

.focused .form-control {
    border-color: #566190;
    background-color: #F9FAFB;
}

.form-switch {
    padding-left: 2.75em;
}

.form-switch .form-check-input {
    height: 1.275em;
}

.form-select .form-select-lg {
    padding: 0.55rem 1.75rem 0.55rem 0.75rem;
}

.file-field input[type="file"] {
    max-width: 230px;
    position: absolute;
    cursor: pointer;
    filter: alpha(opacity=0);
    opacity: 0;
    padding-bottom: 30px;
}

.file-field span {
    cursor: pointer;
}

.datepicker-dropdown {
    z-index: 9999;
}

/**
 * = Icon boxes
 */
.icon-box {
    padding: 1rem;
    position: relative;
}

.icon-box .icon-box-body {
    position: relative;
}

.icon {
    text-align: center;
    display: inline-flex;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

.icon span, .icon svg {
    font-size: 2rem;
}

.icon.icon-small span, .icon.icon-small svg {
    font-size: 0.675rem;
}

.icon.icon-xs span, .icon.icon-xs svg {
    font-size: 0.875rem;
}

.icon.icon-sm span, .icon.icon-sm svg {
    font-size: 1.25rem;
}

.icon.icon-lg span, .icon.icon-lg svg {
    font-size: 2.75rem;
}

.icon.icon-lg svg {
    height: 2rem;
}

.icon.icon-xl span {
    font-size: 4.5rem;
}

.icon.icon-xl svg {
    height: 3.5rem;
}

.icon.w-20 {
    width: 20px;
}

.icon.w-30 {
    width: 30px;
}

.icon-shape {
    width: 4.5rem;
    height: 4.5rem;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-shape span, .icon-shape svg {
    font-size: 2rem;
}

.icon-shape.icon-xs {
    width: 2rem;
    height: 2rem;
}

.icon-shape.icon-xs span, .icon-shape.icon-xs svg {
    font-size: 0.875rem;
}

.icon-shape.icon-sm {
    width: 3rem;
    height: 3rem;
}

.icon-shape.icon-sm span, .icon-shape.icon-sm svg {
    font-size: 1.25rem;
}

.icon-shape.icon-lg {
    width: 5.5rem;
    height: 5.5rem;
}

.icon-shape.icon-lg span, .icon-shape.icon-lg svg {
    font-size: 1.875rem;
}

.list-icon {
    width: 45px;
}

.icon-shape-primary {
    color: #ffffff;
    background-color: #025289;
}

.icon-primary span {
    color: #262B40;
}

.fill-primary {
    fill: #262B40;
}

.icon-shape-secondary {
    color: #ffffff;
    background-color: #eb0e43;
}

.icon-secondary span {
    color: #eb0e43;
}

.fill-secondary {
    fill: #f3b773;
}

.icon-shape-tertiary {
    color: #2CA58D;
    background-color: rgba(44, 165, 141, 0.3);
}

.icon-tertiary span {
    color: #006ab1;
}

.fill-tertiary {
    fill: #2CA58D;
}

.icon-shape-dark {
    color: #262B40;
    background-color: rgba(38, 43, 64, 0.3);
}

.icon-dark span {
    color: #262B40;
}

.fill-dark {
    fill: #262B40;
}

.icon-shape-success {
    color: #05A677;
    background-color: rgba(5, 166, 119, 0.3);
}

.icon-success span {
    color: #05A677;
}

.fill-success {
    fill: #05A677;
}

.icon-shape-info {
    color: #0948B3;
    background-color: rgba(9, 72, 179, 0.3);
}

.icon-info span {
    color: #0948B3;
}

.fill-info {
    fill: #0948B3;
}

.icon-shape-warning {
    color: #f5b759;
    background-color: rgba(245, 183, 89, 0.3);
}

.icon-warning span {
    color: #f5b759;
}

.fill-warning {
    fill: #f5b759;
}

.icon-shape-danger {
    color: #FA5252;
    background-color: rgba(250, 82, 82, 0.3);
}

.icon-danger span {
    color: #FA5252;
}

.fill-danger {
    fill: #FA5252;
}

.icon-shape-white {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
}

.icon-white span {
    color: #ffffff;
}

.fill-white {
    fill: #ffffff;
}

.icon-shape-black {
    color: #2e3650;
    background-color: rgba(46, 54, 80, 0.3);
}

.icon-black span {
    color: #2e3650;
}

.fill-black {
    fill: #2e3650;
}

.icon-shape-pink {
    color: #C96480;
    background-color: rgba(201, 100, 128, 0.3);
}

.icon-pink span {
    color: #C96480;
}

.fill-pink {
    fill: #C96480;
}

.icon-shape-indigo {
    color: #31316A;
    background-color: rgba(49, 49, 106, 0.3);
}

.icon-indigo span {
    color: #31316A;
}

.fill-indigo {
    fill: #31316A;
}

.icon-shape-purple {
    color: #8965e0;
    background-color: rgba(137, 101, 224, 0.3);
}

.icon-purple span {
    color: #8965e0;
}

.fill-purple {
    fill: #8965e0;
}

.icon-shape-gray-100 {
    color: #F9FAFB;
    background-color: rgba(249, 250, 251, 0.3);
}

.icon-gray-100 span {
    color: #F9FAFB;
}

.fill-gray-100 {
    fill: #F9FAFB;
}

.icon-shape-gray-200 {
    color: #F3F4F6;
    background-color: rgba(243, 244, 246, 0.3);
}

.icon-gray-200 span {
    color: #F3F4F6;
}

.fill-gray-200 {
    fill: #F3F4F6;
}

.icon-shape-gray-300 {
    color: #E5E7EB;
    background-color: rgba(229, 231, 235, 0.3);
}

.icon-gray-300 span {
    color: #E5E7EB;
}

.fill-gray-300 {
    fill: #E5E7EB;
}

.icon-shape-gray-400 {
    color: #D1D5DB;
    background-color: rgba(209, 213, 219, 0.3);
}

.icon-gray-400 span {
    color: #D1D5DB;
}

.fill-gray-400 {
    fill: #D1D5DB;
}

.icon-shape-gray-500 {
    color: #9CA3AF;
    background-color: rgba(156, 163, 175, 0.3);
}

.icon-gray-500 span {
    color: #9CA3AF;
}

.fill-gray-500 {
    fill: #9CA3AF;
}

.icon-shape-gray-600 {
    color: #6B7280;
    background-color: rgba(107, 114, 128, 0.3);
}

.icon-gray-600 span {
    color: #6B7280;
}

.fill-gray-600 {
    fill: #6B7280;
}

.icon-shape-gray-700 {
    color: #4B5563;
    background-color: rgba(75, 85, 99, 0.3);
}

.icon-gray-700 span {
    color: #4B5563;
}

.fill-gray-700 {
    fill: #4B5563;
}

.icon-shape-gray-800 {
    color: #374151;
    background-color: rgba(55, 65, 81, 0.3);
}

.icon-gray-800 span {
    color: #374151;
}

.fill-gray-800 {
    fill: #374151;
}

.icon-shape-facebook {
    color: #3b5999;
    background-color: rgba(59, 89, 153, 0.3);
}

.icon-facebook span {
    color: #3b5999;
}

.fill-facebook {
    fill: #3b5999;
}

.icon-shape-twitter {
    color: #1da1f2;
    background-color: rgba(29, 161, 242, 0.3);
}

.icon-twitter span {
    color: #1da1f2;
}

.fill-twitter {
    fill: #1da1f2;
}

.icon-shape-github {
    color: #222222;
    background-color: rgba(34, 34, 34, 0.3);
}

.icon-github span {
    color: #222222;
}

.fill-github {
    fill: #222222;
}

.shape-xs {
    width: 10px;
    height: 10px;
}

.icon-badge {
    display: inline-block;
    position: absolute;
    top: -11px;
    right: 6px;
    height: 7px;
    width: 7px;
    background-color: #FA5252;
}

.bootstrap-big-icon {
    position: absolute;
    opacity: .05;
    transform: rotate(17deg);
}

@media (min-width: 992px) {
    .bootstrap-big-icon {
        right: -20%;
        bottom: 6%;
    }
}

@media (min-width: 1200px) {
    .bootstrap-big-icon {
        right: -10%;
        bottom: 6%;
    }
}

.github-big-icon {
    position: absolute;
    right: 80px;
    top: 165px;
}

.github-big-icon span {
    font-size: 800px;
    opacity: .1;
}

/**
 * = Images
 */
.image-xl {
    height: 20rem;
}

.image-xl img {
    height: 20rem;
}

.image-lg {
    height: 12rem;
}

.image-lg img {
    height: 12rem;
}

.image-md {
    height: 5.5rem;
}

.image-md img {
    height: 5.5rem;
}

.image-sm {
    height: 3rem;
}

.image-sm img {
    height: 3rem;
}

.image-xs {
    height: 1.5rem;
}

.image-xs img {
    height: 1.5rem;
}

.image-small {
    height: 1rem;
}

.image-small img {
    height: 1rem;
}

.img-thumbnail {
    border-width: 0.125rem;
    box-shadow: none;
}

.full-image {
    height: 100%;
}

.gallery-feed img {
    width: 20%;
    margin-right: .5rem;
    margin-bottom: .5rem;
    float: left;
}

.language-flag {
    width: auto;
    height: 1rem;
    margin-right: 0.4rem;
    position: relative;
    top: -2px;
}

/**
 * = Input groups
 */
.input-group {
    border-radius: 1rem;
    transition: all 0.2s ease;
}

.input-group .form-control:focus {
    border-color: #566190;
    transition: all 0.2s ease;
}

.input-group-text {
    font-size: 0.875rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/**
 * = List groups
 */
.list-group-space .list-group-item {
    margin-bottom: 1.5rem;
    border-radius: 1rem;
}

.list-group-item {
    border: 0;
}

.list-group-item.active {
    z-index: 2;
    color: #ffffff;
    background-color: #262B40;
    border-color: #262B40;
}

.list-group-item i {
    width: 1rem;
}

.list-group-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    vertical-align: top;
    margin: -.1rem 1.2rem 0 -.2rem;
}

.list-group-content {
    flex: 1;
    min-width: 0;
}

.list-group-content > p {
    color: #9CA3AF;
    line-height: 1.5;
    margin: .2rem 0 0;
}

.list-group-heading {
    font-size: 1rem;
    color: #374151;
}

.list-group-heading > small, .list-group-heading > .small {
    float: right;
    color: #9CA3AF;
    font-weight: 500;
}

.list-group.simple-list .list-group-item {
    background: transparent;
    border: none;
    padding: 0.375rem 0.125rem;
}

.list-group.simple-list .list-group-item i {
    vertical-align: middle;
    width: 35px;
    display: inline-block;
}

.news-list .row > [class*='col'] {
    padding: 0 0.25rem;
}

.news-list > li:not(:last-child) {
    margin-bottom: .75rem;
}

.news-list img {
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/**
 * = Modals
 */
.modal.static-example {
    position: relative;
    display: block;
}

.modal-content {
    border: 0;
    border-radius: 1rem;
}

.modal-fluid .modal-dialog {
    margin-top: 0;
    margin-bottom: 0;
}

.modal-fluid .modal-content {
    border-radius: 0;
}

.modal-primary .modal-title {
    color: color-yiq(#262B40);
}

.modal-primary .modal-header,
.modal-primary .modal-footer {
    border-color: rgba(38, 43, 64, 0.075);
}

.modal-primary .modal-content {
    background-color: #262B40;
    color: color-yiq(#262B40);
}

.modal-primary .modal-content .heading {
    color: color-yiq(#262B40);
}

.modal-primary .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-secondary .modal-title {
    color: color-yiq(#f3b773);
}

.modal-secondary .modal-header,
.modal-secondary .modal-footer {
    border-color: rgba(243, 183, 115, 0.075);
}

.modal-secondary .modal-content {
    background-color: #f3b773;
    color: color-yiq(#f3b773);
}

.modal-secondary .modal-content .heading {
    color: color-yiq(#f3b773);
}

.modal-secondary .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-tertiary .modal-title {
    color: color-yiq(#2CA58D);
}

.modal-tertiary .modal-header,
.modal-tertiary .modal-footer {
    border-color: rgba(44, 165, 141, 0.075);
}

.modal-tertiary .modal-content {
    background-color: #2CA58D;
    color: color-yiq(#2CA58D);
}

.modal-tertiary .modal-content .heading {
    color: color-yiq(#2CA58D);
}

.modal-tertiary .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-dark .modal-title {
    color: color-yiq(#262B40);
}

.modal-dark .modal-header,
.modal-dark .modal-footer {
    border-color: rgba(38, 43, 64, 0.075);
}

.modal-dark .modal-content {
    background-color: #262B40;
    color: color-yiq(#262B40);
}

.modal-dark .modal-content .heading {
    color: color-yiq(#262B40);
}

.modal-dark .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-success .modal-title {
    color: color-yiq(#05A677);
}

.modal-success .modal-header,
.modal-success .modal-footer {
    border-color: rgba(5, 166, 119, 0.075);
}

.modal-success .modal-content {
    background-color: #05A677;
    color: color-yiq(#05A677);
}

.modal-success .modal-content .heading {
    color: color-yiq(#05A677);
}

.modal-success .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-info .modal-title {
    color: color-yiq(#0948B3);
}

.modal-info .modal-header,
.modal-info .modal-footer {
    border-color: rgba(9, 72, 179, 0.075);
}

.modal-info .modal-content {
    background-color: #0948B3;
    color: color-yiq(#0948B3);
}

.modal-info .modal-content .heading {
    color: color-yiq(#0948B3);
}

.modal-info .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-warning .modal-title {
    color: color-yiq(#f5b759);
}

.modal-warning .modal-header,
.modal-warning .modal-footer {
    border-color: rgba(245, 183, 89, 0.075);
}

.modal-warning .modal-content {
    background-color: #f5b759;
    color: color-yiq(#f5b759);
}

.modal-warning .modal-content .heading {
    color: color-yiq(#f5b759);
}

.modal-warning .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-danger .modal-title {
    color: color-yiq(#FA5252);
}

.modal-danger .modal-header,
.modal-danger .modal-footer {
    border-color: rgba(250, 82, 82, 0.075);
}

.modal-danger .modal-content {
    background-color: #FA5252;
    color: color-yiq(#FA5252);
}

.modal-danger .modal-content .heading {
    color: color-yiq(#FA5252);
}

.modal-danger .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-white .modal-title {
    color: color-yiq(#ffffff);
}

.modal-white .modal-header,
.modal-white .modal-footer {
    border-color: rgba(255, 255, 255, 0.075);
}

.modal-white .modal-content {
    background-color: #ffffff;
    color: color-yiq(#ffffff);
}

.modal-white .modal-content .heading {
    color: color-yiq(#ffffff);
}

.modal-white .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-black .modal-title {
    color: color-yiq(#2e3650);
}

.modal-black .modal-header,
.modal-black .modal-footer {
    border-color: rgba(46, 54, 80, 0.075);
}

.modal-black .modal-content {
    background-color: #2e3650;
    color: color-yiq(#2e3650);
}

.modal-black .modal-content .heading {
    color: color-yiq(#2e3650);
}

.modal-black .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-pink .modal-title {
    color: color-yiq(#C96480);
}

.modal-pink .modal-header,
.modal-pink .modal-footer {
    border-color: rgba(201, 100, 128, 0.075);
}

.modal-pink .modal-content {
    background-color: #C96480;
    color: color-yiq(#C96480);
}

.modal-pink .modal-content .heading {
    color: color-yiq(#C96480);
}

.modal-pink .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-indigo .modal-title {
    color: color-yiq(#31316A);
}

.modal-indigo .modal-header,
.modal-indigo .modal-footer {
    border-color: rgba(49, 49, 106, 0.075);
}

.modal-indigo .modal-content {
    background-color: #31316A;
    color: color-yiq(#31316A);
}

.modal-indigo .modal-content .heading {
    color: color-yiq(#31316A);
}

.modal-indigo .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-purple .modal-title {
    color: color-yiq(#8965e0);
}

.modal-purple .modal-header,
.modal-purple .modal-footer {
    border-color: rgba(137, 101, 224, 0.075);
}

.modal-purple .modal-content {
    background-color: #8965e0;
    color: color-yiq(#8965e0);
}

.modal-purple .modal-content .heading {
    color: color-yiq(#8965e0);
}

.modal-purple .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-100 .modal-title {
    color: color-yiq(#F9FAFB);
}

.modal-gray-100 .modal-header,
.modal-gray-100 .modal-footer {
    border-color: rgba(249, 250, 251, 0.075);
}

.modal-gray-100 .modal-content {
    background-color: #F9FAFB;
    color: color-yiq(#F9FAFB);
}

.modal-gray-100 .modal-content .heading {
    color: color-yiq(#F9FAFB);
}

.modal-gray-100 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-200 .modal-title {
    color: color-yiq(#F3F4F6);
}

.modal-gray-200 .modal-header,
.modal-gray-200 .modal-footer {
    border-color: rgba(243, 244, 246, 0.075);
}

.modal-gray-200 .modal-content {
    background-color: #F3F4F6;
    color: color-yiq(#F3F4F6);
}

.modal-gray-200 .modal-content .heading {
    color: color-yiq(#F3F4F6);
}

.modal-gray-200 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-300 .modal-title {
    color: color-yiq(#E5E7EB);
}

.modal-gray-300 .modal-header,
.modal-gray-300 .modal-footer {
    border-color: rgba(229, 231, 235, 0.075);
}

.modal-gray-300 .modal-content {
    background-color: #E5E7EB;
    color: color-yiq(#E5E7EB);
}

.modal-gray-300 .modal-content .heading {
    color: color-yiq(#E5E7EB);
}

.modal-gray-300 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-400 .modal-title {
    color: color-yiq(#D1D5DB);
}

.modal-gray-400 .modal-header,
.modal-gray-400 .modal-footer {
    border-color: rgba(209, 213, 219, 0.075);
}

.modal-gray-400 .modal-content {
    background-color: #D1D5DB;
    color: color-yiq(#D1D5DB);
}

.modal-gray-400 .modal-content .heading {
    color: color-yiq(#D1D5DB);
}

.modal-gray-400 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-500 .modal-title {
    color: color-yiq(#9CA3AF);
}

.modal-gray-500 .modal-header,
.modal-gray-500 .modal-footer {
    border-color: rgba(156, 163, 175, 0.075);
}

.modal-gray-500 .modal-content {
    background-color: #9CA3AF;
    color: color-yiq(#9CA3AF);
}

.modal-gray-500 .modal-content .heading {
    color: color-yiq(#9CA3AF);
}

.modal-gray-500 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-600 .modal-title {
    color: color-yiq(#6B7280);
}

.modal-gray-600 .modal-header,
.modal-gray-600 .modal-footer {
    border-color: rgba(107, 114, 128, 0.075);
}

.modal-gray-600 .modal-content {
    background-color: #6B7280;
    color: color-yiq(#6B7280);
}

.modal-gray-600 .modal-content .heading {
    color: color-yiq(#6B7280);
}

.modal-gray-600 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-700 .modal-title {
    color: color-yiq(#4B5563);
}

.modal-gray-700 .modal-header,
.modal-gray-700 .modal-footer {
    border-color: rgba(75, 85, 99, 0.075);
}

.modal-gray-700 .modal-content {
    background-color: #4B5563;
    color: color-yiq(#4B5563);
}

.modal-gray-700 .modal-content .heading {
    color: color-yiq(#4B5563);
}

.modal-gray-700 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-gray-800 .modal-title {
    color: color-yiq(#374151);
}

.modal-gray-800 .modal-header,
.modal-gray-800 .modal-footer {
    border-color: rgba(55, 65, 81, 0.075);
}

.modal-gray-800 .modal-content {
    background-color: #374151;
    color: color-yiq(#374151);
}

.modal-gray-800 .modal-content .heading {
    color: color-yiq(#374151);
}

.modal-gray-800 .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-facebook .modal-title {
    color: color-yiq(#3b5999);
}

.modal-facebook .modal-header,
.modal-facebook .modal-footer {
    border-color: rgba(59, 89, 153, 0.075);
}

.modal-facebook .modal-content {
    background-color: #3b5999;
    color: color-yiq(#3b5999);
}

.modal-facebook .modal-content .heading {
    color: color-yiq(#3b5999);
}

.modal-facebook .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-twitter .modal-title {
    color: color-yiq(#1da1f2);
}

.modal-twitter .modal-header,
.modal-twitter .modal-footer {
    border-color: rgba(29, 161, 242, 0.075);
}

.modal-twitter .modal-content {
    background-color: #1da1f2;
    color: color-yiq(#1da1f2);
}

.modal-twitter .modal-content .heading {
    color: color-yiq(#1da1f2);
}

.modal-twitter .close > span:not(.sr-only) {
    color: #ffffff;
}

.modal-github .modal-title {
    color: color-yiq(#222222);
}

.modal-github .modal-header,
.modal-github .modal-footer {
    border-color: rgba(34, 34, 34, 0.075);
}

.modal-github .modal-content {
    background-color: #222222;
    color: color-yiq(#222222);
}

.modal-github .modal-content .heading {
    color: color-yiq(#222222);
}

.modal-github .close > span:not(.sr-only) {
    color: #ffffff;
}

/**
 * = Navs
 */
.nav-link {
    color: #374151;
}

.nav-link:hover, .nav-link.active {
    color: #f3b773;
}

.nav-link:hover img, .nav-link.active img {
    opacity: inherit;
    transition: all 0.2s ease;
}

.nav-link span {
    position: relative;
}

.nav-tabs .nav-item {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    border: 0;
    padding: 1rem 1rem;
    background-color: #ffffff;
}

.nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #262B40;
}

.nav-tabs.nav-dark .nav-link.active {
    color: #ffffff;
    background-color: #12358a;
}

.nav-tabs.nav-light .nav-link.active {
    color: #2e3650;
    background-color: #D1D5DB;
}

.nav-tabs.nav-light .nav-link:hover {
    color: #2e3650;
}

.nav-pills .nav-item:not(:last-child) {
    padding-right: 1rem;
}

.nav-pills .nav-link {
    padding: 0.75rem 0.85rem;
    transition: all 0.2s ease;
    box-shadow: none;
    border: 1px solid #D1D5DB;
}

.nav-pills .nav-link.avatar-link {
    border: 0;
}

.nav-pills .nav-link:hover {
    color: #262B40;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #262B40;
    background-color: #f8f8f8;
    border-color: #262B40;
}

.nav-pills.rounded .nav-link {
    border-radius: 30px;
}

.nav-pills.rounded.vertical-tab .nav-link {
    margin-bottom: .625rem;
    min-width: 100px;
}

.nav-pills.rounded.vertical-tab .nav-item:not(:last-child) {
    padding-right: 0;
}

.nav-pills.bordered-pill-md .nav-link {
    border: 0.125rem solid #F3F4F6;
    font-weight: 600;
}

.nav-pills.vertical-tab .nav-link {
    margin-bottom: .625rem;
}

.nav-pills.vertical-tab .nav-item:not(:last-child) {
    padding-right: 0;
}

.nav-pills .nav-item {
    margin-bottom: 1rem;
}

@media (max-width: 575.98px) {
    .nav-pills:not(.nav-pills-circle) .nav-item {
        padding-right: 0;
    }
}

.nav-pill-circle .nav-link {
    display: flex;
    text-align: center;
    height: 80px;
    width: 80px;
    padding: 0;
    box-shadow: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.nav-pill-circle .nav-link.avatar-link {
    box-shadow: none;
}

.nav-pill-circle.vertical-tab .nav-link-icon i, .nav-pill-circle.vertical-tab .nav-link-icon svg {
    font-size: 1.5rem;
}

.nav-pill-circle.vertical-tab .nav-item:not(:last-child) {
    padding-right: 0;
}

.nav-pill-circle .nav-link-icon i, .nav-pill-circle .nav-link-icon svg {
    font-size: 1.25rem;
    margin: 0;
    display: block;
}

.nav-pill-square .nav-link {
    text-align: center;
    min-width: 80px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-pill-square.vertical-tab .nav-link {
    margin-bottom: .625rem;
    min-width: 100px;
}

.nav-pill-square.vertical-tab .nav-item:not(:last-child) {
    padding-right: 0;
}

.nav-pill-square .nav-link-icon i, .nav-pill-square .nav-link-icon svg {
    font-size: 1.25rem;
    margin: 0;
    display: block;
    line-height: 50px;
}

.nav-wrapper {
    padding: 1rem 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.nav-wrapper + .card {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .tab-pane pre {
    padding: 0;
    margin: 0;
}

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

/**
 * = Paginations
 */
.circle-pagination .page-link,
.circle-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
}

/**
 * = Popovers
 */
.popover {
    border: 0;
}

.popover-header {
    font-weight: 600;
}

.popover-primary {
    background-color: #262B40;
}

.popover-primary .popover-header {
    background-color: #262B40;
    color: color-yiq(#262B40);
}

.popover-primary .popover-body {
    color: color-yiq(#262B40);
}

.popover-primary .popover-header {
    border-color: rgba(38, 43, 64, 0.2);
}

.popover-primary.bs-popover-top .arrow::after, .popover-primary.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #262B40;
}

.popover-primary.bs-popover-end .arrow::after, .popover-primary.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #262B40;
}

.popover-primary.bs-popover-bottom .arrow::after, .popover-primary.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #262B40;
}

.popover-primary.bs-popover-start .arrow::after, .popover-primary.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #262B40;
}

.popover-secondary {
    background-color: #f3b773;
}

.popover-secondary .popover-header {
    background-color: #f3b773;
    color: color-yiq(#f3b773);
}

.popover-secondary .popover-body {
    color: color-yiq(#f3b773);
}

.popover-secondary .popover-header {
    border-color: rgba(243, 183, 115, 0.2);
}

.popover-secondary.bs-popover-top .arrow::after, .popover-secondary.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #f3b773;
}

.popover-secondary.bs-popover-end .arrow::after, .popover-secondary.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #f3b773;
}

.popover-secondary.bs-popover-bottom .arrow::after, .popover-secondary.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #f3b773;
}

.popover-secondary.bs-popover-start .arrow::after, .popover-secondary.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #f3b773;
}

.popover-tertiary {
    background-color: #2CA58D;
}

.popover-tertiary .popover-header {
    background-color: #2CA58D;
    color: color-yiq(#2CA58D);
}

.popover-tertiary .popover-body {
    color: color-yiq(#2CA58D);
}

.popover-tertiary .popover-header {
    border-color: rgba(44, 165, 141, 0.2);
}

.popover-tertiary.bs-popover-top .arrow::after, .popover-tertiary.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #2CA58D;
}

.popover-tertiary.bs-popover-end .arrow::after, .popover-tertiary.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #2CA58D;
}

.popover-tertiary.bs-popover-bottom .arrow::after, .popover-tertiary.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #2CA58D;
}

.popover-tertiary.bs-popover-start .arrow::after, .popover-tertiary.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #2CA58D;
}

.popover-dark {
    background-color: #262B40;
}

.popover-dark .popover-header {
    background-color: #262B40;
    color: color-yiq(#262B40);
}

.popover-dark .popover-body {
    color: color-yiq(#262B40);
}

.popover-dark .popover-header {
    border-color: rgba(38, 43, 64, 0.2);
}

.popover-dark.bs-popover-top .arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #262B40;
}

.popover-dark.bs-popover-end .arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #262B40;
}

.popover-dark.bs-popover-bottom .arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #262B40;
}

.popover-dark.bs-popover-start .arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #262B40;
}

.popover-success {
    background-color: #05A677;
}

.popover-success .popover-header {
    background-color: #05A677;
    color: color-yiq(#05A677);
}

.popover-success .popover-body {
    color: color-yiq(#05A677);
}

.popover-success .popover-header {
    border-color: rgba(5, 166, 119, 0.2);
}

.popover-success.bs-popover-top .arrow::after, .popover-success.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #05A677;
}

.popover-success.bs-popover-end .arrow::after, .popover-success.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #05A677;
}

.popover-success.bs-popover-bottom .arrow::after, .popover-success.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #05A677;
}

.popover-success.bs-popover-start .arrow::after, .popover-success.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #05A677;
}

.popover-info {
    background-color: #0948B3;
}

.popover-info .popover-header {
    background-color: #0948B3;
    color: color-yiq(#0948B3);
}

.popover-info .popover-body {
    color: color-yiq(#0948B3);
}

.popover-info .popover-header {
    border-color: rgba(9, 72, 179, 0.2);
}

.popover-info.bs-popover-top .arrow::after, .popover-info.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #0948B3;
}

.popover-info.bs-popover-end .arrow::after, .popover-info.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #0948B3;
}

.popover-info.bs-popover-bottom .arrow::after, .popover-info.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #0948B3;
}

.popover-info.bs-popover-start .arrow::after, .popover-info.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #0948B3;
}

.popover-warning {
    background-color: #f5b759;
}

.popover-warning .popover-header {
    background-color: #f5b759;
    color: color-yiq(#f5b759);
}

.popover-warning .popover-body {
    color: color-yiq(#f5b759);
}

.popover-warning .popover-header {
    border-color: rgba(245, 183, 89, 0.2);
}

.popover-warning.bs-popover-top .arrow::after, .popover-warning.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #f5b759;
}

.popover-warning.bs-popover-end .arrow::after, .popover-warning.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #f5b759;
}

.popover-warning.bs-popover-bottom .arrow::after, .popover-warning.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #f5b759;
}

.popover-warning.bs-popover-start .arrow::after, .popover-warning.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #f5b759;
}

.popover-danger {
    background-color: #FA5252;
}

.popover-danger .popover-header {
    background-color: #FA5252;
    color: color-yiq(#FA5252);
}

.popover-danger .popover-body {
    color: color-yiq(#FA5252);
}

.popover-danger .popover-header {
    border-color: rgba(250, 82, 82, 0.2);
}

.popover-danger.bs-popover-top .arrow::after, .popover-danger.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #FA5252;
}

.popover-danger.bs-popover-end .arrow::after, .popover-danger.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #FA5252;
}

.popover-danger.bs-popover-bottom .arrow::after, .popover-danger.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #FA5252;
}

.popover-danger.bs-popover-start .arrow::after, .popover-danger.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #FA5252;
}

.popover-white {
    background-color: #ffffff;
}

.popover-white .popover-header {
    background-color: #ffffff;
    color: color-yiq(#ffffff);
}

.popover-white .popover-body {
    color: color-yiq(#ffffff);
}

.popover-white .popover-header {
    border-color: rgba(255, 255, 255, 0.2);
}

.popover-white.bs-popover-top .arrow::after, .popover-white.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #ffffff;
}

.popover-white.bs-popover-end .arrow::after, .popover-white.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #ffffff;
}

.popover-white.bs-popover-bottom .arrow::after, .popover-white.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #ffffff;
}

.popover-white.bs-popover-start .arrow::after, .popover-white.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #ffffff;
}

.popover-black {
    background-color: #2e3650;
}

.popover-black .popover-header {
    background-color: #2e3650;
    color: color-yiq(#2e3650);
}

.popover-black .popover-body {
    color: color-yiq(#2e3650);
}

.popover-black .popover-header {
    border-color: rgba(46, 54, 80, 0.2);
}

.popover-black.bs-popover-top .arrow::after, .popover-black.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #2e3650;
}

.popover-black.bs-popover-end .arrow::after, .popover-black.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #2e3650;
}

.popover-black.bs-popover-bottom .arrow::after, .popover-black.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #2e3650;
}

.popover-black.bs-popover-start .arrow::after, .popover-black.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #2e3650;
}

.popover-pink {
    background-color: #C96480;
}

.popover-pink .popover-header {
    background-color: #C96480;
    color: color-yiq(#C96480);
}

.popover-pink .popover-body {
    color: color-yiq(#C96480);
}

.popover-pink .popover-header {
    border-color: rgba(201, 100, 128, 0.2);
}

.popover-pink.bs-popover-top .arrow::after, .popover-pink.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #C96480;
}

.popover-pink.bs-popover-end .arrow::after, .popover-pink.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #C96480;
}

.popover-pink.bs-popover-bottom .arrow::after, .popover-pink.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #C96480;
}

.popover-pink.bs-popover-start .arrow::after, .popover-pink.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #C96480;
}

.popover-indigo {
    background-color: #31316A;
}

.popover-indigo .popover-header {
    background-color: #31316A;
    color: color-yiq(#31316A);
}

.popover-indigo .popover-body {
    color: color-yiq(#31316A);
}

.popover-indigo .popover-header {
    border-color: rgba(49, 49, 106, 0.2);
}

.popover-indigo.bs-popover-top .arrow::after, .popover-indigo.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #31316A;
}

.popover-indigo.bs-popover-end .arrow::after, .popover-indigo.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #31316A;
}

.popover-indigo.bs-popover-bottom .arrow::after, .popover-indigo.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #31316A;
}

.popover-indigo.bs-popover-start .arrow::after, .popover-indigo.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #31316A;
}

.popover-purple {
    background-color: #8965e0;
}

.popover-purple .popover-header {
    background-color: #8965e0;
    color: color-yiq(#8965e0);
}

.popover-purple .popover-body {
    color: color-yiq(#8965e0);
}

.popover-purple .popover-header {
    border-color: rgba(137, 101, 224, 0.2);
}

.popover-purple.bs-popover-top .arrow::after, .popover-purple.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #8965e0;
}

.popover-purple.bs-popover-end .arrow::after, .popover-purple.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #8965e0;
}

.popover-purple.bs-popover-bottom .arrow::after, .popover-purple.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #8965e0;
}

.popover-purple.bs-popover-start .arrow::after, .popover-purple.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #8965e0;
}

.popover-gray-100 {
    background-color: #F9FAFB;
}

.popover-gray-100 .popover-header {
    background-color: #F9FAFB;
    color: color-yiq(#F9FAFB);
}

.popover-gray-100 .popover-body {
    color: color-yiq(#F9FAFB);
}

.popover-gray-100 .popover-header {
    border-color: rgba(249, 250, 251, 0.2);
}

.popover-gray-100.bs-popover-top .arrow::after, .popover-gray-100.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #F9FAFB;
}

.popover-gray-100.bs-popover-end .arrow::after, .popover-gray-100.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #F9FAFB;
}

.popover-gray-100.bs-popover-bottom .arrow::after, .popover-gray-100.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #F9FAFB;
}

.popover-gray-100.bs-popover-start .arrow::after, .popover-gray-100.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #F9FAFB;
}

.popover-gray-200 {
    background-color: #F3F4F6;
}

.popover-gray-200 .popover-header {
    background-color: #F3F4F6;
    color: color-yiq(#F3F4F6);
}

.popover-gray-200 .popover-body {
    color: color-yiq(#F3F4F6);
}

.popover-gray-200 .popover-header {
    border-color: rgba(243, 244, 246, 0.2);
}

.popover-gray-200.bs-popover-top .arrow::after, .popover-gray-200.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #F3F4F6;
}

.popover-gray-200.bs-popover-end .arrow::after, .popover-gray-200.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #F3F4F6;
}

.popover-gray-200.bs-popover-bottom .arrow::after, .popover-gray-200.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #F3F4F6;
}

.popover-gray-200.bs-popover-start .arrow::after, .popover-gray-200.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #F3F4F6;
}

.popover-gray-300 {
    background-color: #E5E7EB;
}

.popover-gray-300 .popover-header {
    background-color: #E5E7EB;
    color: color-yiq(#E5E7EB);
}

.popover-gray-300 .popover-body {
    color: color-yiq(#E5E7EB);
}

.popover-gray-300 .popover-header {
    border-color: rgba(229, 231, 235, 0.2);
}

.popover-gray-300.bs-popover-top .arrow::after, .popover-gray-300.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #E5E7EB;
}

.popover-gray-300.bs-popover-end .arrow::after, .popover-gray-300.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #E5E7EB;
}

.popover-gray-300.bs-popover-bottom .arrow::after, .popover-gray-300.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #E5E7EB;
}

.popover-gray-300.bs-popover-start .arrow::after, .popover-gray-300.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #E5E7EB;
}

.popover-gray-400 {
    background-color: #D1D5DB;
}

.popover-gray-400 .popover-header {
    background-color: #D1D5DB;
    color: color-yiq(#D1D5DB);
}

.popover-gray-400 .popover-body {
    color: color-yiq(#D1D5DB);
}

.popover-gray-400 .popover-header {
    border-color: rgba(209, 213, 219, 0.2);
}

.popover-gray-400.bs-popover-top .arrow::after, .popover-gray-400.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #D1D5DB;
}

.popover-gray-400.bs-popover-end .arrow::after, .popover-gray-400.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #D1D5DB;
}

.popover-gray-400.bs-popover-bottom .arrow::after, .popover-gray-400.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #D1D5DB;
}

.popover-gray-400.bs-popover-start .arrow::after, .popover-gray-400.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #D1D5DB;
}

.popover-gray-500 {
    background-color: #9CA3AF;
}

.popover-gray-500 .popover-header {
    background-color: #9CA3AF;
    color: color-yiq(#9CA3AF);
}

.popover-gray-500 .popover-body {
    color: color-yiq(#9CA3AF);
}

.popover-gray-500 .popover-header {
    border-color: rgba(156, 163, 175, 0.2);
}

.popover-gray-500.bs-popover-top .arrow::after, .popover-gray-500.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #9CA3AF;
}

.popover-gray-500.bs-popover-end .arrow::after, .popover-gray-500.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #9CA3AF;
}

.popover-gray-500.bs-popover-bottom .arrow::after, .popover-gray-500.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #9CA3AF;
}

.popover-gray-500.bs-popover-start .arrow::after, .popover-gray-500.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #9CA3AF;
}

.popover-gray-600 {
    background-color: #6B7280;
}

.popover-gray-600 .popover-header {
    background-color: #6B7280;
    color: color-yiq(#6B7280);
}

.popover-gray-600 .popover-body {
    color: color-yiq(#6B7280);
}

.popover-gray-600 .popover-header {
    border-color: rgba(107, 114, 128, 0.2);
}

.popover-gray-600.bs-popover-top .arrow::after, .popover-gray-600.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #6B7280;
}

.popover-gray-600.bs-popover-end .arrow::after, .popover-gray-600.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #6B7280;
}

.popover-gray-600.bs-popover-bottom .arrow::after, .popover-gray-600.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #6B7280;
}

.popover-gray-600.bs-popover-start .arrow::after, .popover-gray-600.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #6B7280;
}

.popover-gray-700 {
    background-color: #4B5563;
}

.popover-gray-700 .popover-header {
    background-color: #4B5563;
    color: color-yiq(#4B5563);
}

.popover-gray-700 .popover-body {
    color: color-yiq(#4B5563);
}

.popover-gray-700 .popover-header {
    border-color: rgba(75, 85, 99, 0.2);
}

.popover-gray-700.bs-popover-top .arrow::after, .popover-gray-700.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #4B5563;
}

.popover-gray-700.bs-popover-end .arrow::after, .popover-gray-700.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #4B5563;
}

.popover-gray-700.bs-popover-bottom .arrow::after, .popover-gray-700.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #4B5563;
}

.popover-gray-700.bs-popover-start .arrow::after, .popover-gray-700.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #4B5563;
}

.popover-gray-800 {
    background-color: #374151;
}

.popover-gray-800 .popover-header {
    background-color: #374151;
    color: color-yiq(#374151);
}

.popover-gray-800 .popover-body {
    color: color-yiq(#374151);
}

.popover-gray-800 .popover-header {
    border-color: rgba(55, 65, 81, 0.2);
}

.popover-gray-800.bs-popover-top .arrow::after, .popover-gray-800.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #374151;
}

.popover-gray-800.bs-popover-end .arrow::after, .popover-gray-800.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #374151;
}

.popover-gray-800.bs-popover-bottom .arrow::after, .popover-gray-800.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #374151;
}

.popover-gray-800.bs-popover-start .arrow::after, .popover-gray-800.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #374151;
}

.popover-facebook {
    background-color: #3b5999;
}

.popover-facebook .popover-header {
    background-color: #3b5999;
    color: color-yiq(#3b5999);
}

.popover-facebook .popover-body {
    color: color-yiq(#3b5999);
}

.popover-facebook .popover-header {
    border-color: rgba(59, 89, 153, 0.2);
}

.popover-facebook.bs-popover-top .arrow::after, .popover-facebook.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #3b5999;
}

.popover-facebook.bs-popover-end .arrow::after, .popover-facebook.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #3b5999;
}

.popover-facebook.bs-popover-bottom .arrow::after, .popover-facebook.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #3b5999;
}

.popover-facebook.bs-popover-start .arrow::after, .popover-facebook.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #3b5999;
}

.popover-twitter {
    background-color: #1da1f2;
}

.popover-twitter .popover-header {
    background-color: #1da1f2;
    color: color-yiq(#1da1f2);
}

.popover-twitter .popover-body {
    color: color-yiq(#1da1f2);
}

.popover-twitter .popover-header {
    border-color: rgba(29, 161, 242, 0.2);
}

.popover-twitter.bs-popover-top .arrow::after, .popover-twitter.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #1da1f2;
}

.popover-twitter.bs-popover-end .arrow::after, .popover-twitter.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #1da1f2;
}

.popover-twitter.bs-popover-bottom .arrow::after, .popover-twitter.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #1da1f2;
}

.popover-twitter.bs-popover-start .arrow::after, .popover-twitter.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #1da1f2;
}

.popover-github {
    background-color: #222222;
}

.popover-github .popover-header {
    background-color: #222222;
    color: color-yiq(#222222);
}

.popover-github .popover-body {
    color: color-yiq(#222222);
}

.popover-github .popover-header {
    border-color: rgba(34, 34, 34, 0.2);
}

.popover-github.bs-popover-top .arrow::after, .popover-github.bs-popover-auto[data-popper-placement^="top"] .arrow::after {
    border-top-color: #222222;
}

.popover-github.bs-popover-end .arrow::after, .popover-github.bs-popover-auto[data-popper-placement^="right"] .arrow::after {
    border-right-color: #222222;
}

.popover-github.bs-popover-bottom .arrow::after, .popover-github.bs-popover-auto[data-popper-placement^="bottom"] .arrow::after {
    border-bottom-color: #222222;
}

.popover-github.bs-popover-start .arrow::after, .popover-github.bs-popover-auto[data-popper-placement^="left"] .arrow::after {
    border-left-color: #222222;
}

/**
 * = Progress bars
 */
.progress-wrapper {
    position: relative;
}

.progress-bar {
    box-shadow: none;
    border-radius: 0;
    height: auto;
}

.progress {
    height: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #F3F4F6;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-xl {
    height: 0.8rem;
}

.progress-lg {
    height: 0.6rem;
}

.progress-sm {
    height: 0.2rem;
}

.progress-info {
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-bottom: .5rem;
}

.progress-info .progress-label span {
    display: inline-block;
    color: #262B40;
    font-size: 0.875rem;
    font-weight: 600;
}

.progress-info .progress-percentage {
    text-align: right;
}

.progress-info .progress-percentage span {
    display: inline-block;
    color: #9CA3AF;
    font-size: 0.75rem;
    font-weight: 600;
}

.info-xl .progress-label span,
.info-xl .progress-percentage span {
    font-size: 0.875rem;
}

.info-xl .progress-percentage {
    text-align: right;
}

.progress-tooltip {
    background: #262B40;
    color: #ffffff;
    font-weight: 600;
    padding: .25rem .375rem;
    line-height: 1;
    font-size: 0.75rem;
    position: relative;
    border-radius: 0.6rem;
}

.progress-tooltip:after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 10px;
    border: solid transparent;
    height: 0;
    width: 0;
    pointer-events: none;
    border-top-color: #29313d;
    border-width: 6px;
}

@keyframes animate-positive {
    0% {
        width: 0%;
    }
}

.progress-info .bg-primary::after {
    border-top-color: #262B40;
}

.progress-info .bg-secondary::after {
    border-top-color: #f3b773;
}

.progress-info .bg-tertiary::after {
    border-top-color: #2CA58D;
}

.progress-info .bg-dark::after {
    border-top-color: #262B40;
}

.progress-info .bg-success::after {
    border-top-color: #05A677;
}

.progress-info .bg-info::after {
    border-top-color: #0948B3;
}

.progress-info .bg-warning::after {
    border-top-color: #f5b759;
}

.progress-info .bg-danger::after {
    border-top-color: #FA5252;
}

.progress-info .bg-white::after {
    border-top-color: #ffffff;
}

.progress-info .bg-black::after {
    border-top-color: #2e3650;
}

.progress-info .bg-pink::after {
    border-top-color: #C96480;
}

.progress-info .bg-indigo::after {
    border-top-color: #31316A;
}

.progress-info .bg-purple::after {
    border-top-color: #8965e0;
}

.progress-info .bg-gray-100::after {
    border-top-color: #F9FAFB;
}

.progress-info .bg-gray-200::after {
    border-top-color: #F3F4F6;
}

.progress-info .bg-gray-300::after {
    border-top-color: #E5E7EB;
}

.progress-info .bg-gray-400::after {
    border-top-color: #D1D5DB;
}

.progress-info .bg-gray-500::after {
    border-top-color: #9CA3AF;
}

.progress-info .bg-gray-600::after {
    border-top-color: #6B7280;
}

.progress-info .bg-gray-700::after {
    border-top-color: #4B5563;
}

.progress-info .bg-gray-800::after {
    border-top-color: #374151;
}

.progress-info .bg-facebook::after {
    border-top-color: #3b5999;
}

.progress-info .bg-twitter::after {
    border-top-color: #1da1f2;
}

.progress-info .bg-github::after {
    border-top-color: #222222;
}

/**
 * = Shapes
 */
.avatar-sm {
    width: 1.5rem;
    height: 1.5rem;
}

.avatar-md {
    width: 2rem;
    height: 2rem;
}

.avatar-lg {
    width: 3rem;
    height: 3rem;
}

/**steps
 * = Accordions
 */
.step {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 6px;
}

.step .step-shape {
    display: inline-flex;
    width: 7rem;
    height: 7rem;
    text-align: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
}

.step .step-shape i, .step .step-shape svg {
    font-size: 2rem;
}

.step .step-shape .step-number {
    position: absolute;
    font-weight: 600;
    top: -10px;
    width: 32px;
    height: 32px;
    border-width: 0.125rem;
    border-style: solid;
    line-height: 1.7;
}

.step .step-shape.bordered {
    border-width: 0.125rem;
    border-style: solid;
}

.step .step-shape.bordered .step-number {
    background-color: #ffffff;
    top: -12px;
}

.step .step-shape.rounded-circle .step-number {
    margin-right: 1.275rem;
}

.step .icon-lg {
    font-size: 4.5rem;
}

.step .back-layer {
    display: flex;
    position: absolute;
    font-size: 12rem;
    z-index: 0;
    top: 0;
}

.table thead th {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bolder;
    border-top: 0;
}

.table th {
    font-weight: 600;
    padding: 1rem;
}

.table td .progress {
    height: 3px;
    width: 120px;
    margin: 0;
}

.table td,
.table th {
    font-size: 0.875rem;
    white-space: nowrap;
}

.table.user-table thead th {
    border-top: 0;
}

.table.align-items-center td,
.table.align-items-center th {
    vertical-align: middle;
}

.table .thead-dark th {
    background-color: #262B40;
    color: #ffffff;
}

.table .thead-dark th a {
    color: #262B40;
}

.table .thead-light th {
    background-color: #F3F4F6;
    color: #262B40;
}

.table .thead-light th a {
    color: #262B40;
}

.table-hover tr {
    transition: all 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
    .table-hover tr {
        transition: none;
    }
}

.table-flush td,
.table-flush th {
    border-left: 0;
    border-right: 0;
}

.table-flush tbody tr:first-child td,
.table-flush tbody tr:first-child th {
    border-top: 0;
}

.table-flush tbody tr:last-child td,
.table-flush tbody tr:last-child th {
    border-bottom: 0;
}

.card .table {
    margin-bottom: 0;
}

.card .table td,
  .card .table th {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 13px;
}

.table [data-sort] {
    cursor: pointer;
}

.table .custom-toggle {
    display: block;
}

.table .thead-dark [data-sort]::after {
    content: url("data:image/svg+xml;utf8,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 0L6 4H0L3 0ZM3 10L0 6H6L3 10Z' fill='%23262B40'/></svg>");
    margin-left: .25rem;
}

.table .thead-light [data-sort]::after {
    content: url("data:image/svg+xml;utf8,<svg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' clip-rule='evenodd' d='M3 0L6 4H0L3 0ZM3 10L0 6H6L3 10Z' fill='%23262B40'/></svg>");
    margin-left: .25rem;
}

.dataTables_wrapper .dataTables_info {
    padding-left: 1.5rem;
}

.dataTables_wrapper .dataTables_paginate {
    padding-right: 1.5rem;
}

.dataTables_wrapper .dataTables_length label {
    padding-left: 1.5rem;
}

.dataTables_wrapper .dataTables_filter {
    padding-right: 1.5rem;
}

.dataTable-top,
.dataTable-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

@media (max-width: 767.98px) {
    .dataTable-top,
    .dataTable-bottom {
        flex-direction: column;
    }

    .dataTable-top .dataTable-info,
      .dataTable-bottom .dataTable-info {
        margin-bottom: 1rem;
    }
}

.dataTable-top {
    padding: 0 1.5rem 1rem 1.5rem;
}

.dataTable-bottom {
    padding: 1.5rem 1.5rem 0 1.5rem;
}

.dataTable-pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.dataTable-pagination a {
    padding: 0.375rem 0.75rem;
}

.dataTable-pagination li:first-child a {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.dataTable-pagination li:last-child a {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.dataTable-pagination > li:not(:first-child) a {
    margin-left: -0.0625rem;
}

.dataTable-pagination > li.active a {
    z-index: 3;
    color: #ffffff;
    background-color: #262B40;
    border-color: #262B40;
}

.dataTable-pagination > li.disabled a {
    color: #6B7280;
    pointer-events: none;
    background-color: #ffffff;
    border-color: #E5E7EB;
}

.dataTable-pagination > li a {
    position: relative;
    display: block;
    color: #262B40;
    background-color: #ffffff;
    border: 0.0625rem solid #D1D5DB;
}

.dataTable-pagination > li a:hover {
    z-index: 2;
    color: black;
    background-color: #F3F4F6;
    border-color: #E5E7EB;
}

.dataTable-pagination > li a:focus {
    z-index: 3;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(38, 43, 64, 0.2);
}

.dataTable-selector {
    display: inline-block;
    width: auto;
    height: calc(1.5em + 1.225rem);
    padding: 0.55rem 1.75rem 0.55rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4B5563;
    vertical-align: middle;
    background-color: #F9FAFB;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23374151' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 0.0625rem solid #D1D5DB;
    border-radius: 1rem;
    box-shadow: inset 0 1px 2px rgba(46, 54, 80, 0.075);
    -webkit-appearance: none;
    appearance: none;
}

.dataTable-selector:focus {
    border-color: #566190;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(38, 43, 64, 0.2);
}

.dataTable-selector:focus::-ms-value {
    color: #4B5563;
    background-color: #F9FAFB;
}

.dataTable-selector[multiple], .dataTable-selector[size]:not([size="1"]) {
    height: auto;
    padding-right: 0.75rem;
    background-image: none;
}

.dataTable-selector:disabled {
    color: #6B7280;
    background-color: #F3F4F6;
}

.dataTable-selector:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #4B5563;
}

.dataTable-input {
    display: block;
    width: 100%;
    min-height: calc(1.5em + 1.225rem);
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4B5563;
    background-color: #F9FAFB;
    background-clip: padding-box;
    border: 0.0625rem solid #D1D5DB;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 1rem;
    box-shadow: inset 0 1px 2px rgba(46, 54, 80, 0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .dataTable-input {
        transition: none;
    }
}

.dataTable-input:focus {
    color: #4B5563;
    background-color: #F9FAFB;
    border-color: #566190;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(46, 54, 80, 0.075), 0 0 0 0.2rem rgba(38, 43, 64, 0.2);
}

.dataTable-input:-ms-input-placeholder {
    color: #6B7280;
    opacity: 1;
}

.dataTable-input::placeholder {
    color: #6B7280;
    opacity: 1;
}

.dataTable-input:disabled, .dataTable-input[readonly] {
    background-color: #F3F4F6;
    opacity: 1;
}

/**
 * = Typography
 */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 700;
}

p, ol li, ul li, .p {
    font-family: var(--bs-font-sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

a, .text-action {
    color: #262B40;
    transition: all 0.2s ease;
}

a:hover, .text-action:hover {
    color: black;
    cursor: pointer;
}

.lead + .btn-wrapper {
    margin-top: 3rem;
}

@media (max-width: 767.98px) {
    .lead {
        font-size: 1rem;
    }
}

.line-through {
    -webkit-text-decoration: line-through;
    text-decoration: line-through;
}

.text-italic {
    font-style: italic !important;
}

.description {
    font-size: 0.875rem;
}

.hover\:underline:hover {
    text-decoration: underline;
}

.heading {
    font-size: 2rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .display-2 {
        font-size: 1.875rem;
    }
}

@media (max-width: 991.98px) {
    .display-3 {
        font-size: 1.875rem;
    }
}

@media (max-width: 575.98px) {
    .display-4 {
        font-size: 1.5rem;
    }
}

.blockquote {
    font-style: italic;
}

@media (max-width: 767.98px) {
    .blockquote.blockquote-large {
        font-size: 1.25rem;
    }
}

.blockquote .blockquote-footer {
    font-size: 0.875rem;
    font-weight: bolder;
}

@media (max-width: 767.98px) {
    .blockquote .blockquote-footer {
        font-size: 1.25rem;
    }
}

.font-small {
    font-size: 14px;
    font-weight: 600;
}

.font-base {
    font-size: 1rem;
    font-weight: 300;
}

.font-medium {
    font-size: 1.25rem;
    font-weight: 300;
}

code[class*="language-"], pre[class*="language-"] {
    text-shadow: none;
    font-family: var(--bs-font-sans-serif);
    font-weight: 600;
}

.text-primary, .text-primary:hover {
    color: #262B40 !important;
}

.text-primary a:not(.btn), .text-primary h1, .text-primary .h1, .text-primary h2, .text-primary .h2, .text-primary h3, .text-primary .h3, .text-primary h4, .text-primary .h4, .text-primary h5, .text-primary .h5, .text-primary h6, .text-primary .h6, .text-primary .h1, .text-primary .h2, .text-primary .h3, .text-primary .h4, .text-primary .h5, .text-primary .h6, .text-primary .display-1, .text-primary .display-2, .text-primary .display-3, .text-primary .display-4 {
    color: #262B40;
}

.text-primary .text-muted {
    color: rgba(38, 43, 64, 0.7) !important;
}

.text-secondary, .text-secondary:hover {
    color: #f3b773 !important;
}

.text-secondary a:not(.btn), .text-secondary h1, .text-secondary .h1, .text-secondary h2, .text-secondary .h2, .text-secondary h3, .text-secondary .h3, .text-secondary h4, .text-secondary .h4, .text-secondary h5, .text-secondary .h5, .text-secondary h6, .text-secondary .h6, .text-secondary .h1, .text-secondary .h2, .text-secondary .h3, .text-secondary .h4, .text-secondary .h5, .text-secondary .h6, .text-secondary .display-1, .text-secondary .display-2, .text-secondary .display-3, .text-secondary .display-4 {
    color: #f3b773;
}

.text-secondary .text-muted {
    color: rgba(243, 183, 115, 0.7) !important;
}

.text-tertiary, .text-tertiary:hover {
    color: #2CA58D !important;
}

.text-tertiary a:not(.btn), .text-tertiary h1, .text-tertiary .h1, .text-tertiary h2, .text-tertiary .h2, .text-tertiary h3, .text-tertiary .h3, .text-tertiary h4, .text-tertiary .h4, .text-tertiary h5, .text-tertiary .h5, .text-tertiary h6, .text-tertiary .h6, .text-tertiary .h1, .text-tertiary .h2, .text-tertiary .h3, .text-tertiary .h4, .text-tertiary .h5, .text-tertiary .h6, .text-tertiary .display-1, .text-tertiary .display-2, .text-tertiary .display-3, .text-tertiary .display-4 {
    color: #2CA58D;
}

.text-tertiary .text-muted {
    color: rgba(44, 165, 141, 0.7) !important;
}

.text-dark, .text-dark:hover {
    color: #262B40 !important;
}

.text-dark a:not(.btn), .text-dark h1, .text-dark .h1, .text-dark h2, .text-dark .h2, .text-dark h3, .text-dark .h3, .text-dark h4, .text-dark .h4, .text-dark h5, .text-dark .h5, .text-dark h6, .text-dark .h6, .text-dark .h1, .text-dark .h2, .text-dark .h3, .text-dark .h4, .text-dark .h5, .text-dark .h6, .text-dark .display-1, .text-dark .display-2, .text-dark .display-3, .text-dark .display-4 {
    color: #262B40;
}

.text-dark .text-muted {
    color: rgba(38, 43, 64, 0.7) !important;
}

.text-success, .text-success:hover {
    color: #006ab1 !important;
}

.text-success a:not(.btn), .text-success h1, .text-success .h1, .text-success h2, .text-success .h2, .text-success h3, .text-success .h3, .text-success h4, .text-success .h4, .text-success h5, .text-success .h5, .text-success h6, .text-success .h6, .text-success .h1, .text-success .h2, .text-success .h3, .text-success .h4, .text-success .h5, .text-success .h6, .text-success .display-1, .text-success .display-2, .text-success .display-3, .text-success .display-4 {
    color: #05A677;
}

.text-success .text-muted {
    color: rgba(5, 166, 119, 0.7) !important;
}

.text-info, .text-info:hover {
    color: #0948B3 !important;
}

.text-info a:not(.btn), .text-info h1, .text-info .h1, .text-info h2, .text-info .h2, .text-info h3, .text-info .h3, .text-info h4, .text-info .h4, .text-info h5, .text-info .h5, .text-info h6, .text-info .h6, .text-info .h1, .text-info .h2, .text-info .h3, .text-info .h4, .text-info .h5, .text-info .h6, .text-info .display-1, .text-info .display-2, .text-info .display-3, .text-info .display-4 {
    color: #0948B3;
}

.text-info .text-muted {
    color: rgba(9, 72, 179, 0.7) !important;
}

.text-warning, .text-warning:hover {
    color: #f5b759 !important;
}

.text-warning a:not(.btn), .text-warning h1, .text-warning .h1, .text-warning h2, .text-warning .h2, .text-warning h3, .text-warning .h3, .text-warning h4, .text-warning .h4, .text-warning h5, .text-warning .h5, .text-warning h6, .text-warning .h6, .text-warning .h1, .text-warning .h2, .text-warning .h3, .text-warning .h4, .text-warning .h5, .text-warning .h6, .text-warning .display-1, .text-warning .display-2, .text-warning .display-3, .text-warning .display-4 {
    color: #f5b759;
}

.text-warning .text-muted {
    color: rgba(245, 183, 89, 0.7) !important;
}

.text-danger, .text-danger:hover {
    color: #FA5252 !important;
}

.text-danger a:not(.btn), .text-danger h1, .text-danger .h1, .text-danger h2, .text-danger .h2, .text-danger h3, .text-danger .h3, .text-danger h4, .text-danger .h4, .text-danger h5, .text-danger .h5, .text-danger h6, .text-danger .h6, .text-danger .h1, .text-danger .h2, .text-danger .h3, .text-danger .h4, .text-danger .h5, .text-danger .h6, .text-danger .display-1, .text-danger .display-2, .text-danger .display-3, .text-danger .display-4 {
    color: #FA5252;
}

.text-danger .text-muted {
    color: rgba(250, 82, 82, 0.7) !important;
}

.text-white, .text-white:hover {
    color: #ffffff !important;
}

.text-white a:not(.btn), .text-white h1, .text-white .h1, .text-white h2, .text-white .h2, .text-white h3, .text-white .h3, .text-white h4, .text-white .h4, .text-white h5, .text-white .h5, .text-white h6, .text-white .h6, .text-white .h1, .text-white .h2, .text-white .h3, .text-white .h4, .text-white .h5, .text-white .h6, .text-white .display-1, .text-white .display-2, .text-white .display-3, .text-white .display-4 {
    color: #ffffff;
}

.text-white .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-black, .text-black:hover {
    color: #2e3650 !important;
}

.text-black a:not(.btn), .text-black h1, .text-black .h1, .text-black h2, .text-black .h2, .text-black h3, .text-black .h3, .text-black h4, .text-black .h4, .text-black h5, .text-black .h5, .text-black h6, .text-black .h6, .text-black .h1, .text-black .h2, .text-black .h3, .text-black .h4, .text-black .h5, .text-black .h6, .text-black .display-1, .text-black .display-2, .text-black .display-3, .text-black .display-4 {
    color: #2e3650;
}

.text-black .text-muted {
    color: rgba(46, 54, 80, 0.7) !important;
}

.text-pink, .text-pink:hover {
    color: #C96480 !important;
}

.text-pink a:not(.btn), .text-pink h1, .text-pink .h1, .text-pink h2, .text-pink .h2, .text-pink h3, .text-pink .h3, .text-pink h4, .text-pink .h4, .text-pink h5, .text-pink .h5, .text-pink h6, .text-pink .h6, .text-pink .h1, .text-pink .h2, .text-pink .h3, .text-pink .h4, .text-pink .h5, .text-pink .h6, .text-pink .display-1, .text-pink .display-2, .text-pink .display-3, .text-pink .display-4 {
    color: #C96480;
}

.text-pink .text-muted {
    color: rgba(201, 100, 128, 0.7) !important;
}

.text-indigo, .text-indigo:hover {
    color: #31316A !important;
}

.text-indigo a:not(.btn), .text-indigo h1, .text-indigo .h1, .text-indigo h2, .text-indigo .h2, .text-indigo h3, .text-indigo .h3, .text-indigo h4, .text-indigo .h4, .text-indigo h5, .text-indigo .h5, .text-indigo h6, .text-indigo .h6, .text-indigo .h1, .text-indigo .h2, .text-indigo .h3, .text-indigo .h4, .text-indigo .h5, .text-indigo .h6, .text-indigo .display-1, .text-indigo .display-2, .text-indigo .display-3, .text-indigo .display-4 {
    color: #31316A;
}

.text-indigo .text-muted {
    color: rgba(49, 49, 106, 0.7) !important;
}

.text-purple, .text-purple:hover {
    color: #8965e0 !important;
}

.text-purple a:not(.btn), .text-purple h1, .text-purple .h1, .text-purple h2, .text-purple .h2, .text-purple h3, .text-purple .h3, .text-purple h4, .text-purple .h4, .text-purple h5, .text-purple .h5, .text-purple h6, .text-purple .h6, .text-purple .h1, .text-purple .h2, .text-purple .h3, .text-purple .h4, .text-purple .h5, .text-purple .h6, .text-purple .display-1, .text-purple .display-2, .text-purple .display-3, .text-purple .display-4 {
    color: #8965e0;
}

.text-purple .text-muted {
    color: rgba(137, 101, 224, 0.7) !important;
}

.text-gray-100, .text-gray-100:hover {
    color: #F9FAFB !important;
}

.text-gray-100 a:not(.btn), .text-gray-100 h1, .text-gray-100 .h1, .text-gray-100 h2, .text-gray-100 .h2, .text-gray-100 h3, .text-gray-100 .h3, .text-gray-100 h4, .text-gray-100 .h4, .text-gray-100 h5, .text-gray-100 .h5, .text-gray-100 h6, .text-gray-100 .h6, .text-gray-100 .h1, .text-gray-100 .h2, .text-gray-100 .h3, .text-gray-100 .h4, .text-gray-100 .h5, .text-gray-100 .h6, .text-gray-100 .display-1, .text-gray-100 .display-2, .text-gray-100 .display-3, .text-gray-100 .display-4 {
    color: #F9FAFB;
}

.text-gray-100 .text-muted {
    color: rgba(249, 250, 251, 0.7) !important;
}

.text-gray-200, .text-gray-200:hover {
    color: #F3F4F6 !important;
}

.text-gray-200 a:not(.btn), .text-gray-200 h1, .text-gray-200 .h1, .text-gray-200 h2, .text-gray-200 .h2, .text-gray-200 h3, .text-gray-200 .h3, .text-gray-200 h4, .text-gray-200 .h4, .text-gray-200 h5, .text-gray-200 .h5, .text-gray-200 h6, .text-gray-200 .h6, .text-gray-200 .h1, .text-gray-200 .h2, .text-gray-200 .h3, .text-gray-200 .h4, .text-gray-200 .h5, .text-gray-200 .h6, .text-gray-200 .display-1, .text-gray-200 .display-2, .text-gray-200 .display-3, .text-gray-200 .display-4 {
    color: #F3F4F6;
}

.text-gray-200 .text-muted {
    color: rgba(243, 244, 246, 0.7) !important;
}

.text-gray-300, .text-gray-300:hover {
    color: #E5E7EB !important;
}

.text-gray-300 a:not(.btn), .text-gray-300 h1, .text-gray-300 .h1, .text-gray-300 h2, .text-gray-300 .h2, .text-gray-300 h3, .text-gray-300 .h3, .text-gray-300 h4, .text-gray-300 .h4, .text-gray-300 h5, .text-gray-300 .h5, .text-gray-300 h6, .text-gray-300 .h6, .text-gray-300 .h1, .text-gray-300 .h2, .text-gray-300 .h3, .text-gray-300 .h4, .text-gray-300 .h5, .text-gray-300 .h6, .text-gray-300 .display-1, .text-gray-300 .display-2, .text-gray-300 .display-3, .text-gray-300 .display-4 {
    color: #E5E7EB;
}

.text-gray-300 .text-muted {
    color: rgba(229, 231, 235, 0.7) !important;
}

.text-gray-400, .text-gray-400:hover {
    color: #D1D5DB !important;
}

.text-gray-400 a:not(.btn), .text-gray-400 h1, .text-gray-400 .h1, .text-gray-400 h2, .text-gray-400 .h2, .text-gray-400 h3, .text-gray-400 .h3, .text-gray-400 h4, .text-gray-400 .h4, .text-gray-400 h5, .text-gray-400 .h5, .text-gray-400 h6, .text-gray-400 .h6, .text-gray-400 .h1, .text-gray-400 .h2, .text-gray-400 .h3, .text-gray-400 .h4, .text-gray-400 .h5, .text-gray-400 .h6, .text-gray-400 .display-1, .text-gray-400 .display-2, .text-gray-400 .display-3, .text-gray-400 .display-4 {
    color: #D1D5DB;
}

.text-gray-400 .text-muted {
    color: rgba(209, 213, 219, 0.7) !important;
}

.text-gray-500, .text-gray-500:hover {
    color: #9CA3AF !important;
}

.text-gray-500 a:not(.btn), .text-gray-500 h1, .text-gray-500 .h1, .text-gray-500 h2, .text-gray-500 .h2, .text-gray-500 h3, .text-gray-500 .h3, .text-gray-500 h4, .text-gray-500 .h4, .text-gray-500 h5, .text-gray-500 .h5, .text-gray-500 h6, .text-gray-500 .h6, .text-gray-500 .h1, .text-gray-500 .h2, .text-gray-500 .h3, .text-gray-500 .h4, .text-gray-500 .h5, .text-gray-500 .h6, .text-gray-500 .display-1, .text-gray-500 .display-2, .text-gray-500 .display-3, .text-gray-500 .display-4 {
    color: #9CA3AF;
}

.text-gray-500 .text-muted {
    color: rgba(156, 163, 175, 0.7) !important;
}

.text-gray-600, .text-gray-600:hover {
    color: #6B7280 !important;
}

.text-gray-600 a:not(.btn), .text-gray-600 h1, .text-gray-600 .h1, .text-gray-600 h2, .text-gray-600 .h2, .text-gray-600 h3, .text-gray-600 .h3, .text-gray-600 h4, .text-gray-600 .h4, .text-gray-600 h5, .text-gray-600 .h5, .text-gray-600 h6, .text-gray-600 .h6, .text-gray-600 .h1, .text-gray-600 .h2, .text-gray-600 .h3, .text-gray-600 .h4, .text-gray-600 .h5, .text-gray-600 .h6, .text-gray-600 .display-1, .text-gray-600 .display-2, .text-gray-600 .display-3, .text-gray-600 .display-4 {
    color: #6B7280;
}

.text-gray-600 .text-muted {
    color: rgba(107, 114, 128, 0.7) !important;
}

.text-gray-700, .text-gray-700:hover {
    color: #4B5563 !important;
}

.text-gray-700 a:not(.btn), .text-gray-700 h1, .text-gray-700 .h1, .text-gray-700 h2, .text-gray-700 .h2, .text-gray-700 h3, .text-gray-700 .h3, .text-gray-700 h4, .text-gray-700 .h4, .text-gray-700 h5, .text-gray-700 .h5, .text-gray-700 h6, .text-gray-700 .h6, .text-gray-700 .h1, .text-gray-700 .h2, .text-gray-700 .h3, .text-gray-700 .h4, .text-gray-700 .h5, .text-gray-700 .h6, .text-gray-700 .display-1, .text-gray-700 .display-2, .text-gray-700 .display-3, .text-gray-700 .display-4 {
    color: #4B5563;
}

.text-gray-700 .text-muted {
    color: rgba(75, 85, 99, 0.7) !important;
}

.text-gray-800, .text-gray-800:hover {
    color: #374151 !important;
}

.text-gray-800 a:not(.btn), .text-gray-800 h1, .text-gray-800 .h1, .text-gray-800 h2, .text-gray-800 .h2, .text-gray-800 h3, .text-gray-800 .h3, .text-gray-800 h4, .text-gray-800 .h4, .text-gray-800 h5, .text-gray-800 .h5, .text-gray-800 h6, .text-gray-800 .h6, .text-gray-800 .h1, .text-gray-800 .h2, .text-gray-800 .h3, .text-gray-800 .h4, .text-gray-800 .h5, .text-gray-800 .h6, .text-gray-800 .display-1, .text-gray-800 .display-2, .text-gray-800 .display-3, .text-gray-800 .display-4 {
    color: #374151;
}

.text-gray-800 .text-muted {
    color: rgba(55, 65, 81, 0.7) !important;
}

.text-facebook, .text-facebook:hover {
    color: #3b5999 !important;
}

.text-facebook a:not(.btn), .text-facebook h1, .text-facebook .h1, .text-facebook h2, .text-facebook .h2, .text-facebook h3, .text-facebook .h3, .text-facebook h4, .text-facebook .h4, .text-facebook h5, .text-facebook .h5, .text-facebook h6, .text-facebook .h6, .text-facebook .h1, .text-facebook .h2, .text-facebook .h3, .text-facebook .h4, .text-facebook .h5, .text-facebook .h6, .text-facebook .display-1, .text-facebook .display-2, .text-facebook .display-3, .text-facebook .display-4 {
    color: #3b5999;
}

.text-facebook .text-muted {
    color: rgba(59, 89, 153, 0.7) !important;
}

.text-twitter, .text-twitter:hover {
    color: #1da1f2 !important;
}

.text-twitter a:not(.btn), .text-twitter h1, .text-twitter .h1, .text-twitter h2, .text-twitter .h2, .text-twitter h3, .text-twitter .h3, .text-twitter h4, .text-twitter .h4, .text-twitter h5, .text-twitter .h5, .text-twitter h6, .text-twitter .h6, .text-twitter .h1, .text-twitter .h2, .text-twitter .h3, .text-twitter .h4, .text-twitter .h5, .text-twitter .h6, .text-twitter .display-1, .text-twitter .display-2, .text-twitter .display-3, .text-twitter .display-4 {
    color: #1da1f2;
}

.text-twitter .text-muted {
    color: rgba(29, 161, 242, 0.7) !important;
}

.text-github, .text-github:hover {
    color: #222222 !important;
}

.text-github a:not(.btn), .text-github h1, .text-github .h1, .text-github h2, .text-github .h2, .text-github h3, .text-github .h3, .text-github h4, .text-github .h4, .text-github h5, .text-github .h5, .text-github h6, .text-github .h6, .text-github .h1, .text-github .h2, .text-github .h3, .text-github .h4, .text-github .h5, .text-github .h6, .text-github .display-1, .text-github .display-2, .text-github .display-3, .text-github .display-4 {
    color: #222222;
}

.text-github .text-muted {
    color: rgba(34, 34, 34, 0.7) !important;
}

article img {
    margin: 40px 0;
}

article p, article ul, article ol, article blockquote {
    margin-bottom: 20px;
}

article p, article ul li, article ol li {
    font-size: 1.2rem;
}

article h1, article .h1, article h2, article .h2, article h3, article .h3, article h4, article .h4, article h5, article .h5, article h6, article .h6,
article .h1, article .h2, article .h3, article .h4, article .h5, article .h6 {
    margin-bottom: 30px;
}

.folder-structure li {
    font-size: 1.2rem;
}

.truncate-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/**
 * = Timelines
 */
.list-group-timeline .list-group-item {
    position: relative;
}

.list-group-timeline .list-group-item .col-auto {
    z-index: 999;
}

.list-group-timeline .list-group-item:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 2.5rem;
    height: 100%;
    border-left: 1px solid #D1D5DB;
}

.tooltip-inner {
    box-shadow: 0 0.5rem 1rem rgba(46, 54, 80, 0.15);
    margin-bottom: 20px;
}

.tooltip-arrow {
    margin-bottom: 20px;
}

.chartist-tooltip {
    position: absolute;
    display: inline-block;
    opacity: 0;
    min-width: 5em;
    padding: .5em;
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    border-radius: 1rem;
    color: #262B40;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
    z-index: 1;
    transition: all 0.2s ease;
}

.chartist-tooltip:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top-color: #F3F4F6;
}

.chartist-tooltip.tooltip-show {
    opacity: 1;
}

.ct-area, .ct-line {
    pointer-events: none;
}

[data-simplebar] {
    position: fixed;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
}

.simplebar-wrapper {
    overflow: hidden;
    width: inherit;
    height: inherit;
    max-width: inherit;
    max-height: inherit;
}

.simplebar-mask {
    direction: inherit;
    position: absolute;
    overflow: hidden;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto !important;
    height: auto !important;
    z-index: 0;
}

.simplebar-offset {
    direction: inherit !important;
    box-sizing: inherit !important;
    resize: none !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
    direction: inherit;
    box-sizing: border-box !important;
    position: relative;
    display: block;
    height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
    width: auto;
    max-width: 100%;
  /* Not required for horizontal scroll to trigger */
    max-height: 100%;
  /* Needed for vertical scroll to trigger */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.simplebar-content:before,
.simplebar-content:after {
    content: ' ';
    display: table;
}

.simplebar-placeholder {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
    box-sizing: inherit !important;
    height: 100%;
    width: 100%;
    max-width: 1px;
    position: relative;
    float: left;
    max-height: 1px;
    overflow: hidden;
    z-index: -1;
    padding: 0;
    margin: 0;
    pointer-events: none;
    flex-grow: inherit;
    flex-shrink: 0;
    flex-basis: 0;
}

.simplebar-height-auto-observer {
    box-sizing: inherit;
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 1000%;
    width: 1000%;
    min-height: 1px;
    min-width: 1px;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
    pointer-events: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
    pointer-events: all;
}

.simplebar-scrollbar {
    position: absolute;
    left: 0;
    right: 0;
    min-height: 10px;
}

.simplebar-scrollbar:before {
    position: absolute;
    content: '';
    background: black;
    border-radius: 7px;
    left: 2px;
    right: 2px;
    opacity: 0;
    transition: opacity 0.2s 0.5s linear;
}

.simplebar-scrolling .simplebar-scrollbar:before,
.simplebar-hover .simplebar-scrollbar:before,
.simplebar-mouse-entered .simplebar-scrollbar:before {
    opacity: 0.5;
    transition-delay: 0s;
    transition-duration: 0s;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    transition-delay: 0s;
    transition-duration: 0s;
}

.simplebar-track.simplebar-vertical {
    top: 0;
    width: 11px;
}

.simplebar-scrollbar:before {
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
}

.simplebar-track.simplebar-horizontal {
    left: 0;
    height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
    right: auto;
    left: 0;
    top: 0;
    bottom: 0;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
    right: auto;
    left: 0;
}

.simplebar-dummy-scrollbar-size {
    direction: rtl;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    height: 500px;
    width: 500px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: scrollbar !important;
}

.simplebar-dummy-scrollbar-size > div {
    width: 200%;
    height: 200%;
    margin: 10px 0;
}

.simplebar-hide-scrollbar {
    position: fixed;
    left: 0;
    visibility: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.simplebar-scrollbar::before {
    background-color: #131620;
}

/*# sourceMappingURL=volt.css.map */

.bg-blue{
 background-color: #4d4d4d !important;
}
.py-1{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.fontdol{
   font-weight: 800;
    font-size: 13px;
}
.logoadmin{padding: 20px 22px;display: block;background: #000;}
.logoadmin img{
 width: 100%;   
}
.blue{
    font-weight:bold;
    color:#006ab1;
}
.red{
    color:#eb0e43;
}
.selectdate{font-weight: bold;}
.selectdate select{
    width: 200px;
    border-radius: 20px;
    padding: 4px 10px;
    margin: 0px 8px;
}
.selectdate .btn{
    background: #eb0e43;
    color: #fff;
    padding: 4px 18px;
}
.bluetable .table tr > th{
    background-color: #000000;
    color:#fff;
}
.statistic.table td {
    border-top: 1px solid #eee;
}
.statistic.table .thead-light th {
    background-color: #fff;
    color: #006ab1;
    border-bottom: 1px solid #eee !important;
    font-weight: bold;
}
.borblue{
        background: #025289;
    color: #fff;
    font-size: 14px;
    margin-right: 15px;
}

/*signup css*/

/*login css*/

.card.logincss {
    padding-top: 25px;
    width: 400px;
    margin: 0 auto;
    box-shadow: 0px 2px 7px #ddd;
}

.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border-radius: 3px;
    margin: 0% 0px;
}
.info-color {
    color: #000;
    margin: 0px auto;
    padding: 20px 0px;
    font-weight: 600;
    font-size: 23px;
}
.bcardshdow {
    /* border: 1px solid #d6d6d6; */
    border-top: none;
    padding: 35px;
}
.logincss h3 {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-top: 0px;
    text-transform: uppercase;
}
.md-form {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: table;
}
.md-form label {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    vertical-align: top;
    display: block;
    text-align: left;
    text-transform: capitalize;
    margin-bottom: 2px;
}
.loginform input {
    width: 93%;
}

.md-form input {
    /* box-sizing: content-box; */
    border: 0;
    border-bottom: 1px solid #ced4da;
    outline: 0;
    padding: 8px 10px;
    margin: 0 0 .5rem 0;
    background-color: transparent;
    border-radius: 1px;
    /* width: 100%; */
    box-shadow: 0px 2px 3px #ddd;
    /* display: block; */
    transition: all 0.3s ease-in-out;
    border: 1px solid #eee;
}
.loginmodal button.btn {
    color: #fff;
    margin: 0px auto;
    padding: 10px 0px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: #ff0000;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    width: 100%;
}
.socialeft {
    text-align: center;
    padding-left: 0px;
}
.socialeft p {
    border-bottom: 1px solid #2a5392;
    margin-bottom: 24px;
}
.socialeft strong {
    position: relative;
    top: 10px;
    background: #fff;
    padding: 0px 8px;
}
.sidebar .nav-item.active > .nav-link span{
  color: #000000;
}
.sidebar .nav-item .nav-link:hover span{
   color: #000000;  
}
.repidtext img{
    width:60px;
}
a.stretched-link {
    position: relative;
}
.reviews i.fas.fa-star {
    color: #fe9f11;
}
.reviews .fa{
    line-height:32px;
    font-size:50px;
    color: gray;}
  .fa.checked {color: orange;}
  .star-rating {
    line-height:32px;
    font-size:50px;
  }

  .yes-no-rating {
    line-height:32px;
    font-size:50px;
    /* white-space:nowrap; */
  }
  .fa-check{color: gray;}
  .fa-check.checked {color: green;}
  .fa-close{color: gray;}
  .fa-close.checked {color: red;}
  .yes-no-rating {
    line-height:32px;
    font-size:50px;
  }

  .didgit{
    display: inline-block;
    background: #ccc;
    color: #000;
    text-align: center;
    border-radius: 50%;
    padding: 0.3em  0;
    width:2.3em;
    height:2.3em;
  }
  
  .didgit.checked{
    background: orange;
  }

#review-add-btn {
  padding: 0;
  font-size: 1.6em;
  cursor: pointer;
}
/* ====================== Review Form ====================== */



button#review-add-btn, 
button.close-btn, 
button#submit-review-btn {
  /* min-height: 40px; */
}
button#submit-review-btn {
  font-weight: bold;
  cursor: pointer;
  padding: 5px 16px;
background: #f00;border: none;}

.fieldset {
  margin-top: 20px;
}
.right {
  align-self: flex-end;
}
#review-form-container {
  width: 100%;
  /* background-color: #eee; */
  padding: 0 20px 26px;
  color: #333;
  overflow-y: auto;
}
#review-form-container h2 {
  margin: 0 0 0 6px;
}
#review-form {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
padding: 20px;}
#review-form label, #review-form input {
  display: block;
  /* width: 100%; */
}
#review-form label {
  font-weight: bold;
  margin-bottom: 5px;
}

#review-form .rate label, #review-form .rate input,
#review-form .rate1 label, #review-form .rate1 input {
  display: inline-block;
}
/* Modified from: https://codepen.io/tammykimkim/pen/yegZRw */
.rate {
  /* float: left; */
  /* display: inline-block; */
  height: 36px;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
}
#review-form .rate > label {
  margin-bottom: 0;
  margin-top: -5px;
  height: 30px;
}
.rate:not(:checked) > input {
  /* position: absolute; */
  top: -9999px;
  margin-left: -24px;
  width: 20px;
  padding-right: 14px;
  z-index: -10;
}
.rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:30px;
  color:#ccc;
}
/* #star1:focus{

} */
.rate2 {
  float: none;
}
.rate:not(:checked) > label::before {
    content: '';
    position: relative;
  top: -10px;
  left: 2px;
}
.rate > input:checked ~ label {
  color: #ffc700;
  /* outline: -webkit-focus-ring-color auto 5px; */
}

.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;
  /* outline: -webkit-focus-ring-color auto 5px; */
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}
#submit-review {
  align-self: flex-end;
}
#review-form input:focus{
    outline: none;
}
.setclas textarea{
    width:100%;
}
.sidebar .nav h4{
    font-size: 14px;
    text-align: left;
    padding: 20px 0px 12px;
    margin: 0px;
    padding-left: 16px;
    color: #6e6e6e;
    background: #222222;
}
#style-7::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
}

#style-7::-webkit-scrollbar
{
    width: 6px;
  background-color: rgba(255,255,255,0.05);
}

#style-7::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background: #ff401d;
}
.sfm-social {
    display: block;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    overflow: hidden;
    z-index: 1000;
    margin-bottom: 20px;
    padding: 0px;
    padding-top: 20px;
}
.sfm-social li {
    list-style: none;
    display: inline-block;
    margin: 4px 0px;
}
.sfm-social li a {
    display: block;
    width: 35px;
    height: 35px;
    margin-left: 14px;
    position: relative;
    z-index: 1;
    text-align: center;
    vertical-align: top;
    -webkit-transition: none;
    border-radius: 100%;
    padding: 5px;
    transition: all 0.3s;
    font-size: 16px;
}
.sfm-social li a:focus, .sfm-social li a:hover  {background-color: #000;transition: all 0.3s;}

.page-heading{
    border-bottom:1px solid #ddd;
}
.border-left{
    border-left:1px solid #ddd;
}
.navbar-nav li{
    padding:0px 10px;
}
.carts p{
    margin: 0px;
    padding: 0px 20px;
}

/* #Footer
================================================== */

#footer {
    padding: 40px 0 0;
    border-top: 0 solid transparent;
}
#footer.footer-divider {
    border-top-width: 1px;
}
#footer h6 {
    margin-bottom: 20px;
    font-weight: bold;
}
#footer a, #footer a:hover {
    text-decoration: none;
}
#footer-widgets .widget {
    padding-bottom: 30px;
}
#copyright {
    padding: 15px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
    font-size: 12px;
    border-top: 0 solid transparent;
}
#copyright.copyright-divider {
    border-top-width: 1px;
}
#copyright p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 24px;
}
#copyright a, #copyright a:hover {
    text-decoration: none;
}
#copyright nav .menu {
    float: right;
}
#copyright nav .menu li {
    font-size: 12px;
    margin: 0;
    border-left: 1px solid #e4e4e4;
}
#copyright nav .menu li:first-child {
    border-left: 0;
}
#copyright nav .menu li ul {
    display: none;
}
#footer {background: #4d4d4d;}
#footer, #footer p {color: #cccccc;}#footer h6 {color: #f4f3f3;font-size: 14px;}#footer a {color: #fdfdfd;font-size: 14px;}#footer .widget ul li, #footer .widget_categories ul, #footer .widget_archive ul, #footer .widget_nav_menu ul, #footer .widget_recent_comments ul, #footer .widget_meta ul, #footer .widget_recent_entries ul, #footer .widget_product_categories ul {border-color: #333333;list-style: none;}#copyright {background-color: #4d4d4d;border-top-color: #5f5f5f;text-align: center;}#copyright p {color: #efefef;}#copyright a {color: #d9d6d6 !important;}#copyright a:hover {color: #e4e4e4;}#copyright nav .menu li {border-left-color: #333333;}
ul.social-icons {
    height: auto;
    overflow: hidden;
    list-style: none!important;
    padding: 0px;
}
ul.social-icons li {
    float: left;
    display: inline-block;
    height: 36px;
    margin-right: 43px;
}
#footer .menu li a{
    display: block;
    position: relative;
}
#footer .menu li{
    margin:5px 0px;
}
#footer .menu li a:after{
    content: "\f105";
    position: absolute;
    right: 0;
    display: inline-block;
    font: normal normal normal 16px/1 FontAwesome;
    top: 6px;
}
.right-das{

}
body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: rgba(255,255,255,0.05);
    border-radius: 10px;
}

body::-webkit-scrollbar
{
    width: 6px;
  background-color: rgba(255,255,255,0.05);
}

body::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background: #ff401d;
}
.login-firm .button{
padding: 5px 20px;
}
.login-firm {
    padding: 80px 0px;
    border: 1px solid #edecec;
}
.userdk{display: table;margin: 0px auto 30px;width: 85px;height: 85px;border-radius: 100%;color: #fff;font-size: 55px;}
.userdk i{
    
}
#footer a:hover{
    color:#ff401d;
}
.background-login{
    height:100%;
}
.loginmodal {
    display: table-cell;
vertical-align: middle;
    height: 100%;
}
.dtab_login{
    display: table;
    margin: 0 auto;
    height: 100%;
}
.loginmodal button.btn:hover{
    background-color:#000;
}
.media-body {
   width: 100% !important;
}
#footer .social-icons  li a{
    font-size:20px;
}
.row {
    margin-right: 0px;
    margin-left: 0px;
}
.faq .panel-title > a:before {
    float: right !important;
      font-family: FontAwesome;
  content: "\f106";
  background: #ff0000;
  color: #fff;
  padding: 3px 7px;
  font-weight: normal;
  border-radius: 100%;
  line-height: 1;
 
}
.faq .panel-title > a.collapsed:before {
   float: right !important;
  content: "\f107";
  padding-right: 5px;
  background: #000000;
  color: #fff;
  padding: 3px 7px;
  font-weight: normal;
  border-radius: 100%;
  line-height: 1;
}
.faq .panel-title > a:hover,
.faq .panel-title > a:active,
.faq .panel-title > a:focus {
  text-decoration: none;
}
.faq .panel-title a{color: #000;font-weight: bold;font-size: 20px;}
.panel-heading {
    padding: 13px 0px;
    background: transparent !important;
}
.panel-group .panel-heading {
    /* border: none; */
}
.panel {
    border:
    none;
    background: transparent;
}
.faq .panel-title a p{
margin:6px 0px 0px;
}
.faq .panel-body{
padding:20px 0px;
}
.faq .decs label{
    font-size:20px;
}
.small{
    font-size:14px !important;
}
.faq {
    background-color: #f6f6f6;
    display: table;
    width: 100%;
    position: relative;
    z-index: 999;
    padding: 16px;
}
select, input{
    font-size:15px !important;
}
.add-btn{
border:1px solid #ddd;
padding:7px 20px;width: auto;}

.sf-icon-box-animated {
    text-align: center;
    width: 100%;
    height: auto;
    background: transparent;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
}

.sf-icon-box {
    display: block;
    position: relative;
    z-index: 2;
}
.sf-icon-box-animated .inner {
    -webkit-perspective: 100px;
    -moz-perspective: 100px;
    -ms-perspective: 100px;
    perspective: 100px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition: all 500ms cubic-bezier(0.175,0.885,0.320,1.275)!important;
    -moz-transition: all 500ms cubic-bezier(0.175,0.885,0.320,1.275) !important;
    -o-transition: all 500ms cubic-bezier(0.175,0.885,0.320,1.275)!important;
    transition: all 500ms cubic-bezier(0.175,0.885,0.320,1.275)!important;
}
.sf-icon-box-animated .front {
    background: #f7f7f7;
    border-color: #e4e4e4;
}
.sf-icon-box-animated .front {
    -ms-transform: rotateY(0deg);
    z-index: 8;
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #e4e4e4;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    padding: 70px 20px;
    webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sf-icon-box-animated .front, .sf-icon-box-animated .back {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
}
.sf-icon-box-animated .back, .sf-icon-box-animated .back h3 {
    color: #ffffff!important;
}
.sf-icon-box-animated .back {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e4e4;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.sf-icon-box-hover table, .sf-icon-box-animated .back table {
    margin-top: -10px;
    height: 100%;
    width: 100%;
}

.sf-icon-box-animated table, .sf-icon-box-animated td {
    border: 0;
    padding: 0;
}
.sf-icon-box-animated .back, .sf-icon-box-animated .back h3 {
    color: #ffffff!important;
}
.sf-icon-box-content {
    display: block;
    width: 100%;
    line-height: 150%;
}
.sf-icon.sf-icon-large {
    font-size: 50px;
    margin-bottom: 0;
    padding: 0;
    line-height: 44px;
    margin-top: 20px;
    width: auto;
    height: 56px;
    color: #ff0000;
}
.sf-icon.sf-icon-large:before {
    font-size: 72px;
}
.sf-icon-box .sf-icon-box-content-wrap {
    display: block;
}

.sf-icon-box-content-wrap {
    padding: 10px 30px 10px 30px !important;
}
.sf-icon-box-animated .front h3 {
    color: #222222!important;
}
.sf-icon-box-animated .front h3 {
    margin: 10px 0;
    font-size: 30px;
}
.sf-icon-box-animated:hover .inner, 
.no-csstransitions .sf-icon-box-animated .inner, 
.sf-icon-box-animated.sf-mobile-hover .inner {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.sf-icon-box-animated:hover .front, 
.sf-icon-box-animated.sf-mobile-hover .front {
    z-index: -1;
}
.sf-icon-box-animated .back {
    background: #ff0000;
    border-color: #ff0000;
}
.sf-icon-box-animated .back h3{
    font-size:30px;
}
.dleops{
    padding: 50px 0px;
}
.seracbtun{

display: inline-block;

border: none;

padding: 10px 20px;
}
.search-bar{
    flex-wrap: unset;
    display: flex !important;
    margin: 17px 0px;
}
.settingbtn{
    
background: #ddd;
    
padding: 3px 20px;
    
border: 2px solid #c7c7c7;
    
font-size: 26px;
    
float: right;
}
.hei10{
    padding:10% 0px;
    text-align: center;
    font-size:15px;
}
.ancers a{
    
font-weight: 600;
    
color: #f00;
    
text-decoration: underline;
}

/** Custom Styles **/
a:active, a:hover, a:focus{
    outline: none !important;
}
.logoadmin #site-logo {
    float: none;
}

.logoadmin #site-logo #site-logo-inner {
    height: auto;
    max-height: 100%;
}

.logoadmin #site-logo #site-logo-inner a img{
    max-width: 100% !important;
}

#site-logo #site-logo-inner a:hover img{
    opacity: 1;
    -webkit-opacity: 1;
}

nav .sidebar-inner ul {
    margin: auto 0rem;
}

#footer-widgets {
    background-color: #4d4d4d;
}

.social-icons.standard {
    margin: 0rem;
}

nav.sidebar .nav .nav-item .nav-link[data-bs-toggle="collapse"][aria-expanded="true"] .link-arrow {
    transform: rotate(90deg);
    transition: all 0.2s ease;
}

nav.sidebar .nav .nav-item.dropdown:not(.nav-no-click) > a.nav-link[data-bs-toggle="collapse"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.sidebar .nav ul {
    list-style: none;
    margin: auto 0rem;
    padding-left: 0rem;
}

nav.sidebar .nav .nav-item i.icon.before {
    margin-right: 1rem;
    color: #ffffff;
}

nav.sidebar .nav .nav-item .nav-link:hover i.icon.before {
	color: #000000;
}

.nav .nav-item.menu-item-has-children.nav-no-click > ul.sub-menu.collapse {
    display: block;
}

.nav .nav-item.menu-item-has-children.nav-no-click div.nav-link,
.nav .nav-item.menu-item-has-children.nav-no-click div.nav-link:hover {
    font-size: 15px;
	font-weight:700;
    text-align: left;
    padding: 20px 0px 12px;
    margin: 0px;
    padding-left: 16px;
    color: #6e6e6e;
    background: #222222;
	cursor: auto;
}

nav.sidebar .nav ul.sub-menu li > ul.sub-menu li.nav-item .nav-link{
    padding-left: 42px;
}

.nav .nav-item.menu-item-has-children.nav-no-click div.nav-link .link-arrow {
    display: none;
}

.sidebar .nav{
	white-space: normal;
}

#menu-profile-menu .nav-item .nav-link{
    color: #000;
}

#menu-profile-menu .nav-item .nav-link:hover,
#menu-profile-menu .nav-item .nav-link:focus {
    background-color: #F3F4F6;
}

#menu-profile-menu .nav-item{
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-size:1rem;
    font-weight: 400;
    color: #29313d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    padding: 0.5rem 1rem;
}

#site-logo{display:block !important}
.woo-mini-cart .current-shop-items-dropdown span {width: auto !important;}
.woo-mini-cart .widget_shopping_cart ul.cart_list li .owp-grid-wrap .owp-grid.content{margin-left: auto !important;}
.woo-mini-cart .widget_shopping_cart .cart_list li, .woocommerce.widget_shopping_cart .cart_list li{padding: 0.5rem !important}
.woo-mini-cart .widget_shopping_cart ul.product_list_widget li{min-height: 70px !important;}

.pagination .page-item:first-child a,
.pagination .page-item:first-child span {
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    font-size: 16px;
}
.pagination .page-item:not(:first-child) {
    margin-left: -0.0625rem;
    font-size: 16px;
}
.pagination .page-item:last-child a,
.pagination .page-item:last-child span {
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

.pagination .page-item .page-numbers {
    position: relative;
    display: block;
    color: #262B40;
    background-color: #ffffff;
    border: 0.0625rem solid #D1D5DB;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.pagination > li.page-item > a,
.pagination > li.page-item > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    text-decoration: none !important;
}

.pagination > li.page-item > a.current,
.pagination > li.page-item > span.current {
    z-index: 3;
    color: #ffffff;
    background-color: #ff0000;
    border-color: #ff0000;
}

.pagination-wrapper .pagination-show-entries {
    flex: 1;
    text-align: right;
}

.summary .product_meta {
    display: none;
}

strong {
    font-weight: 600;
}

.members-access-error {
    margin: 2rem auto;
}

.login-firm {
    padding: 80px 0px;
    border: 1px solid #edecec;
    text-align: center;
}

.login-firm .userdk {
    display: table;
    margin: 0px auto 30px;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    color: #fff;
    font-size: 55px;
}

.login-firm a {
    text-decoration: none !important;
}
.login-firm .button {
    padding: 5px 20px;
    line-height: 1.6;
}

.login-firm .btn-primary {
    color: #ffffff;
    background-color: #ff401d;
    border-color: #262B40;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%), 0 1px 1px rgb(46 54 80 / 8%);
    transition: all 0.2s ease;
}
.login-firm .btn-primary:hover {
    background-color: #1d2030;
    border-color: #1d2030;
}