/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    color: #2487ce;
}

a:hover {
    color: #469fdf;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #2487ce;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #3e9bdd;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #2487ce;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #16507b;
}

#header .logo img {
    max-height: 40px;
}

.settings-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d7e8f5;
    border-radius: 4px;
    background: #fff;
    color: #16507b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.settings-button i {
    font-size: 22px;
    line-height: 1;
}

.settings-button:hover,
.settings-button:focus {
    border-color: #2487ce;
    color: #2487ce;
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 135, 206, 0.16);
}

.settings-status {
    min-height: 22px;
    margin-top: 8px;
    color: #5e5e5e;
    font-size: 14px;
}

@media (max-width: 992px) {
    #header .logo {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
}

#hero:before {
    content: "";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    padding-top: 80px;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: #124265;
    font-family: "Poppins", sans-serif;
}

#hero h2 {
    color: #5e5e5e;
    margin: 10px 0 0 0;
    font-size: 22px;
}

#hero .icon-boxes {
    margin-top: 100px;
}

#hero .health-section {
    width: 100%;
    margin-bottom: 44px;
}

#hero .health-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(18, 66, 101, 0.16);
}

#hero .health-section-header h3 {
    margin: 0;
    color: #124265;
    font-size: 24px;
    font-weight: 700;
}

#hero .health-section-header a {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 600;
}

#hero .health-section-grid {
    width: 100%;
    overflow: visible;
}

#hero .health-section-grid > [class*="col-"] {
    position: relative;
}

#hero .health-section-grid > [class*="col-"]:hover,
#hero .health-section-grid > [class*="col-"]:focus-within {
    z-index: 50;
}

#hero .empty-method-state {
    width: 100%;
    padding: 28px 0;
    color: #5e5e5e;
    font-size: 16px;
    font-weight: 600;
}

#hero .icon-box {
    padding: 20px 30px 50px 30px;
    position: relative;
    overflow: visible;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    margin-bottom: 15px;
}

#hero .icon-box .chip {
    display: flex;
    /*background: #ef5c5c;*/
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 20px;
    width: 100px;
    height: 30px;
    margin-top: 10px;
}

#hero .icon-box .chip label {
    color: #fafafa;
    font-size: 12px;
    margin: 0;
}

#hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#hero .icon-box .title a {
    color: #124265;
    transition: 0.3s;
}

#hero .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

#hero .icon-box .endpoint-template {
    color: #5e5e5e;
    font-size: 14px;
    line-height: 22px;
}

#hero .icon-box .endpoint-actual {
    color: #124265;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    overflow-wrap: break-word;
    word-break: break-word;
}

#hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: #2487ce;
    flex: 1;
}

#hero .request-status {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-top: 18px;
}

#hero .request-progress {
    flex: 1 1 auto;
    height: 10px;
    overflow: hidden;
    border-radius: 4px;
    background: #e9eef3;
}

#hero .request-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #2487ce;
    transition: width 0.12s linear, background-color 0.2s ease;
}

#hero .request-progress-bar.complete {
    background: #66bb6a;
}

#hero .request-progress-bar.failed {
    background: #ef5c5c;
}

#hero .request-time {
    flex: 0 0 72px;
    color: #5e5e5e;
    font-size: 13px;
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

#hero .tile-details-tooltip {
    position: absolute;
    top: 16px;
    left: calc(100% + 14px);
    z-index: 100;
    width: 380px;
    max-width: calc(100vw - 32px);
    color: #444;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
    background: #fff;
    border: 1px solid rgba(18, 66, 101, 0.14);
    border-radius: 6px;
    box-shadow: 0 12px 28px rgba(18, 66, 101, 0.18);
}

#hero .tile-details-header {
    padding: 14px 16px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    background: #f2f2f2;
    border-bottom: 1px solid rgba(18, 66, 101, 0.12);
    border-radius: 6px 6px 0 0;
}

#hero .tile-details-body {
    padding: 12px 16px;
}

#hero .tile-details-tooltip table {
    width: 100%;
    margin: 0;
}

#hero .tile-details-tooltip td {
    padding: 8px 0;
    color: #444;
    font-size: 14px;
    line-height: 20px;
    vertical-align: top;
    overflow-wrap: anywhere;
}

#hero .tile-details-tooltip td:first-child {
    width: 34%;
    padding-right: 14px;
    color: #5e5e5e;
    font-weight: 600;
}

#hero .tile-details-tooltip a {
    color: #2487ce;
}

#hero .request-body-template {
    max-height: 180px;
    margin: 0;
    padding: 8px;
    overflow: auto;
    color: #333;
    font-size: 12px;
    line-height: 16px;
    white-space: pre-wrap;
    background: #f7fafc;
    border: 1px solid #e1ebf2;
    border-radius: 4px;
}

#hero .icon-box:hover {
    transform: translateY(-2px);
    z-index: 25;
}

#hero .icon-box:hover .tile-details-tooltip,
#hero .icon-box:focus-within .tile-details-tooltip {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#hero .icon-box:hover .title a {
    color: #2487ce;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 992px), (max-height: 500) {
    #hero {
        height: auto;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #hero .health-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    #hero .health-section-header h3 {
        font-size: 20px;
    }

    #hero .tile-details-tooltip {
        top: calc(100% + 10px);
        left: 0;
        width: min(380px, calc(100vw - 32px));
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 80px 0;
}

.section-bg {
    background-color: #f8fbfe;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #124265;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #f8fbfe;
    padding: 30px 0;
    color: #222222;
    font-size: 14px;
    text-align: center;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .credits a {
    color: #629bd4;
}

/*--------------------------------------------------------------
# SELECT BOX
--------------------------------------------------------------*/

.select {
    position: relative;
    min-width: 200px;
}

.test-controls {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    margin-top: 30px;
}

.selector-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.run-all-tests-button {
    width: 100%;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid #2487ce;
    border-radius: 5px;
    background: #2487ce;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.run-all-tests-button:hover,
.run-all-tests-button:focus {
    background: #1f74b0;
    border-color: #1f74b0;
    outline: none;
    box-shadow: 0 0 0 2px rgba(36, 135, 206, 0.18);
}

.run-all-tests-button:disabled {
    border-color: #9eb8ca;
    background: #9eb8ca;
    cursor: not-allowed;
    box-shadow: none;
}

.run-all-tests-control {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 240px;
    margin-top: 2px;
    padding: 10px;
    border: 1px solid rgba(18, 66, 101, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 4px 14px rgba(18, 66, 101, 0.08);
}

.run-all-progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 4px;
    background: #e9eef3;
}

.run-all-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #2487ce;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.run-all-progress-bar.complete {
    background: #66bb6a;
}

.run-all-progress-meta {
    width: 100%;
    color: #4d5d68;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
}

.run-all-progress-meta div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.run-all-progress-meta span {
    color: #124265;
    font-weight: 700;
}

.select svg {
    position: absolute;
    right: 12px;
    top: calc(50% - 3px);
    width: 10px;
    height: 6px;
    stroke-width: 2px;
    stroke: #9098a9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    pointer-events: none;
}

.select select {
    -webkit-appearance: none;
    padding: 7px 40px 7px 12px;
    width: 100%;
    border: 1px solid #e8eaed;
    border-radius: 5px;
    background: #fff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    transition: all 150ms ease;
}

.select select:required:invalid {
    color: #5a667f;
}

.select select option {
    color: #223254;
}

.select select option[value=""][disabled] {
    display: none;
}

.select select:focus {
    outline: none;
    border-color: #07f;
    box-shadow: 0 0 0 2px rgba(0, 119, 255, 0.2);
}

.select select:hover + svg {
    stroke: #07f;
}

.sprites {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 576px) {
    .test-controls {
        align-items: stretch;
        flex-direction: column;
    }

    .selector-stack {
        width: 100%;
    }

    .run-all-tests-button,
    .run-all-tests-control,
    .run-all-progress,
    .run-all-progress-meta {
        width: 100%;
    }
}
