
.logoOfEWW {
    background-image: url("/img/logo-EWW-light.png");
}
.classMgmt,
.classTech {
    position: relative;
    display: flex;
    gap: 5px;
    width: fit-content;
    height: fit-content;
    top: 195px;
    transform: skewX(-15deg);
}
.indicatorWave {
    position: relative;
    display: block;
    width: 10px;
    height: 40px;
    background-color: #558CA0;
}
.indicatorWave::after {
    content: "";
    position: relative;
    display: block;
    width: inherit;
    height: inherit;
    background-color: #558CA0;
}
.indicatorWave:nth-of-type(1)::after,
.indicatorWave:nth-of-type(2)::after {
    left: -30px;
}
.indicatorWave:nth-of-type(3)::after,
.indicatorWave:nth-of-type(4)::after {
    right: -30px;
}
.indicatorWave:nth-of-type(2),
.indicatorWave:nth-of-type(3) {
    opacity: 0.8;
}
.indicatorWave:nth-of-type(1),
.indicatorWave:nth-of-type(4) {
    opacity: 0.6;
}
.indicatorWave:nth-of-type(2)::after,
.indicatorWave:nth-of-type(3)::after {
    opacity: 0.4;
}
.indicatorWave:nth-of-type(1)::after,
.indicatorWave:nth-of-type(4)::after {
    opacity: 0.2;
}
.indicatorTitle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
    height: fit-content;
    padding: 5px 5px;
    letter-spacing: 0.1rem;
    background-color: #558CA0;
}
.classTech .indicatorTitle {
    color: #B1EE81 !important;
}
.classMgmt .indicatorTitle {
    color: #D5ABFF !important;
}
.indicatorTitle::before {
    content: "";
    position: relative;
    display: block;
    height: 30px;
    aspect-ratio: 1;
    background-color: #558CA0;
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
}
.classTech .indicatorTitle::before {
    background-image: url("/img/techSvgArticle.svg");
}
.classMgmt .indicatorTitle::before {
    background-image: url("/img/mgmtSvgArticle.svg");
}
.articleHeader {
    position: relative;
    top: 160px;
    width: 100%;
    max-width: 1000px;
    height: fit-content;
    display: flex;
    justify-content: space-between;
}
.articleHeader .titleIllustration {
    position: relative;
    width: 25%;
    object-fit: contain;
}
.articleHeader::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #558CA0;
    z-index: -1;
}
.articleHeader .articleHeaderContent {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 70%;
    max-width: 1000px;
}
.articleHeader .articleHeaderContent h1 {
    width: 100%;
    font-size: 42px;
    margin: 15px 0;
    color: var(--text-color-light);
}
.articleHeader .articleHeaderContent .articleInfo {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin: 10px 0;
    padding: 3px;
    border-top: var(--bg-color-light) solid 2px;
    border-bottom: var(--bg-color-light) solid 2px;
}
.articleHeader .articleInfo sub {
    color: var(--bg-color-light);
    padding-right: 20px;
}

.articleHeader .articleInfo .shareArticle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 10px;
    height: 90%;
    aspect-ratio: 1;
    border: none;
    background-color: transparent;
    font-size: 20px;
    cursor: pointer;
    color: var(--bg-color-light);
    transition: all 0.2s ease;
}
.articleHeader .articleInfo .shareArticle:hover {
    color: var(--purpleCowButton-light);
}
.articleHeader .articleInfo .shareArticle > span {
    font-size: 25px;
    position: absolute;
    top: 30px;
    left: 50%;
    max-height: 0px;
    transform: translateX(-50%);
    color: var(--bg-color-light);
    z-index: 2;
    transition: max-height 0.2s ease 0.4s;
    overflow: hidden;
}
.articleHeader .articleInfo .shareArticle.shareOpen > span {
    max-height: 30px;
    transition: max-height 0.2s ease 0s;
}
.articleHeader .articleInfo .shareArticle > span i {
    color: var(--bg-color-light);
}
.articleHeader .articleInfo .shareArticle .shareMenu {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-height: 0px;
    color: var(--text-color-light);
    background-color: var(--codeCont-light);
    box-shadow: 0px 0px var(--purpleCowButton-light);
    z-index: 1;
    font-size: 16px;
    transition: max-height 0.5s ease, box-shadow 0.1s ease 0s;
    overflow: hidden;
}
.articleHeader .articleInfo .shareArticle.shareOpen .shareMenu {
    max-height: 135px;
    box-shadow: 3px 3px var(--purpleCowButton-light);
    transition: max-height 0.5s ease, box-shadow 0.1s ease 0.4s;
}
.articleHeader .articleInfo .shareArticle .shareMenu ul {
    padding: 10px;
}
.articleHeader .articleInfo .shareArticle .shareMenu li {
    position: relative;
    list-style-type: none;
    padding: 5px;
    color: var(--text-color-light);
    transition: color 0.3s ease;
}
.articleHeader .articleInfo .shareArticle .shareMenu li::before {
    display: none;
}
.articleHeader .articleInfo .shareArticle .shareMenu li:hover {
    color: var(--onHoverTextButton-light);
}
.articleHeader .articleInfo .shareArticle .shareMenu li i {
    padding-right: 5px;
}
.articleHeader .articleInfo .shareArticle.linkCopiedParent::before {
    content: "";
    position: absolute;
    width: 25px;
    aspect-ratio: 1;
    background-image: url("/img/checkOn.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(120%, -30%);
    animation: checkOn 2s forwards;
    opacity: 0;
}
@keyframes checkOn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.mainOfArticlePage {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;/* 
    margin: 180px auto 30px auto; */
    max-width: 1000px;
    gap: 40px;
}
.mainOfArticlePage * {
    color: var(--paragraphColor-light);
    scroll-margin-top: 70px;
}
.mainOfArticlePage .articleContainer {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 180px auto 30px auto;
    max-width: 1000px;
    gap: 40px;
}
.mainOfArticlePage .articleContainer .articleDetails {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 70%;
    padding: .2rem;
}

.mainOfArticlePage .tableOfContent {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    width: 30%;
    height: fit-content;
    max-height: 80vh;
    background-color: var(--codeCont-light);
    padding: .2rem 0 1rem 1rem;
    overflow-wrap: break-word;
}
.mainOfArticlePage .tableOfContent .tocResponsiveBtn {
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 35px;
    display: none;
    aspect-ratio: 1;
    background-color: inherit;
    border: none;
    cursor: pointer;
}
.mainOfArticlePage .tableOfContent .tocResponsiveBtn svg {
    fill: none;

    & path:nth-child(1),
    & path:nth-child(2),
    & path:nth-child(3) {
        fill: #558CA0;
    }
    & path:nth-child(4),
    & path:nth-child(5),
    & path:nth-child(6) {
        fill: #55a093;
    }
}
.mainOfArticlePage .tableOfContent > ul {
    overflow: auto;
}
.mainOfArticlePage .tableOfContent a {
    color: var(--text-color-lights);
}
.mainOfArticlePage :is(h1, h2, h3, h4, h5, h6) {
    color: var(--text-color-light);
}
.mainOfArticlePage h1 {
    font-size: 42px;
    margin: 15px 0;
}
.mainOfArticlePage h2 {
    margin: 7px 0;
}
.mainOfArticlePage h3 {
    margin: 4px 0;
}
.mainOfArticlePage p {
    position: relative;
    font-size: 1.3rem;
    font-family: "Oswald";
    color: var(--paragraphColor-light);
    word-spacing: 0.2rem;
    margin: 7px 0;
}
.mainOfArticlePage p:has(img) {
    position: relative;
    width: 75%;
    align-self: center;
    padding: 20px 0;
}
.mainOfArticlePage p > img {
    position: relative;
    width: 100%;
    object-fit: scale-down;
}
.mainOfArticlePage a {
    position: relative;
    text-decoration: none;
    color: var(--purpleCowButton-light);
    border-bottom: 0px solid #558CA0;
}
.mainOfArticlePage a:hover {
    color: #558CA0;
    border-bottom: 2px solid #558CA0;
}
.mainOfArticlePage ul {
    position: relative;
    list-style: none;
    color: var(--paragraphColor-light);
}
.mainOfArticlePage ul li {
    position: relative;
    padding: 3px 0;
}
.mainOfArticlePage ul li:last-child {
    margin-bottom: 5px;
}
.mainOfArticlePage ul > li::before {
    font: var(--fa-font-solid);
    position: relative;
    top: -2px;
    content: "\f0c8";
    color: #558CA0;
    margin-right: 3px;
    font-size: 11px;
}
.mainOfArticlePage ul > li > ul {
    margin-left: 10px;
}
.mainOfArticlePage ul > li > ul > li::before {
    font: var(--fa-font-solid);
    content: "\f04d";
    color: #55a093;
    margin-right: 3px;
    font-size: 11px;
}
.mainOfArticlePage ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mainOfArticlePage ol li {
    counter-increment: step-counter;
    margin-bottom: 10px;
    color: var(--paragraphColor-light);
}

.mainOfArticlePage ol li::before {
    content: counter(step-counter);
    display: inline-block;
    min-width: 9px;
    margin-right: 5px;
    text-align: center;
    font-size: 80%;
    background-color: #558CA0;
    color: white;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 3px;
}
.mainOfArticlePage ol li p , .mainOfArticlePage ul li p {
    display: inline;
}
.mainOfArticlePage p strong {
    color: var(--text-color-light);
}
.mainOfArticlePage pre {
    position: relative;
    display: block;
    background-color: var(--codeCont-light) !important;
    margin: 5px 0;
    padding: 2rem .5rem .3rem;
    border-radius: .25rem;
    overflow: hidden;
    white-space: pre;
    max-width: 100%;
}
.mainOfArticlePage pre .copyCode {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px 10px;
    color: var(--codeCont-light);
    font-size: 15px;
    z-index: 1;
    background-color: transparent;
    border: none;
}
.mainOfArticlePage pre .copyCode::before {
    content: "\f328";
    font: var(--fa-font-regular);
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.mainOfArticlePage pre .copyCode::after {
    content: "\f46c";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.mainOfArticlePage pre .copyCode:focus::after {
    opacity: 1;
}
.mainOfArticlePage pre code {
    display: block;
    background-color: var(--codeCont-light);
    color: var(--paragraphColor-light);
    overflow: auto;
    line-height: initial;
    font-size: .8rem;
    padding: .3rem .2rem;
    max-height: 500px;
}
.mainOfArticlePage pre code[data-lang]::before {
    content: attr(data-lang);
    padding: .3rem;
    display: block;
    background-color: #558CA0;
    color: var(--codeCont-light);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 1rem;
    text-transform: uppercase;
}
.mainOfArticlePage pre code * {
    color: var(--paragraphColor-light);
}

.mainOfArticlePage figure {
    position: relative;
    width: fit-content;
    max-width: 100%;
}
.mainOfArticlePage table {
    display: block;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1em;
    font-family: sans-serif;
    width: fit-content;
    max-width: 100%;
    overflow: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.mainOfArticlePage table thead tr {
    background-color: var(--table-color-light);
    color: #ffffff;
    text-align: left;
}
.mainOfArticlePage table th,
.mainOfArticlePage table td {
    padding: 12px 15px;
    color: var(--paragraphColor-light);
}
.mainOfArticlePage table tbody tr {
    border-bottom: 1px solid var(--table-color-light);
}

.mainOfArticlePage table tbody tr:nth-of-type(even) {
    background-color: var(--codeCont-light);
}
.mainOfArticlePage table tbody tr:last-of-type {
    border-bottom: 2px solid var(--table-color-light);
}
.mainOfArticlePage table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}
.mainOfArticlePage mark {
    background-color: var(--purpleCowButton-light);
    color: var(--bg-color-light);
    border-radius: 2px;
    padding: 0 2px;
}

.mainOfArticlePage *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
.mainOfArticlePage *::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.mainOfArticlePage *::-webkit-scrollbar-thumb {
    background: #558CA0;
}
.mainOfArticlePage *::-webkit-scrollbar-thumb:hover {
    background: #365d6b;
}

/*↓↓START RESPONSIVE*/
/*↓↓MAX 1050PX↓↓*/
@media only screen and (max-width: 1050px) {
    .classMgmt,
    .classTech {
        top: 105px;
    }
    .articleHeader {
        top: 70px;
    }
    .articleHeader .articleHeaderContent {
        width: 70%;
    }
    .mainOfArticlePage {
        margin-top: 50px;
        width: 95%;
        padding-right: unset;
    }
    .mainOfArticlePage .articleContainer {
        margin-top: 100px;
    }
    .mainOfArticlePage h1 {
        font-size: 32px;
    }
    .mainOfArticlePage p,
    .mainOfArticlePage ul li {
        font-size: 1.1rem;
    }
}
/*↓↓MAX 850PX↓↓*/
@media only screen and (max-width: 850px) {
    .articleHeader .articleHeaderContent h1 {
        font-size: 32px;
    }
    .mainOfArticlePage .articleContainer {
        width: calc(100% - 45px);
    }
    .mainOfArticlePage .articleContainer .articleDetails {
        width: 90%;
    }
    .mainOfArticlePage .tableOfContent {
        position: fixed;
        width: 50%;
        right: -50%;
        transition: right 0.5s ease;
    }
    .mainOfArticlePage .tableOfContent.tocAppears {
        right: 5%;
    }
    .mainOfArticlePage .tableOfContent .tocResponsiveBtn {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mainOfArticlePage p:has(img) {
        width: 100%;
    }
}
/*↓↓MAX 500PX↓↓*/
@media only screen and (max-width: 500px) {
    .classMgmt,
    .classTech {
        top: 105px;
    }
    .indicatorWave {
        height: 30px;
    }
    .indicatorTitle::before {
        height: 20px;
    }
    .articleHeader {
        flex-direction: column;
        align-items: center;
    }
    .articleHeader .articleHeaderContent {
        width: 100%;
    }
    .articleHeader .titleIllustration {
        order: -1;
        width: 45%;
    }
    .articleHeader h1 {
        width: 80%;
        margin-top: 100px;
    }
    .articleHeader .articleInfo {
        width: 75%;
    }
    .articleHeader .articleInfo sub {
        font-size: 12px;
    }
    .articleHeader .articleInfo .shareArticle .shareMenu {
        right: 0%;
        left: unset;
        transform: translateX(20%);
    }
    .articleHeader .articleInfo .shareArticle .shareMenu li {
        font-size: 1rem;
    }
    .articleHeader .articleInfo .shareArticle.linkCopiedParent::before {
        transform: translate(100%, -10%);
    }
    .mainOfArticlePage {
        width: 90%;
        padding-right: unset;
    }
    .mainOfArticlePage h1 {
        font-size: 28px;
    }
    .mainOfArticlePage p,
    .mainOfArticlePage ul li {
        font-size: 1.2rem;
    }
    .mainOfArticlePage .tableOfContent {
        width: 80%;
        right: -80%;
    }
    .mainOfArticlePage .tableOfContent .tocResponsiveBtn {
        top: 15%;
    }
}