﻿.p-desc {
    line-height: 30px;
    word-spacing: 3pt;
    font-size: 15px;
}
.wizard .steps ul li span.number {
    display: none; /* Nascondi i numeri dei pulsanti */
}

.valid-comparison {
    text-align: center;
    font-size: 50px;
    color: #0f9122;
    font-weight: 400;
}
.invalid-comparison {
    text-align: center;
    font-size: 50px;
    color: darkred;
    font-weight: 400;
}
.wiz-title {
    font-size: 43px;
    line-height: 1.32;
    font-weight: 700;
}

.loader-div {
    background-color: #65667c2e;
    position: absolute;
    backdrop-filter: blur(3px);
    border-radius: 10px;
    height: 100%;
    text-align: center;
}

.copy-json {
    padding: 5px;
    right: 0px;
    width: 200px;
    background-color: #0048ff36;
    position: absolute;
    backdrop-filter: blur(3px);
    border-bottom-left-radius: 10px;
    cursor: pointer;
    top: 0px;
}

    .copy-json:hover {
        background-color: #0048ff5c;
        color: white;
    }

.hash-validated {
    animation-name: toGreen;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.hash-invalid {
    animation-name: toRed;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

@keyframes toGreen {
    to {
        color: #008a14;
    }
}

@keyframes toRed {
    to {
        color: red;
    }
}


@media(max-width:990px) {
    .padding-mobile {
        padding: 30pt !important;
    }
}

.bc-value {
    font-weight: 600;
    margin-left: 10px;
}
.bc-padded {
    padding-bottom: 60px;
    padding-top: 60px;
}

b {
    font-weight: 500;
}

.form-control {
    background-color: #f8fbfd;
    border: 1px solid #d7d7e9;
}

    .form-control::placeholder {
        color: #d7d7e9;
    }

svg {
    display: block;
    height: 80pt;
    width: 80pt;
    color: #63d77c;
    margin: 0 auto;
    /* SVG path use currentColor to inherit this */
}

.animated-circle {
    stroke-dasharray: 76;
    stroke-dashoffset: 76;
    -webkit-animation: draw 1s forwards;
    animation: draw 1s forwards;
}

.animated-tick {
    stroke-dasharray: 18;
    stroke-dashoffset: 18;
    -webkit-animation: draw 1s forwards 1s;
    animation: draw 1s forwards 1s;
}

@-webkit-keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw {
    to {
        stroke-dashoffset: 0;
    }
}

.text-success {
    font-weight: 600;
    font-size: 15pt;
    color: #63d77c;
}

    .text-success:hover {
        color: #63d77c;
    }

.text-error {
    font-weight: 600;
    font-size: 15pt;
    color: #cd4848;
}
