
a.icon_headphones > svg {
    fill: #000;
    margin-top: 2px;
    margin-bottom: 5px;
}

.stations-map{
    margin-bottom: 64px;
}

.station-section {
    margin-bottom: 64px;
    background: #ffffff;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(240, 245, 245, 1) 5%, rgba(240, 245, 245, 1) 95%, rgba(255, 255, 255, 1) 100%);

    .title-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 24px;
        border-radius: 12px;
        background: #078049;

        .title {
            color: white;
        }

        .back-to-map {
            cursor: pointer;
            display: inline-block;
            width: 40px;
            height: 40px;
            text-align: center;
            border-radius: 50%;
            background: url("../images/btn-map.svg");
            flex-shrink: 0;
            margin-left: 10px;
        }
    }

    .text-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 24px;
        border-radius: 12px;
        background: #F0F5F5;

        .tab {
            position: relative;

        }

        .tab input {
            position: absolute;
            opacity: 0;
            z-index: -1;
        }

        .tab__content {
            max-height: 0;
            overflow: hidden;
            transition: all 0.35s;
        }

        .tab input:checked ~ .tab__content {
            max-height: fit-content;
        }

        /* Visual styles */

        .tab__label,
        .tab__close {
            display: flex;
            color: #078049;
            cursor: pointer;
        }

        .tab__label {
            justify-content: space-between;
        }

        .tab__label::after {
            content: "\276F";
            width: 1em;
            height: 1em;
            text-align: center;
            transform: rotate(90deg);
            transition: all 0.35s;
        }

        .tab input:checked + .tab__label::after {
            transform: rotate(270deg);
        }

        .tab__content p {
            margin: 0;
            padding: 1rem 0;
        }

        .tab__close {
            justify-content: flex-end;
            padding: 0.5rem 1rem;
            font-size: 0.75rem;
        }

    }

    .srp_miniplayer_metas {
        display: none;
    }


}