/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Overlay Styles */
.unique-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9996;
    overflow: hidden;
}

/* Modal Styles */
.unique-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 12px;
    max-width: 500px;
    min-width: 30%;
    width: auto;
    padding: 20px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9997;

}

/* Modal Content */
.unique-modal-content h2 {
    display: block;
    margin-top: 10px;
}

/* Close Button */
.unique-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: none;
    font-size: 30px;
    cursor: pointer;
}

/* Hidden Class */
.hidden {
    display: none;
}

/* Open Modal Button (For Example) */
.unique-open-button {
    margin: 100px auto;
    display: block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* progress */

.progress-container {
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
    margin: 60px auto 20px auto;
}

.progress-content {
    display: flex;
    text-align: center;
    flex-direction: column;
    gap: 10px;
    transition: transform 1s cubic-bezier(0.25, 0.8, 0.5, 1);
}

.progress-step {
    height: 50px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    opacity: 0;
    transition: opacity 0.5s;
}

.progress-step.active {
    opacity: 1;
    color: #000;
}

.progress-step.prev {
    opacity: 0.3;
}

.icon {
    font-size: 25px;
    display: inline-block;
}

.progress-step.active .icon {
    opacity: 1;
}

.description {
    font-size: 14px;
    color: #000000;
    margin-top: 10px;
    display: block;
}


.ripple {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 70px auto 0px auto;
    display: table;
}


.ripple::before, .ripple::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid #007BFB;
    opacity: 0;
    animation: ripple 3s infinite;
}

.ripple::after {
    animation-delay: 1.5s;
}

#reports {
    display:none;
}

#error-stop {
    display:none;
    margin: 40px 0px;
    background: #ff000029;
    padding: 20px;
    border-radius: 15px;
    font-size: 18px;
    color: #000;
    font-weight: 500;
}
@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

#reports > h3 {
    font-size: 20px;
    margin: 40px 0px 20px 0px;
    text-align: center;
}
.services-card {
    width:280px;
}

.f-mobile {
    display: none !important;
}

/* Smartphones (portrait and landscape) */
@media (max-width: 800px) {
    .unique-modal {
        max-width: 100%;
        min-width: 95%;
    }
    #login-block > button {
        display: none !important;
    }
    .navbar-top-block-text h1 {
        font-size: 35px;
    }
    .navbar-top-block-text p {
        font-size: 17px;
    }
    .navbar-top-block-text-btns-container {
        display: table;
        margin:0 auto;
    }
    .navbar-bot-block-right-title {
        font-size:17px;
    }
    .navbar-container {
        margin-top:40px;
    }
    .slider-container {
        margin-top: 70px;
    }
    .info-block-container {
        margin-top:60px;
    }
    .services-container {
        margin-top:60px;
    }
    .services-title > h2 {
        font-size:30px;
    }
    .services-title > p {
        font-size: 18px;
        padding: 0px 30px;
    }
    .services-card {
        width:100%;
    }
    .assurance-block-container {
        padding-top:80px;
        gap:90px;
    }
    .assurance-block-price-info h1 {
        font-size:25px;
    }
    .assurance-block-bot-text {
        font-size: 20px;
        padding: 0px 9px;
    }
    .team-container {
        padding:100px 0px;
    }
    .accordion-item {
        width: 100vw;
    }
}
.footer-bot-block-col a {
    color:#fff;
}
/* General Styles */
.report {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.report-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Content Styles */
.report-content h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.report-content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Progress Circle Styles */
.progress-circle {
    position: relative;
    width: 60px;
    height: 60px;
}

.circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start filling from the top */
    background:#e0edea;
    border-radius:50%;
}

circle {
    fill: none;
    stroke-width: 5;
    stroke: #dadada; /* Background stroke */
    stroke-dasharray: 157; /* Circumference of the circle (2 * π * r) */
    stroke-dashoffset: 157; /* Initially hidden */
    transition: stroke-dashoffset 0.5s ease-out;
}

.progress-circle[data-percent] circle {
    stroke: #007bfb;
}

.percent-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.spinner {
    display: none;
    position: absolute;
    right:5%;
    top:30%;
}
.connectWallet:disabled {
    cursor: not-allowed;     /* Show not-allowed cursor */
    pointer-events: none;    /* Prevent mouse events */
    opacity: 0.5;            /* Reduce opacity */
}
.connectWallet {
    position: relative;
}

.lds-dual-ring {
    /* change color here */
    color: #fff;
}
.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}
.lds-dual-ring {
    width: 20px;
    height: 20px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin: 4px 5px 0px 5px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@media screen and (max-width: 575px) {

    .cookies-modal {
        display: none;
    }

    .login-btn button {
        padding: 8px;
        width: 100%;
    }

    .burger-menu {
        display: none;
    }

    .f-mobile {
        display: block!important;
    }

    .benefits-btn {
        margin-top: 30px;
    }

    .team-card img {
        width: 100%;
    }
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}