.position-plus {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    color: #000000;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 30px;
    cursor: pointer;
    border: dashed 1px #000000;
    transform: scale(1);
    background: white;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
    animation: pulse-black 2s infinite;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    z-index: 2
}

.position-popup-close {
    position: absolute;
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 50%;
    color: #000000;
    top: -10px;
    left: 92%;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    border: solid 1px #000000;
    background: white;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    z-index: 2
}

#position-front-popup {
    display: none;
}

.textile-positions-popup {
    background: white;
    width: 60%;
    min-height: 200px;
    position: absolute;
    left: 20%;
    top: 10%;
    z-index: 3;
    border: dashed 1px #000000;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    color: #000000;
    padding: 20px;
}

.textile-positions-container {
    height: 600px;
}

.textile-positions-container .background-image {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.position-plus:hover {
    color: #ffffff;
    background: black;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

@keyframes pulse-black {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

#shirt-front-nacken {
    left: calc(50% - 20px);
    top: 12%;
}

#shirt-back-nacken {
    left: calc(50% - 20px);
    top: 11%;
}

#shirt-back-nacken-wide {
    left: calc(50% - 20px);
    top: 20%;
}

#shirt-front-aermel-rechts {
    left: calc(18% - 20px);
    top: 34%;
}

#shirt-front-aermel-links {
    left: calc(82% - 20px);
    top: 34%;
}

#shirt-front-brust-links {
    left: calc(62% - 20px);
    top: 30%;
}

#shirt-front-brust-rechts {
    left: calc(37% - 20px);
    top: 30%;
}

#shirt-front-big-center {
    left: calc(50% - 20px);
    top: 46%;
}

#shirt-back-big-center {
    left: calc(50% - 20px);
    top: 43%;
}