body {
    padding: 0;
    margin: 0;
    background: var(--primary-bg);
    color: var(--white);
}

:root {
    --primary: rgb(0, 207, 255);
    --primary-bg: #0c0f1c;
    --primary-bg2: rgba(12, 15, 29, 0.5);
    --primary-50: rgba(0, 207, 255, 0.5);
    --primary-10: rgba(0, 207, 255, 0.1);
    --primary-5: rgba(0, 207, 255, 0.02);

    --secondary: #0056ff;
    --tetiary: #00a7d5;
    --secondary-bg: #1a2c45;

    --white: #fff;
    --grey: #fff;

    --menuDark: #0c0f1c;
    --backdrop: #161616;
    --surface: #1a2c45;
    --line: #393737;
}

.bg-menuDark {
    background: var(--menuDark);
}

.bg-surface {
    background: var(--surface)
}

.btn-new {
    width: 100%;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    background-color: var(--primary);
    border: 1px solid var(--primary);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 12px;
    padding: 5px 20px !important;
    height: 30px;
    max-width: 100px
}

select.ip-style2 {
    padding: 12px;
    border: 1px solid var(--line);
    font-size: 18px;
    line-height: 22px;
    background: transparent;
    border-radius: 10px;
    width: 100%;
    color: white;
    outline: none;
}

.mt-6 {
    margin-top: 6px;
}
.mt-12 {
    margin-top: 12px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-20 {
    margin-bottom: 20px;
}

.offcanvas .chart {
    border-radius: 15px;
    border: 1px solid var(--surface);
    display: block;
}

.offcanvas-body {
    color: white;
}

input[type=text].ip-style2 {
    padding: 12px;
    border: 1px solid var(--line);
    font-size: 18px;
    line-height: 22px;
    background: transparent;
    border-radius: 10px;
    width: 100%;
    outline: none;
}

nav {
    border-bottom: 1px solid #DADADA;
    background: var(--primary-bg);
    z-index: 99;
}

a {
    text-decoration: none;
    transition: .3s ease-in-out;
}

button {
    transition: .3 ease-in-out;
}

.chart {
    display: flex;
    gap: 10px;
}

.candle {
    width: 10px;
    background-color: #00bcd4;
    position: relative;
    animation: bounce 2s infinite ease-in-out;
}

.candle::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 10px;
    background-color: #00bcd4;
    top: -10px;
}

@keyframes bounce {

    0%,
    100% {
        height: 20px;
        transform: translateY(0);
    }

    50% {
        height: 40px;
        transform: translateY(-10px);
    }
}

/* Alternate colors */
.candle.down {
    background-color: #aaa;
}

.candle.down::before {
    background-color: #aaa;
}

z .offcanvas {
    background: var(--primary-bg);
}

.btn-close {
    color: var(--white);
}

nav a,
.offcanvas a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

nav a svg,
.offcanvas a svg {
    fill: white;
}

nav a:hover,
nav a.active,
.offcanvas a:focus,
.offcanvas a.active {
    color: var(--primary);
    font-weight: 600;
}

nav a:hover svg,
nav a.active svg,
.offcanvas a:focus svg,
.offcanvas a.active svg {
    fill: var(--primary);
}

/* .logo {
    font-size: 18px;
    color: black!important;
} */

.login button {
    color: var(--primary);
    transition: .3s ease-in-out;
    font-weight: 500 !important;
    border: 1px solid transparent;
}

.login:hover button {
    background: var(--primary-50);
    color: var(--white);
}

.signUp button {
    color: var(--white);
    background: var(--primary);
    transition: .3s ease-in-out;
    border: 1px solid var(--primary);
}

.signUp:hover button {
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary-50);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

section.hero {
    padding-top: 150px;
    padding-bottom: 100px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* .hero img {
    height: calc(100vh - 200px);
    border-radius: 20px;
    object-fit: cover;
} */

section.secondPart {
    padding-top: 0rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background: var(--primary);
}

td div {
    color: var(--white);
    padding-top: 20px;
    padding-bottom: 20px;
}

.c-btn {
    background: var(--primary);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 0.375rem;
    transition: .3s ease-in-out;
    border: none;
}

.c-btn:hover {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary)
}

.c-btn-two {
    color: var(--primary);
    padding: .5rem 1rem;
    border-radius: 0.375rem;
}

.row {
    row-gap: 20px;
}

.box {
    border-radius: 20px;
    background: var(--primary-5);
}

.text-area p {
    font-size: 14px;
    font-weight: 500;
    color: grey
}

.pt-45 {
    padding-top: 45px;
}

.pb-20 {
    padding-bottom: 20px;
}

.tf-container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.mb-8 {
    margin-bottom: 8px
}

.mt-16 {
    margin-top: 16px;
}

.mb-12 {
    margin-bottom: 12px;
}

.mt-12 {
    margin-top: 12px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.pt-60 {
    padding-top: 60px;
}

label {
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: var(--secondary);
}

.label-ip,
.label-ip .form-control,
.label-ip select {
    width: 100%;
    box-shadow: none !important;
}

.label-ip input,
.label-ip select {
    border: 1px solid #DADADA !important;
}

.text-small a {
    color: var(--primary)
}

.cb-signup {
    display: flex;
    align-items: center;
    gap: 8px;
}

input {
    accent-color: var(--primary);
}

input,
select {
    font-size: 16px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    min-width: 800px;

}

.table>:not(caption)>*>* {
    background: var(--primary-10)
}

@media only screen and (max-width: 991px) {
    .heighted {
        min-height: 250px;
    }
}

@media only screen and (max-width: 500px) {
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    section.hero {
        padding-top: 100px;
    }

    .offcanvas {
        width: 100%!important;
    }
}