/* Copy Animation */
.base-color {
    color: hsl(var(--main)) !important;
}

.copyInput {
    display: inline-block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.copied::after {
    position: absolute;
    top: 8px;
    right: 12%;
    width: 100px;
    display: block;
    content: "COPIED";
    font-size: 1em;
    padding: 5px 5px;
    color: #fff;
    background-color: hsl(var(--base));
    border-radius: 3px;
    opacity: 0;
    will-change: opacity, transform;
    animation: showcopied 1.5s ease;
}

@keyframes showcopied {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    50% {
        opacity: 0.7;
        transform: translateX(40%);
    }

    70% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
    }
}


.cookies-card {
    width: 520px;
    padding: 30px;
    color: #1E2337;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 999999;
    transition: all .5s;
    background: #d1d1d1;
    border-radius: 5px;
}

[data-theme=light] .cookies-card {
    background-color: hsl(var(--section-bg));
}

[data-theme=light] .cookies-card p {
    font-weight: 300;
    color: hsl(var(--black)/0.7) !important;
}


.cookies-card.hide {
    bottom: -500px !important;
}

.radius--10px {
    border-radius: 10px;
}

.cookies-card__icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #6e6f70;
    color: #fff;
    font-size: 32px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.cookies-card__content {
    margin-bottom: 0;
}

.cookies-btn {
    color: #363636;
    text-decoration: none;
    padding: 10px 35px;
    margin: 3px 5px;
    display: inline-block;
    border-radius: 999px;
}

.cookies-btn:hover {
    color: #363636;
}


@media (max-width: 767px) {
    .cookies-card {
        width: 100%;
        left: 0;
        bottom: 0;
        font-size: 14px;
        padding: 15px;
    }
}




.hover-input-popup {
    position: relative;
}

.input-popup {
    display: none;
}

.hover-input-popup .input-popup {
    display: block;
    position: absolute;
    bottom: 130%;
    left: 50%;
    width: 280px;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.input-popup::after {
    position: absolute;
    content: '';
    bottom: -19px;
    left: 50%;
    margin-left: -5px;
    border-width: 10px 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #1a1a1a transparent;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.input-popup p {
    padding-left: 20px;
    position: relative;
}

.input-popup p::before {
    position: absolute;
    content: '';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    left: 0;
    top: 4px;
    line-height: 1;
    font-size: 18px;
}

.input-popup p.error {
    text-decoration: line-through;
}

.input-popup p.error::before {
    content: "\f057";
    color: #ea5455;
}

.input-popup p.success::before {
    content: "\f058";
    color: #28c76f;
}

.show-filter {
    display: none;
}

@media(max-width:767px) {
    .responsive-filter-card {
        display: none;
        transition: none;
    }

    .show-filter {
        display: block;
    }
}

/* KapitalFeld public theme refinements */
.navbar-brand.logo {
    display: inline-flex;
    align-items: center;
    width: 168px;
    max-width: 168px;
    height: 54px;
    overflow: hidden;
}

.navbar-brand.logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 42px;
    object-fit: contain;
    object-position: left center;
}

.banner-section {
    min-height: 860px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 42%, rgba(0, 0, 0, 0.55) 100%),
        url('/assets/images/frontend/banner/kapitalfeld-market-bg.png') right center / cover no-repeat;
}

.banner-section__shape,
.banner-section__shape-one,
.banner-right {
    display: none !important;
}

.banner-content__title {
    max-width: 760px;
    margin-bottom: 34px;
    letter-spacing: 0;
}

.banner-content__desc {
    color: rgba(255, 255, 255, 0.74);
    max-width: 620px;
}

.single-slider {
    padding-top: 130px;
}

.single-slider__desc {
    color: rgba(255, 255, 255, 0.76);
}

.ongoing-campaign {
    background: #151b1f;
    padding: 46px 0 40px;
}

.ongoing-campaign__title {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.kapitalfeld-news-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 168px;
    width: 100%;
    padding: 22px;
    text-align: left;
    color: #fff;
    background: linear-gradient(145deg, rgba(16, 24, 31, 0.98), rgba(7, 12, 18, 0.98));
    border: 1px solid rgba(219, 174, 91, 0.18);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.kapitalfeld-news-card:hover {
    color: #fff;
    border-color: rgba(219, 174, 91, 0.38);
    transform: translateY(-2px);
}

.kapitalfeld-news-card__eyebrow {
    color: #dbae5b;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.kapitalfeld-news-card__title {
    color: #fff;
    display: block;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
}

.kapitalfeld-news-card__text {
    color: rgba(255, 255, 255, 0.66);
    display: block;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 18px;
}

.kapitalfeld-news-card__link {
    color: #dbae5b;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
}

.header .custom--dropdown,
.account-content__member .custom--dropdown {
    min-width: 104px;
}

.header .custom--dropdown>.custom--dropdown__selected,
.account-content__member .custom--dropdown>.custom--dropdown__selected {
    flex-wrap: nowrap;
    min-width: 104px;
}

.header .custom--dropdown>.custom--dropdown__selected .text,
.account-content__member .custom--dropdown>.custom--dropdown__selected .text,
.header .dropdown-list>.dropdown-list__item .text,
.account-content__member .dropdown-list>.dropdown-list__item .text {
    flex: 1 1 auto;
    white-space: nowrap;
    width: auto;
}

@media (max-width: 991px) {
    .navbar-brand.logo {
        width: 145px;
        max-width: 145px;
    }

    .banner-section {
        min-height: 760px;
        background-position: center;
    }

    .single-slider {
        padding-top: 70px;
    }
}

.account-left {
    background:
        linear-gradient(145deg, rgba(3, 8, 13, 0.96), rgba(12, 22, 30, 0.88)),
        url('/assets/images/frontend/banner/kapitalfeld-market-bg.png') center / cover no-repeat !important;
    min-height: 100vh;
    overflow: hidden;
}

.account-left::before {
    background: linear-gradient(180deg, rgba(219, 174, 91, 0.18), rgba(219, 174, 91, 0));
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    z-index: 1;
}

.account-left::after {
    background:
        linear-gradient(135deg, rgba(219, 174, 91, 0.12), transparent 32%),
        radial-gradient(circle at 20% 72%, rgba(14, 119, 255, 0.16), transparent 34%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}

.account-left__logo {
    left: 70px;
    max-width: 230px;
    top: 42px;
    width: 230px;
    z-index: 2;
}

.account-left__logo img {
    background: transparent;
    display: block;
    height: auto;
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    width: 100%;
}

.account-left__content {
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.account-left__subtitle {
    color: rgba(255, 255, 255, 0.64);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.account-left__title {
    color: #fff;
    font-size: 42px;
    font-weight: 650;
    line-height: 1.18;
    max-width: 520px;
}

.account-left__title::before {
    background-color: #dbae5b;
    bottom: -22px;
    height: 2px;
    left: 0;
    width: 72px;
}

.account-left__thumb,
.account-left__thumb-two {
    display: none !important;
}

@media (max-width: 1399px) {
    .account-left__logo {
        left: 48px;
        max-width: 210px;
        width: 210px;
    }

    .account-left__title {
        font-size: 36px;
    }
}

.verification-code-wrapper {
    box-shadow: var(--box-shadow) !important;
    background-color: hsl(var(--footer-bg)) !important;
    border: 0 !important;
}

.verification-code input {
    background-color: transparent !important;
    color: hsl(var(--black)) !important;
}

.verification-code::after {
    background-color: transparent !important;
}

.verification-code span {
    background-color: transparent !important;
    border-color: hsl(var(--base)) !important;
}

.verification-code input {
    letter-spacing: 67px !important;
}
