﻿/*New design definitions*/

/* * * Fonts * * */

/* Colors */
.app-f-c-primary {
    color: rgba(0, 163, 255, 1) !important;
}

.app-f-c-blue {
    color: rgba(81, 131, 250, 1) !important;
}

body:not(.theme-dark):not([data-bs-theme=dark]) .app-f-c-brightgrey {
    color: rgba(138, 135, 162, 1) !important;
}

.app-f-c-white {
    color: rgba(255, 255, 255, 1) !important;
}

.app-f-c-grey {
    color: rgba(225, 229, 255, 1) !important;
}

/* Gradient Font */
.app-f-gradient {
    /*background: -webkit-linear-gradient(rgba(0, 163, 255, 1), rgba(10, 93, 229, 1), rgba(21, 21, 203, 1));
    background: -o-linear-gradient(rgba(0, 163, 255, 1), rgba(10, 93, 229, 1), rgba(21, 21, 203, 1));
    background: -moz-linear-gradient(rgba(0, 163, 255, 1), rgba(10, 93, 229, 1), rgba(21, 21, 203, 1));
    background: linear-gradient(rgba(0, 163, 255, 1), rgba(10, 93, 229, 1), rgba(21, 21, 203, 1));*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
    background: -webkit-linear-gradient(#eee, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Font Sizes */
.app-f-s-10 {
    font-size: 10px !important; /* 10px */
}

.app-f-s-14 {
    font-size: 14px !important; /* 14px */
}

.app-f-s-16 {
    font-size: 16px !important; /* 16px */
}

.app-f-s-20 {
    font-size: 20px !important; /* 20px */
}

.app-f-s-24 {
    font-size: 24px !important; /* 24px */
}

/* Font Weights */
.app-f-w-400 {
    font-weight: 400 !important;
}

.app-f-w-600 {
    font-weight: 600 !important;
}

.app-f-w-700 {
    font-weight: 700 !important;
}

/* Letter Spacing */
.app-f-ls-008p {
    letter-spacing: 0.08rem;
}

.app-f-ls-08p {
    letter-spacing: 0.8px;
}

/* Background colors */
.app-bg-primary {
    background-color: rgba(0, 163, 255, 1) !important;
}

.app-bg-pink {
    background-color: pink !important;
}

.app-bg-red {
    background-color: rgba(186, 83, 90, 1) !important;
}

.app-bg-green {
    background-color: rgba(83, 186, 148, 1) !important;
}

.app-bg-yellow {
    background-color: rgba(207, 185, 43, 1) !important;
}

.app-bg-blue {
    background-color: blue !important;
}

.app-bg-brightblue {
    background-color: rgba(221, 233, 255, 1) !important;
}

app-bg-lightblue {
    background-color: rgba(135, 173, 255, 0.08) !important;
}

.app-bg-darkgrey {
    background-color: rgba(57, 63, 76, 1) !important;
}

.app-bg-brightgrey {
    background-color: rgba(255, 255, 255, 0.08) !important
}
/* Card Dark Mode invert */
/*Dark Mode Invert*/
.app-card-inverted {
    background-color: rgba(255, 255, 255, 0.08) !important;
}

.app-card-vault {
    border-radius: 1.5rem !important;
    margin: .75rem 0 .75rem 0;
    border: 0;
    box-shadow: none;
}

body:not(.theme-dark):not([data-bs-theme=dark]) .app-card-vault {
    background-color: white !important;
}

.app-card-vault-header {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
    border-bottom-left-radius: 0.5rem !important;
    border-bottom-right-radius: 0.5rem !important;
}

.app-card-vault-body {
    margin-top: 0.8rem !important;
    border-radius: 0.5rem !important;
    background-color: rgba(135, 173, 255, 0.08) !important;
    border: 0;
}

.app-card-vault-footer {
    margin-top: 0.8rem !important;
    border-radius: 0.5rem !important;
    background-color: rgba(135, 173, 255, 0.08) !important;
    border: 0;
}

.app-card-statistics {
    margin-top: 3rem !important;
    border-radius: 1.5rem !important;
    border: none;
    box-shadow: none;
}

.app-card-faq {
    margin-top: 2rem !important;
    border-radius: 1.5rem !important;
    line-height: 200%;
    margin: auto;
    background-color: rgba(221, 233, 255, 1) !important;
    border: none;
    box-shadow: none;
}

.app-divider {
    margin: 0px !important;
    padding: 0px !important;
}

.divider-mask {
    background-color: rgba(104, 111, 123, 1) !important;
}

.app-status-light {
    width: 8px !important;
    max-width: 8px !important;
    height: 8px !important;
    max-height: 8px !important;
    border-radius: 4px;
    display: inline-block;
    /*margin: auto;*/
}


/* Vertical Space */
.app-vertical-space {
    min-height: 0.6rem;
}

/* Progress Bar */
.progress {
    background-color: rgba(56, 86, 130, 1) !important;
}
.progress-bar {
    background-color: rgba(81, 131, 250, 1) !important;
}

/* Badge */
.badge-outline {
    background-color: white !important;
    border-color: rgba(0, 163, 255, 1) !important;
    color: rgba(0, 163, 255, 1) !important;
}

.btn-outline-primary {
    border-color: rgba(0, 163, 255, 1) !important;
    color: rgba(0, 163, 255, 1) !important;
}

.btn:hover {
    background-color: rgba(0, 163, 255, 1) !important;
    /*border-color: rgba(0, 163, 255, 1) !important;*/
    color: white !important;
}

body:not(.theme-dark):not([data-bs-theme=dark]) .page-body {
    background-color: rgba(246, 249, 255) !important;
}


/* Console */
.console .card-body {
    background-color: black !important;
}

/* DockView */
/*.bb-dockview .dv-view {
    height: auto !important;
}*/

.max-amount-button {
    width: 4.5625rem;
    height: 1.8125rem;
    font-weight: 600;
    border: 1px solid #00A3FF;
    border-radius: 0.5rem;
    padding: 0 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    background: linear-gradient(to bottom, #00A3FF, #0A5DE5, #1515CB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 20px;
    padding-right: 20px;
}

.input-investment-volume {
    border: none;
    outline: none;
    color: #7485A8;
    background: transparent;
    font-size: 1rem;
    width: 100%;
    font-size: 12px;
    font-family: Inter;
    font-weight: 400;
    word-wrap: break-word
}

.boost-roi {
    background: linear-gradient(172deg, #00a3ff 38.4%, #0a5de5 101.08%, #1515cb 101.09%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20.83px;
    text-align: left;
}

.boost-roi-wrapper {
    background-color: #ffffff;
    border: 1px solid #00a3ff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 14px;
    border-radius: 8px;
    height: 26px;
    box-sizing: border-box;
}

.fractions-info {
    font-size: 10px;
    font-family: Inter;
    font-weight: 400;
    word-wrap: break-word
}

.check-details-button {
    color: white;
    font-size: 16px;
    font-family: 'DM Sans';
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
    background-color: #00A3FF;
    border-radius: 8px;
}

.action-details-button {
    color: #00A3FF;
    font-size: 16px;
    font-family: 'DM Sans';
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
    border-radius: 8px;
}

.invest-text {
    color: #8A87A2;
    font-size: 14px;
    font-family: 'DM Sans';
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word
}

.roi-info {
    color: white;
    font-size: 20px;
    font-family: 'DM Sans';
    font-weight: 400;
    word-wrap: break-word
}



/* Balance dropdown in Header */
.custom-dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-toggle-btn {
    display: flex;
    align-items: center;
    background: #fff;
    border: none;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    /*padding: 24px 40px;*/
    border-radius: 0.5rem;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.04);*/
    cursor: pointer;
    /*gap: 12px;*/
}

.main-balance {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    /*font-family: 'DM SANS';*/
}

.chevron {
    /*margin-left: 12px;*/
    display: flex;
    align-items: center;
}

.custom-dropdown-menu {
    width: 8rem;
    margin-left: -0.5rem;
    position: absolute;
    top: 100%;
    left: 0;
    /*min-width: 220px;*/
    background: #fff;
    border-radius: 0.5rem 0.5rem 1rem 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 0.625rem 0;
    margin-top: 1rem;
    z-index: 1000;
    list-style: none;
}

.dropdown-item-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.25rem;
    padding: 0.25rem 0rem;
    font-size: 0.625rem;
    font-weight: 500;
    color: #222;
}

.balance-value {
    min-width: 3rem;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.balance-symbol {
    min-width: 60px;
    text-align: left;
}

.dropdown-divider {
    height: 1px;
    background: #D3E1FE;
    margin: 0 1rem;
}


/* Admin JsonObjectViewer */

.json-viewer {
    background-color: white !important;
    padding-left: 20px;
}


.dropdown-text {
    color: black;
    font-size: 10px;
    font-family: DM Sans;
    font-weight: 500;
    text-transform: uppercase;
    word-wrap: break-word
}

.dropdown-main {
    color: #282828;
    font-size: 16px;
    font-family: DM Sans;
    font-weight: 600;
    line-height: 1.5rem;
    word-wrap: break-word
}

/* Combo Box */
.arkefi-progspin-container {
    position: relative;
    width: 60px !important;
    height: 60px !important;
    display: inline-block;
    z-index:3;
}

/* uses 360%, 0% to 100% at 180 degrees and back again */
.arkefi-progspin-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(0,163,255,0) 0deg, #00A3FF 360deg, rgba(0,163,255,0) 360deg);
    mask: radial-gradient(transparent 60%, #000 61%);
    -webkit-mask: radial-gradient(transparent 60%, #000 61%);
    animation: arkefi-spin var(--arkefi-spinner-speed, 1.2s) linear infinite;
    opacity: 0.85;
    z-index: 1;
}

.progress-wrapper {
    width: 85px;
    height: 85px;
    background-image: url('/assets/spinner-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-gradient {
    width: 72px;
    height: 72px;
    background: radial-gradient(circle at center, rgba(200, 220, 255, 1), white);
    z-index: 2;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arkefi-progspin-spinner.is-finished {
    animation-play-state: paused;
}

/* uses 330degrees, from 0% to 100% saturation*/
/*.arkefi-progspin-spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient( from 0deg, rgba(0,163,255,0.0) 0deg,*/ /* Start transparent */
    /*rgba(0,163,255,0.2) 60deg, rgba(0,163,255,0.5) 120deg, rgba(0,163,255,0.7) 180deg, #00A3FF 300deg 360deg*/ /* End solid */
    /*);
    mask: radial-gradient(transparent 60%, #000 61%);
    -webkit-mask: radial-gradient(transparent 60%, #000 61%);
    animation: arkefi-spin 1.2s linear infinite;
    opacity: 0.85;
    z-index: 1;
}*/

@keyframes arkefi-spin {
    to {
        transform: rotate(360deg);
    }
}

.arkefi-progspin-progress {
    position: absolute;
    inset: 5px; /* Was 10px, now closer */
    border-radius: 50%;
    background: conic-gradient( #00A3FF 0deg calc(var(--arkefi-progress, 0) * 3.6deg), #e5e5e5 0deg 360deg );
    mask: radial-gradient(transparent 60%, #000 61%);
    -webkit-mask: radial-gradient(transparent 60%, #000 61%);
    z-index: 2;
    transition: background 0.4s;
}

/* Show from 0% to 100% saturation in the range of the progress % */
/*.arkefi-progspin-progress-fade {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: conic-gradient( from 0deg, rgba(0,163,255,0.0) 0deg, #00A3FF calc(var(--arkefi-progress, 0) * 3.6deg), #e5e5e5 0deg 360deg );
    mask: radial-gradient(transparent 60%, #000 61%);
    -webkit-mask: radial-gradient(transparent 60%, #000 61%);
    z-index: 2;
    transition: background 0.4s;
}*/

/* show only the percentage of saturation relative to the progress % */
.arkefi-progspin-progress-fade {
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: conic-gradient( from 0deg, rgba(0,163,255,0) 0deg, rgba(0,163,255, calc(var(--arkefi-progress, 0) / 100)) calc(var(--arkefi-progress, 0) * 3.6deg), rgba(0,163,255,0) calc(var(--arkefi-progress, 0) * 3.6deg), rgba(0,163,255,0) 360deg );
    mask: radial-gradient(transparent 60%, #000 61%);
    -webkit-mask: radial-gradient(transparent 60%, #000 61%);
    z-index: 2;
    transition: background 0.4s;
}

.arkefi-progspin-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #514b82;
    pointer-events: none;
    user-select: none;
    z-index: 3;
}




/* Coin */
.arkefi-coin-container {
    perspective: 800px;
    width: 80px;
    height: 80px;
    display: inline-block;
}

.arkefi-coin {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: arkefi-coin-flip 2s cubic-bezier(.93,.05,.9,.71) 1 forwards;
}

.arkefi-coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25), 0 1px 1px rgba(0,0,0,0.15) inset;
    background: radial-gradient(ellipse at 65% 35%, #fff 0%, #f27474 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arkefi-coin-front {
    /* front face (cross) is default */
    z-index: 2;
}

.arkefi-coin-back {
    /* back face (logo) is rotated 180deg */
    transform: rotateY(180deg);
    z-index: 1;
}

/* Coin flip animation */
@keyframes arkefi-coin-flip {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(180deg);
    }
}

.logo-label {
    display: flex;
    justify-content: space-between;
}

.label-text {
    color: black;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.7px;
}

.invest-summary {
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.amount-info {
    width: 199px;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 11px;
}

.investment-amount-value {
    color: black;
    font-size: 32px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    letter-spacing: 0.8px;
}

.investment-amount-label {
    color: black;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.token-icon {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.info-box {
    padding: 16px;
    background: #F6F9FF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progress-box {
    padding: 5px 13px;
    background: #F6F9FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-header {
    border-bottom: 1px solid #DCE0ED;
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-label {
    color: #8A87A2;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
    letter-spacing: 0.8px;
}

.info-status {
    display: flex;
    align-items: center;
    gap: 22px;
}

.position-relative {
    position: relative;
}

.progress-image {
    height: 65px;
    width: 65px;
}

.status-text {
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0.8px;
}

.info-content {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 8px;
    border-radius: 8px;
}

.info-content-inner {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.info-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-text-label {
    color: black;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.info-text-value {
    color: #5183FA;
    font-size: 12px;
    font-family: Inter;
    font-weight: 700;
    word-wrap: break-word
}

.info-inner-mini {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flex-align-gap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.small-img {
    height: 1.7rem;
    width: 1.7rem;
    object-fit: cover;
    border-radius: 2px;
}

.summary-img {
    display: block;
    margin-left: auto;
}

.copy-icon-bg {
    background: #00A3FF;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left:0.8rem;
    cursor: pointer;
}

.copy-icon-bg img {
    width: 1.2rem;
    height: 1.2rem;
    object-fit: cover;
}

.transaction-hash {
    color: #00A3FF;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.asset-img {
    height: 3.8rem;
    width: 3.8rem;
}

.asset-img-enlarged {
    height: 30.5rem;
    width: 30.5rem;
    border-radius: 16px !important;
}

.icon-circle {
    background-color: #2EB4FF;
    border-radius: 50%;
    height: 1.7rem;
    width: 1.7rem;
}

.pool-label {
    color: black;
    font-size: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 10px;
}

.circle-wrapper {
    width: 1.6rem;
    height: 1.6rem;
}

.circle-fill {
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
}

.pool-value {
    color: #385682;
    font-size: 24px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    line-height: 24px;
    word-wrap: break-word;
}

.vault-details-container {
    background: #F6F9FF;
    border-radius: 16px;
}

.vault-details-description {
    display: inline-flex;
    background: white;
    border-radius: 16px;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.vault-description {
    color: black;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    line-height: 20px;
    word-wrap: break-word;
    padding: 1rem;
}

.info-box-vault-details {
    padding: 16px;
    background: #F6F9FF;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.pagination-box {
    border: 1px solid #00A3FF;
    border-radius: 8px;
    padding: 4px 12px;
    text-align: center;
}

.pagination-nav {
    color: #00A3FF;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
}

.pagination-number {
    color: #00A3FF;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.pagination-number.selected {
    color: white;
    background-color: #00A3FF;
}

.timeline-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    word-wrap: break-word;
    text-align: left;
}

.progress-value {
    font-size: 12px;
    font-family: Inter;
    font-weight: 700;
    word-wrap: break-word;
    white-space: nowrap;
    margin-left: 10px
}

.timeline-item-icon {
    font-size: 1.4rem;
    margin-top: 1.1rem;
}

.timeline .timeline-item-wrapper {
    position: relative;
    padding-left: 0rem !important;
    top: 0px !important;
}

.time-line-item-tail {
    height: 25px !important;
    margin-top: 1.5rem;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1px;
    height: 80%;
    border-radius: 8px;
}

.max-roi-text {
    color: white;
    font-size: 10px;
    font-family: DM Sans;
    font-weight: 300;
    word-wrap: break-word;
    margin-left: 0.5rem;
}

.vault-container {
    height: 12.5rem;
    overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
    cursor: n-resize;
}

vault-container::-webkit-scrollbar {
     display: none; 
}
