﻿:root {
    --blue: #0e3950;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #d63384;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #0bc12c;
    --teal: #179571;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #3e576a;
    --gray-dark: #343a40;
    --primary: #006aa5;
    --secondary: rgba(255,255,255,0.7);
    --success: #0bc12c;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #718798;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "Open Sans", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

footer, header, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: "Open Sans",sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #315467;
    text-align: left;
    background-color: #fff;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ul, dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

    ul ul {
        margin-bottom: 0;
    }

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

a {
    color: #006aa5;
    text-decoration: none;
    background-color: transparent;
}

    a:hover {
        color: #003959;
        /*text-decoration: underline;*/
    }

    a:not([href]) {
        color: inherit;
        text-decoration: none;
    }

        a:not([href]):hover {
            color: inherit;
            text-decoration: none;
        }

pre, code {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    -ms-overflow-style: scrollbar;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: .5rem;
}

button {
    border-radius: 0;
}

    button:focus {
        outline: 1px dotted;
        outline: 5px auto -webkit-focus-ring-color;
    }

input, button {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button, input {
    overflow: visible;
}

button {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

button, [type="button"], [type="submit"] {
    -webkit-appearance: button;
}

    button:not(:disabled), [type="button"]:not(:disabled), [type="submit"]:not(:disabled) {
        cursor: pointer;
    }

    button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
        padding: 0;
        border-style: none;
    }

input[type="radio"], input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

    [type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

summary {
    display: list-item;
    cursor: pointer;
}

[hidden] {
    display: none !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 2.5rem;
}

h2, .h2 {
    font-size: 2rem;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

small, .small {
    font-size: 80%;
    font-weight: 400;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

    .list-inline-item:not(:last-child) {
        margin-right: .5rem;
    }

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

code {
    font-size: 87.5%;
    color: #d63384;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #313131;
}

    pre code {
        font-size: inherit;
        color: inherit;
        word-break: normal;
    }

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-4, .col-5, .col-6, .col-12, .col, .col-sm-3, .col-sm-4, .col-sm-6, .col-sm-8, .col-sm-9, .col-sm-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-12, .col-md, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-10, .col-xl-4, .col-xl-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
}

.col-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 576px) {
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex-basis: 0;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
    }

    .col-md-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-11 {
        order: 11;
    }

    .order-md-12 {
        order: 12;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-10 {
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }
}

@media (min-width: 1200px) {
    .col-xl-4 {
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-8 {
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }
}

.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #315467;
}

    .table th, .table td {
        padding: .75rem;
        vertical-align: top;
        border-top: 1px solid #edf1f4;
    }

    .table thead th {
        vertical-align: bottom;
        border-bottom: 2px solid #edf1f4;
    }

    .table tbody + tbody {
        border-top: 2px solid #edf1f4;
    }

.table-sm th, .table-sm td {
    padding: .3rem;
}

.table-bordered {
    border: 1px solid #edf1f4;
}

    .table-bordered th, .table-bordered td {
        border: 1px solid #edf1f4;
    }

    .table-bordered thead th, .table-bordered thead td {
        border-bottom-width: 2px;
    }

.table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,0.05);
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

        .table-responsive-md > .table-bordered {
            border: 0;
        }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

    .table-responsive > .table-bordered {
        border: 0;
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #718798;
    border-radius: .25rem;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        transition: none;
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #333;
}

.form-control:focus {
    color: #333;
    background-color: #fff;
    border-color: #26b1ff;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 0 .2rem rgba(0,106,165,0.25);
}

.form-control::placeholder {
    color: #3e576a;
    opacity: 1;
}

.form-control:disabled {
    background-color: #f1f7fa;
    opacity: 1;
}

input[type="date"].form-control, input[type="time"].form-control, input[type="month"].form-control {
    appearance: none;
}

.form-control-lg {
    height: 52px;
    padding: 0 20px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.form-group {
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #315467;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    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;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover {
    color: #315467;
    text-decoration: none;
}

.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0,106,165,0.25);
}

.btn.disabled, .btn:disabled {
    opacity: .65;
    box-shadow: none;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

    .btn:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active {
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    }

        .btn:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus {
            box-shadow: 0 0 0 .2rem rgba(0,106,165,0.25),inset 0 3px 5px rgba(0,0,0,0.125);
        }

a.btn.disabled {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #006aa5;
    border-color: #006aa5;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);
}

    .btn-primary:hover {
        color: #fff;
        background-color: #00517f;
        border-color: #004972;
    }

    .btn-primary:focus {
        color: #fff;
        background-color: #00517f;
        border-color: #004972;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075),0 0 0 .2rem rgba(38,128,179,0.5);
    }

    .btn-primary.disabled, .btn-primary:disabled {
        color: #fff;
        background-color: #006aa5;
        border-color: #006aa5;
    }

    .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
        color: #fff;
        background-color: #004972;
        border-color: #004165;
    }

        .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.125),0 0 0 .2rem rgba(38,128,179,0.5);
        }

.btn-success {
    color: #fff;
    background-color: #0bc12c;
    border-color: #0bc12c;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);
}

    .btn-success:hover {
        color: #fff;
        background-color: #099d24;
        border-color: #089121;
    }

    .btn-success:focus {
        color: #fff;
        background-color: #099d24;
        border-color: #089121;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075),0 0 0 .2rem rgba(48,202,76,0.5);
    }

    .btn-success.disabled, .btn-success:disabled {
        color: #fff;
        background-color: #0bc12c;
        border-color: #0bc12c;
    }

    .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
        color: #fff;
        background-color: #089121;
        border-color: #08851e;
    }

        .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.125),0 0 0 .2rem rgba(48,202,76,0.5);
        }

.btn-outline-primary {
    color: #006aa5;
    border-color: #006aa5;
}

    .btn-outline-primary:hover {
        color: #fff;
        background-color: #006aa5;
        border-color: #006aa5;
    }

    .btn-outline-primary:focus {
        box-shadow: 0 0 0 .2rem rgba(0,106,165,0.5);
    }

    .btn-outline-primary.disabled, .btn-outline-primary:disabled {
        color: #006aa5;
        background-color: transparent;
    }

    .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
        color: #fff;
        background-color: #006aa5;
        border-color: #006aa5;
    }

        .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.125),0 0 0 .2rem rgba(0,106,165,0.5);
        }

.btn-outline-secondary {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.7);
}

    .btn-outline-secondary:hover {
        color: #313131;
        background-color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.7);
    }

    .btn-outline-secondary:focus {
        box-shadow: 0 0 0 .2rem rgba(255,255,255,0.5);
    }

    .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
        color: rgba(255,255,255,0.7);
        background-color: transparent;
    }

    .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
        color: #313131;
        background-color: rgba(255,255,255,0.7);
        border-color: rgba(255,255,255,0.7);
    }

        .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.125),0 0 0 .2rem rgba(255,255,255,0.5);
        }

.btn-outline-dark {
    color: #343a40;
    border-color: #343a40;
}

    .btn-outline-dark:hover {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40;
    }

    .btn-outline-dark:focus {
        box-shadow: 0 0 0 .2rem rgba(52,58,64,0.5);
    }

    .btn-outline-dark.disabled, .btn-outline-dark:disabled {
        color: #343a40;
        background-color: transparent;
    }

    .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
        color: #fff;
        background-color: #343a40;
        border-color: #343a40;
    }

        .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
            box-shadow: inset 0 3px 5px rgba(0,0,0,0.125),0 0 0 .2rem rgba(52,58,64,0.5);
        }

.btn-link {
    font-weight: 400;
    color: #006aa5;
    text-decoration: none;
}

    .btn-link:hover {
        color: #003959;
        text-decoration: underline;
    }

    .btn-link:focus {
        text-decoration: underline;
    }

    .btn-link:disabled, .btn-link.disabled {
        color: #3e576a;
        pointer-events: none;
    }

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: .5rem;
    }

input[type="submit"].btn-block, input[type="button"].btn-block {
    width: 100%;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }

    .dropdown-toggle:empty::after {
        margin-left: 0;
    }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #315467;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none solid rgba(0,0,0,0.15);
    border-radius: .25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.175);
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #f1f7fa;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #313131;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:hover, .dropdown-item:focus {
        color: #242424;
        text-decoration: none;
        background-color: #edf1f4;
    }

    .dropdown-item.active, .dropdown-item:active {
        color: #fff;
        text-decoration: none;
        background-color: #006aa5;
    }

    .dropdown-item.disabled, .dropdown-item:disabled {
        color: #3e576a;
        pointer-events: none;
        background-color: transparent;
    }

.dropdown-menu.show {
    display: block;
}

.btn-group {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

    .btn-group > .btn {
        position: relative;
        flex: 1 1 auto;
    }

        .btn-group > .btn:hover {
            z-index: 1;
        }

        .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active {
            z-index: 1;
        }

        .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) {
            margin-left: -1px;
        }

        .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
        }

        .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    .btn-group.show .dropdown-toggle {
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.125);
    }

        .btn-group.show .dropdown-toggle.btn-link {
            box-shadow: none;
        }

.nav {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: .5rem 1rem;
}

    .nav-link:hover, .nav-link:focus {
        text-decoration: none;
    }

    .nav-link.disabled {
        color: #3e576a;
        pointer-events: none;
        cursor: default;
    }

.nav-pills .nav-link {
    border-radius: .25rem;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #006aa5;
    }

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 16px 1rem;
}

    .navbar .container, .navbar .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

.navbar-brand {
    display: inline-block;
    padding-top: .3125rem;
    padding-bottom: .3125rem;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap;
}

    .navbar-brand:hover, .navbar-brand:focus {
        text-decoration: none;
    }

.navbar-nav {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .navbar-nav .nav-link {
        padding-right: 0;
        padding-left: 0;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
    }

.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
}

    .navbar-toggler:hover, .navbar-toggler:focus {
        text-decoration: none;
    }

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%;
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        flex-flow: row nowrap;
        justify-content: flex-start;
    }

        .navbar-expand-md .navbar-nav {
            flex-direction: row;
        }

            .navbar-expand-md .navbar-nav .dropdown-menu {
                position: absolute;
            }

            .navbar-expand-md .navbar-nav .nav-link {
                padding-right: .5rem;
                padding-left: .5rem;
            }

        .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
            flex-wrap: nowrap;
        }

        .navbar-expand-md .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
        }

        .navbar-expand-md .navbar-toggler {
            display: none;
        }
}

.navbar-light .navbar-brand {
    color: rgba(0,0,0,0.9);
}

    .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
        color: rgba(0,0,0,0.9);
    }

.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,0.5);
}

    .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
        color: rgba(0,0,0,0.7);
    }

    .navbar-light .navbar-nav .nav-link.disabled {
        color: rgba(0,0,0,0.3);
    }

    .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
        color: rgba(0,0,0,0.9);
    }

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,0.5);
    border-color: rgba(0,0,0,0.1);
}

/*.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}*/

.navbar-dark .navbar-brand {
    color: #fff;
}

    .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
        color: #fff;
    }

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

    .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255,255,255,0.75);
    }

    .navbar-dark .navbar-nav .nav-link.disabled {
        color: rgba(255,255,255,0.25);
    }

    .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active {
        color: #fff;
    }

.navbar-dark .navbar-toggler {
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

/*.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}*/

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,0.125);
    border-radius: .25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group {
        border-top: inherit;
        border-bottom: inherit;
    }

        .card > .list-group:first-child {
            border-top-width: 0;
            border-top-left-radius: calc(.25rem - 1px);
            border-top-right-radius: calc(.25rem - 1px);
        }

        .card > .list-group:last-child {
            border-bottom-width: 0;
            border-bottom-right-radius: calc(.25rem - 1px);
            border-bottom-left-radius: calc(.25rem - 1px);
        }

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: .75rem;
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.125);
}

    .card-header:first-child {
        border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
    }

    .card-header + .list-group .list-group-item:first-child {
        border-top: 0;
    }

.card-img-top {
    flex-shrink: 0;
    width: 100%;
}

.card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top, .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top, .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #006aa5;
    background-color: #fff;
    border: 1px solid #e5eaed;
}

    .page-link:hover {
        z-index: 2;
        color: #003959;
        text-decoration: none;
        background-color: #f1f7fa;
        border-color: #e5eaed;
    }

    .page-link:focus {
        z-index: 3;
        outline: 0;
        box-shadow: 0 0 0 .2rem rgba(0,106,165,0.25);
    }

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #006aa5;
    border-color: #006aa5;
}

.page-item.disabled .page-link {
    color: #3e576a;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #e5eaed;
}

.badge {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
    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;
}

@media (prefers-reduced-motion: reduce) {
    .badge {
        transition: none;
    }
}

a.badge:hover, a.badge:focus {
    text-decoration: none;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    background-color: #f1f7fa;
    border-radius: .3rem;
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem;
    }
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.media {
    display: flex;
    align-items: flex-start;
}

.media-body {
    flex: 1;
}

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    border-radius: .25rem;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.125);
}

    .list-group-item:first-child {
        border-top-left-radius: inherit;
        border-top-right-radius: inherit;
    }

    .list-group-item:last-child {
        border-bottom-right-radius: inherit;
        border-bottom-left-radius: inherit;
    }

    .list-group-item.disabled, .list-group-item:disabled {
        color: #3e576a;
        pointer-events: none;
        background-color: #fff;
    }

    .list-group-item.active {
        z-index: 2;
        color: #fff;
        background-color: #006aa5;
        border-color: #006aa5;
    }

    .list-group-item + .list-group-item {
        border-top-width: 0;
    }

        .list-group-item + .list-group-item.active {
            margin-top: -1px;
            border-top-width: 1px;
        }

.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

    .close:hover {
        color: #000;
        text-decoration: none;
    }

    .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
        opacity: .75;
    }

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

a.close.disabled {
    pointer-events: none;
}

.toast {
    max-width: 350px;
    overflow: hidden;
    font-size: .875rem;
    background-color: rgba(255,255,255,0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    border-radius: .25rem;
}

    .toast:not(:last-child) {
        margin-bottom: .75rem;
    }

    .toast.show {
        display: block;
        opacity: 1;
    }

    .toast.hide {
        display: none;
    }

.toast-header {
    display: flex;
    align-items: center;
    padding: .25rem .75rem;
    color: #3e576a;
    background-color: rgba(255,255,255,0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.toast-body {
    padding: .75rem;
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-family: "Open Sans",sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0;
}

    .tooltip.show {
        opacity: 1;
    }

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: none;
    }
}

.bg-primary {
    background-color: #006aa5 !important;
}

a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus {
    background-color: #004972 !important;
}

.bg-success {
    background-color: #0bc12c !important;
}

a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus {
    background-color: #089121 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.border {
    border: 1px solid #e5eaed !important;
}

.border-top {
    border-top: 1px solid #e5eaed !important;
}

.border-0 {
    border: 0 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.rounded {
    border-radius: .25rem !important;
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.d-none {
    display: none !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-flex {
        display: flex !important;
    }
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.align-items-center {
    align-items: center !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-center {
    align-self: center !important;
}

@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        flex-direction: row !important;
    }
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.position-relative {
    position: relative !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

@supports (position: sticky) {
    .sticky-top {
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shadow {
    box-shadow: 0 5px 30px rgba(0,0,0,0.15) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,0.175) !important;
}

.w-50 {
    width: 50% !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0, .my-0 {
    margin-top: 0 !important;
}

.mb-0, .my-0 {
    margin-bottom: 0 !important;
}

.mt-2, .my-2 {
    margin-top: .5rem !important;
}

.mr-2, .mx-2 {
    margin-right: .5rem !important;
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important;
}

.mx-2 {
    margin-left: .5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3, .my-3 {
    margin-top: 1rem !important;
}

.mr-3, .mx-3 {
    margin-right: 1rem !important;
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important;
}

.mt-5, .my-5 {
    margin-top: 3rem !important;
}

.mr-5, .mx-5 {
    margin-right: 3rem !important;
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important;
}

.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pt-1 {
    padding-top: .25rem !important;
}

.pt-2, .py-2 {
    padding-top: .5rem !important;
}

.px-2 {
    padding-right: .5rem !important;
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important;
}

.px-2 {
    padding-left: .5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3, .py-3 {
    padding-top: 1rem !important;
}

.px-3 {
    padding-right: 1rem !important;
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important;
}

.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important;
}

.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5, .py-5 {
    padding-top: 3rem !important;
}

.px-5 {
    padding-right: 3rem !important;
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important;
}

.px-5 {
    padding-left: 3rem !important;
}

.mt-n1 {
    margin-top: -.25rem !important;
}

.mt-n3 {
    margin-top: -1rem !important;
}

.mt-n5, .my-n5 {
    margin-top: -3rem !important;
}

.mb-n5, .my-n5 {
    margin-bottom: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mr-auto, .mx-auto {
    margin-right: auto !important;
}

.mx-auto {
    margin-left: auto !important;
}

@media (min-width: 576px) {
    .mr-sm-3 {
        margin-right: 1rem !important;
    }

    .mt-sm-5 {
        margin-top: 3rem !important;
    }
}

@media (min-width: 768px) {
    .mt-md-0, .my-md-0 {
        margin-top: 0 !important;
    }

    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .mt-md-2 {
        margin-top: .5rem !important;
    }

    .mr-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
    }

    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important;
    }

    .px-md-2 {
        padding-left: .5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important;
    }

    .px-md-5 {
        padding-left: 3rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
    }

    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0 !important;
    }
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #006aa5 !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #003959 !important;
}

.text-success {
    color: #0bc12c !important;
}

a.text-success:hover, a.text-success:focus {
    color: #07791c !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #a71d2a !important;
}

.text-light {
    color: #718798 !important;
}

a.text-light:hover, a.text-light:focus {
    color: #4f606d !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #121416 !important;
}

.text-muted {
    color: #3e576a !important;
}

.invisible {
    visibility: hidden !important;
}

.my-8 {
    margin: 3rem 0 !important;
}

.light-placeholder::placeholder {
    opacity: 0.5;
}

.leading-normal {
    line-height: 1.5;
}

.tracking-tighter {
    letter-spacing: -0.05em;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px 0 rgba(0,0,0,0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);
}

.rounded {
    border-radius: 0.25rem;
}

.font-weight-semi-bold {
    font-weight: 600;
}

.btn-size-large {
    font-size: 18px;
    padding: 20px 35px;
}

@media (max-width: 767px) {
    .btn-size-large {
        font-size: 16px;
        padding: 16px 35px;
    }
}

.btn-size-medium {
    font-size: 14px;
    padding: 17px 32px;
}

@media (max-width: 767px) {
    .btn-size-medium {
        padding-top: 13px;
        padding-bottom: 13px;
    }
}

.btn-fill-white {
    background: #fff;
    color: #006aa5;
}

    .btn-fill-white:hover, .btn-fill-white:focus {
        background: rgba(255,255,255,0.8);
        color: #006aa5;
    }

    .btn-fill-white:active {
        background: #f2f2f2;
        color: rgba(0,106,165,0.3);
    }

.btn-fill-green {
    background: #0bc12c;
    color: #fff;
}

    .btn-fill-green:hover, .btn-fill-green:focus {
        background: #0cd932;
        color: #fff;
    }

    .btn-fill-green:active {
        background: #0aa927;
        color: rgba(255,255,255,0.3);
    }

.btn-line-primary {
    box-shadow: inset 0px 0px 0px 1px rgba(0,106,165,0.3);
    color: #006aa5;
}

    .btn-line-primary:hover, .btn-line-primary:focus {
        box-shadow: inset 0px 0px 0px 1px rgba(0,106,165,0.5);
        color: #006aa5;
    }

    .btn-line-primary:active {
        background-color: rgba(0,106,165,0.05);
        color: rgba(0,106,165,0.4);
    }

.btn:focus {
    box-shadow: none !important;
}

.btn-outline-dark {
    border-color: #d1d1d1;
    color: #626262;
}

button {
    cursor: pointer;
}

.btn-primary {
    font-weight: 300;
}

.nav-link {
    font-weight: 400;
}

.switcher input[type='checkbox'] {
    height: 0;
    position: absolute;
    visibility: hidden;
    width: 0;
}

.switcher label {
    border: 1px solid #d7dcdf;
    border-radius: 100px;
    cursor: pointer;
    display: block;
    height: 20px;
    position: relative;
    text-indent: -9999px;
    width: 40px;
}

    .switcher label::after {
        background: #0f3950;
        border-radius: 90px;
        content: '';
        height: 12px;
        left: 4px;
        position: absolute;
        top: 3px;
        transition: 0.3s;
        width: 12px;
    }

.switcher input:checked + label::after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.pricing-page .pricing-hero {
    padding-top: 10px;
    position: relative;
}

@media (max-width: 1199px) {
    .pricing-page .pricing-hero {
        padding-top: 60px;
    }
}

@media (max-width: 767px) {
    .pricing-page .pricing-hero {
        padding-top: 40px;
    }
}

.pricing-page .pricing-hero h1 {
    font-size: 2.14rem;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .pricing-page .pricing-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .pricing-page .pricing-hero h1 {
        font-size: 26px;
    }
}

.pricing-page .pricing-hero .lead {
    color: #0e3950;
    font-size: 1rem;
}

.pricing-page .pricing-hero .container {
    position: relative;
    top: 0;
}

.pricing-page .pricing-hero .arrow-line-icon {
    background: url(../images/pricing/arrow-line-icon.svg) 0 0 no-repeat;
    background-size: 100%;
    bottom: -45px;
    height: 60px;
    position: absolute;
    right: 290px;
    width: 130px;
    z-index: 9;
}

@media (max-width: 767px) {
    .pricing-page .pricing-hero .arrow-line-icon {
        display: none;
    }
}

.pricing-page .pricing-hero h2 {
    color: #0e3950;
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.pricing-page .plan-duration {
    color: #0e3950;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.8;
}

    .pricing-page .plan-duration.active {
        opacity: 1;
    }

.pricing-page .pricing-plans {
    border-radius: 10px;
    margin-top: 40px;
}

.pricing-page .card {
    border: 0;
    border-right: 1px solid #edf1f4;
}

@media (max-width: 991px) {
    .pricing-page .card {
        flex: 1 0 33.33%;
    }
}

@media (max-width: 767px) {
    .pricing-page .card {
        border: 1px solid #edf1f4 !important;
        border-radius: 8px !important;
        box-shadow: 0 5px 20px rgba(14,57,80,0.1);
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

.pricing-page .card:last-child {
    border: 0;
}

.pricing-page .card .card-header {
    padding: 20px 30px;
}

@media (max-width: 991px) {
    .pricing-page .card .card-header {
        padding: 20px;
    }
}

.pricing-page .card .card-header h5 {
    font-size: 1rem;
    line-height: 28px;
}

    .pricing-page .card .card-header h5 .popular-tag {
        background: rgba(11,193,44,0.12);
        border-radius: 15px;
        color: #0bc12c;
        display: inline-block;
        font-size: 12px;
        line-height: 16px;
        margin-left: 10px;
        padding: 5px 12px;
    }

.pricing-page .card .card-header .card-title {
    font-size: 2.85rem;
    line-height: 1.4;
    margin-bottom: 3px;
}

@media (max-width: 1199px) {
    .pricing-page .card .card-header .card-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .pricing-page .card .card-header .card-title {
        font-size: 26px;
        line-height: 1.2;
    }
}

.pricing-page .card .card-header .card-title .duration {
    font-size: 1rem;
    letter-spacing: -0.025em;
}

.pricing-page .card .card-header .card-subtitle {
    color: rgba(14,57,80,0.7);
    font-size: 0.85rem;
    line-height: normal;
    margin-bottom: 0;
    min-height: 17px;
}

.pricing-page .card .card-body {
    padding: 0 10px 0 30px;
}

@media (max-width: 1199px) {
    .pricing-page .card .card-body {
        padding: 0 10px 0 20px;
    }
}

.pricing-page .card .card-body .card-title-outer {
    background: #edf1f4;
    margin: 0 -30px;
    min-height: 28px;
    padding: 7px 30px 5px;
}

@media (max-width: 1199px) {
    .pricing-page .card .card-body .card-title-outer {
        margin: 0 -20px;
        padding: 6px 20px 4px;
    }
}

.pricing-page .card .card-body .card-title-outer.blank-box .card-title::after {
    display: none;
}

.pricing-page .card .card-body .card-title-outer h5 {
    color: #0e3950;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 16px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .pricing-page .card .card-body .card-title-outer h5 {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
}

.pricing-page .card .card-body .card-text {
    color: #0e3950;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin: 0;
    min-height: 50px;
    padding: 17px 0;
}

@media (max-width: 991px) {
    .pricing-page .card .card-body .card-text {
        min-height: 40px;
        padding: 12px 0;
    }
}

.pricing-page .card .card-body .price-feature {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    padding-left: 25px;
}

    .pricing-page .card .card-body .price-feature li {
        color: #0e3950;
        font-size: 12px;
        font-weight: 600;
        line-height: 16px;
        margin-bottom: 10px;
    }

        .pricing-page .card .card-body .price-feature li i {
            display: inline-block;
            height: 16px;
            margin-left: -26px;
            margin-right: 10px;
            vertical-align: top;
            width: 16px;
        }

            .pricing-page .card .card-body .price-feature li i.m-included {
                background: url(../images/icons/green-check-light.svg) 0 0 no-repeat;
                background-size: 100%;
            }

               .pricing-page .card .card-body .price-feature li i.m-no-included {
                background: url(../images/icons/close.png) 0 0 no-repeat;
                background-size: 100%;
            }

            .pricing-page .card .card-body .price-feature li i.m-partial {
                background: url(../images/icons/orange-check.svg) 0 0 no-repeat;
                background-size: 100%;
            }

            .pricing-page .card .card-body .price-feature li i.m-available {
                background: url(../images/icons/plus-icon.svg) 0 0 no-repeat;
                background-size: 100%;
            }

        .pricing-page .card .card-body .price-feature li .tooltip {
            padding: 0;
        }

.pricing-page .card .price-cta {
    padding: 0 30px;
}

.pricing-page .card.enterprise-block {
    background: #0e3950;
}

    .pricing-page .card.enterprise-block .card-header h2 {
        color: #fff;
    }

    .pricing-page .card.enterprise-block .card-header h5 {
        color: #fff;
    }

    .pricing-page .card.enterprise-block .card-body .card-title-outer {
        background: rgba(255,255,255,0.1);
    }

        .pricing-page .card.enterprise-block .card-body .card-title-outer.blank-box {
            background: #0f3950;
        }

@media (max-width: 991px) {
    .pricing-page .card.enterprise-block .card-body .card-title-outer.blank-box {
        display: none;
    }
}

.pricing-page .card.enterprise-block .card-body .card-title-outer h5 {
    color: #fff;
}

    .pricing-page .card.enterprise-block .card-body .card-title-outer h5 .info-btn {
        background: url(../images/info_icon-white.svg) 0 0 no-repeat;
    }

.pricing-page .card.enterprise-block .card-body .card-text {
    color: #fff;
}

.pricing-page .card.enterprise-block .card-body .price-feature li {
    color: #fff;
}

.pricing-page .more-plans {
    padding: 50px 0;
}

@media (max-width: 767px) {
    .pricing-page .more-plans {
        padding: 20px 0 30px;
    }
}

.pricing-page .more-plans .ip-plan-block {
    background: #e2eff8;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
}

@media (max-width: 1199px) {
    .pricing-page .more-plans .ip-plan-block {
        padding: 30px 45px;
    }
}

@media (max-width: 991px) {
    .pricing-page .more-plans .ip-plan-block {
        padding: 25px 15px;
    }
}

.pricing-page .more-plans .ip-plan-block.ip-test-block {
    background: #0e3950;
}

@media (max-width: 767px) {
    .pricing-page .more-plans .ip-plan-block.ip-test-block {
        margin-top: 30px;
    }
}

.pricing-page .more-plans .ip-plan-block.ip-test-block h4 {
    color: #fff;
}

.pricing-page .more-plans .ip-plan-block.ip-test-block p {
    color: #fff;
}

.pricing-page .more-plans .ip-plan-block h4 {
    color: #0e3950;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 41px;
    margin-bottom: 10px;
    text-align: center;
}

@media (max-width: 1199px) {
    .pricing-page .more-plans .ip-plan-block h4 {
        font-size: 25px;
        line-height: 36px;
    }
}

@media (max-width: 991px) {
    .pricing-page .more-plans .ip-plan-block h4 {
        font-size: 24px;
        line-height: 34px;
    }
}

.pricing-page .more-plans .ip-plan-block p {
    color: #0e3950;
    font-size: 16px;
    line-height: 29px;
    margin: 0;
    opacity: 0.7;
}

@media (max-width: 1199px) {
    .pricing-page .more-plans .ip-plan-block p {
        font-size: 15px;
        line-height: 27px;
    }
}

@media (max-width: 991px) {
    .pricing-page .more-plans .ip-plan-block p {
        font-size: 14px;
        line-height: 25px;
    }
}

.pricing-page .more-plans .ip-plan-block .btn-lg {
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .pricing-page .more-plans .ip-plan-block .btn-lg {
        margin-top: 20px;
    }
}

.pricing-page .pricing-customers {
    padding: 40px 0 60px;
}

@media (max-width: 991px) {
    .pricing-page .pricing-customers {
        padding: 20px 0 40px;
    }
}

@media (max-width: 575px) {
    .pricing-page .pricing-customers {
        padding: 10px 0 25px;
    }
}

.pricing-page .pricing-customers h4 {
    color: #0e3950;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 33px;
    margin-bottom: 35px;
    text-align: center;
}

@media (max-width: 575px) {
    .pricing-page .pricing-customers h4 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 30px;
    }
}

.pricing-page .pricing-customers ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 991px) {
    .pricing-page .pricing-customers ul {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .pricing-page .pricing-customers ul li {
        margin-bottom: 15px;
    }
}

.pricing-page .pricing-customers ul li .company-logo {
    display: inline-block;
    height: 30px;
    width: 130px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo {
        height: 25px;
        width: 120px;
    }
}

@media (max-width: 575px) {
    .pricing-page .pricing-customers ul li .company-logo {
        height: 25px;
        width: 112px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.bupa-logo {
    background: url(../images/pricing/logo-bupa.svg) center no-repeat;
    background-size: 100% 33px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.bupa-logo {
        background-size: 100% 28px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.logo-paypal {
    background: url(../images/pricing/logo-paypal.svg) center no-repeat;
    background-size: 100% 31px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.logo-paypal {
        background-size: 100% 28px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.logo-ebay {
    background: url(../images/pricing/logo-ebay.svg) center no-repeat;
    background-size: 100% 31px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.logo-ebay {
        background-size: 100% 30px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.logo-plesk {
    background: url(../images/pricing/logo-plesk.svg) center no-repeat;
    background-size: 100% 31px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.logo-plesk {
        background-size: 100% 28px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.logo-clearbit {
    background: url(../images/pricing/logo-clearbit.svg) center no-repeat;
    background-size: 100% 31px;
}

.pricing-page .pricing-customers ul li .company-logo.logo-npm {
    background: url(../images/pricing/logo-npm.svg) center no-repeat;
    background-size: 100% 31px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.logo-npm {
        background-size: 100% 28px;
    }
}

.pricing-page .pricing-customers ul li .company-logo.logo-vodafone {
    background: url(../images/pricing/logo-vodafone.svg) center no-repeat;
    background-size: 100% 27px;
}

@media (max-width: 767px) {
    .pricing-page .pricing-customers ul li .company-logo.logo-vodafone {
        background-size: 100% 24px;
    }
}

.pricing-page .api-responses {
    background: #1e283a;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .pricing-page .api-responses {
        padding: 40px 0;
    }
}

@media (max-width: 575px) {
    .pricing-page .api-responses {
        padding: 30px 0 40px;
    }
}

.pricing-page .api-responses h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 41px;
    margin-bottom: 25px;
    text-align: center;
}

.pricing-page .api-responses .inline-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .pricing-page .api-responses .inline-buttons li a {
        background: rgba(255,255,255,0.1);
        border-radius: 21px;
        color: rgba(255,255,255,0.72);
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 19px;
        margin: 0 6px;
        padding: 11px 24px;
        text-align: center;
    }

@media (max-width: 991px) {
    .pricing-page .api-responses .inline-buttons li a {
        font-size: 13px;
        line-height: 18px;
        margin: 0 5px;
        padding: 10px 22px;
    }
}

@media (max-width: 767px) {
    .pricing-page .api-responses .inline-buttons li a {
        font-size: 12px;
        line-height: 16px;
        margin: 0 3px;
        padding: 10px 14px;
    }
}

@media (max-width: 575px) {
    .pricing-page .api-responses .inline-buttons li a {
        font-size: 12px;
        line-height: 16px;
        margin: 8px 5px;
        padding: 8px 12px;
    }
}

.pricing-page .api-responses .inline-buttons li a:hover, .pricing-page .api-responses .inline-buttons li a:focus, .pricing-page .api-responses .inline-buttons li a.active {
    background: #fff;
    color: #0e3950;
    text-decoration: none;
}

.pricing-page .api-responses .json-outer {
    margin-top: 30px;
}

    .pricing-page .api-responses .json-outer h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 25px;
        margin-bottom: 10px;
    }

@media (max-width: 991px) {
    .pricing-page .api-responses .json-outer h4 {
        font-size: 16px;
        line-height: 24px;
    }
}

.pricing-page .api-responses .json-outer .json-inner {
    background: #101a2d;
    border-radius: 10px;
    color: #c0c0c0;
    font-family: "Source Code Pro",monospace;
    font-size: 14px;
    height: 250px;
    line-height: 1.6;
    overflow-y: scroll;
    padding: 20px 10px 20px 30px;
}

@media (max-width: 991px) {
    .pricing-page .api-responses .json-outer .json-inner {
        padding: 20px 10px 20px 20px;
    }
}

.pricing-page .api-responses .json-outer .json-inner .hljs-string {
    color: #e1e209;
}

.pricing-page .api-responses .json-outer .json-inner .hljs-literal {
    color: #ffbf00;
}

.pricing-page .faq-section {
    background: #fff;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .pricing-page .faq-section {
        padding: 40px 0;
    }
}

.pricing-page .faq-section h2 {
    color: #0e3950;
    font-size: 45px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 61px;
    text-align: center;
}

@media (max-width: 1199px) {
    .pricing-page .faq-section h2 {
        font-size: 38px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .pricing-page .faq-section h2 {
        font-size: 34px;
        line-height: 44px;
    }
}

@media (max-width: 575px) {
    .pricing-page .faq-section h2 {
        font-size: 26px;
        line-height: 1.2;
    }
}

.pricing-page .faq-section .ip-faq {
    background: #f7fcff;
    border: 1px solid #e2eff8;
    border-radius: 10px;
    box-sizing: border-box;
    margin: auto;
    max-width: 745px;
    overflow: hidden;
}

    .pricing-page .faq-section .ip-faq .card {
        background: transparent;
        border: 0;
        border-bottom: 1px solid #e2eff8;
        border-radius: 0;
        margin-bottom: -1px;
        padding: 32px 50px;
    }

@media (max-width: 991px) {
    .pricing-page .faq-section .ip-faq .card {
        padding: 25px 40px;
    }
}

@media (max-width: 767px) {
    .pricing-page .faq-section .ip-faq .card {
        padding: 20px 30px;
    }
}

@media (max-width: 575px) {
    .pricing-page .faq-section .ip-faq .card {
        padding: 20px 15px 20px 30px;
    }
}

.pricing-page .faq-section .ip-faq .card .card-header {
    background-color: transparent;
    border-bottom: 0;
    margin-bottom: 0;
    padding: 0;
}

    .pricing-page .faq-section .ip-faq .card .card-header .btn {
        color: #0e3950;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.04em;
        line-height: 22px;
    }

@media (max-width: 575px) {
    .pricing-page .faq-section .ip-faq .card .card-header .btn {
        font-size: 14px;
        line-height: 18px;
        text-align: left;
    }
}

.pricing-page .faq-section .ip-faq .card .card-header .btn::before {
    background: url(../images/arrow-right.svg) 0 0 no-repeat;
    content: '';
    display: inline-block;
    height: 14px;
    margin-left: -24px;
    margin-right: 10px;
    transform: rotate(90deg);
    vertical-align: middle;
    width: 10px;
}

.pricing-page .faq-section .ip-faq .card .card-header .btn.collapsed {
    color: #0e3950;
}

    .pricing-page .faq-section .ip-faq .card .card-header .btn.collapsed::before {
        transform: rotate(0deg);
    }

.pricing-page .faq-section .ip-faq .card .card-header .btn:hover, .pricing-page .faq-section .ip-faq .card .card-header .btn:focus {
    box-shadow: none;
    outline: 0;
    text-decoration: none;
}

.pricing-page .faq-section .ip-faq .card .card-body {
    color: #1a5e81;
    font-size: 14px;
    line-height: 25px;
    padding: 10px 10px 0;
}

@media (max-width: 575px) {
    .pricing-page .faq-section .ip-faq .card .card-body {
        font-size: 13px;
        line-height: 24px;
    }
}

.pricing-page .faq-section .faq-contact {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .pricing-page .faq-section .faq-contact {
        margin: 30px 0 0;
    }
}

@media (max-width: 575px) {
    .pricing-page .faq-section .faq-contact {
        margin: 25px 0 0;
    }
}

.pricing-page .faq-section .faq-contact a {
    color: #006aa5;
}

    .pricing-page .faq-section .faq-contact a:hover {
        text-decoration: underline;
    }

.border-top {
    border-top: 1px solid #e5eaed !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

@media (min-width: 768px) {
    .border-md-bottom {
        border-bottom: 1px solid #e5eaed !important;
    }

    .border-md-left {
        border-left: 1px solid #e5eaed !important;
    }

    .border-md-top-0 {
        border-top: 0 !important;
    }
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 14px;
}

.bg-transparent.bg-white {
    background-color: #fff !important;
}

.bg-blue-800 {
    background: #1a5e81;
    color: rgba(255,255,255,0.6);
}

    .bg-blue-800 h1, .bg-blue-800 h2, .bg-blue-800 h3, .bg-blue-800 h4, .bg-blue-800 h5, .bg-blue-800 h6 {
        color: #fff;
    }

.bg-blue-100 {
    background: #f7fcff;
    border-bottom: 1px solid #d6e2ea;
    color: #315467;
}

.bg-sky-blue {
    background: #e2eff8;
}

.bg-blue {
    background: #0e3950;
    color: #fff;
}

    .bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4, .bg-blue h5, .bg-blue h6 {
        color: #fff;
    }

.bg-geometric {
    background: linear-gradient(141deg, #0e60c0 35%, #006aa5 100%);
    overflow: hidden;
    padding-bottom: 190px;
    padding-top: 170px;
    position: relative;
}

    .bg-geometric::before {
        background: #fff;
        background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 78%);
        border-radius: 50%;
        content: '';
        display: block;
        height: 520px;
        left: 30px;
        margin-top: -260px;
        opacity: 0.1;
        position: absolute;
        top: 50%;
        width: 520px;
        z-index: 1;
    }

    .bg-geometric::after {
        background: #fff;
        background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0) 78%);
        border-radius: 50%;
        content: '';
        display: block;
        height: 720px;
        left: 450px;
        margin-top: -360px;
        opacity: 0.1;
        position: absolute;
        top: 50%;
        width: 720px;
        z-index: 1;
    }

    .bg-geometric.light {
        background: #fff;
    }

        .bg-geometric.light::before, .bg-geometric.light::after {
            background: #fff;
            background: linear-gradient(90deg, #000 0%, rgba(0,0,0,0) 78%);
            opacity: 0.04;
        }

.text-black {
    color: #000 !important;
}

header form {
    max-width: 300px;
    position: relative;
    width: calc(100% - 200px);
}

    header form input.form-control {
        background: #005a8c;
        border: 0;
        box-shadow: none;
        font-size: 14px;
        height: 40px;
        padding: 0.595rem 0.75rem;
    }

        header form input.form-control::placeholder {
            color: rgba(255,255,255,0.7);
        }

        header form input.form-control:focus {
            background: #005381;
            box-shadow: none;
            color: rgba(255,255,255,0.7);
        }

    header form .icon-search {
        background: url("../images/search-icon-white.svg") center no-repeat;
        right: 8px;
    }

header .navbar-brand {
    align-self: end;
}

    header .navbar-brand img {
        height: 35px;
        width: 115px;
    }

@media (max-width: 991px) {
    header .navbar-brand img {
        transform: scale(0.8);
        transform-origin: left;
    }
}

header .btn {
    margin: auto 8px;
    padding: 10px 20px;
    white-space: nowrap;
}

    header .btn:hover:hover {
        opacity: 0.7;
    }

header .bg-primary .navbar-brand-primary {
    display: block;
}

header .bg-primary .navbar-brand-white {
    display: none;
}

header .bg-primary .btn-primary {
    background: #fff;
    color: #006aa5;
}

header .bg-white {
    animation: slide-in-down 420ms cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid #c3dbe8;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

    header .bg-white .navbar-brand-primary {
        display: none;
    }

    header .bg-white .navbar-brand-white {
        display: block;
    }

    header .bg-white input.form-control {
        background: #f2f2f2;
        box-shadow: none;
    }

        header .bg-white input.form-control::placeholder {
            color: rgba(0,0,0,0.7);
        }

        header .bg-white input.form-control:focus {
            background: #ebebeb;
            box-shadow: none;
            color: #006aa5;
        }

    header .bg-white .icon-search {
        background: url("../images/search-icon.svg") center no-repeat;
    }

    header .bg-white .btn-outline-secondary {
        border: 1px solid #006aa5;
        box-shadow: inset 0 0 0 1px rgba(0,106,165,0.3);
        color: #006aa5;
    }

@media (max-width: 767px) {
    header .bg-white .dropdown-item, header .bg-white .dropdown-item h5 {
        color: rgba(0,0,0,0.5) !important;
    }
}

header .navbar-nav > .nav-item > .nav-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

header .navbar-nav > .nav-item > .btn {
    font-size: 14px;
    font-weight: 700;
}

@media (min-width: 767px) and (max-width: 991px) {
    header .navbar-nav > .nav-item > .nav-link {
        padding: 0.5rem;
    }

    header .navbar-nav > .nav-item > .btn {
        padding: 10px;
    }
}

@media (max-width: 767px) {
    header .navbar-nav > .nav-item > .dropdown-menu {
        background: transparent;
        box-shadow: none;
        text-align: right;
    }

        header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item, header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item h5 {
            color: #fff;
            font-size: 12px;
            font-weight: 700;
            padding-right: 0;
            text-transform: uppercase;
        }

            header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.media img, header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.media p, header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item h5.media img, header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item h5.media p {
                display: none;
            }

            header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.media h5, header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item h5.media h5 {
                margin: 0;
            }

        header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-divider {
            display: none;
        }
}

@media (min-width: 768px) {
    header .navbar-nav > .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    header .navbar-nav > .nav-item > .dropdown-menu {
        left: 50%;
        margin-top: 0;
        right: auto;
        transform: translate(-50%, 0);
    }

        header .navbar-nav > .nav-item > .dropdown-menu::after {
            border-bottom: 6px solid #fff;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            content: '';
            display: inline-block;
            left: 50%;
            position: absolute;
            top: -6px;
        }

        header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item {
            color: #0e3950;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: -0.04em;
            margin-bottom: 4px;
            padding: 10px 30px;
        }

            header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item.media {
                width: 375px;
            }

            header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item .media-body {
                color: rgba(14,57,80,0.6);
                font-size: 12px;
                white-space: normal;
            }

                header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item .media-body h5 {
                    color: #0e3950;
                    font-size: 14px;
                    margin-bottom: 0;
                }

                header .navbar-nav > .nav-item > .dropdown-menu > .dropdown-item .media-body p {
                    font-weight: 400;
                    margin: 4px 0;
                }
}

h1, h2, h3, h4, h5, h6 {
    color: #0e3950;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

.html {
    font-size: 14px;
    scroll-behavior: smooth;
}

.container-markdown h2, .container-markdown h3 {
    font-weight: normal;
}

.container-markdown h1 {
    font-size: 32px !important;
}

.container-markdown h2 {
    font-size: 24px !important;
}

.container-markdown h3 {
    font-size: 20px !important;
}

.container-markdown p {
    font-size: 16px !important;
}

.container-markdown img {
    border: 1px solid #edf1f4;
    width: 100%;
}

.container-markdown pre {
    background: #f7fcff;
    border: 1px solid #edf1f4;
    border-radius: 4px;
    font-size: 14px;
    padding: 20px;
    white-space: pre-wrap;
}

    .container-markdown pre .hljs-attr {
        color: #e65544;
    }

    .container-markdown pre .hljs-string {
        color: #50a14f;
    }

.nav-pills .nav-item .nav-link {
    background-color: #f7fcff;
    box-shadow: none;
    color: #343a40;
    padding: 13px 30px;
}

    .nav-pills .nav-item .nav-link.active {
        background-color: #006aa5;
        color: #fff;
    }

@media (max-width: 767px) {
    .nav-pills .nav-item .nav-link {
        padding: 8px 20px;
    }
}

@media (max-width: 767px) {
    .nav-pills-side {
        flex-wrap: nowrap;
        left: 0;
        margin-bottom: 10px;
        overflow: scroll;
        top: 72px;
    }
}

.nav-pills-side .nav-link {
    color: rgba(0,0,0,0.6);
    font-size: 16px;
}

@media (max-width: 767px) {
    .nav-pills-side .nav-link {
        white-space: nowrap;
    }
}

.nav-pills-side .nav-link.active, .nav-pills-side .show > .nav-link {
    background-color: transparent;
    color: #138ed2;
    position: relative;
}

@media (max-width: 767px) {
    .nav-pills-side .nav-link.active, .nav-pills-side .show > .nav-link {
        border-bottom: 1px solid #138ed2;
        border-radius: 0;
    }
}

@media (min-width: 768px) {
    .nav-pills-side .nav-link.active::after, .nav-pills-side .show > .nav-link::after {
        border: 1px solid #138ed2;
        border-width: 0 2px 2px 0;
        content: '';
        display: inline-block;
        padding: 4px;
        position: absolute;
        right: 0;
        top: 16px;
        transform: rotate(-45deg);
    }
}

.main-content {
    color: #315467;
    margin: 42px auto;
    min-height: 40vh;
}

    .main-content h1 {
        font-size: 40px;
    }

    .main-content h2 {
        font-size: 36px;
    }

    .main-content h3 {
        font-size: 30px;
        margin-bottom: 8px;
    }

    .main-content h6 {
        font-size: 20px;
    }

    .main-content p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 20px;
    }

        .main-content p.lead {
            font-size: 22px;
            line-height: 36px;
        }

    .main-content strong {
        font-weight: 700;
    }

    .main-content a {
        text-decoration: none;
    }

    .main-content .jumbotron {
        background: #eaf3f8;
        color: #3f6579;
    }

        .main-content .jumbotron .lead {
            font-size: 20px;
        }

    .main-content .card {
        border: 0;
        box-shadow: 0 2px 5px rgba(0,62,96,0.1);
        color: #000;
    }

        .main-content .card .card-header {
            background: transparent;
            border-bottom: 2px solid #f1f7fa;
            padding: 22px 30px;
        }

            .main-content .card .card-header h3 {
                color: #000;
                font-weight: 600;
            }

            .main-content .card .card-header p.text-muted {
                color: #6c8293;
                font-size: 14px;
                margin-bottom: 0;
            }

        .main-content .card .card-body label {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 2px;
            opacity: 0.5;
            text-transform: uppercase;
        }

        .main-content .card .card-body h3 {
            font-size: 18px;
            letter-spacing: -0.03em;
            margin-bottom: 0.5rem;
        }

@media (max-width: 767px) {
    .main-content .card .card-body h3 {
        font-size: 14px;
    }
}

.main-content .card .card-body .media .media-body h5 {
    font-size: 28px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .main-content .card .card-body .media .media-body h5 {
        font-size: 20px;
    }
}

.main-content .card .card-body .media .media-body small {
    font-weight: bold;
    opacity: 0.2;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .main-content .card .card-body .media .media-body small {
        font-size: 10px;
    }
}

.main-content .card .card-body .btn-link {
    color: #343a40;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    margin-top: 24px;
    opacity: 0.5;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .main-content .card .card-body .btn-link {
        margin-bottom: 0;
        white-space: nowrap;
    }
}

.main-content .card .card-body p {
    font-size: 14px;
    line-height: 21px;
    opacity: 0.8;
}

.main-content .card .card-body .table th {
    font-size: 12px;
    font-weight: 600;
    padding-left: 12px;
}

.main-content .card .card-body .table td {
    font-size: 14px;
    padding: 12px;
    white-space: nowrap;
}

.main-content .card .card-body .table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9fbfc;
}

@media (min-width: 767px) {
    .main-content .card .card-body .w-md-50 {
        width: 48% !important;
    }
}

.main-content .card .card-body .list-inline .list-inline-item p {
    font-size: 16px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .main-content .card .card-body .row .row .mt-md-4 p {
        font-size: 10px;
        margin-bottom: 0;
    }
}

.main-content .card.card-hover:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translate(0, -5px);
    transition: transform 200ms;
}

.main-content .card-testimonial {
    border: none;
    box-shadow: 20px 20px 50px rgba(4,56,85,0.12);
    padding-left: 40px;
    position: relative;
}

    .main-content .card-testimonial .card-img-top {
        height: 60px;
        left: -30px;
        position: absolute;
        top: 20px;
        width: 60px;
    }

    .main-content .card-testimonial .card-text {
        color: #000;
        font-size: 14px;
        line-height: 22px;
    }

    .main-content .card-testimonial h4 {
        color: #000;
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 0;
        margin-top: 15px;
    }

    .main-content .card-testimonial h6 {
        color: #718798;
        font-size: 12px;
        font-weight: 400;
        line-height: 22px;
        margin: 0;
    }

@media (max-width: 767px) {
    .main-content .card-testimonial {
        padding-left: 0;
    }

        .main-content .card-testimonial .card-img-top {
            margin: 10px auto;
            position: initial;
        }
}

.main-content .card-customer {
    background: #fff;
    border: none;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(14,57,80,0.1);
    height: 100%;
    margin: 30px;
    min-height: 320px;
    padding: 30px;
    width: 33%;
}

    .main-content .card-customer .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 0;
    }

        .main-content .card-customer .card-body .blockquote {
            color: #0e3950;
            font-size: 18px;
            position: relative;
        }

            .main-content .card-customer .card-body .blockquote::before, .main-content .card-customer .card-body .blockquote::after {
                content: '';
                height: 16px;
                position: absolute;
                width: 20px;
            }

            .main-content .card-customer .card-body .blockquote::before {
                background: url("../images/customers-page/quote-sign.svg") 0 0 no-repeat;
                left: 0;
                top: -22px;
            }

            .main-content .card-customer .card-body .blockquote::after {
                background: url("../images/customers-page/quote-sign.svg") 0 0 no-repeat;
                bottom: -22px;
                right: 0;
                transform: rotate(180deg);
            }

@media (max-width: 991px) {
    .main-content .card-customer {
        margin-left: auto;
        width: 100%;
    }
}

.main-content .card-story {
    border: none;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,106,165,0.1);
    overflow: hidden;
    padding-bottom: 40px;
    width: 45%;
}

    .main-content .card-story .card-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px 40px 0;
    }

        .main-content .card-story .card-body .d-flex img {
            height: 45px;
        }

        .main-content .card-story .card-body .d-flex span {
            font-size: 12px;
            letter-spacing: 0.2em;
            opacity: 0.4;
            text-transform: uppercase;
        }

        .main-content .card-story .card-body p {
            font-size: 20px;
            line-height: 1.8;
            margin-bottom: 40px;
            margin-top: 25px;
        }

        .main-content .card-story .card-body a.text-success {
            font-size: 14px;
            font-weight: bold;
            text-decoration: none;
        }

@media (max-width: 767px) {
    .main-content .card-story {
        margin-bottom: 40px;
        width: 100%;
    }
}

.main-content .pt-2 {
    top: 32px;
}

.main-content .col-team h2 {
    font-size: 20px;
}

.main-content .col-team p {
    font-size: 16px;
    font-weight: 400;
}

.main-content .col-team .lead {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 768px) {
    .main-content h1 {
        /*font-size: 50px;*/
    }

    .main-content h2 {
        font-size: 42px;
    }

    .main-content h3 {
        font-size: 32px;
        margin-bottom: 8px;
    }
}

.btn-lg {
    border-radius: 3px;
    font-size: 18px;
    letter-spacing: -0.04em;
    padding: 20px 35px;
}

.btn {
    box-shadow: none !important;
    font-weight: 700;
}

    .btn span {
        display: block;
        font-size: small;
        font-weight: 400;
    }

.btn-outline-primary {
    border: 1px solid #006aa5;
    box-shadow: inset 0 0 0 1px rgba(0,106,165,0.3);
    color: #006aa5;
}

.btn-pill {
    background: #fff;
    border: 1px solid #e5eaed;
    border-radius: 30px;
    color: #0e3950;
    font-size: 12px;
    font-weight: 400;
    height: 50px;
    line-height: 48px;
    padding: 0 24px;
}

.icon-search {
    background: url("../images/search-icon.svg") center no-repeat;
    background-size: 100%;
    border: 0;
    bottom: 0;
    height: 100%;
    opacity: 0.8;
    overflow: hidden;
    position: absolute;
    right: 20px;
    text-indent: -999px;
    top: 0;
    width: 25px;
}

    .icon-search:hover {
        opacity: 1;
    }

    .icon-search:focus {
        box-shadow: none;
        outline: 0;
    }

.list-check {
    list-style: none;
}

    .list-check li {
        background: url("../images/green-check.svg") no-repeat;
        background-position: 0 6px;
        background-size: 18px;
        font-size: 18px;
        padding-left: 38px;
    }

.list-group li strong {
    font-weight: 600;
}

.list-inline-check {
    list-style: none;
}

    .list-inline-check li {
        background: url("../images/green-check.svg") no-repeat;
        background-position: 0 6px;
        background-size: 20px;
        font-size: 20px;
        line-height: 30px;
        margin-top: 18px;
        padding-left: 32px;
        text-align: left;
        width: 33%;
    }

.list-bullet {
    list-style: none;
    padding: 0 12px;
}

    .list-bullet li {
        background: url(../images/disc-icon.svg) no-repeat;
        background-position: 0 6px;
        background-size: 14px;
        margin-bottom: 16px;
        padding-left: 22px;
        width: 40%;
    }

        .list-bullet li:last-child {
            margin-bottom: 0;
        }

.dl-bullet dt::before {
    background: #34d6ae;
    content: '';
    display: inline-block;
    height: 10px;
    margin-right: 32px;
    width: 10px;
}

@media (max-width: 767px) {
    .list-bullet li, .list-inline-check li {
        width: 100%;
    }
}

.toast {
    border: 0;
    position: fixed;
    right: 20px;
    top: 100px;
    width: calc(100% - 40px);
}

.container-img {
    display: flex;
    padding: 0;
    position: relative;
}

    .container-img > img, .container-img > .bg-geometric {
        object-fit: cover;
        position: absolute;
        top: -125px;
        width: 100%;
        z-index: -1;
    }

    .container-img > img {
        height: calc(100% + 200px);
    }

    .container-img > .bg-geometric {
        height: 650px;
    }

    .container-img > .container {
        top: 36px;
    }

.tryit-data .icon-privacy {
    background-color: #00476b;
    border-radius: 50%;
    display: inline-block;
    font-size: 0;
    height: 28px;
    margin-right: 12px;
    width: 28px;
}

    .tryit-data .icon-privacy:empty {
        background: #00476b url("../images/red-close-icon.svg") center no-repeat;
    }

    .tryit-data .icon-privacy:not(:empty) {
        background: #00476b url("../images/green-check-only-icon.svg") center no-repeat;
    }

.try-code {
    background: #f1f7fa;
    box-shadow: 8px 8px 10px 0 rgba(225,234,239,0.7);
    font-family: 'Source Code Pro', monospace;
    padding-top: 25px;
}

    .try-code ul {
        list-style: none;
        padding-bottom: 16px;
    }

        .try-code ul li {
            color: #41748e;
            font-size: 14px;
            line-height: 1.7em;
        }

            .try-code ul li.comment-code {
                color: #bbc8cf;
                margin-bottom: 10px;
            }

            .try-code ul li.code {
                max-height: 248px;
                overflow: scroll;
            }

                .try-code ul li.code > span {
                    display: block;
                    padding-left: 32px;
                }

.loader {
    animation: around 5.4s infinite;
    display: inline-block;
    height: 20px;
    position: absolute;
    top: 30%;
    width: 20px;
}

    .loader::after, .loader::before {
        animation: around 0.7s ease-in-out infinite;
        background: #fff;
        border-color: #333 #333 transparent transparent;
        border-radius: 20px;
        border-style: solid;
        border-width: 2px;
        box-sizing: border-box;
        content: '';
        display: inline-block;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .loader::after {
        animation: around 0.7s ease-in-out 0.1s infinite;
        background: transparent;
    }

    .loader.text-white::after, .loader.text-white::before {
        background: transparent;
        border-color: #fff #fff transparent transparent;
    }

.img-customer {
    margin: 30px 60px;
    max-height: 48px;
    width: 135px;
}

.opacity-50 {
    opacity: 0.5;
}

footer {
    background: #edf1f4;
}

    footer ul.list-unstyled li:first-child, footer ul.list-unstyled li.active {
        color: #3e576a;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    footer ul.list-unstyled li a {
        color: #6c8293;
        font-size: 14px;
        line-height: 19px;
        text-decoration: none;
        transition: color 0.3s;
    }

        footer ul.list-unstyled li a:hover {
            color: #414e58;
        }

    footer .container-fluid {
        background-color: #e5eaed;
        padding: 12px 0 3px;
    }

        footer .container-fluid p {
            color: #718798;
            font-size: 12px;
            line-height: 17px;
            margin: 0;
            padding-top: 5px;
        }

            footer .container-fluid p a {
                color: #94a7b5;
                text-decoration: none;
            }

        footer .container-fluid .list-inline-item a {
            background: #9eb4c4;
            border-radius: 50%;
            display: inline-block;
        }

            footer .container-fluid .list-inline-item a:hover {
                background: #becdd7;
            }

            footer .container-fluid .list-inline-item a i {
                display: block;
                height: 26px;
                width: 26px;
            }

                footer .container-fluid .list-inline-item a i.icon-fb {
                    background: url("../images/facebook-icon.svg") center no-repeat;
                    background-size: 7px 13px;
                }

                footer .container-fluid .list-inline-item a i.icon-tw {
                    background: url("../images/twitter-icon.svg") center no-repeat;
                    background-size: 15px 12px;
                }

                footer .container-fluid .list-inline-item a i.icon-github {
                    background: url("../images/github-icon.svg") center no-repeat;
                    background-size: 18px;
                }

.arrow-down {
    border: solid #0bc12c;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 6px;
    transform: rotate(45deg);
}

.arrow-right {
    border: solid #0bc12c;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(-45deg);
}

.icon {
    display: inline-block;
    margin-right: 16px;
    position: relative;
    top: -2px;
}

    .icon svg {
        height: 16px;
        width: 16px;
    }

.icon-md svg {
    height: 24px;
    width: 24px;
}

.icon-lg svg {
    height: 64px;
    width: 64px;
}

.icon-logo {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 26px;
    width: 26px;
}

@keyframes slide-in-down {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes around {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
