.sound-list__wrapper {
    padding-top: 40px;
    padding-bottom: 120px;
    max-width: 900px;
    margin: 0 auto;
}
.sound-list__item {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.sound-list__hint {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,100%);
    background: #fff;
    padding: 8px;
    border-radius: 3px;
    z-index: 5;
    font-size: 14px;
    line-height: 1.4;
    font-weight: normal;
    color: #333;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s ease;
    opacity: 0;
    visibility: hidden;
    min-width: 160px;
}
.sound-list__hint:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 5px 0 5px;
    border-color: #ffffff transparent transparent transparent;
    margin-top: -1px;
    transform: translate(-50%,0);
}
.sound-list__item:hover .sound-list__img-wrapper:before,
.sound-list__item_active .sound-list__img-wrapper:before {
    box-shadow: 0 0 45px 35px #FF0000;
}
.sound-list__item_active .sound-list__img-wrapper:after {
    animation: pulse 2s ease infinite;
}
.sound-list__item:hover .sound-list__name,
.sound-list__item_active .sound-list__name {
    color: #D0002D;
}
.sound-list__item_active .sound-list__hint {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,75%);
}
.sound-list__img-wrapper {
    display: inline-flex;
    flex: 1 1 auto;
    align-items: center;
    position: relative;
}
.sound-list__img-wrapper:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    box-shadow: 0 0 50px 50px rgba(0,0,0,1);
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
    z-index: 2;
}
.sound-list__img-wrapper:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 110px;
    height: 110px;
    border: 3px solid #FF0000;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 1;
}
.sound-list__item_large .sound-list__img-wrapper:before,
.sound-list__item_large .sound-list__img-wrapper:after {
    width: 150px;
    height: 150px;
}
.sound-list__img {
    position: relative;
    z-index: 3;
}
.sound-list__name {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
.sound-list__item_large .sound-list__name {
    font-size: 42px;
}
.sound-list__name + .sound-list__img-wrapper,
.sound-list__img-wrapper + .sound-list__name {
    margin-top: 16px;
}
.sound-list__audio {
    display: none;
}

.sound-list__wrapper_mt {
    margin-top: 48px;
}
@keyframes pulse {
    0% {
        transform: translate(-50%,-50%) scale(1);
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%,-50%) scale(2.2);
        opacity: 0;
    }
}

@media screen and (max-width: 991px) {
    .sound-list__name {
        font-size: 24px;
    }
}
@media screen and (max-width: 575px) {
    .sound-list__name {
        font-size: 16px;
    }
    .sound-list__img-wrapper:before {
        width: 40%;
        height: 40%;
    }
    .sound-list__img-wrapper:after {
        width: 56%;
        height: 68%;
    }
}
@media screen and (max-width: 767px) {
    .sound-list__img {
        max-width: 80%;
        margin: 0 auto;
    }
}
