body,
span,
p,
a,
button,
input,
ul,
li,
button:focus {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    text-decoration: none;
    background: inherit;
    font-family: inherit;
    color: inherit;
    border: inherit;
    margin: inherit;
    padding: inherit;
    height: inherit;
    outline: none;
}

body {
    background: var(--c1);
    color: var(--c4);
    font-family: sans-serif;
}

button:hover {
    cursor: pointer;
}

:root {
    --dark-blue: #1B222B;
    --black: #0D0D0D;
    --blue: rgb(0, 100, 162);
    --off-blue: #252e3b;
    --white: white;
    --green: #92D050;
    --red: #FF2525;
    --grey: #d3d3d3;
    --light-grey: #7F7F7F;
    --light-blue: #CDF2FF;
    --m1: 20px;
    --m2: 40px;
    --c1: var(--dark-blue);
    --c2: var(--black);
    --c3: var(--blue);
    --c4: var(--white);
    --c5: var(--green);
    --c6: var(--red);
    --c7: var(--grey);
    --c8: var(--light-grey);
    --c9: var(--light-blue);
    --c10: var(--off-blue);
    --c11: #9da4c7;
    --s0: 1.1rem;
    --s1: 1rem;
    --s2: 0.9rem;
    --s3: 0.8rem;
    --s4: 0.7rem;
}

#pop {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: var(--c8);
    opacity: 0.85;
    z-index: 5;
}

.pop-main {
    background: var(--c1);
    opacity: 1;
    z-index: 5;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translatey(-50%) translatex(-50%) rotateY(0deg);
    width: 80%;
    max-width: 300px;
    white-space: nowrap;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 20px var(--c2);
}

.premium-pop-p {
    text-align: center;
    white-space: normal;
    font-size: var(--s2);
    line-height: 1.4;
    margin: 10px 10px;
}

.main-pop-t-l {
    display: grid;
    justify-content: start;
    align-items: start;
}

.main-pop-t-l span {
    transform: translateY(-4px);
}

#days-wr {
    /* overflow-x: auto;
    scrollbar-color: var(--c9) transparent !important;
    scrollbar-width: thin !important; */
}

/* 
#days-wr::-webkit-scrollbar {
    height: 6px;
    width: 4px;
    background: transparent;
}

#days-wr::-webkit-scrollbar-thumb:horizontal {
    background: var(--c9);
} */

.day-item,
.day-item:active,
.day-item:focus {
    display: inline;
    white-space: nowrap;
    background: #dfecff;
    background: white;
    padding: 5px 0px;
    color: black;
    border: solid 1px black;
    border-bottom: solid 2px white;
    border-top: solid 2px white;
    text-align: left;
}

.day-item p:nth-child(1) {
    font-size: var(--s3);
    border: none;
    margin-left: 5px;
    padding: 0;
}

.day-item p:nth-child(2) {
    font-size: var(--s4);
    border: none;
    margin-left: 5px;
    padding: 0;
}

.active,
.active:active,
.active:hover,
.active:focus,
.day-item:hover {
    background: #4242cd;
    color: white;
    font-weight: bold;
    border-color: white;
    border-width: 1px;
    /* border-top-width: 2px; */
    /* border-bottom-width: 2px; */
}

.deadBtn,
.deadBtn:active,
.deadBtn:focus,
.deadBtn:hover {
    background: #b4b4b4;
    border-width: 1px;
    border-color: black;
    color: black;
    font-weight: normal;
    cursor: unset;
}

/* #fullCalendar {
    background: #4242cd;
    padding: 0;
    margin: 0;
    text-align: center;
    border: solid 2px white;
    border-radius: 3px;
    padding: 4px;
    margin: 3px 0;
    width: 140px;
    font-size: var(--s2);
} */
.input-container {
    display: inline-block;
}

.input-container input {
    background: transparent;
    text-align: center;
    font-size: 0;
    box-sizing: border-box;
    outline: 0;
    position: relative;
    margin: 0;
    padding: 0;
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    height: 1rem;
    margin: 0;
    padding: 0;
}

.calendarDayWr {
    display: grid;
    grid-template-columns: min-content auto;
    align-content: center;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
}

.calendarDayDate {
    display: grid;
    grid-template-columns: 1fr;
}

.dayPreview {
    text-align: center;
    padding: 3px 5px;
    margin-right: 10px;
    border-radius: 2px;
    width: min-content;
    border-style: solid;
    border-width: 1px;
    background: white;
    border: black;
    color: black;
    font-weight: normal;
}

.deadPreview {
    display: none;
}

@media screen and (max-width: 920px) {
    .dayPreview {
        display: none;
    }

    .calendarDayWr {
        column-gap: 0px;
    }
}

#titles-outer {
    display: grid;
    position: sticky;
    top: 51px;
    z-index: 2;
    background: #202854;
}

@media screen and (min-width: 745px) {
    #titles-outer {
        top: 86px;
    }
}

#test-table,
#test-table-titles,
#titles-symbol {
    align-content: start;
    overflow-x: auto;
    cursor: pointer;
    scrollbar-color: var(--c9) #191d45 !important;
    scrollbar-width: thin !important;
}

#titles-symbol {
    border-right: solid 2px black;
}

#test-table-titles::-webkit-scrollbar,
#titles-symbol::-webkit-scrollbar {
    height: 6px;
    width: 4px;
    background: none;
}

#test-table-titles::-webkit-scrollbar-track:horizontal,
#titles-symbol::-webkit-scrollbar-track:horizontal {
    background: none;
}

#test-table-titles::-webkit-scrollbar-thumb:horizontal,
#titles-symbol::-webkit-scrollbar-thumb:horizontal {
    background: var(--c9);
    /* border-radius: 10px; */
}

#test-table {
    scrollbar-width: none !important;
}

#test-table-titles2::-webkit-scrollbar {
    appearance: none;
    -webkit-appearance: none;
    display: none;
}

#test-table::-webkit-scrollbar {
    appearance: none;
    -webkit-appearance: none;
    display: none;
}

.test-table-item {
    min-width: 100px;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    height: min-content;
    margin: 0px;
    padding-bottom: 0px;
    /* border-right: solid 2px black; */
}

.test-table-item1 {
    border: none;
    border-right: solid 2px black;
    display: grid;
    grid-template-columns: 100%;
    justify-content: start;
    background: #202854;
    max-width: 100% !important;
}

.test-table-item1 a {
    justify-self: start;
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.test-table-item-row {
    margin: 0;
    padding: 0;
    height: 50px;
    display: grid;
    align-content: center;
    justify-content: center;
    color: var(--c4);
    background: #202854;
    justify-self: min-content;
    z-index: 1;
}

.test-table-item-row-symbol {
    margin: 0;
    padding: 0;
    height: 50px;
    display: grid;
    align-content: center;
    justify-content: center;
    color: var(--c4);
    background: #202854;
    justify-self: min-content;
    z-index: 1;
}

#column-symbols {
    /* padding-left: 15px; */
    background: #202854;
}

.column-wr {
    text-align: center;
}

#dates-column,
#return-column,
#spy-column,
#rel-return-column {
    background: none;
}

@media screen and (min-width: 380px) and (max-width: 440px) {
    .test-table-item {
        min-width: 110px;
    }
}

.column-title {
    height: 40px;
    text-align: center;
    display: grid;
    grid-template-columns: auto min-content;
    justify-content: center;
    align-content: end;
    align-items: end;
    padding-bottom: 10px;
    font-size: var(--s3);
    background: var(--c2);
    background: #202854;
    background: #191d45;
    cursor: pointer;
}

.column-title::after {
    content: '⇅';
    margin-left: 2px;
    color: var(--c9);
}

.info-icon {
    color: var(--c9);
    font-size: var(--s1);
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.m-rw-l {
    padding-left: 2px;
    border: none;
    display: grid;
    /* justify-content: stretch; */
}

.m-rw-l-t {
    font-size: var(--s1);
    font-weight: bold;
}

.m-rw-l-b {
    display: grid;
    grid-template-columns: repeat(2, min-content);
    font-size: var(--s3);
    white-space: normal;
}

.m-rw-l-b-r {
    color: var(--c5);
}

.makegreen {
    color: var(--c5);
}

.makered {
    color: var(--c6);
}

.prePost-wording {
    background: #7d4793;
}

.titles-top {
    background: #191d45;
    min-width: 100px;
    cursor: pointer;
}

#prePost-header {
    background: #5f0085;
    text-align: center;
    min-width: 400px;
    padding: 3px 0;
    border-bottom: solid 1px black;
    cursor: context-menu;
}

@media screen and (min-width: 380px) and (max-width: 440px) {
    .titles-top {
        min-width: 110px;
    }

    #prePost-header {
        min-width: 440px;
    }
}

#sliders-wr {
    display: grid;
    grid-template-columns: auto auto;
    align-content: center;
    row-gap: 20px;
    margin-top: 10px;
    justify-content: center;
    column-gap: 40px;
}

@media screen and (max-width: 630px) {
    #sliders-wr {
        grid-template-columns: auto;
    }
}

.main-pop-t {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.main-pop-t-l {
    display: grid;
    justify-content: start;
    align-items: start;
}

.main-pop-t-l span {
    transform: translateY(-4px);
}

.main-pop-t-c {
    text-align: center;
    display: grid;
    justify-content: center;
    font-size: var(--s1);
    font-weight: bold;
    white-space: normal;
}

.main-pop-o,
.main-pop-o:active,
.main-pop-o:focus,
.main-pop-o:hover {
    background: var(--c9);
    font-size: var(--s1);
    font-weight: bold;
    text-align: center;
    margin: 10px;
    color: var(--c1);
    border-radius: 3px;
    display: grid;
    align-content: center;
    white-space: normal;
    cursor: pointer;
}

.reveal-me,
.reveal-me:focus {
    width: 90%;
    height: 36px;
    margin: 7px;
    background: var(--c9);
    color: var(--c1);
    font-size: var(--s3);
    border-radius: 3px;
    font-weight: bold;
    border: none;
}

#premium-pop-p2 span {
    margin: 0;
    text-decoration: underline;
    color: var(--c9);
}

#premium-pop-t-c {
    font-size: var(--s0);
}

.premium-pop-p {
    text-align: center;
    white-space: normal;
    font-size: var(--s2);
    line-height: 1.4;
    margin: 10px 10px;
}

#premium-pop-lm {
    margin-bottom: -5px;
}

#premium-pop-p1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

#premium-pop-p2 {
    font-size: var(--s3);
}

.blinking {
    animation: blinkingText 1.0s 1;
}

@keyframes blinkingText {
    0% {
        color: transparent;
    }

    20% {
        color: var(--c4);
        text-shadow: 0 0 2px var(--c9), 0 0 3px var(--c9), 0 0 4px var(--c9);
    }

    60% {
        color: var(--c4);
        text-shadow: 0 0 2px var(--c9), 0 0 3px var(--c9);
    }

    70% {
        color: var(--c4);
        text-shadow: 0 0 2px var(--c9);
    }

    100% {
        color: var(--c4);
    }
}

#b-b-pop-scrollable::-webkit-scrollbar {
    height: 4px;
    width: 6px;
    background: transparent;
}

#b-b-pop-scrollable::-webkit-scrollbar-track:vertical {
    background: transparent;
}

#b-b-pop-scrollable::-webkit-scrollbar-thumb:vertical {
    background: var(--c9);
}

#b-b-pop-scrollable {
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 60vh;
    -ms-overflow-style: none;
    margin-bottom: 15px;
    scrollbar-color: var(--c9) transparent !important;
    scrollbar-width: thin !important;
}

.explained-o {
    display: grid;
    justify-content: stretch;
    justify-items: center;
    align-content: center;
    margin: 0px 10px;
    padding: 8px 0;
    border-bottom: solid 1px var(--c8);
}

.explained-o div:nth-child(1) {
    width: 100%;
}

.explained-but,
.explained-but:focus {
    display: grid;
    grid-template-columns: repeat(2, min-content);
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100%;
}

.first-explained {
    margin-top: 10px;
}

.last-explained {
    border: none;
}

.explained-but-r {
    font-size: 1.5rem;
}

.explained-content {
    text-align: left;
    white-space: normal;
    font-size: var(--s2);
    line-height: 1.4;
    color: var(--c7);
    width: 100%;
    padding-bottom: 2px;
}

.explained-but-l {
    font-size: var(--s2);
}

@media screen and (max-width: 335px) {
    .explained-but-l {
        font-size: var(--s3);
    }
}

@media screen and (max-width: 305px) {
    .explained-but-l {
        font-size: var(--s4);
    }
}

.explained-title {
    text-decoration: underline;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.youtube-video-container {
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}

.youtube-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    transform: translateX(-2px);
}
/* note */