.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 {
    opacity: 1;
}
.sound-list__item_active .sound-list__img-wrapper:before {
    /*box-shadow: 0 0 45px 35px #FF0000;*/
    box-shadow: 0 0 20px #FF0000;
    opacity: 1;
}
.sound-list__item_active .sound-list__img-wrapper:after {
    animation: pulse 2s ease infinite;
    opacity: 1;
}
.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: 85%;
    height: 0;
    padding-bottom: 85%;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
    opacity: 0
}
.sound-list__img-wrapper:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: 50%;
    height: 0;
    padding-bottom: 50%;
    border: 3px solid #FF0000;
    border-radius: 50%;
    filter: blur(2px);
    z-index: 1;
    opacity: 0;
    box-sizing: content-box;
}
/*.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;
    max-width: 140px
}
.sound-list__name {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.12;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 2px 1px 24px rgba(255, 255, 255, 0.48);
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
.sound-list__item_large .sound-list__img {
    max-width: 150px;
}
.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__item_large .sound-list__img-wrapper:before {
    width: 100%;
    padding-bottom: 100%;
}
.sound-list__item_large .sound-list__img-wrapper:after {
    width: 65%;
    padding-bottom: 65%;
}

.sound-list__wrapper_mt {
    margin-top: 48px;
}

.sound-list__text {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #FFFFFF;
}

@keyframes pulse {
    0% {
        transform: translate(-50%,-50%) scale(1);
        opacity: 1;
    }
    40% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%,-50%) scale(2.2);
        opacity: 0;
    }
}

.sound-example__wrapper {
    position: relative;
    height: 250px;
}
.sound-example {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: background 0.3s ease;
    z-index: 10;
    padding-top: 20px;
}
.sound-list_fixed {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    min-width: 320px;
    background: #111;
}
@media screen and (max-width: 767px) {
    .sound-list_fixed {
        top: 50px;
    }
}

@media screen and (max-width: 991px) {
    .sound-list__name {
        font-size: 15px;
    }
}
@media screen and (max-width: 575px) {
    .sound-list__name {
        font-size: 14px;
    }
    .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;
    }
}
@media screen and (min-width: 992px) {
    .sound-list__item:not(.sound-list__item_large) {
        max-width: 20%;
        flex: 0 0 20%;
    }
}

.pdy0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}