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(--c2);
    color: var(--c7);
    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;
}

.t-t-dummy {
    background: var(--c2);
    color: var(--c4);
    display: grid;
    grid-template-columns: var(--m1) auto var(--m1);
    height: 50px;
    position: sticky;
    top: 0px;
    z-index: 2;
}

.t-t {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    align-items: center;
    margin: 5px 0px;
}

.t-t-l-container {
    justify-self: start;
    display: grid;
    grid-template-columns: repeat(2, min-content);
    font-weight: bold;
}

#t-t-l {
    width: 1.5rem;
}

#t-t-r {
    justify-self: end;
}

#t-t-r div {
    height: 2px;
    width: 25px;
    background: var(--c4);
    margin: 5px 0px;
}

.t-b-dummy {
    background: var(--c2);
    color: var(--c4);
    display: grid;
    grid-template-columns: var(--m1) auto var(--m1);
    height: 30px;
}

.t-b {
    font-weight: bold;
    display: grid;
    justify-content: center;
    align-content: start;
    font-size: var(--s0);
}

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

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

.main-pop-o:hover {
    cursor: pointer;
}

.main-pop-t {
    display: grid;
    grid-template-columns: repeat(3, 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 {
    display: grid;
    justify-content: center;
    font-size: var(--s1);
    font-weight: bold;
}

#t-t-r-pop {
    background: var(--c1);
    color: var(--c4);
    opacity: 1;
    z-index: 3;
    position: fixed;
    left: 50%;
    transform: translatex(-50%);
    white-space: nowrap;
    box-shadow: 0 0 30px var(--c2);
    position: fixed;
    bottom: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    width: 100%;
}

.t-t-r-pop-o {
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 15px;
    padding: 10px;
}

#t-t-t-r-pop-t-c {
    display: grid;
    grid-template-columns: repeat(2, min-content);
    align-content: center;
    align-items: center;
    margin-top: 10px;
}

#t-t-r-pop-t-l {
    margin-top: 5px;
    margin-left: 8px;
    font-size: 1.4rem;
}

#t-t-r-pop-img {
    width: 1.5rem;
    display: inline;
}

.t-t-r-pop-o {
    background: var(--c1);
    border: 1px solid var(--c3);
    color: var(--c4);
    font-weight: normal;
}

.t-t-r-pop-1-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
    padding: 0;
}

#t-t-r-pop-1,
#t-t-r-pop-2 {
    background: var(--c9);
    color: var(--c1);
    margin-bottom: 5px;
    font-weight: bold;
    border: 1px solid var(--c9);
}

#t-t-r-pop-3 {
    background: var(--c9);
    color: var(--c1);
    font-weight: bold;
    border: 1px solid var(--c9);
}

#t-t-r-pop-1 {
    margin-left: 20px;
    margin-right: 5px;
}

#t-t-r-pop-2 {
    margin-left: 5px;
    margin-right: 20px;
}

.msg {
    color: var(--c1);
    background: var(--c5);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    padding: 5px var(--m1);
}

#top-title {
    font-size: var(--s1);
    padding: 0 var(--m1) 5px var(--m1);
    font-weight: bold;
}

.content {
    padding: 5px var(--m1) 0px var(--m1);
}

ol {
    margin: 0;
    padding: 0;
    padding: 0px var(--m1) 0px 35px;
}

ul {
    margin: 0;
    padding: 0px 0 0px 10px;
    list-style-type: disc;
}

ol li {
    padding: 5px 0;
}

ul li {
    padding: 5px 0;
}

.footer-dummy {
    height: 50px;
}

.highlight-me {
    color: var(--c3);
    color: var(--c9);
    font-weight: bold;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

#pay-to-activate-menu {
    background: var(--c9);
    border: none;
    color: var(--c1);
    font-weight: bold;
    position: relative;
    border-radius: 10px;
}

#pay-to-activate-menu:before {
    content: '';
    background: linear-gradient(45deg, #002bff, #00ffd5, #002bff, #00ffd5, #002bff, #00ffd5, #002bff, #00ffd5, #002bff, #00ffd5);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    border-radius: 10px;
}

.titles-main {
    text-align: center;
    width: calc(100% - var(--m1) - var(--m1));
    padding: 20px var(--m1) 15px var(--m1);
    /* padding: 20px 0 15px 0; */
    font-weight: bold;
    /* border-bottom: solid 2px var(--c8); */
    color: var(--c4);
}

#title-written {
    border-top: solid 2px var(--c8);
    margin-top: 30px;
    background: var(--c10);
    position: relative;
}

#video-wrapper,
#video-wrapper2 {
    display: grid;
    justify-content: center;
    justify-items: center;
    padding: 0 var(--m1);
    margin: 0;
}

#video,
#video2 {
    margin: 0;
    width: 600px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--c2);

}

#video-wrapper-iframe-big {
    display: grid;
    justify-content: center;
    justify-items: center;
    grid-template-columns: var(--m1) calc(100% - var(--m1) - var(--m1)) var(--m1);
    max-height: 337.5px;
}

#video-wrapper-iframe {
    /* display: grid; */
    /* justify-content: center; */
    /* justify-items: center; */
    /* padding: 0 var(--m1); */
    /* margin: 0; */
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: 100%; */
    max-width: 600px;
    /* max-width: 600px; */
    padding-top: 56.25%;
    /* margin-left: -5%; */
    /* margin-right: -5%; */
}

iframe {
    /* margin: 0; */
    /* max-height: 100%; */
    /* max-width: 100%; */
    /* max-width:100%; */
    justify-self: center;
    border-radius: 10px;
    box-shadow: 0 0 10px var(--c2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: calc(100% - 5px);
    height: calc(100% - 3px);
    max-width: 600px;
    max-height: 337.5px;
}

#written {
    background: var(--c10);
}

#read {
    transform: translateY(-100px);
    height: 20px;
    width: 20px;
    background: none;
    z-index: -10;
}

.new-feature {
    right: calc(var(--m1) + 8px);
    transform: translateY(2px) rotate(45deg);
    text-align: center;
    background: transparent;
    border: none;
    position: absolute;
    margin: 0;
    padding: 0;
    font-size: 0.7rem;
    display: inline;
    color: #0afc4a;
    color: #00ffe5;
    font-weight: bold;
}
.pop-main {
    background: var(--c1);
    opacity: 1;
    z-index: 5;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translatey(-50%) translatex(-50%) rotateY(0deg);
    width: 300px;
    max-width: 80vw;
    white-space: nowrap;
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 20px var(--c2);
}