.blob {
    background: black;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    margin: 10px;
    height: 20px;
    width: 20px;
    margin-left: 0px;
    margin-top: -10px;
    transform: scale(1);
    animation: pulse-black 2s infinite;
    position: absolute;
    cursor: pointer;
}

.blob.yellow:hover {
    animation: pulse-yellow-hover 1s infinite;
}

.part_title {
    /*background: white;*/
    color: #a6c3e7;
    /*border-radius: 50%;*/
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    /*margin: 10px;*/
    margin-top: -11px;
    margin-left: 25px;
    height: 0px;
    width: auto;
    transform: scale(1);
    animation: pulse-black 2s infinite;
    position: absolute;
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 1);
    cursor: pointer;
}

.blob.yellow {
    background: rgba(255, 177, 66, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.5);
    animation: pulse-yellow 2s infinite;
}

.blob.yellow:hover {
    background: rgba(255, 177, 66, 1);
    box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.5);
    animation: pulse-yellow 1s infinite;
}

.availableLanguages {
    background-color: white;
    border: 1px solid black;
    top: 20px;
    left: 20px;
    position: fixed;
    z-index: 99999999999999999999999;
}

.part:hover,
.furnace:hover {
    animation: pulse-block 1s infinite;
    cursor: pointer;
}

@keyframes pulse-block {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 5px rgb(166, 195, 231);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(51, 163, 255, 0.6);
    }
}

@keyframes pulse-yellow {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 177, 66, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
    }
}

@keyframes pulse-yellow-hover {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0.4);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 30px rgba(255, 177, 66, 0);
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 177, 66, 0);
    }
}