:root {
    --clr-text: #000;
    --clr-neutral-50: #fff;
    --clr-neutral-100: #fbfbfd;
    --clr-neutral-150: #f4f4f4;
    --clr-neutral-200: #eeeeee;
    --clr-neutral-225: #C5C5C5;
    --clr-neutral-250: #b5b4b4;
    --clr-neutral-250: #b5b4b4;
    --clr-neutral-300: #8b8b8b;
    --clr-neutral-350: #444f55;
    --clr-neutral-400: #333232;
    --clr-neutral-500: #021f30;
    --clr-neutral-600: #1e2b32;
    --clr-neutral-700: #232323;
    --clr-neutral-750: #031926;
    --clr-neutral-800: #06141c;
    --clr-neutral-900: #1c1d21;
    --clr-secondary-200: #e3f3cf;
    --clr-accent-25: #f4fff5;
    --clr-accent-50: #e4ffe5;
    --clr-accent-100: #cfe9d0;
    --clr-accent-200: #70ff00;
    --clr-accent-400: #3ff360;
    --clr-accent-500: #33c34e;
    --clr-accent-600: #57b25a;
    --clr-accent-700: #04af2f;
    --clr-accent-800: #2c9d30;
    --clr-accent-900: #239327;
    --clr-beige: hsl(54, 79%, 58%, 0.6);
    --clr-yellow-200: #fefad8;
    --clr-yellow-400: #FFE529;
    --clr-yellow: #FFE529;
    --clr-orange-100: #ffede0;
    --clr-orange-200: #fcdbc4;
    --clr-orange-300: #ff9175;
    --clr-orange-400: #f46f14;
    --clr-blue-100: #f4fbff;
    --clr-blue-150: #e1f6ff;
    --clr-blue-200: #bfe4f5;
    --clr-blue-300: #aed3ff;
    --clr-blue-400: #0196da;
    --clr-blue-700: #4fa9c5;
    --clr-blue-900: #233743;
    --clr-danger-400: #ae4136;

    --ff-poppins: "Poppins", sans-serif;
    --ff-lato: "Lato", sans-serif;
    --ff-raleway: "Raleway", sans-serif;
    --ff-nunito: "Nunito", sans-serif;

    --fs-900: 2.5rem;
    --fs-850: 1.688rem;
    --fs-800: 2.5rem;
    --fs-750: 2rem;
    --fs-700: 1.65rem;
    --fs-600: 1.25rem;
    --fs-550: 1.125rem;
    --fs-500: 1rem;
    --fs-400: 1rem;
    --fs-300: 0.875rem;
    --fs-200: 0.775rem;

    --container-width: 1413px;

    --container: min(calc(100% - 1.875rem * 2), var(--container-width));

    --header-height: 72px;
    --accent-header-height: 56px;
}

.logo-mobile {
    margin-right: 1rem;
}

.logo-desktop {
    margin-right: 1rem;
}

@media (max-width: 40rem) {
    .logo-desktop {
        display: none;
    }
}

@media (min-width: 40rem) {
    .logo-mobile {
        display: none;
    }
}

body {
    color: var(--clr-text);
}

@media(min-width: 32rem) {
    :root {
        --fs-900: 3rem;
        --fs-850: 1.9rem;
        --fs-800: 3rem;
        --fs-750: 2rem;
        --fs-700: 1.6rem;
        --fs-600: 1.37rem;
    }
}

@media(min-width: 40rem) {
    :root {
        --fs-900: 3.75rem;
        --fs-850: 2.313rem;
        --fs-800: 3.5rem;
        --fs-750: 2.5rem;
        --fs-700: 1.9rem;
        --fs-600: 1.563rem;
        --fs-550: 1.25rem;
        --fs-500: 1.25rem;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

ul {
    list-style: none;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration-skip-ink: auto;
    text-decoration: none;
    color: currentColor;
}

.nav a:not(.button):not(.cart-item):not(.dropdown__item a):hover {
    color: var(--clr-accent-700);
}

img,
svg {
    max-width: 100%;
    display: block;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    font-family: var(--ff-poppins);
    background-color: var(--clr-neutral-100);
}

body {
    overflow-x: hidden;
}

h1,
h2 {
    font-family: var(--ff-lato);
    font-weight: bold;
}

svg path,
svg {
    transition: 0.25s ease;
}

b {
    font-weight: 700;
}

/* utilities */

.fs-400 {
    font-size: var(--fs-400);
}

h2 {
    line-height: 1;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fw-700 {
    font-weight: 700;
}

.input {
    border: 1px solid var(--clr-accent-700);
    border-radius: 0.5625rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.95rem;
}

.input::placeholder {
    font-size: 0.95rem;
    color: var(--clr-text);
}

@media (min-width: 800px) {

    .input {
        padding: 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .input::placeholder {
        font-size: 1rem;
    }
}

.input:focus {
    outline: none;
    border-color: var(--clr-text);
}

.button {
    cursor: pointer;
    background-color: var(--clr-accent-700);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding-block: 0.563em;
    padding-inline: 1em;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 45px;
    color: #fff;
}

.button svg {
    max-height: 25px;
}

.button:hover {
    background-color: var(--clr-accent-50);
    border-color: var(--clr-accent-700);
    color: var(--clr-accent-700);
}

.button:hover svg path {
    fill: var(--clr-accent-700);
}

.header {
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    z-index: 5;
    padding: 0 min(3vw, 1.875rem);
    margin-inline: auto;
    position: relative;
    height: var(--header-height);
}

@media (max-width: 1250px) {

    .accent-nav__toggle {
        cursor: pointer;
        display: flex;
        align-items: center;
        border: 0;
        background-color: transparent;
        gap: .5rem;
        color: #fff;
        border-radius: .35rem;
        padding: .35rem 1rem;
    }

    .accent-nav__toggle svg {
        pointer-events: none;
    }

    .accent-nav__toggle[aria-expanded=true] {
        background-color: var(--clr-neutral-50);
        color: var(--clr-accent-800);
    }

    .accent-nav__toggle[aria-expanded=true] svg {
        transform: rotate(180deg);
    }

    .accent-nav__toggle[aria-expanded=true] svg path {
        stroke: var(--clr-accent-800);
    }

}

@media (min-width: 1250px) {

    .accent-nav__toggle {
        display: none;
    }
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease-in-out;
}

.header.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 67rem) {

    .nav {
        position: absolute;
        background-color: var(--clr-neutral-50);
        inset: 70px 0 auto;
        margin-left: auto;
        border-bottom-left-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
        box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
        display: grid;
        grid-template-rows: 0fr;
        transition: .3s ease-in-out;
    }

    .nav[data-visible] {
        grid-template-rows: 1fr;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
        border: 0;
        background: transparent;
        background-image: url(\"../img/hamburger.svg\");
        background-repeat: no-repeat;
        min-width: 25px;
        height: 25px;
    }

    .nav-toggle[aria-expanded=\"true\"] {
        background-image: url(\"../img/close.svg\");
    }

}

@media (min-width: 67rem) {

    .header {
        --header-height: 83px;
        padding-inline: 0;
        box-shadow: none;
        width: var(--container);
        margin-inline: auto;
    }

    .dropdown {
        position: relative;
    }

    .nav-toggle {
        display: none;
        z-index: 10;
    }

    .nav {
        flex: 1;
    }
}

@media (min-width: 500px) {}

@keyframes scroll {
    0% {
        transform: translateX(calc(-100% - 4rem));
    }

    to {
        transform: translateX(0);
    }
}

@keyframes wait_amin {
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    80% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    0% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

.tabs:not(.tabs--mobile) {
    display: none;
}

@media (min-width: 60rem) {

    .tabs:not(.tabs--mobile) {
        display: block;
    }
}

.tabs {
    position: relative;
    margin-top: 2rem;
}

.tablist {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 2rem;
}

.tabpanel {
    overflow-x: hidden;
    padding: 2rem;
    background-color: var(--clr-neutral-150);
    border-radius: 0.875rem;
    border: 1px solid var(--clr-accent-700);
}

.select {
    position: relative;
    min-width: 276px;
}

/* homepage */

/* prime pack, ebook */

.tools {
    padding-block: min(7vw, 3rem);
    background-color: var(--clr-neutral-200);
}

/* annual membership */

@media(min-width: 600px) {
    .benefits h2 {
        text-align: center;
    }
}

@media(min-width: 1000px) {
    .benefits h2 {
        text-align: start;
    }
}

/* best seller */

/* marketplace */

/* teach with us */

/* prime packs listing */

/* search page */

/* category */

/* cart */

/* sign up | sign in */

@media (max-width: 840px) {

    .tutorial-toc-toggle {
        display: block;
        cursor: pointer;
        border: 0;
        background: transparent;
        background-image: url(\"../img/hamburger.svg\");
        background-repeat: no-repeat;
        min-width: 25px;
        height: 25px;
        margin-right: min(3vw, 1rem);
    }

    .tutorial-toc-toggle[aria-expanded=\"true\"] {
        background-image: url(\"../img/hamburger-accent.svg\");
    }
}

@media (min-width: 840px) {

    .tutorial-toc-toggle {
        display: none;
    }
}

.fal {
    font-family: \"Font Awesome 6 Pro\";
}

main {
    overflow: hidden;
}
#editor, #terminal{
   height:100% !important;
}

","file":"style.css"},{"css":".editor-tabs {
   padding-inline: .25rem;
}
.editor-tab-panels>div[aria-hidden=true] {
   display: none;
}
.editor-tab-panels,
.editor-tab-panels>div {
   height: calc(100% - 23px);
}

.editor-header .logo-desktop {
   margin: 0 !important;
   max-width: 180px;
}

.editor-header .logo-mobile {
   margin: 0 !important;
}

.editor-header>a:first-child {

   flex-shrink: 0;
}

.editor-header {
   z-index: 20;
   display: flex;
   align-items: center;
   padding: .5rem 1rem;
}

.editor-left-pane {
 /*  overflow-y: auto; */
   padding-left: .25rem;
   border: 1px solid #dfdfdf;
}

.editor-right-pane {
   overflow-y: auto;
/*   padding-left: .25rem; */
   border: 1px solid #dfdfdf;
}

.editor-container {
   height: calc(100svh - 58px);
   border-top: 1px solid var(--clr-neutral-225);
}

.editor-header .nav-toggle {
   margin-left: auto;
}

@media (max-width:50rem) {
   .editor-ad {
      display: none;
   }

   .editor-header nav {
      padding-block: 1rem;
      border-block: 1px solid var(--clr-neutral-225);
      position: absolute;
      top: 58px;
      background-color: var(--clr-neutral-50);
      display: none;
      z-index: 15;
      left: 0;
      width: 100%;
   }

   .editor-header nav ul {
      gap: 1rem;
      flex-direction: column;
   }

   .editor-header nav[data-visible] {
      display: block;
   }

   .editor-nav-toggle {
      margin-left: auto;
      display: block;
      cursor: pointer;
      border: 0;
      background: transparent;
      background-image: url("../img/hamburger.svg");
      background-repeat: no-repeat;
      min-width: 25px;
      height: 25px;
   }
   .editor-nav-toggle[aria-expanded="true"] {
      background-image: url("../img/close.svg");
   }
}
#help {
    padding: 20px 20px;
    overflow:scroll;
    font-size: .9rem;
}
#help strong{
    font-weight: bold;
}
#help ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
#help table th{
   text-align: left;
    font-weight: bold;
}
table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}
.editor-tab-panels>div {
    display: flex;
}
.editor-split-container{
      flex: 1;
}
@media (min-width:50rem) {
   .editor-ad {
      border: 1px solid var(--clr-neutral-225);
      border-right: 0;
      text-align: center;
      display: block;
      width: 300px;
      font-size: .9rem;
   }

   .editor-ad p {
      padding: .25rem;
      background-color: var(--clr-neutral-200);
      border-bottom: 1px solid var(--clr-neutral-225);
   }

   .editor-nav-toggle {
      display: none;
   }
}
.editor-separator {
   flex-shrink: 0;
   width: 1px;
   height: 1.25rem;
   background-color: var(--clr-neutral-225);
   display: inline-block;
   margin-inline: .5rem;
}
.editor-tabs {
   padding-block: .3rem;
   display: flex;
   align-items: center;
   background-color: var(--clr-neutral-150);
}

.scroll-x {
   overflow-x: auto;
   scrollbar-width: none;
   white-space: nowrap;
}

.scroll-x::-webkit-scrollbar {
   display: none;
}

.editor-button {
   font-size: .9rem;
   border-radius: .4rem;
   border: 1px solid transparent;
   color: var(--clr-text);
}

.editor-button a,.editor-button button,
.editor-nav-item .editor-button  {
   display: flex;
   align-items: center;
   gap: .5rem;
   width: 100%;
   padding: .35rem .6rem;
   border:0px;
}

.editor-button a:has(svg), .editor-button button:has(svg),
.editor-nav-item .editor-button:has(svg) {
   padding-right: 1.5rem;
}

.editor-nav-item.dropdown>div li button {
   color: var(--clr-text);
}

.editor-button svg,
.editor-nav-item.dropdown>div li a svg,
.editor-nav-item.dropdown>div li button svg {
   flex-shrink: 0;
   max-width: 16px;
}

.editor-button:has(a[aria-selected=true]),
.editor-button:hover,
.editor-nav-item .editor-button:hover,
.editor-nav-item:has(div:hover) .editor-button {
   border: 1px solid var(--clr-neutral-225);
   background-color: var(--clr-neutral-50);
   box-shadow: 0px 1px 1px rgb(0 0 0 / .05);
}
.editor-button button:hover{
   border: 0px solid var(--clr-neutral-225);
   background-color: var(--clr-neutral-50);
   box-shadow: 1px 1px 1px rgb(0 0 0 / .05);
   border-radius: .4rem;
   cursor: pointer;
}
.editor-nav {
   display: flex;
   align-items: center;
}

.editor-header nav {
   margin-left: auto;
}

.editor-nav-item .editor-button {
   background-color: transparent;
   cursor: pointer;
   display: flex;
   align-items: center;
   gap: .5rem;
   border:1px solid #fbfbfd;
}

.editor-nav-item.dropdown {
   position: relative;
}

.editor-nav-item.dropdown>div {
   border-radius: .4rem;
   border: 1px solid var(--clr-neutral-225);
   min-width: 230px;
   display: none;
   position: absolute;
   background-color: var(--clr-neutral-50);
   right: 0;
   z-index: 10;
}

.editor-nav-item.dropdown.dropdown-nested>div {
   transform: translateX(-99%);
   top: 0;
}

.editor-nav-item.dropdown:hover>div {
   display: block;
}

.editor-nav-item.dropdown>div li a,
.editor-nav-item.dropdown>div li button {
   cursor: pointer;
   background-color: transparent;
   border: 0;
   width: 100%;
   display: flex;
   align-items: center;
   gap: .5rem;
   font-size: .9rem;
   padding: .4rem 1rem;
}

.editor-nav-item.dropdown>div li a:hover,
.editor-nav-item.dropdown>div li button:hover {
   background-color: var(--clr-neutral-150);
}

.editor-dropdown-separator {
   width: 100%;
   height: 1px;
   display: block;
   background-color: var(--clr-neutral-225);
}

.editor-split-container {
   display: flex;
   height: 100%;
   position: relative;
   flex-direction: column;
}

.editor-split-container>div {
   height: 50%;
}

.editor-resizer {
   height: 10px;
   cursor: ns-resize;
   background-color: var(--clr-neutral-200);
   border: 0px solid var(--clr-neutral-225);
   z-index: 5;
}

@media (min-width: 1000px) {
   .editor-split-container {
      flex-direction: row;
   }

   .editor-split-container>div {
      height: 100%;
      width: 50%;
   }

   .editor-resizer {
      height: 100%;
      cursor: ew-resize;
      width: 10px;
   }
}

:root {
   --accent-header-height: 45px;

}

.header {
   --header-height: 70px;
}
div#loading {
    position: relative;
    margin: 0 auto;
    width: 150px;
    top: 34%;
    height: 150px;
    z-index: 109;
    background: url(images/loading.gif) no-repeat;
    background-color: transparent;
    visibility: visible;
}
#container {
    width: 100%;
    margin-top: 50px;
    text-align: center !important;
    padding-bottom: 100px;
    background-size: cover;
}
.captch-box{
    margin-bottom: 10px;
    display: inline-flex;
    column-gap: 13.5px;
}
.textbox {
    position: relative;
    border: 1px solid #D3D3D3;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    width: 242px;
    height: 34px;
    padding: 10px;
}
.warning-cover {
    margin-bottom: 20px;
    padding: 10px 0px !important;
    height: 30px;
    color: #d00606;
    font-size: 18px;
}
.login-cover{
    background: #ededed;
    width: 500px;
    border: 1px solid #aaa;
    border-radius: 10px;
}
#container #submit a:hover {
   background:#fff;
}
#container #submit a {
    outline: none;
    text-align: center;
    vertical-align: middle;
    line-height: normal;
    width: fit-content;
    padding: 5px;
    border: 1px solid #aaa;
    border-radius: 5px;
    font-size: 15px;
}

.generic-popup {
   border: none;
   box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgba(0, 0, 0, 0.25);
   padding: 1.5rem;
   max-width: 440px;
   width: 90%;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
}

.generic-popup input {
   width: 100%;
}

.generic-popup label {
   display: block;
}

.generic-popup-title {
   text-align: center;
   font-size: 1.5rem;
   margin-top: -0.5rem;
}

.generic-popup .button {
   width: 100%;
   justify-content: center;
   margin-top: 1rem;
}

.generic-popup-close-button {
   float: inline-end;
   margin: -0.75rem;
   background-color: transparent;
   width: 40px;
   height: 40px;
   border: none;
   cursor: pointer;
}
 @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .rotating {
    animation: rotate 1.5s linear infinite;
  }

  .hidden {
    display: none;
  }
  .editor-button #execute{
      width: 100px !important;
  }
