*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
	

::-moz-selection {
    color: #fff;
    background-color: #aeaaf5;
}
::selection {
    color: #fff;
    background-color: #aeaaf5;
}
/* width */
::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #8e899c;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #6c6875;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 8px -3px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 8px -3px rgba(0, 0, 0, 0.5);
    z-index: 999;
}
.header-container {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 10px 20px;
}
.header-container > h1.title {
    float: left;
    font-family: 'Pacifico', cursive;
    font-size: 40px;
    line-height: 40px;
    color: #755eb5;
    margin: 0;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.header-container > h1.title > span {
    color: #616161;
}
.header-container > ul {
    float: right;
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
}
.header-container > ul > li {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    /* padding: 5px 0; */
    -webkit-transition: text-shadow .2s ease, -webkit-transform .3s ease;
    transition: text-shadow .2s ease, -webkit-transform .3s ease;
    -o-transition: transform .3s ease, text-shadow .2s ease;
    transition: transform .3s ease, text-shadow .2s ease;
    transition: transform .3s ease, text-shadow .2s ease, -webkit-transform .3s ease;
    cursor: pointer;
}
.header-container > ul > li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-color: rgba(92, 47, 218, 0.1);
}
.header-container > ul > li > a {
    font-family: 'Fira Mono', monospace;
    color: #755eb5;
    text-decoration: none;
    text-transform: lowercase;
}
.header-container > ul > li:hover > a {
    /* transform: translateY(-5px) scale(1.1); */
    /* text-shadow: 0 5px 4px rgba(74, 56, 123, 0.65); */
}
.header-container > ul > li:hover::after {
    height: 8px;
}
footer {
    position: relative;
    width: 100%;
    background-color: #fff;
}
.footer-container {
    position: relative;
    font-family: 'Fira Mono', monospace;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    padding: 50px 20px 20px 20px;
    text-align: center;
}
.footer-container .btn-action {
    background-image: -o-linear-gradient(45deg, #6ac1c5, #bda5ff);
    background-image: linear-gradient(45deg, #6ac1c5, #bda5ff);
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    color: #fff;
}
.footer-container p {
    color: #755eb5;
}
main {
    position: relative;
    width: 100%;
}
.main-container {
    padding-top: 80px;
    max-width: 1366px;
    width: 100%;
    margin: 0 auto;
    min-height: 100vh;
}

section {
    padding: 20px;
}
section .section-content {
    position: relative;
    margin-bottom: 50px;
}
section .section-content::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 40%;
    height: 3px;
    /* background: rgb(255, 255, 255); */
    background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(#fff), to(transparent));
    background-image: -o-linear-gradient(left, transparent, #fff, transparent);
    background-image: linear-gradient(to right, transparent, #fff, transparent);
    -webkit-transform: translate(-50%, 40px);
        -ms-transform: translate(-50%, 40px);
            transform: translate(-50%, 40px);
}
section .section-content:last-of-type:not(:first-child)::after {
    content: none;
}

section p.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 50px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 6px #6c72bf;
}
section p.section-title.--lng {
    margin-bottom: 40px;
}
section p.section-title.--shrt {
    margin-bottom: 20px;
}
section p.section-desc {
    font-family: 'Fira Mono', monospace;
    position: relative;
    font-size: 20px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 30px;
}
section div.section-caption {
    display: block;
    text-align: center;
    margin-bottom: 0;
}
section div.section-caption > p {
    font-family: 'Fira Mono', monospace;
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 32px;
    color: #fff;
    padding: 0 5px;
    margin: 0 auto;
    margin-bottom: 10px;
    text-shadow: 0 2px 6px #6c72bf;
}
section div.section-caption > p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    background-color: rgba(76, 54, 255, 0.25);
    z-index: -1;
}
button.btn-action {
    font-family: 'Fira Mono', monospace;
    color: #755eb5;
    border: none;
    background-color: white;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid #fff;
    -webkit-box-shadow: 0 10px 20px -5px rgba(19, 31, 51, 0.65);
            box-shadow: 0 10px 20px -5px rgba(19, 31, 51, 0.65);
}
button.btn-action:disabled {
    background-color: #e4e4e4;
    border-color: #e4e4e4;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
    cursor: not-allowed;
}
button.btn-action.active {
    background-color: #9886c7;
    color: #fff;
}

.console-log {
    position: relative;
    width: 100%;
    padding: 26px 10px 10px 10px;
    background-color: #fff;
    border-radius: 8px;
    margin: 10px auto 30px auto;
    -webkit-box-shadow: 0 10px 20px -5px rgba(19, 31, 51, 0.65);
            box-shadow: 0 10px 20px -5px rgba(19, 31, 51, 0.65);
}
.console-log::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 40px;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5f56;
    -webkit-box-shadow: 16px 0px 0px #ffbd2e, 32px 0px 0px #27c93f;
            box-shadow: 16px 0px 0px #ffbd2e, 32px 0px 0px #27c93f;
}
.console-log.--md {
    width: 65%;
}
.console-log.--sm {
    width: 50%;
}
.console-log > .log-content {
    overflow: auto;
}
.--noshadow {
    -webkit-box-shadow: none;
    box-shadow: none;
}
pre {
    margin: 0;
}
code {
    color: #fff;
    background-color: #2f1e2e;
    font-family: 'Fira Mono', monospace;
    font-size: 12px;
    max-height: inherit;
    padding: 0px 15px;
    display: block;
    direction: ltr;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    line-height: 1.5;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    overflow: auto;
}

code span.white {
    color: #fff;
}
code span.red {
    color: #ff7a6f;
}
code span.orange {
    color: #ffa11b;
}
code span.yellow {
    color: #fff81d;
}
code span.green {
    color: #59c759;
}
code span.blue {
    color: #06b6ef;
}
code span.violet {
    color: #bb88ea;
}

/* features */
#features > .console-log > .log-content {
    background-color: #313131;
}
/* themes */
#themes .theme-content {
    width: 50%;
    float: left;
    padding: 10px 0;
}
#themes .theme-content:nth-child(odd) {
    padding-right: 10px;
}
#themes .theme-content:nth-child(even) {
    padding-left: 10px;
}
#themes .theme-content > .console-log {
    margin: 0;
}
#themes .theme-content > .console-log > .log-content > img {
    width: 100%;
    height: 245px;
}
#themes .theme-content > .console-log > .log-content > pre {
    margin: 4px 0 0 0;
}

/* demos */
#demos .section-desc {
    margin-bottom: 10px;
}
#demos .action-buttons {
    margin: 20px 0 30px 0;
    text-align: center;
}
#demos .action-buttons button.btn-action {
    margin-right: 10px;
}
#demos .action-buttons button.btn-action:last-child {
    margin-right: 0;
}

/* usage */
#usage .section-desc {
    margin-bottom: 10px;
}

/* settings */
#settings table {
    font-family: 'Fira Mono', monospace;
    width: 100%;
}
#settings table {
    background-color: #2f1e2e;
    border-collapse: collapse;
}
#settings th,
#settings td {
    border-right: 1px solid rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: .5rem 1rem;
}
#settings th:last-of-type,
#settings td:last-of-type {
    border-right: none;
}
#settings table tr > th {
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    padding: 1rem;
}
#settings table tr {
    cursor: pointer;
}
#settings table tr:hover > td {
    background-color: rgba(0, 0, 0, 0.20);
}
#settings table tr.active > td {
    background-color: rgba(0, 0, 0, 0.45);
}
#settings table tr > td:first-child {
    color: #abd5ff;
}

#settings td.red { color: #ff7a6f; }
#settings td.orange { color: #ffa11b; }
#settings td.blue { color: #06b6ef; }
#settings td.violet { color: #bb88ea; }
#settings td.gray { color: #6d6d6d; }

@media only screen and (max-width: 1366px) {
    .header-container,
    .main-container,
    .footer-container {
        max-width: 1200px;
    }
}
@media only screen and (max-width: 1024px) {
    #themes .theme-content > .console-log > .log-content > img {
        width: 100%;
        height: 200px;
    }
}
@media only screen and (max-width: 768px) {
    .header-container > h1.title {
        font-size: 40px;
    }
    .header-container > ul > li {
        margin: 0 5px;
    }
    .header-container > ul > li > a {
        font-size: 14px;
    }
    code {
        font-size: 16px;
    }
    section {
        padding: 20px 40px;
    }
    section p.section-desc {
        width: 70%;
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 22px;
    }
    .console-log.--md,
    .console-log.--sm { width: 100%; }
    button.btn-action {
        font-size: 16px;
        padding: 15px 20px;
    }
    /* features */
    
    /* themes */
    #themes .theme-content {
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%;
    }
    #themes .theme-content:nth-child(odd) {
        padding-right: 0;
    }
    #themes .theme-content:nth-child(even) {
        padding-left: 0;
    }
    #themes .theme-content > .console-log > .log-content > img {
       height: 320px;
    }
}
@media only screen and (max-width: 425px) {
    .header-container {
        padding: 10px 20px;
    }
    .header-container > h1.title {
        width: 100%;
        text-align: center;
    }
    .header-container > ul {
        width: 100%;
        margin: 10px 0 0;
        text-align: center;
    }
    .header-container > ul > li > a {
        font-size: 14px;
    }
    .main-container {
        padding-top: 110px;
    }
    section {
        padding: 20px;
    }
    section .section-content {
        margin-bottom: 40px;
    }
    section p.section-title {
        font-size: 40px;
        line-height: 42px;
    }
    section p.section-title.--lng {
        margin-bottom: 35px;
    }
    section p.section-title.--shrt {
        margin-bottom: 15px;
    }
    section p.section-desc {
        width: 100%;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 14px;
    }
    section div.section-caption > p {
        font-size: 16px;
        line-height: 18px;
    }
    section div.section-caption > p::after {
        transform: translateY(5px);
    }
    section .section-content::after {
        width: 50%;
        -webkit-transform: translate(-50%, 30px);
        -ms-transform: translate(-50%, 30px);
        transform: translate(-50%, 30px);
    }
    button.btn-action {
        font-size: 12px;
        padding: 10px 15px;
        width: 100%;
        margin: 5px 0;
    }
    code {
        font-size: 10px;
        padding: 0px 10px;
    }
    .console-log {
        padding: 18px 8px 8px 8px;
        border-radius: 6px;
    }
    .console-log::after {
        width: 6px;
        height: 6px;
        top: 6px;
        left: 8px;
        -webkit-box-shadow: 10px 0px 0px #ffbd2e, 20px 0px 0px #27c93f;
        box-shadow: 10px 0px 0px #ffbd2e, 20px 0px 0px #27c93f;
    }
    #themes .theme-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #themes .theme-content:first-child {
        padding-top: 0;
    }
    #themes .theme-content:last-child {
        padding-bottom: 0;
    }
    #themes .theme-content > .console-log > .log-content > img {
        height: 120px;
    }
    #themes .theme-content > .console-log > .log-content > pre {
        margin: 0;
    }
    #demos .action-buttons {
        margin: 15px 0 15px 0;
    }
    #settings th, #settings td {
        padding: 0.5rem 1rem;
        white-space: nowrap;
    }
    .footer-container {
        padding: 20px;
    }
    .footer-container p {
        font-size: 12px;
        margin: 8px 0;
    }
}
@media only screen and (max-width: 320px) {
    .header-container > ul > li > a {
        font-size: 12px;
    }
}