* {
    margin: 0px !important;
    padding: 0px !important;
    font-family: 'Poppins' !important;
    box-sizing: border-box!important;
}

:root {
    /* --primary-color: #135438; */
    --primary-color: #064e3b;
    --primary-shade-color: #003527;
    /* --secondary-color: #4FCA9E; */
    --secondary-color: #6ffbbe;
    --text-color: #80BEA6;
}

html {
    height: 100%;
    scrollbar-color: var(--primary-color) !important;
}

body {
    height: 100%;
}

.main-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-wrapper {
    width: 100%;
    height: 80px;
    box-shadow: 0px 2px 40px 2px rgba(0, 0, 0, 0.25);
    position: fixed;
    z-index: 1000;
}
.currency-value::before {
    content: "\20B9";
    margin-right: 3px!important;
    font-family: Arial, Helvetica, sans-serif;
}
.nav-price-scroller {
    width: 100%;
    height: 30px;
    background-color: var(--primary-color);
    padding: 2px 10px !important;
    overflow: hidden;
    white-space: nowrap;
}

.nav-price-scroller span {
    color: white;
    font-size: 12px;
    margin-left: 10px !important;
}

.nav-price-scroller .nav-value {
    color: #6febbf;
}

.nav-price-scroller .separator {
    font-size: 14px;
}

.nav-price-scroller .track {
    display: inline-block;
    padding-left: 100%;
    animation: scroll 50s linear infinite;
    will-change: transform;
}

.track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

.head-sub-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0px 10px !important;
    background-color: rgba(229, 236, 235, 0.95);
}

.head-sub-wrapper .logo {
    height: 40px;
}

nav {
    position: absolute;
    left: 300px;
}

nav ul {
    display: flex;
    gap: 50px;
}

nav ul li {
    list-style-type: none !important;
    padding: 0px 5px !important;
}

nav ul li a {
    text-decoration: none !important;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.search-wrapper {
    position: absolute;
    right: 220px;
    background-color: white;
    border-radius: 20px;
    width: 25%;
    height: 35px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 5px !important;
}

.search-wrapper input {
    font-size: 14px;
    color: var(--primary-color);
}

.search-wrapper input {
    background: transparent;
    border: none !important;
    outline: none !important;
}

.search-wrapper input::placeholder {
    color: var(--primary-color);
}

.search-wrapper .search-icon {
    color: var(--primary-color);
}

.get-in-wrapper {
    position: absolute;
    right: 50px;
    background:transparent;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.get-in-wrapper .joinus-btn {
    border: none !important;
    outline: none !important;
    color: white;
    background-color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    padding: 5px 12px !important;
    border-radius: 18px;
}

.account-handler {
    position: absolute;
    height: 40px;
    width: 85%;
    border-radius: 20px;
    background-color: var(--primary-color);
    display: none;
    align-items: center;
}
.account-design-wrapper {
    position: absolute;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.invest-currency {
    left: 3px;
}
.invest-currency img {
    height: 30px;
    width: 30px;
}
.profile-icon {
    right: 3px;
    overflow: hidden;
    cursor: pointer;
}
.account-handler:has(.profile-icon:hover) .animated-arrow-wrapper {
    animation-play-state: paused;
}
.profile-icon img {
    height: 100%;
    width: 100%;
}
.animated-arrow-wrapper {
    left: 50px;
    background: transparent;
    animation: 'arrow-move' 1050ms ease-in-out 0ms infinite both;
}
.animated-arrow-wrapper svg {
    font-size: 20px;
    color:var(--secondary-color);
}
.account-menu {
    background-color: white;
    box-shadow: 5px 5px 8px 6px rgba(0, 0, 0, 0.25);
    width: 80%;
    height: auto;
    position: absolute;
    bottom: -90px;
    display: none;
}
.account-menu li {
    list-style-type: none!important;
    height: 30px;
    width: 100%;
    padding: 10px!important;
    background-color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--primary-color);
}
.account-menu li a {
    text-decoration: none!important;
    color: var(--primary-color);
}
.account-menu li:hover{
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.account-menu li:hover > a {
    color: var(--secondary-color);
}
.get-in-wrapper:has(.profile-icon:hover, .account-menu:hover) .account-menu {
    display: block;
}
@keyframes arrow-move {
    0% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(20%);
    }
}
.main-section {
    position: relative;
    top: 80px;
    width: 100%;
    height: 700px;
    /* padding: 20px !important; */
}

.main-section .content-wrapper {
    width: 100%;
    height: 540px;
    background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);
}

.main-section .content-wrapper .sub-content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    top: 25px;
}

.left-content-wrapper {
    padding: 50px 90px !important;
}

.left-content-wrapper .head-caption {
    color: var(--secondary-color);
}

.left-content-wrapper .main-title {
    font-size: 60px;
    color: var(--secondary-color);
}

#typer-main-text {
    color: white;
}

.left-content-wrapper .sub-para {
    margin: 25px 0px 25px !important;
    font-size: 15px;
    color: var(--text-color);
}

.get-started-btn {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border: none;
    outline: none;
    border-radius: 20px;
    padding: 10px 18px !important;
    font-weight: 500;
    font-size: 15px;
}

.get-started-btn .get-started-right-icon {
    position: relative;
    top: 2px;
}

.right-content-wrapper {
    position: relative;
}

.hive-element {
    position: absolute;
    border: var(--primary-color);
    border-radius: 15px;
    width: 250px;
    height: 250px;
    transform: rotate(45deg);
}

.hive-element-1 {
    border: 5px dashed var(--secondary-color);
}

.hive-element-2 {
    left: 25px;
    top: 50px;
    border: 6px solid var(--primary-color);
}

.footer-wrapper {
    width: 100%;
    height: 300px;
    margin-top: auto !important;
}

.joinus-section {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 2000;
    display: none;
}

.joinus-section .joinus-overlay {
    width: 100vw;
    height: 100vh;
    background-color: black;
    opacity: 0.65;
    position: fixed;
    z-index: 2200;
}

.joinus-section .login-singnup-wrapper {
    position: fixed;
    background-color: white;
    width: 700px;
    height: 400px;
    left: calc(50% - 350px);
    top: calc(50% - 200px);
    z-index: 2500;
    display: flex;
}

.joinus-section .login-singnup-wrapper .joinus-design-wrapper {
    height: 100%;
    width: 350px;
}

.joinus-section .login-singnup-wrapper .joinus-main-wrapper {
    position: relative;
    height: 100%;
    width: 350px;
}

.joinus-section .login-singnup-wrapper .joinus-main-wrapper .joinus-sub-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: white;
}

.joinus-sub-wrapper form * {
    display: block !important;
}

.joinus-sub-wrapper .btn-link {
    border: none !important;
    outline: none !important;
    color: blue;
    background: transparent !important;
    font-size: 12px;
}

.login-singnup-wrapper .close-btn {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    padding: 10px !important;
    color: white;
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 3000;
    cursor: pointer;
}

.two_fa-form-wrapper {
    display: none;
}

.account-section, .profile-section {
    margin-top: 80px!important;
    width: 100%;
    min-height: calc(100vh - 80px);
    /* background-color: #F4F6FA; */
    background-image: url('./assets/hive_abstract.svg');
    background-size: 600px auto;
    padding: 30px 20px!important;
}
.activation-and-portfolio {
    width: 100%;
    height: 100%;
    padding:10px!important;
    /* background-color: beige; */
}
.edit-user-profile {
    /* background-color: greenyellow; */
    width: 80%;
    height: auto;
    padding: 15px 20px!important;
}
.user-info, .two_fa-control-wrapper {
    background-color: white;
    width: 100%;
    height: auto;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 10px 20px!important;
}
.user-info .content {
    width: 100%;
    height: auto;
}
.activation-risk-tools-wrapper {
    width: 65%;
    height: auto;
}
.activation-wrapper {
    background-color: white;
    width: 40%;
    height: auto;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px!important;
}
.activation-wrapper .header {
    width:100%;
    height: auto;
    padding: 0px 0px 6px 0px!important;
}
.activation-wrapper .header .title {
    font-size: 13px;
    color: var(--primary-shade-color);
}
.activation-wrapper .header .title img {
    width: 25px;
    height: 25px;
}
.activation-wrapper .header .activation-status {
    border-radius: 20px;
    padding: 1px 8px!important;
    font-weight: 500;
    font-size: 10px;
}
.activation-wrapper .header .activation-status.pending {
    background-color: #f1a3a3;
    color: #f12121;
}
.activation-wrapper .header .activation-status.completed {
    background-color: #7fe59e;
    color: var(--primary-color);
}
.activation-wrapper .content {
    padding: 10px 0px!important;
}
.activation-wrapper .content p {
    color: #646161;
    font-size: 12px;
}
.activation-wrapper .activate-btn {
    width: 100%;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    padding: 6px 0px!important;
    color: white;
    font-size: 14px;
}
.risk-profiling-wrapper {
    background-color: white;
    width: 40%;
    height: auto;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px!important;
}
.risk-profiling-wrapper .header {
    width:100%;
    height: auto;
    padding: 0px 0px 6px 0px!important;
}
.risk-profiling-wrapper .header .title {
    font-size: 13px;
    color: var(--primary-shade-color);
}
.risk-profiling-wrapper .header .title img {
    width: 25px;
    height: 25px;
}
.risk-profiling-wrapper .header .activation-status {
    border-radius: 20px;
    padding: 1px 8px!important;
    font-weight: 500;
    font-size: 10px;
}
.risk-profiling-wrapper .header .activation-status.pending {
    background-color: #f1a3a3;
    color: #f12121;
}
.risk-profiling-wrapper .header .activation-status.completed {
    background-color: #7fe59e;
    color: var(--primary-color);
}
.risk-profiling-wrapper .content {
    padding: 10px 0px!important;
}
.risk-profiling-wrapper .content p {
    color: #646161;
    font-size: 12px;
}
.risk-profiling-wrapper .activate-btn {
    width: 100%;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: var(--primary-color);
    padding: 6px 0px!important;
    color: white;
    font-size: 14px;
}
.mutual-fund-portfolio-wrapper {
    background-color: white;
    width: 35%;
    height: auto;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 12px!important;
}
.mutual-fund-portfolio-wrapper .header {
    width:100%;
    padding: 0px 0px 6px 0px!important;
}
.mutual-fund-portfolio-wrapper .header .title {
    font-size: 13px;
    color: var(--primary-shade-color);
}
.mutual-fund-portfolio-wrapper .header .live-portfolio-badge {
    width: 40px;
    height: 20px;
    border-radius: 20px;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 4px 6px !important;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: live-portfolio-badge-border 1500ms ease-in-out 0ms infinite both;
}
@keyframes live-portfolio-badge-border {
    0% {
      border: 1px solid var(--secondary-color);
    }
    50% {
      border: 3px solid var(--secondary-color);
    }
    100% {
      border: 1px solid var(--secondary-color);
    }
}
.mutual-fund-portfolio-wrapper .header .portfolio-icon {
    width: 35px;
    height: 35px;
    position: absolute;
    top: -5px;
}

.mutual-fund-portfolio-wrapper .portfolio {
    height: auto;
    width: 100%;
    padding: 10px!important;
}

.mutual-fund-portfolio-wrapper .portfolio .portfolio-row:nth-child(1), .portfolio-row:nth-child(2), .investment-list li {
    width: 100%;
    background-color: #F7F8F8;
    border: 1px solid #e4e6e6;
    border-radius: 5px;
    box-shadow: 5px 5px 6px -6px rgba(0, 0, 0, 0.25);
    padding: 10px!important;
    cursor: pointer;
    margin-bottom: 25px!important;
    transition: box-shadow 120ms ease-in-out;
}
.mutual-fund-portfolio-wrapper .investment-list li {
    margin-bottom: 15px!important;
    list-style-type: none;
}
.mutual-fund-portfolio-wrapper .portfolio .widget-title {
    text-transform: uppercase;
    font-size: 11px;
    color:#646161;
}
.mutual-fund-portfolio-wrapper .currency-value {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}
.mutual-fund-portfolio-wrapper .fund-name {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}
.mutual-fund-portfolio-wrapper .portfolio .portfolio-row:hover, .investment-list li:hover {
    box-shadow: none;
}
.mutual-fund-portfolio-wrapper .returns-widget .return-percent {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}
.mutual-fund-portfolio-wrapper .view-portfolio-btn {
    border-radius: 20px;
    border: none!important;
    outline: none!important;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 12px !important;
    font-size: 12px;
    float: right;
}
.portfolio-arrow {
    position: relative;
    top: 1px;
}
.fund-logo img {
    width: 35px;
    height: 35px;
}
.mutual-fund-portfolio-wrapper .nav-price {
    color: var(--primary-shade-color);
    font-weight: 600;
    font-size: 10px;
}
.nav-price .currency-value {
    color: #646161;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1px;
    animation: price-text 1200ms ease-in-out 0ms infinite both;
}
@keyframes price-text {
    0% {
        color: orange;
    }
    25% {
        color: orangered;
    }
    50% {
        color: rgb(238, 83, 83);
    }
    75% {
        color: orange;
    }
    100% {
        color: orangered;
    }
}
.trendup-mark {
    padding: 0px 10px 0px 0px!important;
    font-size: 35px;
    color: var(--primary-color);
    animation: trendup-mark 1200ms ease-in-out 0ms infinite forwards;
}
@keyframes trendup-mark {
    0% {
        color: var(--primary-color);
    }
    100% {
        color: var(--secondary-color);
    }
}
.profile-pic-design {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}
.profile-pic-design-curve {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-color);
    bottom: -50px;
}
.profile-pic-wrapper {
    position: absolute;
    width: 130px;
    height: 130px;
    left: calc(50% - 65px);
    top: calc(50% - 65px);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}
.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
}
.upload-pic-btn {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: var(--primary-shade-color);
    opacity: 0.75;
    overflow: hidden;
    bottom: -90px;
    z-index: 1;
    cursor: pointer;
    display: none;
}
.cam-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    left: calc(50% - 60px);
    padding-top: 15px!important;
    font-size: 30px;
    z-index: 1000;
    border-radius: 50%;
    color: var(--secondary-color);
}
.profile-pic-design:hover > .upload-pic-btn, .profile-pic-wrapper:hover > .upload-pic-btn, .profile-pic-design-curve:hover > .upload-pic-btn {
    display: block;
}
.profile-pic-uploader {
    visibility: hidden;
    cursor: not-allowed;
}
.form-row {
    margin-bottom: 10px!important;
}
.import-funds-wrapper {
    width: 250px;
    height: auto;
    background-color: white;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 18px!important;
}
.import-funds-wrapper .icon  {
    width: 100px;
    height: 100px;
    /* box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9); */
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transform: rotate(-3deg);
    position: absolute;
    z-index: 10;
    background-color: white;
}
.import-funds-wrapper .icon img {
    width: 85%;
    height: 85%;
}
.import-funds-wrapper .title {
    margin-top: 10px!important;
    color: var(--primary-shade-color);
}
.import-portfolio-btn {
    background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);   
    border-radius: 20px;
    padding: 5px 12px!important;
    border: none;
    outline: none;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.import-funds-wrapper .content p {
    color: #646161;
    font-size: 10px;
    text-align: center;
}
.import-funds-wrapper .icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}
.import-funds-wrapper .icon-bg {
    position: absolute;
    width: 105px;
    height: 105px;
    background-color: var(--secondary-color);
    z-index: 1;
    border-radius: 20px;
    transform: rotate(3deg);
    opacity: 0.3;
}
.impf-tag-wrapper {
    width: 90px;
    height: auto;
    padding: 5px 8px!important;
    background-color: var(--secondary-color);
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    margin-bottom: 8px!important;
    margin-left: auto!important;
}
.impf-source-icon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: status-blink 1200ms ease-in-out 0ms infinite;
}
.impf-source {
    color: var(--primary-color);
    font-size: 8px;
    font-weight: 600;
}
.impf-arrow {
    position: relative;
    top: 1px;
}


.portfolio-intelligence-wrapper {
    width: 250px;
    height: auto;
    background-color: white;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 18px!important;
}
.portfolio-intelligence-wrapper .icon  {
    width: 100px;
    height: 100px;
    /* box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9); */
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transform: rotate(-3deg);
    position: absolute;
    z-index: 10;
    background-color: white;
}
.portfolio-intelligence-wrapper .icon img {
    width: 85%;
    height: 85%;
}
.portfolio-intelligence-wrapper .title {
    margin-top: 10px!important;
    color: var(--primary-shade-color);
}
.pfintel-btn {
    background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);   
    border-radius: 20px;
    padding: 5px 12px!important;
    border: none;
    outline: none;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.portfolio-intelligence-wrapper .content p {
    color: #646161;
    font-size: 10px;
    text-align: center;
}
.portfolio-intelligence-wrapper .icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}
.portfolio-intelligence-wrapper .icon-bg {
    position: absolute;
    width: 105px;
    height: 105px;
    background-color: var(--secondary-color);
    z-index: 1;
    border-radius: 20px;
    transform: rotate(3deg);
    opacity: 0.3;
}
.pfintel-tag-wrapper {
    width: 90px;
    height: auto;
    padding: 5px 8px!important;
    background-color: var(--secondary-color);
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    margin-bottom: 8px!important;
    margin-left: auto!important;
}
.pfintel-source-icon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: status-blink 1200ms ease-in-out 0ms infinite;
}
.pfintel-source {
    color: var(--primary-color);
    font-size: 8px;
    font-weight: 600;
}
.pfintel-arrow {
    position: relative;
    top: 1px;
}


.sip-calculator-wrapper {
    width: 250px;
    height: auto;
    background-color: white;
    box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 18px!important;
}
.sip-calculator-wrapper .icon  {
    width: 100px;
    height: 100px;
    /* box-shadow: 5px 5px 30px 3px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9); */
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transform: rotate(-3deg);
    position: absolute;
    z-index: 10;
    background-color: white;
}
.sip-calculator-wrapper .icon img {
    width: 85%;
    height: 85%;
}
.sip-calculator-wrapper .title {
    margin-top: 10px!important;
    color: var(--primary-shade-color);
}
.sipcalc-btn {
    background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);   
    border-radius: 20px;
    padding: 5px 12px!important;
    border: none;
    outline: none;
    color: var(--secondary-color);
    font-size: 12px;
    letter-spacing: 0.5px;
}
.sip-calculator-wrapper .content p {
    color: #646161;
    font-size: 10px;
    text-align: center;
}
.sip-calculator-wrapper .icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
}
.sip-calculator-wrapper .icon-bg {
    position: absolute;
    width: 105px;
    height: 105px;
    background-color: var(--secondary-color);
    z-index: 1;
    border-radius: 20px;
    transform: rotate(3deg);
    opacity: 0.3;
}
.sipcalc-tag-wrapper {
    width: 90px;
    height: auto;
    padding: 5px 8px!important;
    background-color: var(--secondary-color);
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    margin-bottom: 8px!important;
    margin-left: auto!important;
}
.sipcalc-source-icon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary-color);
    animation: status-blink 1200ms ease-in-out 0ms infinite;
}
.sipcalc-source {
    color: var(--primary-color);
    font-size: 8px;
    font-weight: 600;
}
.sipcalc-arrow {
    position: relative;
    top: 1px;
}
@keyframes status-blink {
    0% {
        background-color: var(--primary-color);
    }
    50% {
        background-color: #948e8e;
    }
    100% {
        background-color: var(--primary-color);
    }
}

.activation-section {
    margin-top: 80px!important;
    width: 100%;
    min-height: calc(100vh - 80px);
    background-image: url('./assets/hive_abstract.svg');
    background-size: 600px auto;
    padding: 30px 40px!important;
}
.activation-steps {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);
    height: 80px;
    padding: 0px 20px!important;
    box-shadow: 6px 6px 20px 4px rgba(0, 0, 0, 0.25);
    z-index: 100;
}
.activation-form-wrapper {
    width: 100%;
    background-color: white;
    height: 500px;
    position: relative;
    z-index: 10;
    box-shadow: 6px 6px 20px 4px rgba(0, 0, 0, 0.25);
}
.activation-form {
    width: 100%;
    background-color: white;
    height: 500px;
    position: absolute;
    display: none;
    padding: 30px 20px!important;
}
.activation-form.active {
    display: block;
}
.step-outer {
    width: 40px;
    height: 35px;
    background: var(--secondary-color);
    clip-path: polygon(
        25% 0%,
        75% 0%,
        100% 50%,
        75% 100%,
        25% 100%,
        0% 50%
    );
}
.step-inner {
  width: 38px;
  height: 33px;
  background: linear-gradient(135deg, var(--primary-shade-color) 0%, var(--primary-color) 100%);
  color: var(--secondary-color);
  font-weight: 600;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 50%,
    75% 100%,
    25% 100%,
    0% 50%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}
.step.active {
 background: var(--secondary-color);   
 color: var(--primary-color);
}
.step-connector {
    width: 100px;
    height: 1px;
    background: var(--secondary-color);
    /* background-color: var(--primary-color); */
    opacity: 0.3;
    margin: 0px 20px!important;
}
.activation-form form {
    width: 100%;
}
.activation-form .form-field-wrapper {
    position: relative;
    /* background-color: #f1a3a3; */
}
.activation-form .form-field-wrapper > input,label {
    position: relative;
}
.activation-form .form-field-wrapper label {
    top: 25px;
    transition: all 0.5s;
}
.activation-form .form-field-wrapper > input,select  {
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #646161;
    display: block!important;
}

.activation-form .form-field-wrapper label:has(+ input:focus), .activation-form .form-field-wrapper label.move-up {
    top: -4px;
    font-size: 12px;
}

.activation-form .form-field-wrapper select option {
    color: var(--secondary-color)!important;
    background-color: var(--primary-color)!important;
}
.opt-dropdown ul {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.opt-dropdown ul li {
    list-style-type: none!important;
    padding: 5px 10px!important;
    cursor: pointer;
}
.opt-dropdown ul li:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.opt-input:disabled{
    background: transparent!important;
    border: none!important;
    outline: none!important;
    color: black!important;
}
.custom-select {
    border-bottom: 1px solid #646161!important;
}
.custom-select .opt-dropdown-char {
    cursor: pointer;
    position: relative;
    top: 2px;
}
.clear-otp-char {
    color: var(--primary-color);
    position: relative;
    right: 2px;
    top: 2px;
    cursor: pointer;
}