
.nav-tabs {
    --bs-nav-tabs-border-width: 0;
    border-bottom: 2px solid #110f0f;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: #110f0f;
}

.nav-tabs .nav-link {
    color: #110f0f;
}


.nav-tabs.scenario-tabs .nav-link {
    border-radius: 6px 6px 0 0px;
}

.nav-tabs.scenario-tabs .nav-item {

    margin-bottom: 0;
}

.mockapp .nav-tabs .nav-item.show .nav-link, .mockapp .nav-tabs .nav-link.active {
    padding: 8px 16px;
}

.mockapp .nav-tabs .nav-link {
    padding: 8px 16px;
}

.list-mocks > .list-group-item {
    font-size: 14px;
    position: relative;
    display: block;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    color: var(--bs-list-group-color);
    text-decoration: none;
    background-color: var(--bs-list-group-bg);
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-mocks .accordion-button {
    font-size: 14px;
    background: none;
    padding: 0px;
    box-shadow: none;
    border: none;
}

.list-mocks .accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
}

.list-mocks .list-group-item {
    position: relative;
    display: block;
    padding: 0;
    color: var(--bs-list-group-color);
    text-decoration: none;
    /**background-color: var(--bs-list-group-bg);**/
    background-color: #f9f9fa;
    border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
    border-width: 0 0 var(--bs-list-group-border-width);
    margin-bottom: 0 !important;
}

.list-mocks .accordion-button {
    margin-bottom: 0;
}

body.dark-mode {
    background-color: #343a40;
    color: #ffffff;
}

.form-label {
    font-weight: 600;
}

.mock-li-wrapper {
    padding: 12px 0;
}

.scenario-li-wrapper {
    padding: 12px;
}

.scenario-li-wrapper .scenario-link, .mock-li-wrapper .mock-link {
    display: none;
    float: right;
}

.scenario-li-wrapper:hover .scenario-link, .mock-li-wrapper:hover .mock-link, .mock-li-wrapper.hover .mock-link {
    display: inline-block;
}

.scenario-li-wrapper .scenario-label, .mock-li-wrapper .mock-label {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    font-size: 16px;
}

.scenario-li-wrapper:hover .scenario-label {
    width: 70%;
}

.scenario-li-wrapper:hover .scenario-link {
    width: 30%;
}

.mock-li-wrapper:hover .accordion-button, .mock-li-wrapper.hover .accordion-button {
    width: 65%;
}

.mock-li-wrapper:hover .mock-link, .mock-li-wrapper.hover .mock-link {
    width: 35%;
}

.mock-label {
    font-size: 16px;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.scenario-link span, .mock-link span {
    color: #bbbbbe;
}

.scenario-link i:hover, .mock-link span:hover {
    color: #212222;
}

.mockapp img {
    width: revert-layer;
}


.mockapp textarea.form-control {
    height: auto;
}




.btn-shadow {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}





.tree li {
    list-style-type: none;
    margin: 0;
    padding: 10px 5px 0 5px;
    position: relative
}

.tree li:not(.nottree)::before,
.tree li:not(.nottree)::after {
    content: '';
    left: -22px;
    position: absolute;
    right: auto
}

.tree li:not(.nottree)::before {
    border-left: 1px dashed #212222;
    bottom: 50px;
    height: 100%;
    top: 0;
    width: 1px
}

.tree li:not(.nottree)::after {
    border-top: 1px dashed #212222;
    height: 20px;
    top: 25px;
    width: 15px
}

.tree > ul > li:not(.nottree)::before,
.tree > ul > li:not(.nottree)::after {
    border: 0
}

.tree li:not(.nottree):last-child::before {
    height: 27px
}

[aria-expanded="false"] > .expanded,
[aria-expanded="true"] > .collapsed {
    display: none;
}

.tree {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    border-radius: 6px;
}

.dot-loader {
    width: 200px;
    height: 60px;
    /**position: absolute;
    left:50%;
    top:50%;**/
    margin: 140px 50%;
    transform: translate(-50%, -50%);
}

.circle {
    width: 20px;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    background-color: #212222;
    left: 15%;
    transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
}

@keyframes circle {
    0% {
        top: 60px;
        height: 5px;
        border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
    }
    40% {
        height: 20px;
        border-radius: 50%;
        transform: scaleX(1);
    }
    100% {
        top: 0%;
    }
}

.circle:nth-child(2) {
    left: 45%;
    animation-delay: .2s;
}

.circle:nth-child(3) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.shadow {
    width: 20px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    top: 62px;
    transform-origin: 50%;
    z-index: -1;
    left: 15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
}

@keyframes shadow {
    0% {
        transform: scaleX(1.5);
    }
    40% {
        transform: scaleX(1);
        opacity: .7;
    }
    100% {
        transform: scaleX(.2);
        opacity: .4;
    }
}

.shadow:nth-child(4) {
    left: 45%;
    animation-delay: .2s
}

.shadow:nth-child(5) {
    left: auto;
    right: 15%;
    animation-delay: .3s;
}

.dot-loader span {
    position: absolute;
    top: 75px;
    font-family: "Jost", sans-serif;
    font-size: 20px;
    letter-spacing: 12px;
    color: #212222;
    left: 15%;
}

.sidebar-head {
    background-color: #f9f9fa;
}

.vh-100-sidebar {
    height: calc(100vh + 40px);
}

.scenario-selector {
    background-color: #f1f1f6 !important;
}


.accordion-button::before {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.3rem;
    content: "";
    background-image: var(--bs-accordion-btn-active-icon);
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.accordion-button::after {
    display: none !important;
}

.accordion-button::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
    transition: all 0.5s;
}

.accordion-button::before {
    transition: all 0.5s;
    transform: rotate(180deg);
}


footer {
    padding: 5px 0;
}

.main-container {
    padding-bottom: 20px;
}

.scenario-selector {
    border-left: 6px solid #dee2e6 !important;
}

.scenario-selector.is_default {
    border-left: 6px solid #5bb85b !important;
}

.badge {
    font-size: 80%;
}

select.form-control:not([size]):not([multiple]) {
    height: calc(3.5rem + calc(var(--bs-border-width) * 2));
}

.form-control {
    color: var(--bs-body-color);
    font-size: 1rem;
}

.scenario-selector .default-scenario-badge {
    left: -3px;
    top: 25px;
    z-index: 99;
    line-height: 1px;
    font-size: 10px;
    padding: 5px !important;
    color: #fff;
    background-color: #bbbbbe !important;
}

.scenario-selector.active-scenario .default-scenario-badge {
    background-color: #60aa08 !important;
}

/*  .jq-toast-wrap {
      top: 0px !important;
  }
  .jq-toast-single {
      border-radius: 0 0 4px 4px !important;
  }*/

.header_bg {
    background-color: #fff;
    padding: 150px 0 160px;
}

.home-table-center {
    display: table-cell;
    vertical-align: middle;
}

.home-table {
    display: table;
    width: 100%;
    height: 100%;
}

.home_content {
    max-width: 800px;
}

.home_small_title {
    font-size: 12px;
    padding: 10px 24px;
    border: 1px solid #f1f1f1;
    display: inline-block;
    border-radius: 30px;
    color: rgba(0, 0, 0, 0.64);
}

.home_small_content {
    font-size: 18px;
    line-height: 1.8;
}

.home_content h1 {
    font-size: 36px;
    line-height: 1.4;
}

.moeny-more p {
    font-size: 14px;
}

.curv-img {
    position: absolute;
    width: 100%;
    bottom: 0px;
    z-index: 1;
    overflow: hidden;
}

.learn_more {
    position: relative;
    top: 6px;
}

.learn_more i {
    background: #2aafc0;
    border-radius: 50px;
    width: 58px;
    text-align: center;
    height: 58px;
    line-height: 58px;
    color: #fff;
    box-shadow: 0px 0px 0px 9px #2aafc029;
    font-size: 26px;
    display: inline-block;
}

.alert-dark {
    background-color: #212222;
    color: #fff;
}

.alert-dark.alert-dismissible .btn-close {
    color: #fff;
}

.modal-backdrop.show {
    opacity: .7;
}

.bg-dark {
    background-color: #212222 !important;
}

.scenario-stats .card-body p {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0;
}



.circle-icon-btn {
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 22px;
    line-height: 22px;
    margin: auto 3px;
    width: 22px;
    font-size: 11px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #bbbbbe;
}

.circle-icon-btn:hover {
    background-color: #000;
    border: 1px solid #000;
    color: #fff !important;
}

#switchViewBtn {
    position: fixed;
    bottom: -14px;
    right: 0;
    padding: 4px 12px;
    font-size: 26px;
    transition: all 400ms ease-out;
    z-index: 99999;
}

#switchViewBtn:hover {
    bottom: 0px;
}

.noIconDropdown:before {
    display: none;
}

.dropdownMenuScenario .dropdown-item {
    padding: 0 5px;
    color: #555555;
}
.dropdownMenuScenario .dropdown-item:hover {
    color: #000;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #555555;
    content: '\f101';
    font-size: 10px;
}

.doc-code-pre {
    max-height: calc(100vh - 420px);
    padding: 10px !important;
    border-radius: 0!important;
}

.animated-border {
    animation: highlightborder 1s ease;
}

@keyframes highlightborder {
    0% {
        border: 6px solid #000;
    }
    20% {
        border: 5px solid #000;
    }
    40% {
        border: 4px solid #000;
    }
    60% {
        border: 3px solid #000;
    }
    80% {
        border: 2px solid #000;
    }
    100% {
        border: none;
    }
}

.shake1 {
    -webkit-animation-name:              shake;
    -webkit-animation-duration:          0.1s;
    -webkit-animation-iteration-count:   1;
    -webkit-animation-timing-function:   linear;
    -webkit-transform-origin:            50% 100%;
}

@-webkit-keyframes shake {
    0%  { -webkit-transform:     translate(2px, 1px) rotate(0deg); }
    10% { -webkit-transform:     translate(-1px, -2px) rotate(-1deg); }
    20% { -webkit-transform:     translate(-3px, 0px) rotate(2deg); }
    30% { -webkit-transform:     translate(0px, 2px) rotate(0deg); }
    40% { -webkit-transform:     translate(1px, -1px) rotate(1deg); }
    50% { -webkit-transform:     translate(-1px, 2px) rotate(-1deg); }
    60% { -webkit-transform:     translate(-3px, 1px) rotate(0deg); }
    70% { -webkit-transform:     translate(2px, 1px) rotate(-1deg); }
    80% { -webkit-transform:     translate(-1px, -1px) rotate(2deg); }
    90% { -webkit-transform:     translate(2px, 2px) rotate(0deg); }
    100%{ -webkit-transform:     translate(1px, -2px) rotate(-1deg); }
}

.bounce-in {
    animation: bounce-in 0.2s ease;
}
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    70% { transform: scale(.9); }
    100% { transform: scale(1); }
}

.bounce-in-right {
    animation: bounce-in-right 0.2s ease;
}
@keyframes bounce-in-right {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        transform: translateX(-30px);
    }
    80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

.fade-in-down {
    animation: fade-in-down 0.4s ease;
}
@keyframes fade-in-down {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fade-in-left 0.2s ease;
}
@keyframes fade-in-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
