*
{
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

:root
{
    --font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

html
{
    color-scheme: dark;
    -webkit-text-size-adjust: none;
}

body
{
    background: #1a181b;
    font-family: var(--font-family);
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    padding: 0 !important;
}

a
{
    color: #fff;
    text-decoration:none;
}

a:hover
{
    color: #6dfd00;
}

input, textarea, button, select
{
    font-family: Arial, sans-serif;
}

input::placeholder
{
    color: #fff;
}

input:-ms-input-placeholder
{
    color: #fff;
}

input::-webkit-input-placeholder
{
    color: #fff;
}

textarea::placeholder
{
    color: #fff;
}

textarea:-ms-input-placeholder
{
    color: #fff;
}

textarea::-webkit-input-placeholder
{
    color: #fff;
}

ins.adsbygoogle[data-ad-status=unfilled]
{
    display:none!important;
}

.container
{
    margin: 0 auto;
    max-width: 700px;
}

.clear:after
{
   content:' ';
   clear:both;
   display:table
}

header, footer
{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header
{
    background-color: #232024;
    border-bottom: 1px solid #181718;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    line-height: 1.23;
}

@media (max-width:730px)
{
    main
    {
        padding: 0 15px;
    }
}

footer
{
    margin-top: 15px;
    border-top: 1px solid #2f303a;
}

footer .copyright
{
    text-align: center;
    font-size: 14px;
    padding: 0 15px;
}

header .nav>nav>ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width:731px)
{
    header .nav>nav
    {
        float: right;
    }

    header .nav>.nav-header
    {
        display: inline-block;
    }
    
    header .nav>.nav-header>.nav-title
    {
        display: inline-block;
        font-size: 20px;
        font-weight: bold;
        padding: 13px 0;
    }
    
    header .nav>.nav-header>.nav-title>span
    {
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
    }
    
    header .nav>.nav-btn
    {
        display: none;
    }
    
    header .nav> #nav-check
    {
        display: none;
    }
    
    header .nav>nav>ul>li
    {
        display: inline-block;
        position: relative;
    }
    
    header .nav>nav>ul>li a
    {
        display: block;
        padding: 17px 11px;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
    }

    header .nav>nav>ul>li a:hover
    {
        background: #2c2c30;
    }
}

@media (max-width:730px)
{
    header .nav>.nav-header
    {
        display: inline-block;
    }
    
    header .nav>.nav-header>.nav-title
    {
        display: inline-block;
        font-size: 20px;
        font-weight: bold;
        padding: 13px 0 13px 16px;
    }
    
    header .nav>.nav-header>.nav-title>span
    {
        cursor: pointer;
        color: #fff;
        text-transform: uppercase;
    }

    header .nav>.nav-btn
    {
        display: none;
    }
    
    header .nav> #nav-check
    {
        display: none;
    }
    
    header .nav>nav>ul>li
    {
        display: inline-block;
        position: relative;
    }
    
    header .nav>nav>ul>li a
    {
        display: block;
        padding: 17px 17px;
        text-decoration: none;
        color: #fff;
        font-size: 13px;
    }
    
    header .nav>nav>ul>li a:hover
    {
        background: #2c2c30;
    }

    header .nav>.nav-btn
    {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
    }

    header .nav>.nav-btn>label
    {
        display: inline-block;
        position: relative;
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    header .nav>.nav-btn>label:before
    {
        content: '';
        background-color: rgb(0 0 0 / 14%);
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        -webkit-transition: transform .1s cubic-bezier(.77,0,.175,1);
        -moz-transition: transform .1s cubic-bezier(.77,0,.175,1);
        -o-transition: transform .1s cubic-bezier(.77,0,.175,1);
        transition: transform .1s cubic-bezier(.77,0,.175,1);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }

    header .nav>.nav-btn>label:active:before
    {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    header .nav>.nav-btn>label>span
    {
        position: absolute;
        width: 20px;
        height: 2px;
        background: #fff;
        left: 15px;
        -webkit-transition: transform .2s cubic-bezier(.77,0,.175,1);
        -moz-transition: transform .2s cubic-bezier(.77,0,.175,1);
        -o-transition: transform .2s cubic-bezier(.77,0,.175,1);
        transition: transform .2s cubic-bezier(.77,0,.175,1);
    }

    header .nav>.nav-btn>label>span:nth-child(1)
    {
        top: 18px;
    }

    header .nav>.nav-btn>label>span:nth-child(2)
    {
        top: 24px;
    }

    header .nav>.nav-btn>label>span:nth-child(3)
    {
        top: 30px;
    }

    header .nav #nav-check:checked~.nav-btn>label>span:nth-child(1)
    {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 25px;
    }

    header .nav #nav-check:checked~.nav-btn>label>span:nth-child(2)
    {
        opacity: 0;
    }

    header .nav #nav-check:checked~.nav-btn>label>span:nth-child(3)
    {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 25px;
    }

    header .nav>nav
    {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #232024;
        height: 0;
        overflow-y: hidden;
        top: 50px;
        left: 0px;
        -webkit-transition: height .3s cubic-bezier(.77,0,.175,1);
        -moz-transition: height .3s cubic-bezier(.77,0,.175,1);
        -o-transition: height .3s cubic-bezier(.77,0,.175,1);
        transition: height .3s cubic-bezier(.77,0,.175,1);
    }

    header .nav> #nav-check:not(:checked)~nav
    {
        height: 0;
    }

    header .nav> #nav-check:checked~nav
    {
        height: -webkit-calc(100vh - 50px);
        overflow-y: auto;
    }

    header .nav>nav>ul>li
    {
        display: block;
    }

    header .nav>nav>ul>li>a
    {
        display: block;
        padding: 17.5px 15px;
    }
}

/* review */

article.post
{
    position: relative;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 23px 30px;
    background: #232024;
}

article.post:last-child
{
    margin-bottom: 0;
}

article.post>h2
{
    color: #fff;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden; 
    text-overflow: ellipsis;
    white-space: nowrap;
}

article.post>p
{
    margin: 7px 0;
    text-align: justify;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

article.post>p:last-child
{
    margin-bottom: 0;
}

article.post>p>span.click
{
    color: #fff;
}

article.post>p a::after {
    content: "#";
    font-weight: unset;
    transform: rotate(0deg);
    position: absolute;
    font-size: 15px;
    left: 11px;
    top: 6.5px;
}

/* content */
article.post-content
{
    display: block;
}

article.post-content>h1
{
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    margin: 7px 0;
}

article.post-content>h2,
article.post-content>h3,
article.post-content>h4,
article.post-content>h5,
article.post-content>h6
{
    color: #e0e0e0;
    font-size: 15px;
    font-weight: bold;
    margin: 7px 0 0 0;
}

article.post-content>p
{
    margin: 7px 0;
    text-align: justify;
}

article.post-content>p:last-child
{
    margin-bottom: 0;
}

article.post-content>pre
{
    display: block;
}

article.post-content>pre:last-child
{
    margin-bottom: 0;
}

article.post-content>pre>code
{
    background: #232024;
    display: block;
    padding: 10px 15px;
    border-radius: 6px;
    overflow: auto;
    font-size: 12px;
}

article.post-content :not(pre)>code
{
    font-size: 12px;
    background: #383838;
    color: #fff;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 0;
    vertical-align: 1px;
}

article.post-content>figure
{
    margin: 15px 0;
    text-align: center;
}

article.post-content>figure:last-child
{
    margin-bottom: 0;
}

article.post-content>figure>img
{
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

article.post-content>figure>figcaption
{
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
}

/* list group */
article.post-content ul
{
    list-style: none;
}

article.post-content ol
{
    list-style: decimal;
}

.toc
{
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    background: #232024;
    border-radius: 6px;
    padding: 7px 32px;
    font-weight: 700;
    cursor: pointer;
}

.toc::after
{
    content: '➜';
    font-weight: unset;
    transform: rotate(0deg);
    position: absolute;
    font-size: 15px;
    left: 11px;
    top: 6.5px;
}

.toc.active::after
{
    transform: rotate(90deg);
}

.toc:hover
{
    color:#6dfd00;
}

article.post-content>ul.table-of-contents
{
    display: block;
    background: #232224;
    padding: 1px 5px;
    border-radius: 0 0 6px 6px;
    margin: -4px 0px 0px 0px;
    font-size: 14px;
}

article.post-content>ul.table-of-contents li a::before,
article.post-content>ul.table-of-contents ul li a::before
{
    content: counters(item, ".", decimal) ". ";
    display: inline-block;
    counter-increment: item;
    margin-right: 0.2em;
}

article.post-content>ul.table-of-contents,
article.post-content>ul.table-of-contents ul
{
    counter-reset: item;
}

article.post-content>ul.table-of-contents li::before
{
    content: '';
}

article.post-content ul li::before
{
    content: '•';
    margin-right: 9px;
    font-weight: unset;
}

article.post-content>ul,
article.post-content>ol
{
    padding-left: 0;
}

article.post-content ul,
article.post-content ol
{
    list-style-position: inside;
    margin: 7px 0;
}

article.post-content li>ul,
article.post-content li>ol
{
    padding-left: 15px;
}

article.post-content ul li,
article.post-content ol li
{
    margin: 7px 0;
    padding: 0;
    text-align: justify;
}

/* table */
article.post-content>table
{
    border-collapse: collapse;
    text-align: center;
    width: 100%;
}

article.post-content>table tr>th,
article.post-content>table tr>td
{
    border: 1px solid #565454;
    padding: 6px 8px;
    font-size: 13px;
}

.video-wrapper
{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe
{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* pagination */
.pagination
{
    text-align: center;
}

.pagination>button
{
    margin-top: 15px;
    cursor: pointer;
    display: inline-block;
    padding: 10px;
    background: #2e2f38;
    border: 0;
    border-radius: 5px;
}

.pagination>button:hover
{
    background: #2a272c;
}

span.click
{
    cursor: pointer;
}

span.click>a
{
    pointer-events: none;
}

/* hidden */
.hidden
{
    display: block!important;
    opacity: 0!important;
    width: 0!important;
    height: 0!important;
    line-height: 0!important;
    margin: 0!important;
    padding: 0!important;
    overflow: hidden!important;
}

/* loading */
.lds-ellipsis
{
    margin-top: 15px;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    left: 50%;
    margin-left: -40px;
}
.lds-ellipsis div
{
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #817d7d;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1)
{
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2)
{
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3)
{
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4)
{
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1
{
    0%
    {
        transform: scale(0);
    }
    100%
    {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3
{
    0%
    {
        transform: scale(1);
    }
    100%
    {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2
{
    0%
    {
        transform: translate(0, 0);
    }
    100%
    {
        transform: translate(24px, 0);
    }
}