@import "webfonts/sfprotext.css";

body {
    background-color: rgba(246, 247, 251, 1.0);
}

html,
body {
    touch-action: auto;
    height: 100%;
    margin: 0;
    text-align: center;
}

#singlepodcast {
    display: block;
    border-radius: 35px;
    margin: 20px auto;
    width: 100%;
    max-width: 960px;
    /* -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08); */
}

#singlepodcast iframe {
    width: 100%;
    height: 235px;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

#radio_info {
    display: inline-block;
    border: 0.6px solid rgba(92, 105, 140, 0.3);
    border-radius: 35px;
    margin-top: 10px;
    width: 100%;
    max-width: 960px;
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    font-family: "sf-pro", "-apple-system", "Helvetica Neue", Helvetica, Arial, sans-serif;
    /* color: rgba(92, 105, 140, 0.9); */
    color: rgba(0, 0, 0, 0.6);
    background-color: white;
    -webkit-text-size-adjust:none;
    -ms-text-size-adjust:none;
    -moz-text-size-adjust:none;
    text-size-adjust:none;
    /* -webkit-box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.08); */
}

.text_center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

#podcast_copyright {
    font-family: "sf-pro", "-apple-system", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    position: relative;
    font-size: 11px;
    -webkit-text-size-adjust:none;
    -ms-text-size-adjust:none;
    -moz-text-size-adjust:none;
    text-size-adjust:none;
}

.podcast_copyright_plate {
    margin-bottom: 15px;
    margin-top: 30px;
    width: 100%;
    max-width: 960px;
}

.orange {
    color: rgba(214, 91, 55, 1.0);
}

#main {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#main.visible {
    opacity: 1;
    visibility: visible;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(246, 247, 251, 1.0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    border: 6px solid #eee;
    border-top: 6px solid #576a8f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}