@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;

    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    transition: background-color 0.2s ease;
    transition: background 0.2s ease;
    -webkit-transition: background-color 0.2s ease;
    -webkit-transition: background 0.2s ease;

    scroll-behavior: auto;
}


/*https://palettes.shecodes.io/palettes/267*/
:root {
    --head: linear-gradient(180deg, rgba(227,227,227,1) 0%, rgba(227,227,227,1) 95%, rgba(227,227,227,0) 100%);
    --p1: #FFFFFF;
    --p2: #4b698e;
    --p3: #86bcff;
    --p4: #374d68;
    --p5: #e3e3e3;
    --p5s: #e3e3e3;
    --p6: #000000;
    --p7: #222222;
    --p8: #f2f2f2;
    --p9: #455d7a;
    --p9s: #455d7a;
    --p10: #233142;
    --p11: #5a7aa0;
    --p12: #f95959;
    --p13: #6EAFFF;
}

/*https://palettes.shecodes.io/palettes/319*/
:root[data-theme='dark']{
    --head: linear-gradient(180deg, #1c2734 0%, #1c2734 95%, #1c273400 100%);
    --p1: #f6f6f6;
    --p5: #1c2734;
    --p9s: #e3e3e3;
    --p10: #6b90cc;
    --p12: #c54646;
}

body {
    background-color: var(--p5);
    color: var(--p1);
    margin: 0;
    padding: 0;

    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;

    font-size: 1.5vh;
}

/* styles.css */
@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .loader {
    border: 0.4vh solid var(--p10);
    border-top: 0.4vh solid var(--p1);
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: spin 2s linear infinite;
  }
  

/*
li {
    list-style-type: none;
}
*/
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

a,
a:hover,
a:visited {
    cursor: pointer;
    text-decoration: none;
    text-decoration-color: none;
    font-weight: 500;
    color: var(--p1);
}

#linkss {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    margin: 0.5vh 0;
}

#linkss a,
#linkss a:visited {
    background-color: var(--p2);
    color: var(--p1);
    border: var(--p1) solid 0.2vh;
    border-radius: 0.5vh;
    padding: 0.5vh;
    font-size: 1.5vh;
    font-weight: 450;
    max-width: max-content;
    cursor: pointer;
    line-height: 1;
    margin: 0.25vh 0.25vh 0.25vh 0;
}

#linkss a:hover {
    border: var(--p10) solid 0.2vh; 
}

.ton.animate {
    opacity: 1;
    /*animation: fade-in 0.3s ease-in 1s forwards;*/
}

.ton2 {
    max-width: 100%;
    height: 79vh;
    overflow: auto;
}

.ton2b {
    display: block;
    position: fixed;
    height: 1vh;
    width: 12.5vh;
    background-color: var(--p5);
    border-top: solid 1vh var(--p5);
    filter: blur(0.3vh);
    z-index: 6;
    content: '　';
}

.ton2b.f {
    top: 18.5vh;
    left: 0.5vh;
}
.ton2b.s {
    bottom: 0vh;
    left: 0.5vh;
}

@keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
  
@keyframes fade-out {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
}

.ton {
    transform: rotate(-90deg);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: fixed;
    top: 8vh;
    color: var(--p10);
    left: -1vh;
}

.navbar {
    position: fixed;
    top: 18.4vh;
    left: 0;
    padding: 1vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
}

.footer {
    position: fixed;
    top: 0vh;
    right: 0;
    padding: 0vh;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
    z-index: 3;
    flex-direction: column;
}

.tdlrt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.tag {
    background-color: var(--p12);
    color: var(--p1);
    border: var(--p1) solid 0.2vh;
    border-radius: 0.5vh;
    padding: 0.3vh;
    margin: 0.5vh;
    font-size: 1.5vh;
    font-weight: 450;
    max-width: calc(92%);
    cursor: pointer;
}

.tag:hover {
    border: var(--p12) solid 0.2vh; 
}

.tag3 {
    color: var(--p10);
    border: var(--p10) solid 0.2vh;
    border-radius: 0.5vh;
    padding: 0.3vh;
    margin: 0.5vh;
    font-size: 1.5vh;
    font-weight: 450;
    max-width: calc(92%);
    cursor: pointer;
    animation: fadeInIn 1s ease-in-out;
    animation-fill-mode: both;

    & a {
        color: var(--p10);
    }
}

.tag3:hover {
    color: var(--p12);
    border: var(--p12) solid 0.2vh;

    & a {
        color: var(--p12);
    }
}

#toup a:hover {
    color: var(--p12);
}

.active-tag {
    background-color: var(--p11);
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-items: flex-start;
    padding: 3vh 0vh 1vh 1vh;
    width: 85%;
    transform: translateX(3%);
}

.quiz-item {
    background-color: var(--p4);
    color: var(--p5s);
    padding: 1vh;
    margin: 1vh;
    width: 29vh;
    min-height: 8vh;
    border-radius: 1vh;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;

    animation: fadeInIn 1s ease-in-out;
    animation-fill-mode: both;
    opacity: 0;
    z-index: 3;
}

@keyframes fadeInIn {
    0% {
      opacity: 0;
      transform: translateY(20px); 
    }
    20% {
        opacity: 0;
        transform: translateY(20px); 
      }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

#imgw {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 0vh;
    border-radius: 0.5vh;
    background-color: #1c273400;
}

.quiz-item img, .quiz-item .div {
    position: absolute;
    border-radius: 0.25vh;
    top: 50%;
    left: 50%;
    width: 95%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.quiz-item .div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background-color: #1c273400;
    font-size: 10vh;
    font-weight: 900;
}

.quiz-item-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    line-height: 1;
    margin: 0.5vh;
}

.quiz-item-content h2 {
    color: var(--p1);
    font-size: 2.5vh;
    line-height: 1;
    margin: 0.25vh;
}

.quiz-item-subtitle {
    font-weight: 500;
    font-size: 1.75vh;
}

.quiz-item-p {
    margin: 0.25vh;
}

.quiz-item-seemore {
    margin: 0.5vh 0;
    font-size: 1.75vh;
}

.tdlrc {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 3vh 0vh 3vh 0vh;
    color: var(--p10);
    background: var(--head);
    z-index: 0;
    width: 100%;
}
.s1 {
    font-size: 7vh;
}
.s2 {
    font-size: 14vh;
}
.s3 {
    position: relative;
    text-align: center;
    line-height: 0.8;
}
.s1, .s2 {
    text-align: center;
    font-weight: 800;
    width: 100%;
    line-height: 0.8;
}
.s11 {
    font-size: 1.5vh;
}
.s21 {
    font-size: 3vh;
}
.s22 {
    font-size: 7vh;
}
.s11,
.s21,
.s22 {
    text-align: center;
    font-weight: 800;
    width: 100%;
    line-height: 0.8;
}



/* POPUP*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0,0,0,.85);*/
    z-index: 5;
    opacity: 0;
    pointer-events: none;
}

.modal.active {
    opacity: 1; 
    pointer-events: all;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

.modal-transition-leave {
    transition: opacity .15s;
}

.contentt,
.contentt2 {
    text-align: left;
}

.contentt,
.contentt2 {
    position: absolute;
    top: 31vh;
    max-width: 60vh;
    padding: 1vh;
    border-radius: 0.5vh;
    z-index: 1;
}

.contentt.active,
.contentt2.active  {
    animation: fadeIn 1s ease-in-out;
    animation-fill-mode: both;
    opacity: 1;
}

.contentt .bubz {
    width: auto;
    height: 15vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.contentt .actions {
    margin-top: 10px;
}

.contentt .inline,
.contentt2 .inline {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.justyeah {
    font-size: 6vh;
    font-weight: 800;
    color: var(--p10);
    line-height: 1;
}

a.justyeah,
a.justyeah:hover,
a.justyeah:visited {
    font-size: 3vh;
    font-weight: 800;
    color: var(--p10);
    line-height: 1;
}

a.justyeah2,
a.justyeah2:hover,
a.justyeah2:visited {
    font-size: 2.5vh;
    font-weight: 600;
    color: var(--p10);
    line-height: 1;
}

.sv {
    font-size: 2.5vh;
    font-weight: 500;
    color: var(--p10);
}

#made, #specialthanks, #togerman, #ver {
    color: var(--p9s)
}

.tag2 {
    background-color: var(--p12);
    border-radius: 0.5vh;
    padding: 0.8vh 1.3vh;
    margin: 0.5vh 1vh 0vh 0vh;
    font-size: 2vh;
    font-weight: 450;
    line-height: 0.8;
    cursor: pointer;
    width: max-content;
    display: flex;
    align-items: center;

    &:hover {
        background-color: var(--p11);
    }
}

.tag4 {
    background-color: var(--p12);
    border-radius: 0.5vh;
    padding: 0.5vh;
    margin: 0.5vh 0.5vh 0.5vh 0;
    font-weight: 600;
    line-height: 1;
    color: var(--p1);
    cursor: pointer;
    width: max-content;
}

.tag5 {
    background-color: var(--p12);
    border-radius: 0.5vh;
    padding: 0.5vh;
    margin: 0.25vh;
    font-weight: 600;
    line-height: 1;
    color: var(--p1);
    cursor: pointer;
    width: max-content;
}

.tag6 {
    background-color: var(--p12);
    border-radius: 0.5vh;
    border-radius: 0.5vh;
    padding: 0.3vh;
    margin: 0.5vh;
    font-size: 1.5vh;
    font-weight: 450;
    max-width: calc(92%);
    cursor: default;
}

#book2 {
    animation: changeText 12s infinite;
    opacity: 0;
}
  
@keyframes changeText {
    0%, 100% {
      opacity: 0;
    }
    5%, 95% {
      opacity: 1;
    }
}

#tagsContainer {
    display: none;
    animation: fadeIn 1s ease-in-out;
    animation-fill-mode: both;
}

#toup {
    opacity: 0;
    position: fixed;
    bottom: 0;
    right: 0;
    transition: opacity 0.5s ease;
}
#toup.animate {
    opacity: 1;
    /*animation: fade-in 0.3s ease-in 1s forwards;*/
    transition: opacity 0.5s ease;
}
#toup a {
    color: var(--p10);
}

.noway {
    text-align: center;
    font-weight: 700;
    padding: 1vh;
    line-height: 1;
    font-size: 4vh;
    color: var(--p12);
    display: none;
}

#searchInput {
    display: none;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    width: fit-content;
    padding: 0.5vh;
    border: 0.25vh solid var(--p2);
    border-radius: 0.5vh;
    background-color: var(--c9);
    color: var(--p12);
    font-size: 2vh;
    font-weight: 600;
    outline: none;
    margin: 0.5vh;
}

#searchInput:focus, #searchInput:after {
    border: 0.25vh solid var(--p12);
}

::placeholder {
    color: var(--p10);
    opacity: 1;
}
::-ms-input-placeholder { /* Edge 12 -18 */
    color: var(--p10);
}

.butnyes {
    display: block;
    background-color: var(--p12);
    padding: 1vh;
    border-radius: 0.5vh;
    line-height: 0.755;
    font-size: 1.5vh;
    font-weight: 600;
    animation: fadeInIn 1s ease-in-out;
    animation-fill-mode: both;
    opacity: 0;
}

#titlescontent, #wikiacontent {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.listofsvd {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin: 0 1vh;
}

.boxtch3 {
    font-size: 2.5vh;
    font-weight: 500;
    line-height: 1;
    padding: 0.5vh;
}

.boxtch2 {
    font-size: 3vh;
    line-height: 1;
    padding: 0 0.5vh 0 0.5vh;
}

.boxtcp {
    color: var(--p5s);
    font-size: 2vh;
    font-weight: 600;
    line-height: 1;
}

.boxfortc {
    background-color: var(--p4);
    color: var(--p5s);
    padding: 1vh;
    margin: 1vh;
    max-width: 80%;
    border-radius: 1vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    animation: fadeInIn 1s ease-in-out;
    animation-fill-mode: both;
    opacity: 0;

    &.two {
        min-width: 50%;
        max-width: 50%;
    }
}

.divhpcr {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    width: 100%;
    padding: 1.5vh 0 0.5vh 0;
}

.divhpcr2 {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: flex-start;
    padding: 1.5vh 0 0.5vh 0;
    width: 100%;
}

.divfimgcr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.divfimgcr img {
    width: 20vh;
    padding: 0.5vh 0.5vh 0 0.5vh;
}

.todown {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: stretch;
}
.redwow {
    background-color: var(--p2);
    border-radius: 0.5vh;
    padding: 1vh;
    margin: 1vh 0.5vh 0.5vh 0.5vh;
}

.bttdw {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1vh;
    color: var(--p10);
    font-size: 2vh;
}

/* WEBKIT SCROLLBAR */

::-webkit-scrollbar {
    width: 0px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--p2);
}
  
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--w1);
}
  
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--bglia);
}

::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

#lp {
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: 80%;
}

@media screen and (max-width: 1250px) {
    .container, .noway {
        width: 78%;
    }
}
@media screen and (max-width: 930px) {
    .container, .noway {
        width: 84%;
        padding-left: 8vh;
        justify-content: center;
    }
    #lp {
        padding-left: 8vh; 
    }
    .contentt {
        margin-left: 14vh;
    }
}
@media screen and (max-width: 786px) {
    .container, .noway {
        width: 82%;
    }
}
@media screen and (max-width: 689px) {
    .container, .noway {
        width: min-content;
    }
    .s1 {
        font-size: 6.5vh;
    }
}
@media screen and (max-width: 660px) {
    .s1 {
        font-size: 6vh;
    }
    .s2 {
        font-size: 12vh;
    }
    .quiz-item {
        margin: 0vh 1vh 1vh 0vh;
    }
}
@media screen and (max-width: 590px) {
    .s1 {
        font-size: 5vh;
    }
    .s2 {
        font-size: 10vh;
    }
    .s3 {
        font-size: 1.5vh;
    }
}
@media screen and (max-width: 480px) {
    .s1 {
        font-size: 4.5vh;
    }
    .s2 {
        font-size: 9vh;
    }
    .s3 {
        font-size: 1.5vh;
    }
    .tdlrc {
        padding: 4vh 0vh 3vh 0vh;
    }
}

@media screen and (max-height: 376px) {
    .ton {
        top: 1vh;
    }
}

.torightaby {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.boxtaby {
    font-size: 1vh;
    font-weight: 400;
    text-align: right;
    padding: 0.5vh;
}

.pttt {
    padding: 0 0.5vh 0.5vh 0.5vh;
}

.seemore {
    background-color: var(--p11);
    color: var(--p1);
    border-radius: 0.5vh;
    padding: 0.5vh;
}

#imgw .thumbnail:hover {
    border: 0.5vh solid var(--p2);
}
.thumbnail:hover {
    background-color: var(--p2);
    cursor: pointer;
}
.lightbox {
    display: none; /* Скрываем блок при загрузке страницы */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.lightbox-img {
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

.rtl {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;

    & a {
        background-color: var(--p9);
        padding: 0.5vh;
        margin: 0.25vh 0.25vh 0.25vh 1vh;
        border-radius: 0.5vh;
        line-height: 1;
        font-size: 1.5vh;
    }
}

.lil {
    display: flex;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.boxtcprr {
    color: var(--p5s);
    font-size: 2vh;
    font-weight: 400;
    line-height: 1;
    margin: 0.25vh 0.25vh 0.25vh 1vh;
}

#adiv {
    border: solid 0.5vh var(--p2);
    border-radius: 0.5vh;
    padding: 1vh;
    margin: 1vh 0;
}
.boxtcp2 {
    margin-right: 1vh;
}
.rek {
    font-size: 2.5vh;
    font-weight: 700;
}

.ni {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;

    line-height: 0.5;
    font-size: 6dvh;
    font-weight: 100;

    & span {
        font-weight: 900;
        font-size: 12dvh;
    }
}

.box3p {
    padding: 0 0.5vh 0 0.5vh;
    margin: 0.5vh 0 0 0;
    width: 90%;
}

table, td, th { 
    border: 0.5dvh solid var(--p4);
    text-align: left;
    padding: 0.5vh;
    position: relative;
}
th {
    background-color: var(--p10);
}
table {
    border-collapse: collapse;
    width: fit-content;
    margin: 0.5vh 0 0 0;
}

.box3img {
    width: 8dvw;
    background: var(--p5s);
    padding: 1dvh;
    margin: 0 0.5vh 0 0.5vh;
    border-radius: 0.5vh;
}

.hm {
    padding: 0.5vh;
    background-color: var(--p9);

    & a {
        line-height: 1;
        font-size: 1.5vh;
        font-weight: 500;
    }
}

.sm div {
    font-weight: 500;
}

.ass {
    padding: 0;
    width: 50%;
    background-color: var(--p9);
}

#popup2 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--p12);
    z-index: 4;
}

#popup3 {
    background-color: var(--p12);
    color: var(--p1);
    border: var(--p1) solid 0.2vh;
    border-radius: 0.5vh;
    padding: 0.5vh;
    margin: 0.5vh;

    font-size: 1.5vh;
    font-weight: 450;
    max-width: 100%;
    cursor: pointer;
    line-height: 1;
    
    display: none;
    position: relative;
    
    z-index: 4;
}

.idid_o {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5dvh;
    background-color: var(--p10);
}

.seemore2 {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0.5vh;
    background-color: var(--p9);
    width: 25%;
    
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.titleif {
    padding: 1vh 0.5vh 0 0.5vh;
    font-size: 1.75vh;
    line-height: 1;
}

.box3p2 {
    padding: 0 0.5vh 0 0.5vh;
    margin: 0.5vh 0 0 0;
    font-size: 1.5vh;
    font-weight: 400 !important;
    line-height: 1;
}

.pd {
    margin: 0.5vh;
    padding: 0.5vh;
    background-color: var(--p9);
}

.boxtch23 {
    font-size: 3vh;
    line-height: 1;
    padding: 0 0.5vh 0 0.5vh;
    margin: 1.5vh 0 0 0;
}

.localization-box {
    border-radius: 0.5vh;
    padding: 0.5vh;
    margin: 0.5vh;
    background-color: var(--p11);

    width: 80%;
    position: relative;

    & li {
        margin: 0 2vh;
    }
}

.loc_t {
    padding: 1vh 1vh 0.1vh 1vh;
    width: 85%;
    font-size: 2.5vh;
    line-height: 1;
}

.loc_r {
    padding: 0 0.5vh 0 0.5vh;
    padding: 0.1vh 1vh 1vh 1vh;
}

.loc_d {
    background-color: var(--p9);
    border: 0.2vh solid var(--p5s);
    border-radius: 0.5vh;
    margin: 0.5vh;
    padding: 1vh;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.loc_d2 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
    width: 50%;

    &.r {
        width: 50%;
    }
}

.loc_d3 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;

    & .l1 {
        background-color: var(--p12);
        color: var(--p1);
        border: var(--p1) solid 0.2vh;
        border-radius: 0.5vh;
        padding: 0.5vh;
        font-size: 1.5vh;
        font-weight: 450;
        max-width: max-content;
        line-height: 1;
        margin: 0.25vh 0.25vh 0.25vh 0;
        margin-right: 1vh;
    }
    & .l2 {
        background-color: var(--p2);
        color: var(--p1);
        border: var(--p1) solid 0.2vh;
        border-radius: 0.5vh;
        padding: 0.5vh;
        font-size: 1.5vh;
        font-weight: 450;
        max-width: max-content;
        line-height: 1;
        margin: 0.25vh 0.25vh 0.25vh 0;
    }

    &.r {
        align-items: flex-end;
    }
}

.t_b {
    line-height: 1.5;
    font-size: 2vh;
    padding: 0 0.25vh;
}
.t_all {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}
.t_list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;

    & div {
        padding: 0.25vh;
    }
}

.dwes {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    margin-right: 1vh;

    & span {
        background-color: var(--p12);
        color: var(--p1);
        border: var(--p1) solid 0.2vh;
        border-radius: 0.5vh;
        padding: 0.5vh;
        font-size: 1.5vh;
        font-weight: 450;
        max-width: max-content;
        line-height: 1;
        margin: 0.25vh 0.25vh 0.25vh 0;
    }
}

.cast {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;

    & span {
        background-color: var(--p2);
        color: var(--p1);
        border: var(--p1) solid 0.2vh;
        border-radius: 0.5vh;
        padding: 0.5vh;
        font-size: 1.5vh;
        font-weight: 450;
        max-width: max-content;
        line-height: 1;
        margin: 0.25vh 0.25vh 0.25vh 0;
    }
}

.voices {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}

.sp_p {
    line-height: 1.5;
    font-size: 2vh;
    padding: 0 0.25vh;
    margin-right: 0.5vh;
}
.sp_p2 {
    line-height: 1.5;
    font-size: 2vh;
    padding: 0 0.25vh;
    margin-right: 1vh;
}

.loc_spd {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

.seemore3 {
    background-color: var(--p9);
    color: var(--p1);
    border-radius: 0.5vh;
    padding: 0.5vh;

    top: 0;
    right: 0;
    position: absolute;
    margin: 1.5vh;
}