/*
 * Fonts
 */
 @font-face {
    font-family: Inter;
    src: url('../fonts/Inter.ttf') format('truetype'),
}

/*
 * Root
 */
:root {
    --bottombar-h: 0px;
    --bottombar-p: 0px;
    --drawer-w: 30rem;
    --input-p: 0.8rem;
    --node-h: 60px;
    --node-w: 180px;
    --preview-w: 0px;
    --preview-p: 0px;
    --sidebar-w: 0px;
    --sidebar-p: 0px;
    --toolbar-pos: -80px;
    --topbar-h: 64px;
    --alert-soft: #c56653;
    --alert: #b44f3a;
    --alert-hard: #743326;
    --alertBG: #ffcbc1;
    --antrax: #031602;
    --text-color: #031602;
    --text-color-soft: #77777e;
    --text-color-inactive: #afafaf;
    --text-color-invert: #fbfbfb;
    --light-contrast: #fbfbfb;
    --contrast: #031602;
    --contrast-soft: #202020;
    --contrast-softer: #424242;
    --contrast-softest: #f3f3f3;
    --dark-contrast: #b3b3b3;
    --heading: #f1f7f9;
    --focus: #2a978e;
    --focus-hard: #2d4d4a;
    --focus-harder: #213331;
    --focus-soft: #a3e1dc;
    --highlight: #6d40ea;
    --main: #ffffff;
    --main-hard: #f0f0f0;
    --main-soft: #0d1939;
    --main-softer: #1f2a4a;
    --primary: #000;
    --theme: #ffc107;
    --theme-hard: #c79602;
    --theme-soft: #ffdd76;
    --theme-softer: #ffdd76;
    --theme-softest: #ffdd76;
    --warning: #a67d1e;
    --warning-hard: #614912;
}


/*
 * HTML elements
 */
html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    font-family: Inter;
    background-color: var(--main);
    font-size: 10px;
    overflow: hidden;
}

body::-webkit-scrollbar {
    display: none;
  }
  
  body {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  body {
      scrollbar-width: thin;
      scrollbar-color: transparent transparent;
  }
  
  body::-webkit-scrollbar {
      width: 6px;
  }
  
  body::-webkit-scrollbar-thumb {
      background-color: transparent;
  }
  
  body::-webkit-scrollbar-track {
      background-color: transparent;
  }

h1 {
    margin: 12px;
    font-family: Inter;
    font-size: 4.5em;
    font-weight: 800;
}

h2 {
    margin: 8px 0;
    font-family: Inter;
    font-size: 3.5em;
    font-weight: 700;
}

h4 {
    margin: 8px 0;
    font-family: Inter;
    font-size: 1.7em;
    font-weight: 500;
}

h5 {
    margin: 8px 0;
    font-family: Inter;
    font-size: 1.4em;
    font-weight: 500;
}

p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

ul {
    padding-left: 24px;
}

li {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none!important;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

option {
    outline: none!important;
    background-color: var(--main)!important;
    cursor: pointer;
}

input {
    outline: none!important;
}

textarea {
    outline: none!important;
}

svg {
    position: absolute;
    pointer-events: none;
}

/*
 * Browser compatibility
 */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
input:-moz-autofill,
input:-moz-autofill-preview {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--focus-hard);
    border-radius: 4px;
}

*::-webkit-scrollbar-track {
    border-radius: 4px; 
}

.nodes-view *::-webkit-scrollbar {
    display: none!important;
}

.questions-view *::-webkit-scrollbar-thumb {
    display: none!important;
}

/*
 * Colors
 */
.bg-green {
    background-color: var(--focus-soft)!important;
}

/*
 * Layout and visibility
 */
.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

.all-c {
    align-items: center;
    justify-content: center;
}

.main-c {
    justify-content: center;
}

.main-end {
    justify-content: flex-end;
}

.main-sb {
    justify-content: space-between;
}

.main-sa {
    justify-content: space-around;
}

.main-s {
    justify-content: flex-start;
}

.cross-c {
    align-items: center;
}

.cross-e {
    align-items: flex-end;
}

.cross-s {
    align-items: flex-start;
}

.wrap {
    flex-wrap: wrap;
}

.gap-0-5 {
    gap: 0.5em;
}

.gap-1 {
    gap: 1em;
}

.gap-2 {
    gap: 2em;
}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-3 {
    flex: 3;
}

.flex-4 {
    flex: 4;
}

.flex-5 {
    flex: 5;
}

.flex-6 {
    flex: 6;
}

.flex-7 {
    flex: 7;
}

.flex-8 {
    flex: 8;
}

.flex-9 {
    flex: 9;
}

.flex-10 {
    flex: 10;
}

.fill-5 { width: 5%; }
.fill-8 { width: 8%; }
.fill-10 { width: 10%; }
.fill-15 { width: 15%; }
.fill-20 { width: 20%; }
.fill-25 { width: 25%; }
.fill-30 { width: 30%; }
.fill-35 { width: 35%; }
.fill-40 { width: 40%; }
.fill-42 { width: 42%; }
.fill-45 { width: 45%; }
.fill-50 { width: 50%; }
.fill-55 { width: 55%; }
.fill-60 { width: 60%; }
.fill-65 { width: 65%; }
.fill-70 { width: 70%; }
.fill-75 { width: 75%; }
.fill-80 { width: 80%; }
.fill-85 { width: 85%; }
.fill-90 { width: 90%; }
.fill-95 { width: 95%; }

.fill {
    height: 100%;
    width: 100%;
}

.fill-h {
    height: 100%;
}

.fill-w {
    width: 100%;
}

.max-w-23 {
    max-width: 23%;
}

.max-w-25 {
    max-width: 25%;
}

.max-w-30 {
    max-width: 30%;
}

.border-box {
    box-sizing: border-box;
}

.p-4 {
    padding: 4px;
}

.p-6 {
    padding: 6px;
}

.p-8 {
    padding: 8px;
}

.p-12 {
    padding: 12px;
}

.p-16 {
    padding: 16px;
}

.p-24 {
    padding: 24px;
}

.p-32 {
    padding: 32px;
}

.p-h-12 {
    padding: 0 12px;
}

.m-t-a {
    margin-top: auto;
}

.m-t-1 {
    margin-top: 8px;
}

.m-t-2 {
    margin-top: 16px;
}

.m-t-3 {
    margin-top: 3em;
}

.m-t-4 {
    margin-top: 4em;
}

.m-t-5 {
    margin-top: 5em;
}

.m-t-6 {
    margin-top: 6em;
}

.m-r-1 {
    margin-right: 8px;
}

.m-r-2 {
    margin-right: 16px;
}

.m-b-1 {
    margin-bottom: 1em;
}

.m-b-2 {
    margin-bottom: 2em;
}

.hidden {
    display: none;
}

.scroll-y {
    overflow-y: scroll;
}

.scroll-hidden {
    overflow-y: hidden;
}

/*
 * Text styling
 */

.text-soft {
    color: var(--text-color-soft)!important;
    font-weight: 500!important;
}

.text-md {
    color: var(--text-color)!important;
    font-weight: 500!important;
}

.text-semi {
    color: var(--text-color)!important;
    font-weight: 600!important;
}

/* 
 * Core elements
 */

.sidebar {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: var(--sidebar-w);
    box-sizing: border-box;
    padding: var(--sidebar-p);
    border-left: 1px solid var(--main-soft);
    background-color: var(--main);
    overflow: scroll;
    transition: 0.4s;
    z-index: 500;
}

.bottombar {
    position: fixed;
    bottom: 0;
    height: var(--bottombar-h);
    width: calc(100% - var(--drawer-open-w));
    box-sizing: border-box;
    padding: var(--bottombar-p);
    border-top: 1px solid var(--main-soft);
    overflow: scroll;
    transition: 0.6s;
}

.bottombar.long {
    width: calc(100% - var(--drawer-w));
}

.preview {
    height: 100%;
    width: var(--preview-w);
    box-sizing: border-box;
    padding: var(--preview-p);
    border-left: 1px solid var(--contrast);
    overflow: scroll;
    transition: 0.4s;
}

.preview-side {
    height: 100%;
    width: var(--preview-w);
    box-sizing: border-box;
    padding: var(--preview-p);
    border-left: 1px solid var(--main-soft);
    color: var(--text-color);
    overflow: scroll;
    transition: 0.4s;
}

.page-container {
    display: flex;
    flex-direction: row;
    height: calc(100% - 60px);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.content-container {
    position: relative;
    height: calc(100% - var(--bottombar-h));
    width: calc(100% - var(--sidebar-w) - var(--preview-w) - var(--drawer-w));
    box-sizing: border-box;
    background-color: var(--main);
    overflow: scroll;
    transition: 0.4s;
}

.cta {
    position: absolute;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
    padding: 5px;
    border-radius: 16px;
    background-color: var(--focus);
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s;
    z-index: 999;
}

.cta:hover {
    padding: 8px 12px;
    border-radius: 16px;
}

.cta > div {
    height: 24px;
    width: 24px;
    box-sizing: border-box;
    padding: 4px;
    border-radius: 50%;
    margin-right: 4px;
}

.cta > div > img {
    height: 100%;
}

.cta > label {
    display: flex;
    flex-wrap: nowrap;
    color: var(--text-color);
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    max-lines: 1;
    opacity: 0;
    cursor: pointer;
    transition: 0s;
}

.cta:hover > label {
    opacity: 1;
    transition: 0.8s ease-in;
}

.cta.relative {
    left: 24px;
    bottom: var(--toolbar-pos);
}

.cta.relative:hover {
    width: 110px;
}

.cta.connection {
    left: 80px;
    bottom: var(--toolbar-pos);
}

.cta.connection:hover {
    width: 144px;
}

.cta.relative:hover + .cta.connection {
    left: 166px;
}

.cta.remove {
    right: calc(var(--sidebar-w) + 24px);
    bottom: var(--toolbar-pos);
    background-color: #b44f3a;
}

.cta.remove:hover {
    width: 136px;
}

.cta.connection.connecting {
    width: 152px;
}

.cta.connection.connecting label {
    opacity: 1;
}

.cta.connection.connecting {
    padding: 8px 12px;
    border-radius: 16px;
}

.confirmation-box {
    position: fixed;
    bottom: 60px;
    right: calc(24px + var(--sidebar-w));
    box-sizing: border-box;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--main-softer);
    transition: 0.6s;
    opacity: 1;
    overflow: hidden;
    z-index: 10;
}

.confirmation-box > h3 {
    margin: 0;
    margin-bottom: 12px;
    color: var(--text-color);
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.confirmation-box > p {
    margin: 0;
    margin-top: 8px;
    color: var(--text-color);
    font-family: Inter;
    font-size: 14px;
    text-align: left;
}

.confirmation-box button {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    margin-top: 20px;
    color: var(--text-color);
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
}

.confirmation-box button.delete {
    background-color: var(--alert);
}

.confirmation-box button.delete:hover {
    background-color: var(--alert-hard);
}

.confirmation-box button.archive {
    background-color: var(--warning);
}

.confirmation-box button.archive:hover {
    background-color: var(--warning-hard);
}

.confirmation-box button.close {
    background-color: var(--theme);
}

.confirmation-box button.close:hover {
    background-color: var(--theme-hard);
}

.confirmation-box button.cancel {
    background-color: var(--main-softer);
}

.confirmation-box button.cancel:hover {
    background-color: var(--main-soft);
}

.confirmation-box.transparent {
    height: 0px;
    opacity: 0;
}

.confirmation-box.transparent > h3 {
    display: none;
}

.confirmation-box.transparent > p {
    display: none;
}

.confirmation-box.transparent button {
    display: none;
}

.confirmation > h3 {
    margin: 0;
    margin-bottom: 12px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.confirmation > p {
    margin: 0;
    margin-top: 8px;
    font-family: Inter;
    font-size: 14px;
    text-align: left;
}

.add {
    height: 32px;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 8px;
    background-color: var(--theme-soft);
    color: var(--text-color);
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    transition: 0.6s;
    cursor: pointer;
}

.add > img{
    height: 14px!important;
    width: 14px!important;
    margin-right: 8px!important;
    cursor: pointer;
}

.add:hover {
    background-color: var(--theme);
}

.call {
    height: 28px;
    box-sizing: border-box;
    padding: 12px 8px;
    border-radius: 4px;
    margin-right: 12px;
    background-color: var(--main-soft);
    color: var(--text-color);
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    transition: 0.6s;
    cursor: pointer;
}

.call > img{
    height: 14px!important;
    width: 14px!important;
    margin-right: 8px!important;
    cursor: pointer;
}

.call:hover {
    background-color: var(--main-softer);
}

.csm {
    height: 28px;
    box-sizing: border-box;
    padding: 12px 8px;
    border-radius: 4px;
    margin-right: 12px;
    background-color: var(--main-soft);
    color: var(--text-color);
    font-family: Inter;
    font-size: 12px;
    font-weight: 500;
    transition: 0.6s;
    cursor: pointer;
}

.csm > img{
    height: 14px!important;
    width: 14px!important;
    margin-right: 8px!important;
    cursor: pointer;
}

.csm:hover {
    background-color: var(--main-softer);
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading  span {
    display: none;
}

.loading .loader {
    display: inline-block;
}

.live-preview {
    position: fixed;
    top: 12%;
    right: calc(var(--sidebar-w) + 24px);
    height: 80%;
    width: calc(80% - var(--sidebar-w));
    border-radius: 8px;
    box-shadow: rgba(163, 225, 220, 0.7) 0px 0px 6px;
    background-color: var(--main);
    z-index: 9999;
}


.live-preview > div > div {
    flex: 1;
    box-sizing: border-box;
    padding: 20px;
}

.live-preview .close {
    position: absolute;
    top: -36px;
    right: 0px;
    padding: 4px 16px;
    border-radius: 4px;
    background-color: var(--main-softer);
    font-family: Inter;
    font-size: 12px;
    color: var(--text-color);
    transition: 0.6s;
    cursor: pointer;    
}

.live-preview .close:hover {
    background-color: var(--main-soft);
}

.live-preview textarea {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
    border: 1px solid var(--main-softer);
    border-radius: 6px;
    background-color: var(--main);
    color: var(--text-color);
    resize: none;
}

.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 10% 20%;
    background-color: #60606060;
    transition: 0.8s;
    overflow-y: auto;
}

.order-modal-content {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 36px;
    background-color: #ffffff;
    transition: 0.8s;
    overflow-y: auto;
    & .title {
        width: max-content;
        box-sizing: border-box;
        border-bottom: 3px solid var(--theme);
        margin: 0;
        font-size: 32px;
        font-weight: 600;
        text-align: left;
        color: var(--primary);
    }

    & .btn:hover {
        color: var(--primary);
        background-color: var(--theme);
    }

    & .btn {
        box-sizing: border-box;
        padding: 6px 16px;
        border: none;
        color: var(--main);
        font-size: 13px;
        font-weight: 400;
        text-align: center;
        vertical-align: middle;
        background-color: var(--primary);
        cursor: pointer;
        transition: 0.4s;
    }

    & .field-title {
        margin-top: 32px;
        text-align: left;
        color: var(--primary);
        font-size: 18px;
        font-weight: 700;
        text-align: left;
    }

    & .field-label {
        margin-top: 16px;
        text-align: left;
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        text-align: left;
    }

    & .row-label {
        margin-top: 0px;
        text-align: left;
        color: var(--primary);
        border: none;
        font-size: 13px;
        font-weight: 400;
        text-align: left;
    }

    & .row-input {
        margin-top: 0px;
        text-align: left;
        box-sizing: border-box;
        padding: 8px;
        padding-left: 0px;
        padding-top: 0px;
        background-color: transparent;
        color: var(--primary);
        border: none;
        font-size: 13px;
        font-weight: 400;
        text-align: left;
    }

    & .item-block {
        width: 100%;
        box-sizing: border-box;
        padding: 16px;
        background-color: #eee;
        margin-top: 16px;
    }
    
    & .item-block label {
        background-color: #eee!important;
        margin-bottom: 0px!important;
    }
}

#prompt_preview_md .keyword {
    display: inline-block;
    width: fit-content;
    box-sizing: border-box;
    padding: 2px 6px;
    border-radius: 4px;
}

#prompt_preview_md .keyword.question {
    background-color: var(--focus-hard);
}

#prompt_preview_md .keyword.function {
    background-color: var(--theme-hard);
}

#page_title {
    width: fit-content;
    border-bottom: 3px solid var(--theme);
}

@media only screen and (max-width: 2560px) {
    html {
      font-size: 12px;
    }
}

@media only screen and (max-width: 2320px) {
    html {
      font-size: 11.5px;
    }
}

@media only screen and (max-width: 2200px) {
    html {
      font-size: 11px;
    }
}

@media only screen and (max-width: 2080px) {
    html {
      font-size: 10.5px;
    }
}

@media only screen and (max-width: 1920px) {
    html {
      font-size: 10px;
    }
}

@media only screen and (max-width: 1780px) {
    html {
      font-size: 9.5px;
    }
}

@media only screen and (max-width: 1640px) {
    html {
      font-size: 9px;
    }
}

@media only screen and (max-width: 1366px) {
    html {
      font-size: 8.5px;
    }
}

@media only screen and (max-width: 1280px) {
    html {
      font-size: 8px;
    }
}

@media only screen and (max-width: 1024px) {
    html {
      font-size: 7.5px;
    }
}

@media only screen and (max-width: 768px) {
    html {
      font-size: 7px;
    }
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.b-24 {
    bottom: 24px;
}

.r-24 {
    right: 24px;
}

.checkbox-wrapper-12 {
    position: relative;
  }
  .checkbox-wrapper-12 > svg {
    position: absolute;
    top: -130%;
    left: -170%;
    width: 110px;
    pointer-events: none;
  }
  .checkbox-wrapper-12 * {
    box-sizing: border-box;
  }
  .checkbox-wrapper-12 input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    margin: 0;
  }
  .checkbox-wrapper-12 input[type="checkbox"]:focus {
    outline: 0;
  }
  .checkbox-wrapper-12 .cbx {
    width: 24px;
    height: 24px;
    top: calc(50vh - 12px);
    left: calc(50vw - 12px);
  }
  .checkbox-wrapper-12 .cbx input {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--text-color);
    border-radius: 50%;
  }
  .checkbox-wrapper-12 .cbx label {
    display: block;
    width: 24px;
    height: 24px;
    background: none;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-filter: url("#goo-12");
    filter: url("#goo-12");
    transform: translate3d(0, 0, 0);
    pointer-events: none;
  }
  .checkbox-wrapper-12 .cbx svg {
    position: absolute;
    top: 7px;
    left: 6px;
    z-index: 1;
    pointer-events: none;
  }
  .checkbox-wrapper-12 .cbx svg path {
    stroke: var(--text-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 19;
    stroke-dashoffset: 19;
    transition: stroke-dashoffset 0.3s ease;
    transition-delay: 0.2s;
  }
  .checkbox-wrapper-12 .cbx input:checked + label {
    display: block;
    animation: splash-12 0.6s ease forwards;
  }
  .checkbox-wrapper-12 .cbx input:checked + label + svg path {
    stroke-dashoffset: 0;
  }
  @-moz-keyframes splash-12 {
    40% {
      background: var(--theme);
      box-shadow: 0 -18px 0 -8px var(--theme), 16px -8px 0 -8px var(--theme), 16px 8px 0 -8px var(--theme), 0 18px 0 -8px var(--theme), -16px 8px 0 -8px var(--theme), -16px -8px 0 -8px var(--theme);
    }
    100% {
      background: var(--theme);
      box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
  }
  @-webkit-keyframes splash-12 {
    40% {
      background: var(--theme);
      box-shadow: 0 -18px 0 -8px var(--theme), 16px -8px 0 -8px var(--theme), 16px 8px 0 -8px var(--theme), 0 18px 0 -8px var(--theme), -16px 8px 0 -8px var(--theme), -16px -8px 0 -8px var(--theme);
    }
    100% {
      background: var(--theme);
      box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
  }
  @-o-keyframes splash-12 {
    40% {
      background: var(--theme);
      box-shadow: 0 -18px 0 -8px var(--theme), 16px -8px 0 -8px var(--theme), 16px 8px 0 -8px var(--theme), 0 18px 0 -8px var(--theme), -16px 8px 0 -8px var(--theme), -16px -8px 0 -8px var(--theme);
    }
    100% {
      background: var(--theme);
      box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
  }
  @keyframes splash-12 {
    40% {
      background: var(--theme);
      box-shadow: 0 -18px 0 -8px var(--theme), 16px -8px 0 -8px var(--theme), 16px 8px 0 -8px var(--theme), 0 18px 0 -8px var(--theme), -16px 8px 0 -8px var(--theme), -16px -8px 0 -8px var(--theme);
    }
    100% {
      background: var(--theme);
      box-shadow: 0 -36px 0 -10px transparent, 32px -16px 0 -10px transparent, 32px 16px 0 -10px transparent, 0 36px 0 -10px transparent, -32px 16px 0 -10px transparent, -32px -16px 0 -10px transparent;
    }
  }