/*
 * Investment Gain Counter - Design
 */

.igc-demo,
.igc-demo * {
    box-sizing: border-box;
}

.igc-demo {
    width: min(100%, 400px);
    margin: 20px auto;
    padding: 34px 26px 24px;
    text-align: center;
    color: #f1f1f1;
    font-family: Arial, Helvetica, sans-serif;

    background:
        linear-gradient(145deg, #414141 0%, #303030 55%, #292929 100%);

    border: 2px solid #858585;
    border-radius: 20px;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.18),
        inset 0 -2px 8px rgba(0,0,0,.45),
        0 10px 22px rgba(0,0,0,.45);
}

.igc-title {
    margin-bottom: 29px;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 1px 2px #000;
}

.igc-invest {
    margin-bottom: 21px;
    font-size: 16px;
    line-height: 1.3;
}

.igc-invest strong {
    color: #ffe000;
    font-weight: 700;
    margin-left: 3px;
    text-shadow: 0 1px 2px #000;
}

.igc-label {
    margin-bottom: 9px;
    font-size: 18px;
    line-height: 1.2;
    color: #e7e7e7;
    text-shadow: 0 1px 2px #000;
}

.igc-total-label {
    margin-top: 20px;
}

.igc-display-wrap {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 12px;

    background: linear-gradient(#3d3d3d, #262626);
    border: 2px solid #777;
    border-radius: 15px;

    box-shadow:
        inset 0 1px 2px rgba(255,255,255,.16),
        inset 0 -4px 8px rgba(0,0,0,.55),
        0 4px 8px rgba(0,0,0,.65);
}

.igc-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
}

.igc-digit {
    position: relative;
    flex: 0 0 auto;

    width: 34px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f0f0f0;
    font-family: "Courier New", monospace;
    font-size: 29px;
    font-weight: 400;
    line-height: 1;

    background:
        linear-gradient(
            to bottom,
            #464646 0%,
            #252525 47%,
            #111 52%,
            #3b3b3b 100%
        );

    border: 2px solid #080808;

    box-shadow:
        inset 1px 1px 1px rgba(255,255,255,.20),
        inset -1px -1px 2px rgba(0,0,0,.9),
        0 1px 2px #000;

    text-shadow:
        1px 1px 1px #000,
        0 0 2px rgba(255,255,255,.45);

    overflow: hidden;
}

.igc-digit::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255,255,255,.20);
    box-shadow: 0 1px 1px #000;
    pointer-events: none;
}

.igc-separator {
    flex: 0 0 auto;
    width: 14px;
    color: #e6e6e6;
    font-family: Arial, sans-serif;
    font-size: 27px;
    line-height: 1;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

@media (max-width: 420px) {
    .igc-demo {
        padding: 28px 12px 20px;
        border-radius: 17px;
    }

    .igc-title {
        font-size: 21px;
    }

    .igc-digit {
        width: 29px;
        height: 38px;
        font-size: 25px;
    }

    .igc-separator {
        width: 11px;
        font-size: 24px;
    }

    .igc-display-wrap {
        padding: 8px 7px;
    }
}

@media (max-width: 340px) {
    .igc-digit {
        width: 25px;
        height: 35px;
        font-size: 22px;
    }

    .igc-separator {
        width: 9px;
        font-size: 21px;
    }
}
