﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans';
}

.resource_wrapper {
    width: 70%;
    margin: 0px auto;
    background: #eee url('./../img/radio-banner-3.png');
    padding: 30px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 20px;
    font-family: 'Noto Sans';
    min-height: 100vh;
}

    .resource_wrapper > .header {
        width: 100%;
        font-family: 'noto sans';
        font-style: normal;
        font-size: 30px;
        line-height: 150%;
        color: #FE7A15;
        text-align: left;
        margin-bottom: 20px;
        display: block;
    }

    .resource_wrapper > .link-list {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
    }

        .resource_wrapper > .link-list > div {
            padding: 5px;
            width: 25%;
            text-align: center;
            box-sizing: border-box;
        }

            .resource_wrapper > .link-list > div > a {
                border: solid 1px #800000;
                color: #800000;
                font-size: 18px;
                text-decoration: none;
                padding: 10px 15px;
                width: 100%;
                box-sizing: border-box;
                display: block;
                border-radius: 50px;
                transition: .2s ease-in-out;
                color: #fff;
                background: #800000;
            }

                .resource_wrapper > .link-list > div > a:hover,
                .resource_wrapper > .link-list > div > a.active {
                    color: #FE7A15;
                    background: #800000;
                }


    .resource_wrapper .resource__content {
        width: 100%;
    }

        .resource_wrapper .resource__content .content__heading h2 {
            font-size: 26px;
            color: #2d160f;
            font-family: 'noto sans';
            margin-bottom: 10px;
            line-height: 180%;
            font-weight: bold;
            display: none;
        }

        .resource_wrapper .resource__content .content__materials {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            width: 100%;
        }

            .resource_wrapper .resource__content .content__materials .player {
                height: 160px;
                width: 170px;
                background: #FFFFFF;
                box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
                border-radius: 10px;
                box-sizing: border-box;
                padding: 20px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                margin: 18px;
            }


.header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

.content span {
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 150%;
    color: #515151;
}

.play-pause-toggle {
    width: 40px;
    height: 40px;
}

    .play-pause-toggle:hover {
        width: 50px;
        height: 50px;
    }

    .play-pause-toggle.now-playing {
        background: url(img/Menu_Icon/pause.jpg) 50% 50% no-repeat;
        border: solid 10px #D3DD18;
    }


.player {
    background: #ddd;
    width: 300px;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.5);
}

.play {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

@media(max-width:1600px) {
}

@media(max-width:1366px) {
    .resource_wrapper {
        width: 80%;
    }

        .resource_wrapper .resource__content .content__materials .player {
            height: 150px;
            width: 165px;
        }

        .resource_wrapper > .link-list > div {
            padding: 2px;
        }

            .resource_wrapper > .link-list > div > a {
                font-size: 14px;
            }
}

@media(max-width:1280px) {
    .resource_wrapper {
        width: 80%;
    }

        .resource_wrapper .resource__content .content__materials .player {
            height: 150px;
            width: 154px;
        }
}

@media(max-width:1024px) {
    .resource_wrapper {
        width: 95%;
    }

        .resource_wrapper > .link-list {
            flex-wrap: wrap;
        }

            .resource_wrapper > .link-list > div > a {
                font-size: 18px;
            }

        .resource_wrapper .resource__content .content__materials .player {
            margin: 29px;
            width: 165px;
        }
}

@media(max-width:768px) {
    .resource_wrapper {
        width: 95%;
    }
}

@media only screen and (min-device-width : 320px) and (max-device-width : 425px) {
    .resource_wrapper {
        width: 95%;
    }

        .resource_wrapper > .header {
            font-size: 24px;
        }

        .resource_wrapper > .link-list {
            flex-direction: row;
            flex-wrap: wrap;
        }

            .resource_wrapper > .link-list > div {
                width: 50%;
            }

                .resource_wrapper > .link-list > div > a {
                    font-size: 14px;
                }

        .resource_wrapper .resource__content .content__materials {
            display: flex;
            justify-content: flex-start;
            flex-wrap: wrap;
            width: 100%;
        }

            .resource_wrapper .resource__content .content__materials .player {
                display: flex;
                flex-direction: row;
                justify-content: space-between;
                height: 70px;
                width: 100%;
                margin: 10px;
                padding: 10px;
                align-items: center;
            }

                .resource_wrapper .resource__content .content__materials .player .header,
                .resource_wrapper .resource__content .content__materials .player .content {
                    justify-content: flex-start;
                    width: 50%;
                }

    .content span {
        font-size: 11px;
    }



    /*.header {
        width: 50px;
    }


    .play-pause-toggle {
        width: 30px;
        height: 30px;
    }*/
}
