.icon-wrapper {
    width: 130px;
}

.icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 130px;
    margin: 1rem 0px;
}

.icon__disabled-badge {
    position: absolute;
    top: -7px;
    left: -7px;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: large;
    align-content: center;
    border-radius: 50%;
    background: #7c7c7c;
    color: white;
    z-index: 1;
}

.icon__alert-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 29px;
    height: 29px;
    text-align: center;
    font-size: large;
    align-content: center;
    border-radius: 50%;
    background: #ff2525;
    z-index: 1;
}

.icon-image {
    border-radius: 20%;
    width: 130px;
    height: 130px;
}

.grayout {
    filter: grayscale(0.9);
}

@media screen and (max-width: 768px) {
    .icon-wrapper {
        width: 70px;
    }

    .icon {
        width: 70px;
        height: 70px;
        margin: 0.8rem 0px;
    }

    .icon__disabled-badge {
        width: 20px;
        height: 20px;
        font-size: small;
    }

    .icon__alert-badge {
        width: 20px;
        height: 20px;
    }

    .icon-image {
        width: 70px;
        height: 70px;
    }

    .subtitle {
        font-size: 0.8rem;
    }
}