* {
    padding: 0;
    margin: 0;
    font-family: 'Rubik', sans-serif;
}
body {
    background: #000;
}
.selected-text {
    color: var(--main-color);
}
.hidden {
    display: none;
}
.svg-main-color * {
    fill: var(--main-color);
    stroke: var(--main-color);
}

.button {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    color: var(--main-color);
    background: var(--main-color00);
    border: solid 1px;
    border-color: var(--main-colorFF);
    transition: 0.3s;
}
.button:hover {
    color: #000;
    background: var(--main-color);
    border: solid 1px;
    border-color: var(--main-color00);
}
.button > span {
    margin: 0 5px;
}
.button > svg {
    height: 16px;
    margin: 0 5px;
}
.button > svg * {
    stroke: var(--main-color);
    fill: var(--main-color);
    transition: 0.3s;
}
.button:hover > svg * {
    stroke: #000;
    fill: #000;
}


body::-webkit-scrollbar {
    width: 15px;
}
body::-webkit-scrollbar-track {
    background: #000;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}


#Background {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit: cover;
    opacity: 0;
    transition: 0.6s;
}
#Background.lazy-loaded {
    opacity: 1;
}
@media (max-width: 1000px) {
    #Background {
        top: -101vh;
        opacity: 0;
    }
    #Background.lazy-loaded {
        opacity: 0;
    }
}


nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: #000;
}
nav > .content {
    position: relative;
    width: 1000px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#Logo {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 40px;
    user-select: none;
}
#Logo > img {
    height: 40px;
}
#MainMenu {
    height: 100%;
    display: flex;
    flex-direction: row;
    margin: 0 20px 0 0;
    list-style: none;
    transition: 0.3s;
}
#MainMenu > li {
    height: 100%;
    display: flex;
    transition: 0.3s;
}
#MainMenu > li > a {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    text-decoration: none;
    font-size: 15px;
    color: #FFF;
    transition: color 0.3s;
    user-select: none;
}
#MainMenu > li > a > svg {
    width: 16px;
    height: 16px;
    margin: 0 10px 0 0;
}
#MainMenu > li > a > svg * {
    stroke: #FFF;
    transition: 0.3s;
}
#MainMenu > li > a:hover {
    color: var(--main-color);
}
#MainMenu > li > a:hover > svg * {
    stroke: var(--main-color);
}
#ToggleMainMenu {
    height: 100%;
    display: none;
    flex-direction: row;
    align-items: center;
    padding: 0 40px;
    background: none;
    border: none;
    outline: none;
    user-select: none;
    cursor: pointer;
}
#ToggleMainMenu > svg {
    height: 24px;
    width: 24px;
}
#ToggleMainMenu > svg * {
    stroke: #FFF;
    transition: 0.3s;
}
#ToggleMainMenu:hover > svg * {
    stroke: var(--main-color);
}
#ToggleMainMenu.active > svg * {
    stroke: var(--main-color);
}
@media (max-width: 860px) {
    #ToggleMainMenu {
        display: flex;
    }
    #MainMenu {
        width: 300px;
        height: auto;
        position: absolute;
        top: 80px;
        right: 0;
        flex-direction: column;
        margin: 0;
        background: #000;
        border-radius: 0 0 0 5px;
        opacity: 0;
    }
    #MainMenu.active {
        padding: 20px 0;
        border-top: solid 1px;
        border-color: var(--main-color);
        opacity: 1;
    }
    #MainMenu > li {
        overflow: hidden;
        height: 0;
        opacity: 0;
    }
    #MainMenu.active > li {
        height: 40px;
        opacity: 1;
    }
    #MainMenu > li > a {
        width: 100%;
        padding: 0 40px;
        box-sizing: border-box;
    }
    #MainMenu > li > a > svg {
        margin: 0 20px 0 0;
    }
}
@media (max-width: 480px) {
    #MainMenu {
        width: 100%;
        border-radius: 0;
    }
    #MainMenu.active > li {
        height: 60px;
    }
}


main {
    width: 1000px;
    min-height: calc(100vh - 80px);
    position: absolute;
    top: 80px;
    left: calc(50% - 500px);
    z-index: 5;
    display: flex;
    flex-direction: column;
    margin: 0 0 100px 0;
    background: #121212;
}
@media (max-width: 1015px) {
    main {
        width: 100%;
        left: 0;
    }
}


#HeaderHome {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: "a b c";
    grid-gap: 20px;
    align-items: center;
}
#HeaderHome > svg {
    user-select: none;
    grid-area: a;
}
#HeaderHome > h1 {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    grid-area: b;
}
#HeaderHome > .share {
    grid-area: c;
}
@media (max-width: 860px) {
    #HeaderHome {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "a b" "d c";
    }
}
@media (max-width: 480px) {
    #HeaderHome > svg {
        display: none;
    }
    #HeaderHome {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        grid-template-areas: "b" "c";
        justify-items: center;
        padding: 40px 20px;
    }
    #HeaderHome > h1 {
        text-align: center;
    }
}


#SelectBlock {
    display: flex;
    flex-direction: column;
}
#SelectSeason {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: solid #242424;
    border-width: 1px 0;
    background: linear-gradient(0deg, #181818 0%, #121212 100%);
}
#SelectSeason > ul {
    height: 59px;
    overflow: auto hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: row;
    list-style: none;
}
#SelectSeason > ul::-webkit-scrollbar {
    display: none;
}
#SelectSeason > ul > li {
    height: 100%;
    display: flex;
}
#SelectSeason > ul > li > a {
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 20px;
    border-bottom: solid 1px #242424;
    text-decoration: none;
    font-size: 15px;
    color: #FFF;
    white-space: nowrap;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
#SelectSeason > ul > li > a.active {
    color: var(--main-color);
    border-color: var(--main-color);
    background: linear-gradient(180deg, #24242400, var(--main-color1A)), #181818;
}
#SelectSeason > ul > li > a:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}
.season-nav-btn {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
}
.season-nav-btn > svg * {
    transition: 0.3s;
}
.season-nav-btn:hover > svg * {
    stroke: var(--main-color);
}
.season-nav-btn.disable > svg * {
    stroke: #242424;
}
.season-nav-btn.disable:hover > svg * {
    stroke: #242424;
    cursor: auto;
}
#SeasonNavBtnLeft {
    border-right: solid 1px #242424;
}
#SeasonNavBtnRight {
    border-left: solid 1px #242424;
}
#SelectEpisode {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    box-sizing: border-box;
    padding: 40px;
    background: linear-gradient(180deg, var(--main-color05) 0%, rgba(18, 18, 18, 0.02) 100%), #121212;
}
#SelectEpisode .episode {
    display: flex;
    flex-direction: column;
    user-select: none;
    text-decoration: none;
    background: #181818;
    transition: 0.3s;
}
#SelectEpisode .episode.hidden {
    display: none;
}
#SelectEpisode .episode > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0;
    background: #242424;
    transition: 0.3s;
}
#SelectEpisode .episode > img.lazy-loaded {
    opacity: 1;
}
#SelectEpisode .episode > .episode-text {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: solid 1px;
    border-color: var(--main-color);
    font-size: 15px;
    color: #FFF;
    background: linear-gradient(180deg, var(--main-color0d) 0%, rgba(24, 24, 24, 0) 100%), #181818;
    transition: all 0.3s;
}
#SelectEpisode .episode:hover > .episode-text {
    color: var(--main-color);
    background: linear-gradient(180deg, var(--main-color26) 0%, rgba(24, 24, 24, 0.05) 100%), #181818;
}
@media (max-width: 860px) {
    #SelectEpisode {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 668px) {
    #SelectEpisode {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    #SelectEpisode {
        padding: 40px 20px;
    }
}


#InfoSeries {
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 40px;
    padding: 40px;
    background: linear-gradient(180deg, #181818 0%, #121212 100%);
    border: solid #242424;
    border-width: 1px 0;
}
#InfoSeries > .left {
    display: flex;
    flex-direction: column;
}
#InfoSeries > .left > img {
    width: 320px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: solid 1px;
    border-color: var(--main-color);
    opacity: 0;
    background: #242424;
    transition: 0.3s;
}
#InfoSeries > .left > img.lazy-loaded {
    opacity: 1  ;
}
#InfoSeries > .left > .button {
    width: 100%;
    height: 40px;
    margin: 10px 0 0 0;
    user-select: none;
}
#InfoSeries > .right {
    display: flex;
    flex-direction: column;
}
#InfoSeries > .right > h2 {
    font-weight: 500;
    font-size: 24px;
    color: var(--main-color);
}
#InfoSeries > .right > .name-original {
    margin-top: 5px;
    font-size: 15px;
    color: #FFF;
}
#InfoSeries > .right > .desc-prop {
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 5px;
    margin: 20px 0 0 0;
}
#InfoSeries > .right > .desc-prop > .prop {
    font-size: 12px;
    color: #969696;
}
#InfoSeries > .right > .desc-prop > .value {
    font-size: 15px;
    color: #CCC;
    line-height: 1.5;
}
#InfoSeries > .right > .desc-text {
    margin: 20px 0 0 0;
    font-size: 15px;
    color: #CCC;
    line-height: 1.5;
}
@media (max-width: 860px) {
    #InfoSeries > .left > img {
        width: 260px;
    }
}
@media (max-width: 768px) {
    #InfoSeries > .left > img {
        width: 320px;
    }
    #InfoSeries {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-items: center;
    }
}
@media (max-width: 480px) {
    #InfoSeries {
        padding: 40px 20px;
    }
    #InfoSeries > .left > img {
        width: 100%;
    }
}


#Trailer {
    width: 100%;
    height: 0;
    box-sizing: border-box;
    display: flex;
    overflow: hidden;
    border-bottom: solid 0 #242424;
    transition: 0.3s;
}
#Trailer.active {
    height: 480px;
    border-bottom: solid 1px #242424;
}
#Trailer > iframe {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: #181818;
    padding: 40px;
}
@media (max-width: 768px) {
    #Trailer.active {
        height: 360px;
    }
}
@media (max-width: 668px) {
    #Trailer > iframe {
        padding: 0;
    }
}
@media (max-width: 400px) {
    #Trailer.active {
        height: 280px;
    }
}


#Content {
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px 40px;
}
#Content h3 {
    display: flex;
    margin: 40px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-color);
}
#Content p {
    display: flex;
    margin: 20px 0 0 0;
    line-height: 1.5;
    font-size: 15px;
    color: #ccc;
}
#Content #Actors {
    margin-bottom: 20px;
}
#Content .actor {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-gap: 20px;
    border-top: solid 1px #242424;
    margin: 20px 0 0 0;
    background: linear-gradient(#181818, #121212);
}
#Content .actor > img {
    width: 150px;
    aspect-ratio: 3 / 4;
    display: flex;
    object-fit: cover;
    opacity: 0;
    transition: 0.3s;
}
#Content .actor > img.lazy-loaded {
    opacity: 1;
}
#Content .actor > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}
#Content .actor > div > h4 {
    display: flex;
    padding: 20px 20px 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
}
#Content .actor > div > p {
    padding: 20px 20px 20px 0;
    margin: 0;
    display: flex;
    font-size: 15px;
    line-height: 1.5;
    color: #CCC;
}
@media (max-width: 668px) {
    #Content .actor {
        grid-template-rows: auto 1fr;
        grid-template-columns: auto;
        justify-items: center;
        border-width: 0;
        background: transparent;
    }
    #Content .actor > div {
        padding: 0 0 20px 0;
        align-items: center;
    }
    #Content .actor > div > h4 {
        padding: 0;
        text-align: center;
    }
    #Content .actor > div > p {
        padding: 20px 0 0 0;
    }
}
@media (max-width: 480px) {
    #Content {
        padding: 0 20px 20px 20px;
    }
}


footer {
    justify-self: flex-end;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 20px;
    box-sizing: border-box;
    padding: 20px 40px;
    background: #000;
    align-items: center;
    user-select: none;
}
footer > p {
    font-size: 13px;
    color: #969696;
    line-height: 1.5;
}
footer a {
    text-decoration: none;
    color: #CCC;
    transition: 0.3s;
}
footer a:hover {
    color: var(--main-color);
}
@media (max-width: 860px) {
    footer {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        justify-items: center;
    }
    footer > p {
        text-align: center;
    }
}
@media (max-width: 480px) {
    footer {
        padding: 20px;
    }
}


/* Page Season */

.page-season #HeaderHome {
    padding: 40px 40px 0 40px;
}
.page-season #SelectEpisode {
    padding: 40px 40px 0 40px;
    background: #121212;
}
.page-season #Content h2 {
    display: flex;
    margin: 40px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-color);
}
@media (max-width: 480px) {
    .page-season #HeaderHome {
        padding: 40px 20px 0 20px;
    }
    .page-season #SelectEpisode {
        padding: 40px 20px 0 20px;
    }
}


/* Page Episode */
#SelectPlayerBlock {
    display: flex;
    flex-direction: column;
}
#SelectPlayer {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: solid #242424;
    border-width: 1px 0;
    background: linear-gradient(0deg, #181818 0%, #121212 100%);
}
#SelectPlayer > ul {
    height: 59px;
    overflow: auto hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: row;
    list-style: none;
}
#SelectPlayer > ul::-webkit-scrollbar {
    display: none;
}
#SelectPlayer > ul > li {
    height: 100%;
    display: flex;
}
#SelectPlayer > ul > li > button {
    border: none;
    outline: none;
    background: transparent;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 20px;
    border-bottom: solid 1px #242424;
    text-decoration: none;
    font-size: 15px;
    color: #FFF;
    white-space: nowrap;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}
#SelectPlayer > ul > li > button.active {
    color: var(--main-color);
    border-color: var(--main-color);
    background: linear-gradient(180deg, rgba(36, 36, 36, 0) 0%, var(--main-color1A) 100%), #181818;
}
#SelectPlayer > ul > li > button:hover {
    color: var(--main-color);
    border-color: var(--main-color);
}
.player-nav-btn {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    transition: 0.3s;
}
.player-nav-btn > svg * {
    transition: 0.3s;
}
.player-nav-btn:hover > svg * {
    stroke: var(--main-color);
}
.player-nav-btn.disable {
    opacity: 0;
}
.player-nav-btn.disable > svg * {
    stroke: #242424;
}
.player-nav-btn.disable:hover > svg * {
    stroke: #242424;
    cursor: auto;
}
#PlayerNavBtnLeft {
    border-right: solid 1px #242424;
}
#PlayerNavBtnRight {
    border-left: solid 1px #242424;
}
#Player {
    width: 100%;
    height: 400px;
    background: #181818;
}
@media (max-width: 480px) {
    #Player {
        height: 280px;
    }
}
#Player > iframe {
    width: 100%;
    height: 100%;
    display: none;
}
#Player > iframe.active {
    display: flex;
}
#SwitchEpisode {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px 0 40px;
}
#SwitchEpisode > a {
    height: 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 10px;
    align-items: center;
    border: solid 1px;
    border-color: var(--main-color);
    text-decoration: none;
    font-size: 15px;
    color: var(--main-color);
    transition: 0.3s;
}
#SwitchEpisode > a:hover {
    color: #000;
    background: var(--main-color);
}
#SwitchEpisode > a > svg * {
    stroke: var(--main-color);
    transition: 0.3s;
}
#SwitchEpisode > a:hover > svg * {
    stroke: #000;
}
.page-episode #Content h2 {
    display: flex;
    margin: 40px 0 0 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-color);
}
.page-episode #SelectEpisode {
    padding: 0 40px 40px 40px;
    background: #121212;
}
.page-episode #SelectBlock h2 {
    display: flex;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-color);
    padding: 0 40px 20px 40px;
}
@media (max-width: 480px) {
    #SwitchEpisode {
        padding: 20px 20px 0 20px;
    }
    .page-episode #SelectEpisode {
        padding: 0 20px 20px 20px;
    }
    .page-episode #SelectBlock h2 {
        padding: 20px;
    }
}
#EmojiPanel {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #242424;
    padding: 20px 40px 0 40px;
    box-sizing: border-box;
}
#EmojiPanel > button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border: none;
    outline: none;
    background: #181818;
    border-bottom: solid 1px #242424;
    cursor: pointer;
    transition: 0.3s;
}
#EmojiPanel > button:hover {
    background: #242424;
}
#EmojiPanel > button.active {
    border-color: var(--main-color);
}
#EmojiPanel > button > img {
    width: 32px;
    height: 32px;
    object-fit: fill;
    opacity: 0.6;
    transition: 0.3s;
}
#EmojiPanel > button:hover > img {
    opacity: 1;
}
#EmojiPanel > button.active > img {
    opacity: 1;
}
#EmojiPanel > button > span {
    height: 15px;
    margin-top: 3px;
    color: #969696;
}
#EmojiPanel > button:hover > span {
    color: #FFF;
}
@media (max-width: 480px) {
    #EmojiPanel {
        padding: 0;
    }
}
#CommentBlock {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 40px;
}
@media (max-width: 480px) {
    #CommentBlock {
        padding: 20px 20px 0 20px;
    }
}
#btnToggleComment {
    height: 40px;
    width: 250px;
    max-width: 100%;
    align-self: center;
    cursor: pointer;
}
#AddComment {
    width: 100%;
    height: auto;
    transition: 0.3s;
}
#AddComment > form {
    width: 100%;
    height: 0;
    overflow: hidden;
    display: grid;
    grid-gap: 10px;
    grid-template-areas: "message message" "name btn";
    grid-template-columns: 1fr 250px;
    box-sizing: border-box;
    margin: 0 0 40px 0;
}
#AddComment.active > form {
    height: auto;
}
@media (max-width: 600px) {
    #AddComment > form {
        grid-template-areas: "message" "name" "btn";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
}
#AddComment > form > textarea {
    min-height: 100px;
    max-height: 100px;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 20px;
    background: #121212;
    outline: none;
    border: solid 1px #242424;
    grid-area: message;
    line-height: 1.5;
    font-size: 15px;
    color: #FFF;
}
#AddComment > form > input {
    box-sizing: border-box;
    height: 40px;
    background: #121212;
    outline: none;
    border: solid 1px #242424;
    padding: 0 20px;
    grid-area: name;
    font-size: 15px;
    color: #FFF;
}
#AddComment > form > button {
    box-sizing: border-box;
    height: 40px;
    grid-area: btn;
    cursor: pointer;
}
#Comments {
    display: flex;
    flex-direction: column;
    padding: 0 0 20px 0;
}
#Comments > .comment {
    display: flex;
    flex-direction: column;
    border-bottom: solid 1px #242424;
    margin-bottom: 20px;
    background: #181818;
}
#Comments > .comment > .comment-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: solid 1px #242424;
    box-sizing: border-box;
    padding: 10px 20px;
}
#Comments > .comment > .comment-header > img {
    width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
}
#Comments > .comment > .comment-header > .comment-user {
    font-size: 15px;
    color: #FFF;
    margin: 0 10px 0 0;
}
#Comments > .comment > .comment-header > .comment-date {
    font-size: 12px;
    color: #969696;
    margin: 0 10px 0 0;
}
#Comments > .comment > .comment-text {
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #CCC;
}

#BreadcrumbList {
    width: 100%;
    display: flex;
    padding: 0 40px;
    box-sizing: border-box;
    border-top: solid 1px #242424;
    background: #181818;
    margin-top: auto;
    justify-self: flex-end;
}
#BreadcrumbList > ol {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;
    user-select: none;
}
#BreadcrumbList > ol > li {
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}
#BreadcrumbList > ol > li > a {
    height: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    margin: 0 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
    color: #CCC;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}
#BreadcrumbList > ol > li > a:hover {
    background: #242424;
    color: #FFF;
}
#BreadcrumbList > ol > li > span {
    height: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
    color: #969696;
    white-space: nowrap;

}
@media (max-width: 480px) {
    #BreadcrumbList {
        padding: 0 20px;
    }
    #BreadcrumbList > ol {
        flex-direction: column;
        align-items: center;
    }
    #BreadcrumbList > ol > li > svg {
        display: none;
    }
}