﻿.interactive-image {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.interactive-image img {
    width: 100%;
    height: auto;
}

.part {
    position: absolute;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgb(255, 255, 255);
    background: transparent;
    box-shadow: 0px 0px 6px 1px rgb(255, 255, 255);
}

.part:hover::after {
    content: attr(data-part-name);
    position: absolute;
    left: 120%;
    top: -20px;
    white-space: nowrap;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    z-index: 10;
}

#part-info {
    margin-top: 20px;
    border-top: 1px solid #19dccc;
    padding-top: 10px;
    line-height: 20px;
    height: 130px;
    font-size: 15px;
}

#part-info a {
    color: aquamarine;
    text-decoration: none;
}

.overlay-text-made {
    text-align: right;
    padding-top: 5px;
}

.overlay-text-ludvi {
    position: absolute;
    left: 270px;
    top: 500px;
    transform: translate(-50%, -50%);
    background-color: rgba(34, 34, 34, 0.46);
    color: white;
    padding: 17px 10px;
    font-size: 35px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px 1px rgb(255, 255, 255);
}

#components {
    border-top: 1px solid #19dccc;
    padding-top: 10px;
    line-height: 25px;
    margin-bottom: 20px;
    font-size: 15px;
}

#components ul {
    list-style-type: square;
}

#components strong {
    font-size: 17px;
}

#components a {
    color: aquamarine;
    text-decoration: none;
}