/* 
    Main stylesheet - does not style individual pages but
    does manage some of the bigger scope stuff - you know the drill. 
*/

@import url("variables.css");

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
    font: inherit;
    font-family:"proxima-nova", "proxima nova", "helvetica neue", "helvetica", "arial", sans-serif;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
    line-height: 1;
    background-color: rgba(0,0,0,0.02);
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

a {
    color:var(--url-primary-color);
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.dashboard-wrapper {
    width: 1184px;
    padding-left:20px;
    padding-right:20px;
    margin-left:-20px;
    margin:0 auto;
}

h1 {
    font-size:20px;
    font-weight:bold;   
    padding-bottom:10px;
    /* padding-top:25px; */
}

h2 {
    font-size:16px;
    font-weight:bold;
    padding-bottom:7px;
    padding-top:10px;
}

hr {
    /* color:rgba(0,0,0,0.02); */
    /* background-color:rgba(0,0,0,0.03); */
    border-color:rgba(0,0,0,0.08);
}

.header-text-big {
    font-size:1.8em;
    color:rgba(0,0,0,0.4);
    width:100%;
}

.header-text-big-inline {
    font-size: 1.4rem;
    font-weight:normal;
    color: rgba(0,0,0,0.7);
    margin-bottom: 5px;
}

.code-block {
    background-color:rgba(209, 209, 209, 0.356);
    display: block;
    padding:20px;
    padding-top:0px;
    padding-left:0px;
    border-left:solid 20px #007bff;
    box-sizing: border-box;
    overflow:hidden;
}

.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

.home-episodes-list-title-subtitle {
    font-size:0.8rem;
    color:rgba(0,0,0,0.4);
}

.schedule-section {
    background-color:white;
    border-radius:3px;
    border: solid 1px rgb(6, 33, 70, 0.1);
    margin-bottom:20px;
    padding:20px;
    box-sizing:border-box;
}

@media (prefers-color-scheme: dark) {
    .header-text-big-inline {
       color:white;
    }
    html {
        background-color:rgb(39, 39, 39);
        color:white !important;
    }

    .header-text-big {
        color:white !important;
    }
    hr {
        /* color:rgba(0,0,0,0.02); */
        /* background-color:rgba(0,0,0,0.03); */
        border-color:rgba(255,255,255,0.08);
    }
    .home-episodes-list-title-subtitle {
        color:rgba(255,255,255,0.6);
        
    }
}

@media screen and (max-width: 1527px) {
    .dashboard-wrapper {
        width: calc(100% - 100px);
        padding-left:20px;
        padding-right:20px;
        margin-left:-20px;
        margin:0 auto;
    }

    
}

@media screen and (max-width: 990px) {
    .dashboard-wrapper {
        width: 100%;
        padding:20px;
        box-sizing: border-box;
        margin:0 auto;
        overflow:hidden;
        padding-bottom:0px;
    }

    .code-block {
        overflow-x: scroll;
    }

    .code-block span {
        display:inline;
    }

    .header-text-big {
        padding-top:0px;
    }

    .hide-mob {
        display:none;
        visibility:hidden;
    }
}
