:root {
    --font-family: "IBM Plex Mono", monospace;
    --accent: #318BFF;
    --border: #272742;
    --text: #DEDEDE;
    --primary-button: #318BFF;
    --accent-border: #121ACD;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    padding: 0;
    margin: 0;
    position: relative;
    min-height: 100%;
}

body {
    overflow-x: hidden;
    margin: 0;
    color: #DEDEDE;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    font-family: var(--font-family);
    background: #111114;
}

p:empty {
    margin-bottom: 0px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: var(--accent);
}

button {
    transition: all 0.2s ease;
}

main img {
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    background: transparent;
    height: 41px;
    line-height: 41px;
    padding: 0px 11px;
    width: 100%;
    color: #DEDEDE;
}

input[type="checkbox"] {
    width: 30px !important;
    height: 30px;
    margin-top: .25em;
    vertical-align: top;
    background-color: #111111;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 0.5px solid var(--border);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

label {
    font-size: 15px;
}

input[type="checkbox"]:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

input[type="checkbox"] {
    position: relative;
    margin-right: 18px;
}

input[type="checkbox"]:checked::after {
    content: "";
    width: 6px;
    height: 14px;
    position: absolute;
    top: 6px;
    left: 13px;
    border: 2px solid;
    border-left: 0;
    border-top: 0;
    opacity: 1;
    transform: rotate(45deg);
    transition: opacity 0.2s ease-in-out;
    color: #fff;
}

mark {
    background: #976468;
    color: #DEDEDE;
}

.input-field,
.checkbox-wrapper input {
    font-size: 15px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.d-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.d-flex-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 300;
    font-family: var(--font-family);
}

h1 {
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 25px;
    line-height: 1;
}

h3 {
    font-size: 24px;
    line-height: 1;
}

h4 {
    font-size: 22px;
    line-height: 1;
}

h5 {
    font-size: 20px;
    line-height: 1;
}

h6 {
    font-size: 18px;
    line-height: 1;
}

p {
    font-size: 14px;
    line-height: 18px;
}

strong,
b {
    font-weight: bold;
}

label {
    font-weight: 400;
}

img {
    display: block;
}

select:focus,
select:active {
    outline: none;
    box-shadow: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 19px;
    padding-right: 19px;
}

.row {
    --bs-gutter-x: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.col-2 {
    width: 16.66666667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333333%;
}

.col-5 {
    width: 41.66666667%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    width: 58.33333333%;
}

.col-8 {
    width: 66.66666667%;
}

.col-9 {
    width: 75%;
}

.body-element {
    background: url(../images/body-right-full-element.svg);
    background-size: 1278px 1403px;
    width: 1278px;
    height: 1403px;
    position: absolute;
    right: 0px;
    top: 45px;
}

.container {
    position: relative;
    z-index: 3;
}

.element-wrapper {
    overflow: hidden;
    position: relative;
} 

.btn,
.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px !important;
    padding: 0px 30px;
    height: 68px;
    line-height: 68px;
    font-size: 15px;
    font-weight: 400 !important;
    color: #0D0D0D !important;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    text-transform: uppercase;
}

.btn-primary,
.button {
    background: var(--primary-button) !important;
}

.btn-primary:hover,
.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover, 
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    background: #121ACD !important;
    color: #DEDEDE !important;
}

body {
    padding-top: 59px;
}

.header {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 99999;
}

.admin-bar .header {
    top: 32px;
}

.header .wrapper {
    background: #111114;
    position: relative;
    z-index: 99;
}

.header-element {
    position: absolute;
    background: url(../images/header-element.svg);
    width: 823px;
    height: 785px;
    background-size: 823px 785px;
    top: -124px;
    left: 0px;
}

.header .navigation a {
    color: var(--text);
    text-transform: uppercase;
    font-size: 13px;
}

.header .navigation a:hover {
    color: var(--accent);
}

.header .navigation {
    position: relative;
    padding-left: 20px;
}

.header .navigation::before {
    content: "";
    position: absolute;
    left: 0px;
    top: -16px;
    height: 59px;
    width: 1px;
    background: var(--border);
}

.header .navigation li {
    margin-right: 42px;
}

.header .logo {
    display: block;
    margin-right: 21px;
}

.header .user-icon {
    margin-right: 30px;
    position: relative;
}

.user-icon > a {
    display: block;
    font-size: 0px !important;
    background: url(../images/user-icon.svg);
    width: 32px;
    height: 32px;
    background-size: 32px 32px;
}

.user-icon .sub-menu {
    position: absolute;
    min-width: 146px;
    top: 44px;
    left: -19px;
    background: #111114;
/*    height: 44px;*/
    line-height: 44px;
    text-align: center;
    display: none;  
}

.user-icon .sub-menu li {
    margin-right: 0px;
}

.chart-wrapper {
    padding: 27px 0px 0px;
}

.chart-wrapper .title {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 13px;
}

.chart-wrapper .content {
    padding-top: 96px;
    padding-bottom: 99px;
}

.chart-wrapper .content p {
    margin-bottom: 9px;
}

.chart-wrapper .content .info {
    font-size: 11px;
    line-height: 14px;
    color: #318BFF;
}

.chart-wrapper .btn {
    margin-top: 26px;
    margin-bottom: 44px;
    width: 307px;
    max-width: 100%;
}

.chart-wrapper p {
    font-size: 13px;
    line-height: 17px;
    max-width: 307px;
}

.text-label-wrap {
    display: inline-block;
    background: #121ACD;
    padding: 0px 9px;
    height: 27px;
    line-height: 27px;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 14px;
}

.sliding-tape {
    background: #121ACD;
    padding: 21px 0px;
    font-size: 25px;
    text-transform: uppercase;
    font-style: italic;
    color: #111111;
    overflow-x: hidden;
    position: relative;
    z-index: 3;
}

.sliding-tape .text .item {
    margin-left: 8px;
    margin-right: 25px;
}

.sliding-tape .text {
    display: flex;
    white-space: nowrap;   
    gap: 1rem;
    flex: 0 0 auto;
    min-width: 100%;
    align-items: center;
}

.tape-left .text {
    animation: slide-left 30s linear infinite;
}

.tape-right .text {
    animation: slide-right 30s linear infinite;
}

.image-content {
    position: relative;
}

.left-element {
    background: url(../images/left-element.svg);
    background-size: 1085px 1034px;
    width: 1085px;
    height: 1034px;
    position: absolute;
    left: -475px;
    top: 0px;
}

.image-content .content .title {
    font-size: 25px;
    margin-bottom: 16px;
}

.image-content .container {
    padding: 0px;
}

.image-content img {
    padding-right: 76px;
}

.image-content .content {
    padding: 28px 15px 20px 27px;
}

.image-content .content p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 18px;
}

.image-content .content .more {
    padding-top: 39px;
}

.image-content .content .more p {
    color: #318BFF;
    font-style: italic;
}

.image-content .content .author {
    max-width: 200px;
    float: right;
}

.stock-info .item {
    position: relative;
    padding: 16px 0px 18px 0px;
}

.stock-info .item::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 1px;
    height: 100%;
    background: var(--border);
}

.stock-info .text-label {
    color: var(--accent);
    font-size: 13px;
    margin-right: 15px;
    text-transform: uppercase;
}

.stock-item {
    width: 218px;
    text-align: center;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.stock-price {
    width: 438px;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
}

.stock-info .text-title {
    font-size: 25px;
    font-weight: 300;
}

.stock-info .stock {
    width: 110px;
    font-size: 25px;
    margin-left: 49px;
}

.stock-info .stock.up {
    color: #5EC02D;
}

.stock-info .stock.down svg {
    transform: rotate(180deg);
}

.stock-info .stock svg {
    margin-right: -7px;
}

.stock-info .stock.down {
    color: #FC3333;
}

.stock-info .stock.down svg path {
    fill: #FC3333;
}

.donators {
    padding: 44px 0px 53px;
    border-bottom: 0.5px solid var(--border);
    position: relative;
}

.donators .content {
    padding-top: 65px;
}

.donators .content p {
    max-width: 95%;
    margin-bottom: 18px;
}

.donators .content .colored {
    font-size: 11px;
    line-height: 15px;
    color: var(--accent);
    padding-top: 13px;
}

.donators table {
    margin-top: 8px;
}

.invest {
    padding: 68px 0px 59px;
    border-top: 0.5px solid var(--accent-border);
}

.invest .title {
    font-size: 25px;
    max-width: 295px;
    margin-bottom: 72px;
    line-height: 33px;
}

.invest .add-to-cart-wrapper {
    padding-left: 77px;
    --bs-gutter-x: 20px;
}

.invest .button {
    width: 100%;
    border: none;
    height: 154px;
    background: rgba(20, 16, 17, 0.9) !important;
    color: #DEDEDE !important;
    margin-bottom: 20px;
    font-size: 25px;
    text-align: left;
    font-weight: 300 !important;
    padding: 19px 18px;
    line-height: initial;
    display: flex;
    font-family: var(--font-family);
    border-radius: 4px;
    cursor: pointer;
    align-items: flex-start;
    justify-content: flex-start;
}

.invest .button:hover {
    background: #121ACD !important;
    color: #DEDEDE !important;
}

.register-wrapper {
    padding: 94px 0px 125px;
    position: relative;
    overflow: hidden;
}

main {
    overflow: hidden;
}

.register-element {
    background: url(../images/regiter-element.svg);
    background-size: 1449px 2721px;
    width: 1449px;
    height: 2721px;
    position: absolute;
    left: -475px;
    top: -212%;
}

.register-wrapper .title {
    font-size: 25px;
    line-height: 33px;
    max-width: 404px;
    margin-bottom: 30px;
    padding-top: 6px;
}

.register-wrapper form {
    width: 100%;
}

.register-wrapper .form-group {
    margin-bottom: 13px;
}

.register-wrapper .tab-container {
    padding-left: 76px;
}

.input-field {
    color: var(--text);
}

.input-field::placeholder {
    font-family: var(--font-family);
    color: #DEDEDE;
}

.register-wrapper .btn {
    min-width: 307px;
}

.register-wrapper .btn-wrapper {
    padding-top: 29px;
}

.register-wrapper .tab-buttons {
    margin-bottom: 16px;
}

.tab-buttons .wrap {
    border: 1px solid var(--border);
    border-radius: 4px;
}

.tab-btn {
    min-width: 155px;
    color: #37395B;
    cursor: pointer;
    padding: 0px 15px;
    height: 41px;
    line-height: 41px;
    color: #DEDEDE;
    position: relative;
    border: none;
    border-radius: 4px;
    text-transform: uppercase;
    background: rgb(17 17 20 / 90%);
    font-size: 13px;
    font-family: var(--font-family);
}

.tab-buttons {
    display: flex;
}

.tab-btn.active {
    background: var(--accent);
}

.total-amount-list {
    width: 744px;
    max-width: 100%;
    height: 65px;
    background: #111114;
    border-radius: 2px;
    padding: 6px;
    border: 1px solid var(--border);
}

.total-amount-list .filled {
    background: var(--accent);
    height: 100%;
    border-radius: 4px;
}

.current-market {
    padding: 106px 0px 119px;
    border-top: 0.5px solid var(--accent-border);
}

.current-market .title {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 14px;
}

.current-market p {
    font-size: 11px;
    color: var(--accent);
}

.current-market .numbers {
    color: var(--accent);
    font-size: 15px;
    margin-bottom: 7px;
    padding-left: 6px;
}

.current-market .text {
    margin-top: 27px;
}

.footer {
    background: #111114;
    padding: 35px 0px 11px;
    color: var(--accent);
    position: relative;
    z-index: 9999;
}

.simple-content {
    position: relative;
    z-index: 9999;
    padding: 60px 0px 160px;
}

.footer p {
    margin-bottom: 43px;
    font-size: 13px;
    line-height: 17px;
}

.footer .right {
    padding-top: 10px;
}

.footer .social-list {
    padding-top: 122px;
}

.footer .social-list a + a {
    margin-left: 33px;
}

.footer a svg path {
    transition: all 0.2s ease;
}

.footer a:hover svg path {
    fill: var(--accent);
}

.tab-content {
    display: none;
}

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

.large-right-element {
    background: url(../images/large-right-element.svg);
    background-size: 1479px 1268px;
    width: 1479px;
    height: 1268px;
    position: absolute;
    right: -8px;
    top: 0px;
}

.list-wrapper .list-row {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 14px;
}

.list-wrapper .list-row + .list-row {
    margin-top: 9px;
}

.list-row-item {
    border: 1px solid var(--border);
    padding: 11px 12px 14px;
    display: flex;
    border-radius: 4px;
    background: rgba(20, 16, 17, 0.9);
}

.list-row-item.large {
    width: 87.5%;
}

.list-row-item.price-stocks {
    width: 10.5%;
}

.sub-item.number {
    width: 13%;
}

.sub-item.name {
    width: 61%;
}

.sub-item.year {
    width: 26%;
}

.list-row-header .list-row-item {
    border: none;
    padding: 11px 12px 14px;
    display: flex;
    align-items: center;
    background: transparent;
}

.list-row-header {
    margin-bottom: 10px;
}

.list-row-header .list-row-item {
    color: var(--accent);
    font-size: 13px;
}

.donators .tab-list-container {
    padding-left: 77px;
    min-height: 569px;
}

.donators .btn-primary {
    min-width: 305px;
}

.donators .btn-wrapper {
    padding-top: 55px;
}

/*#canvasContainer {
    position: relative;
   height: 564px;
    margin-top: 125px;
}

canvas {
    width: 100% !important;
    height: 100% !important;
}*/

.woocommerce table.shop_table {
    border: 1px solid var(--border);
    padding: 10px;
}

.page-title {
    font-size: 45px;
    line-height: 50px;
    font-weight: 300;
    margin-bottom: 18px;
}

.woocommerce-message {
    border-top-color: var(--accent);
}

.woocommerce-error:focus, 
.woocommerce-info:focus, 
.woocommerce-message:focus {
    outline: none;
}

.woocommerce-error, 
.woocommerce-info, 
.woocommerce-message {
    padding: 1em 2em 1em 3.5em;
    margin: 0 0 2em;
    position: relative;
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    list-style: none outside;
    width: auto;
    word-wrap: break-word;
}

.woocommerce .quantity .qty {
    width: 20% !important;
}

.woocommerce-billing-fields h3 {
    display: none;
}

#order_review_heading,
.woocommerce-order-details__title {
    margin-bottom: 15px;
}

#add_payment_method #payment, 
.woocommerce-cart #payment, 
.woocommerce-checkout #payment {
    background: transparent;
    border-radius: 0px;
}

#add_payment_method #payment ul.payment_methods, 
.woocommerce-cart #payment ul.payment_methods, 
.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--border);
}

.woocommerce-customer-details {
    display: none !important;
}

.woocommerce-order-details {
    padding-top: 30px;
}

.woocommerce-order-overview,
.woocommerce-thankyou-order-details {
    border: 1px solid var(--border);
    padding: 20px 10px 15px;
    margin-top: 15px !important;
}

.woocommerce form .form-row {
    margin: 0 0 15px;
}

.woocommerce-form.woocommerce-form-register {
    padding-left: 77px;
}

.woocommerce-cart-form .actions .btn {
    height: 45px;
    line-height: 45px;
}

#canvasContainer {
    margin-top: 100px;
    padding-left: 24px;
}

.stripe-gateway-checkout-email-field button.stripe-gateway-stripelink-modal-trigger {
    background-image: url(../images/link-svg.png) !important;
    background-size: 53px 40px !important
}

#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
    background: transparent;
    border: 0.5px solid var(--border);
}

#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
    border: none;
}

.woocommerce-privacy-policy-text {
    margin-bottom: 30px;
}

.info-text {
    margin-bottom: 30px;
    max-width: 405px;
}

.info-text p {
    margin-bottom: 15px;
}

.info-text a {
    text-transform: uppercase;
    text-decoration: underline;
}
 
@keyframes slide-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@media only screen and (max-width: 1440px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .stock-price,
    .stock-item {
        width: auto;
    }

    .stock-info .item {
        padding: 16px 20px 18px 20px;
    }

    .stock-info .stock {
        margin-left: 20px;
    }

    .chart-wrapper .content {
        padding-top: 0px;
    }

    .image-content .content {
        padding: 28px 0px 20px 20px;
    }

    .image-content img {
        padding-right: 0px;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .donators .tab-list-container,
    .invest .add-to-cart-wrapper {
        padding-left: 0px;
    }

    .tab-btn {
        min-width: 125px;
    }
}

@media only screen and (max-width: 991px) {
    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-12 {
        width: 100%;
    }

    .chart-wrapper .title {
        font-size: 26px;
        line-height: 35px;
    }

    .btn,
    .button,
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, 
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, 
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, 
    .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, 
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, 
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, 
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, 
    :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
        padding: 0px 15px;
        height: 45px;
        line-height: 45px;
    }

    .chart-wrapper .btn {
        margin-bottom: 15px;
    }

    .stock-info .text-title,
    .stock-info .stock {
        font-size: 18px;
    }

    .stock-info .text-label {
        font-size: 11px;
        margin-right: 10px;
    }

    .header .logo,
    .header .user-icon {
        margin-right: 15px;
    }

    .header .navigation {
        padding-left: 15px;
    }

    .header .navigation li {
        margin-right: 25px;
    }

    .sliding-tape {
        padding: 15px 0px;
        font-size: 18px;
    }

    .large-right-element {
        top: 28%;
    }
}

@media only screen and (max-width: 767px) {
    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-12 {
        width: 100%;
    }

    .chart-wrapper p {
        max-width: 100%;
    }

    .chart-wrapper .row {
        flex-direction: column-reverse;
    }

    .chart-wrapper .content {
        padding-top: 30px;
    }

    .chart-wrapper .content {
        padding-bottom: 30px;
    }

    .current-market {
        padding: 60px 0px 60px;
    }

    .image-content .content {
        padding: 28px 0px 20px 0px;
    }

    .image-content .content .more {
        padding-top: 0;
    }

    .donators .content {
        padding-top: 15px;
    }

    .invest .button {
        height: 70px;
    }

    .donators .btn-wrapper {
        padding-top: 25px;
    }

    .invest {
        padding: 30px 0px 35px;
    }

    .total-amount-list {
        width: 100%;
        height: 45px;
    }

    .footer .footer-wrap {
        display: block;
    }

    .footer .social-list,
    .footer .right {
        padding-top: 30px;
    }

    .woocommerce-form.woocommerce-form-register {
        padding-left: 0px;
    }

    .register-wrapper {
        padding: 30px 0px 60px;
    }

    .current-market .title {
        font-size: 30px;
        line-height: 35px;
    }

    .current-market .wrap {
        width: 100%;
    }

    .donators .tab-list-container {
        min-height: auto;
    }

    .header .logo, .header .user-icon {
        margin-right: 10px;
    }

    .user-icon > a {
        width: 26px;
        height: 26px;
        background-size: 26px 26px;
    }

    .stock-info .item {
        padding: 14px 10px 13px 10px;
    }

    .stock-info .text-label {
        font-size: 9px;
        margin-right: 0px;
        margin-bottom: 5px;
    }

    .stock-info .stock-item {
        display: block;
    }

    .stock-info .stock {
        width: auto;
    }

    .stock-price {
        align-items: center;
    }

    .stock-price .sub-item {
        display: block;
    }

    .user-icon .sub-menu {
        top: 43px;
    }

    #menu-main-menu {
        display: none;
    }

    .list-wrapper .list-row {
        font-size: 11px;
    }

    .sub-item.name {
        width: 56%;
    }

    .list-row-item.large {
        width: 75%;
    }

    .list-row-item.price-stocks {
        width: 20%;
    }

    .list-row-header .list-row-item {
        font-size: 9px;
    }

    .list-row-header .sub-item.number,
    .list-row-header .sub-item.year {
        display: none;
    }

    .list-row-header .list-row-item {
        display: block;
    }

    .list-row-header .sub-item.name {
        width: 100%;
    }

    .donators .btn-primary,
    .register-wrapper .btn {
        min-width: auto;
    }

    .donators .tab-btn {
        min-width: 72px;
        padding: 0px 8px;
        font-size: 10px;
    }

    .invest .button {
        padding: 10px 18px;
        height: 55px;
        font-size: 15px;
        border: 0.5px solid var(--accent-border);
    }

    .donators {
        overflow: hidden;
    }

    #canvasContainer {
        margin-top: 30px;
        padding-left: 0px; 
    }
}