/* bootstrap icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/font/bootstrap-icons.css");

@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined");

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* Centralized color system */
/* Added on 07-02-2023 */
/* 1.0.0 */

:root{

}

body
{
    margin: 0;
    padding: 0;
}

i, .material-symbols-outlined{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: medium;
}

  :root, body.light-theme{
  
    --background-color: #ffffff;
    --text-color: black;
    
    --primary-color: #f0f0f0;
    --secondary-color: #bfbfbf;
    --tertiary-color: #a1a1a1;
    
    --selected-text-color: white;
    --selected-background-color: dodgerblue;
    --hover-text-color: black;
    --hover-background-color: darkgrey;
    
    --accent-color: dodgerblue;
    --accent-faded-color: #81C0E3;
    
    --default-border-radius: 8.5px;
    --default-transparency: 0.5;
    
    --default-loader-color: dodgerblue;
    --faded-text-color: grey;
    
}

body.dark-theme{
  
    --background-color: #0d0d0d;
    --text-color: white;
    
    --primary-color: #1c1c1c;
    --secondary-color: #262626;
    --tertiary-color: #40403f;
    
    --selected-text-color: white;
    --selected-background-color: dodgerblue;
    --hover-text-color: black;
    --hover-background-color: darkgrey;
    
    --accent-color: dodgerblue;
    --accent-faded-color: #81C0E3;
    
    --default-border-radius: 8.5px;
    --default-transparency: 0.5;
    
    --default-loader-color: white;
    
}

*{transition: .25 all;}

  ::-webkit-scrollbar{
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-track, ::-webkit-scrollbar-corner{
    background-color: transparent;
}

::-webkit-scrollbar-thumb{
    border: 5px solid transparent;
    width: 10px;
    height: 10px;
    background-color: var(--tertiary-color);
    border-radius: 50px;
    background-clip: content-box;
}

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

.critical-error{
    background-color: white;
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    border: 30px solid white;
    border-radius: 5px;
    box-sizing: border-box;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000000000;
}

.critical-error-sub{
    background-color: #ff6666;
    width: max-content;
    height: max-content;
    padding: 10px;
    color: white;
    border: 2px solid red;
}

.critical-error > .critical-error-sub > i{
    display: block;
    margin: auto;
    font-size: 50px;
}

h1, h2, h3, h4, h5, h6{
    margin: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

p, input{
    
    font-family: 'DM Sans', sans-serif;
    color: var(--text-color);
}

input:focus, input:hover{
    color: var(--text-color);
}

p{margin: 20px;}

.btn{
    height: 50px;
    padding: 30px;
    padding-block: 0px;
    margin: 7.5px;
    margin-block: 0px;
}

button i{
    padding: 10px;
    padding-left: 5px;
    font-size: large;
}


div[aria-orientation= 'vertical'] .nav-link{
    width: 300px;
    margin: 10px;
    margin-block: 0px;
    text-align: left;
}


.jumbo, .jumbo *{
    font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
}

i{
    padding: 10px;
}

.info-dual{
    width: calc(100% - 20px);
    height: 60px;
    margin: 10px;
    border: 2px solid black;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 60px 1fr;
}

.info-dual i{display: grid;place-items: center;width: 100%;height: 100%;margin: 0px !important}
.info-dual p{padding-left: 10px;line-height: 60px;margin: 0px !important}


.navbar-brand{padding-left: 10px;color: dodgerblue;font-weight: bold;font-family: 'Montserrat', sans-serif;}


.icon-button-array-4{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: calc(100% - 20px);
    margin: 10px;
    margin-block: 15px;
    gap: 10px;
    cursor: pointer;
}

.icon-button-array-4-btn:hover{background-color: lightgrey}

.icon-button-array-4-btn{
    border: 1px solid black;
    width: calc(100% - 10px);
    height: 100%;
    display: grid;
    grid-template-columns: 100px 1fr;
    margin: 5px;
    border-radius: 10px;
}

.icon-button-array-4-btn i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: xx-large;
}

.icon-button-array-4-btn p{
    margin: 0px;font-weight: bold;
}

.icon-button-array-4-sub-part{
    width: calc(100% - 10px);
    display: grid;
    grid-template-rows: max-content max-content;
    padding: 5px;
    align-content: center;
}

.icon-button-array-4-faded{
    font-size: small;
    color: grey;
    font-weight: normal;
}

/* dashboard buttons */
.dropdown-toggle { outline: 0; }


.collapse-sub-btn, .side-btn{
    width: calc(100% - 50px);
    border-radius: 5px;
    padding: 10px;
  font-weight: 600;
  color: rgba(0, 0, 0, .65) !important;
  background-color: transparent;
  line-height: 40px;
  margin-block: 7.5px;
  font-family: 'Dm Sans', sans-serif;
  border: 0px !important;
}

.collapse-sub-btn i {padding-block: 0px;font-size: small}

.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea;
}

.side-btn:hover,
.side-btn:focus {
  color: rgba(0, 0, 0, .85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}


.singleton-container{
    width: calc(100% - 10px);
    margin: 5px;
    margin-block: 10px;
    background-color: whitesmoke;
    display: grid;
    border-radius: 5px;
}

.singleton-container:hover{
    background-color: #d2f4ea;
}

.singleton-container i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: large;
}

.no-style{
    border: 0px;
    margin: 0px;
    padding: 0px;
    margin: 0px;
    outline: 0px;
    background-color: transparent;
}

.full-line-search{
    width: calc(100% - 40px);
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
    background-color: whitesmoke;
    border-radius: 5px;
    margin: 20px;
    margin-block: 10px;
    overflow: hidden;
}

.full-line-search i{width: 60px;height: 60px;display: grid;place-items: center;font-size: large}
.full-line-search input{font-size: large;}

.grid-icon, .toggle-setting i{
    width: 60px;height: 60px;display: grid;place-items: center;font-size: large
}


.icon-btn-layout{
    display: grid;
    grid-template-columns: 80px 80px;
    gap: 5px;
    margin: 5px;
    justify-content: center;
}

.icon-btn-layout-b{
    height: 100px;
    width: 100%;
    display: grid;
    grid-template-rows: 60px 40px;
    background-color: whitesmoke;
    border-radius: 5px;
    cursor: pointer;
}

.icon-btn-layout-b:hover{
    background-color: lightgrey;
}

.icon-btn-layout-b i{
    font-size: xx-large;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    
}

.icon-btn-layout-b p{
    line-height: 40px;
    transform: translateY(-10px);
    margin: 0px;
    text-align: center;
    font-size: medium;
}


.form{
    width: 100%;
    display: grid;
    place-items: center;
    height: max-content;
    margin-block: 50px;
}

.form-content{
    width: calc(100% - 300px);
    background-color: whitesmoke;
    border-radius: 5px;
    padding: 50px;
}

.form-content .btn{
    margin: 20px;
    margin-left: 0px;
}

.dual{
    display: grid;
    grid-template-columns: 60px 1fr;
    height: 60px;
    width: calc(100% - 10px);
    margin: 5px;
    background-color: whitesmoke;
    border-radius: 5px;
}

.dual i{width: 100%;height: 100%;display: grid;place-items: center;font-size: x-large}
.dual p{line-height: 60px;margin: 0px}

.form-input-dual{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-icon-input{
    margin-block: 5px;
}

i.disabled{color: grey;cursor: not-allowed;}

.form-icon-input, .form-icon-input-disabled{
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
    background-color: white;
}

.form-icon-input-disabled{
    background-color: lightgrey;
    
}

.form-icon-input:focus-within{
    outline: 1px solid black;
}

.form-icon-input input, .form-icon-input-disabled input{
    border: 0px;
    margin: 0px;
    padding: 0px;
    margin: 0px;
    outline: 0px;
    background-color: transparent;
}

.form-icon-input i, .form-icon-input-disabled i{
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    font-size: x-large;
}

.modal-content{
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}

.modal-header{
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    padding: 0px;
    align-items: center;
}

.modal-header i{
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.modal-header p{line-height: 60px;margin: 0px;font-weight: bold}


.toggle-setting{
    background-color: whitesmoke;
    display: grid;
    grid-template-columns: 60px 1fr max-content;
    height: 100px;
    align-items: center;
    border-radius: 5px;
    margin: 15px;
    width: calc(100% - 30px);
    font-size: x-large;
}

.toggle-setting .form-switch{
    margin-right: 10px;
}

.toggle-setting p{
    font-size: medium;
    margin: 5px;
}

.editor-header{
    background-color: whitesmoke;
    width: 100%;
    max-height: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    overflow-x: visible;
    overflow-y: visible;
}

.editor-header-trio-btns{
    display: grid;
    grid-template-rows: 50px 50px 50px;
    height: 100%;
    width: max-content;
    margin: 2.5px;
    margin-block: 0px;
}

.editor-header-trio-btn{
    width: max-content;
    display: grid;
    grid-template-columns: 45px 1fr;
    margin: 2.5px;
    border-radius: 5px;
    width: 100%;
    padding-right: 5px;
    cursor: pointer;
}

.editor-header-trio-btn-drp{
    display: grid;
    grid-template-columns: unset;
    border: 0px;
}

.editor-header-trio-btn .dropdown-toggle{
    width: 100%;
    height: 45px;
    margin: 2.5px;
    padding: 0px;
    display: grid;
    grid-template-columns: 45px max-content 45px;
    border-radius: 5px;
    padding-right: 5px;
    cursor: pointer;
    background-color: transparent;
    outline: 0px;
    color: black;
    border: 0px;
}

.editor-header-trio-btn .dropdown-toggle:focus{
    background-color: transparent;
    color: black;
}

.editor-header-trio-btn .dropdown-toggle::after, .editor-header-single-btn-drp > div::after{
    content: unset;
}



.editor-header-single-btn, .editor-header-single-btn-drp > div{
    height: 140px;
    margin: 5px;
    width: max-content;
    min-width: 100px;
    display: grid;
    grid-template-rows: 100px 40px;
    background-color: rgb(241, 237, 237);;
    border-radius: 5px;
    cursor: pointer;
    background-color: transparent;
    outline: 0px;
    color: black;
    border: 0px;
}

.editor-header-single-btn i, .editor-header-single-btn-drp i{
    width: 100%;height: 100%;display: grid;place-items: center;font-size: xxx-large;
}

.editor-header-single-btn p, .editor-header-single-btn-drp p{
    line-height: 40px;margin: 0px;font-size: small;
    transform: translateY(-15px);
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.editor-header-single-btn-drp p i{display: inline !important;font-size: large;padding: 0px}

.editor-header-single-btn:hover, .editor-header-trio-btn:hover, .editor-header-single-btn-drp:hover{
    background-color: lightgrey;
    outline: 1px solid grey;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: transparent;color: black
}

.editor-header-single-btn-drp > div:hover, .editor-header-single-btn-drp > div:focus{background-color: transparent;color: black}

.editor-header-single-btn-drp, .editor-header-single-btn-drp > div{
    padding: 0px;
}

.editor-header-trio-btn p{line-height: 45px;margin: 0px;font-size: small;}
.editor-header-trio-btn i{width: 100%;height: 100%;display: grid;place-items: center;font-size: large;}


.editor-header-tabs .nav-item .active{
    border-bottom: 2px solid dodgerblue;
    font-family: 'DM Sans';
    
}

.editor-header-icon-set{
    display: grid;
    grid-template-rows: 50px 50px 50px;
    width: 50px;
    height: 150px;
}

.editor-header-icon-set i, .editor-header-icon-set > div{
    font-size: large;
    width: 40px;
    height: 40px;
    background-color: whitesmoke;
    display: grid;
    place-items: center;
    cursor: pointer;
    margin: 5px;
}

.editor-header-icon-set i:hover, .editor-header-icon-set >  div:hover{
    background-color: lightgrey;
    border-radius: 5px;
    border: 1px solid grey;
}

.editor-header-tabs .nav-item *{
    color: black;
    margin-bottom: 5px;
    border-radius: 0px;
    border: 0px;
    outline: 0px;
    border-bottom: 2px solid transparent;
}
.editor-header-title{
    display: grid;
    grid-template-columns: 40px 40px 40px 1fr 40px 40px 40px;
    width: 100%;
    height: 40px;
}

.editor-header-title i{width: 100%;height: 100%;display: grid;place-items: center;font-size: medium;}

.editor-header-title-ttl{
    width: calc(100% - 10px);
    height: 35px;
    margin: 2.5px;
    background-color: whitesmoke;
    display: grid;
    grid-template-columns: 35px 1fr 35px;
}

.editor-page-header-title input{
    border: 0px;
    margin: 0px;
    padding: 0px;
    margin: 0px;
    outline: 0px;
    background-color: transparent;
    height: 35px;
}

.editor-page-header-title:focus-within{
    outline: 1px solid black;
}

.editor-content{
    display: grid;
    grid-template-columns: 40px 1fr 350px;
    height: calc(100vh - 150px - 40px - 47.4px);
    width: 100%;
}

.editor-vertical-navbar{
    background-color: whitesmoke;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.editor-vertical-navbar i{
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: medium;
}

.editor-main-content{
    width: 100%;
    height: calc(100vh - 150px - 40px - 47.4px);
    overflow: auto;
}

.editor-side-options-menu{
    background-color: whitesmoke;
    width: 350px;
    height: 100%;
    overflow: auto;
}

.rainbow-title{
    margin-top: 0px;
    margin-bottom: 10px;
    font-family: sans-serif;
    font-size: 35px;
    background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

.docs-page{
    width: calc(100% - 4px);
    height: calc(100vh - 4px);
    border: 2px solid black;
    overflow: auto;
}


.docs-page-header{
    font-family: Poppins;
    font-weight: bold;
    font-size: 15px;
    align-items: center;
    padding-left: 15px;
    display: flex;
    height: 60px;
}

.docs-page-header *{margin: 0px}

.docs-page-header-logo{
    width: 350px;padding-left: 5px;font-size: medium;
}

.docs-content-p{
    border-bottom: 1px solid dodgerblue;
    color: dodgerblue;
    line-height: 50px;
    text-align: center;
    width: calc(100% - 30px);
    margin: 15px;
    margin-block: 0px;
}



.docs-search{
    width: calc(100% - 20px);
    height: 35px;
    margin: 10px;
    border: 1px solid black;
    display: grid;
    grid-template-columns: 35px 1fr 35px;
}

.docs-search:focus-within{border: 1px solid dodgerblue}
.docs-search:hover{background-color: whitesmoke;}

.docs-search input{height: 35px;}
.docs-search i{width: 100%;height: 100%;display: grid;place-items: center;font-size: medium;}

.docs-content-overview{
    width: 350px;
    height: 100%;
}

.docs-page .btn-toggle, .docs-page .nav-link{
    line-height: 35px;
    padding: 0px;
    margin: 0px;
    height: 35px;
    padding-left: 10px;
    font-family: "Dm sANS";
    font-size: 14px;
}

.docs-page .nav-link{padding-left: 35px;height: 35px;color: black}

.docs-page .btn-toggle::before{
    margin-right: 10px;
}

.docs-page .nav-link.active{
    color: dodgerblue;
    background-color: white;
}

.docs-page .btn-toggle:hover,.docs-page .btn-toggle:focus{
    background-color: white;
}

.docs-page .mb-1{
    height: max-content;
}

.docs-page .breadcrumb{
    padding: 10px;
}

.docs-page pre{
    width: calc(100% - 40px);
}




  @import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,400;0,700;0,800;1,400;1,700;1,800&display=swap');

.docs-page pre *{
    font-family: 'JetBrains Mono', monospace !important;
    font-size: x-large;
}

.docs-page img{
    width: calc(100% - 20px);
    margin: 10px;
    border-radius: 7.5px;
    height: auto;
}

.unbold{
    font-weight: normal !important;
}

.dashboard{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: 60px 1fr;
}

.dashboard-top{
    display: grid;
    grid-template-columns: 1fr 60px;
    width: 100%;
    height: 60px;
}

.dashboard-top i{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: large;
}

.dashboard-top-brand{
    font-weight: bold;
    font-size: large;
    color: dodgerblue;
    font-family: 'Dm SANS';
    width: 100%;
    display: grid;
    align-items: center;
    padding-left: 20px;
    width: calc(100% - 20px)
}

.dashboard-content{
    display: grid;
    grid-template-columns: 250px 1fr 60px;
    width: 100%;
    height: calc(100vh - 60px);
}

.dashboard-left{
    width: 250px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transform: translateY(-30px);
}

.dashboard-left-btn{
    display: grid;
    grid-template-columns: 60px 1fr;
    width: 100%;
    height: 60px;
    align-items: center;
    cursor: pointer;
}

.dashboard-left-btn i{transform: translateX(8px);}
.dashboard-left-btn p{
    margin: 0px;
    font-weight: bold;
}

.dashboard-left-btn:hover{
    color: grey;
}

.dashboard-left-btn.active{
    color: dodgerblue;
}


.dashboard-center-btn{
    width: 100%;
    height: calc(100vh - 60px);
    overflow: auto;
}

.dashboard-right{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    cursor: pointer;
}

/* EDITOR MODAL SYSTEM */
/* added on 22-01-2023 */

    .editor-modal .modal-dialog .modal-header{
        display: grid;
        justify-content: center;
        grid-template-columns: unset;
        background-color: white;
        width: 100%;
        height: 30px;
        font-size: small;margin: 0px;font-family: Poppins;
    }
    
    .editor-modal .modal-content, .editor-modal .modal-dialog{
        width: 1000px !important;
        --bs-modal-width: 1000px;
        height: 80vh !important;
    }
    
    .editor-modal-warning .modal-dialog, .editor-modal-alert .modal-dialog{
        width: 400px !important;
        --bs-modal-width: 1000px;
        height: 300px !important;
    }
    
    .editor-modal .modal-body{
        background-color: white;
        color: black;
        display: grid;
        grid-template-columns: 1fr 200px;
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 0px;
    }
    
    .editor-modal .modal-body-content{
        width: 100%;
        height: 100%;
        overflow: auto;
    }
    
    .editor-modal .modal-body-options{
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: whitesmoke;
    }
    
    .editor-modal .modal-body-option{
        border: 2px solid grey;
        width: calc(100% - 10px);
        margin: 5px;
        border-radius: 100px;
        display: grid;
        place-items: center;
        height: 40px;
        cursor: pointer;
    }
    
    .editor-modal .modal-body-option.disabled{color: grey}
    .editor-modal .modal-body-option:hover{border: 2px solid dodgerblue;}
    .editor-modal .modal-body-option.disabled:hover{border: 2px solid grey;}
    
    .editor-modal .modal-body-option.active{background-color: dodgerblue;border: 2px solid dodgerblue;color: white;}
    
    .editor-modal .nav-link{
        border: 0px;
        margin: 0px;
        border-bottom: 2px solid transparent;
        font-family: Poppins;
        color: darkgrey;
        font-size: medium;
    }
    
    .editor-modal .nav-item:hover{
        border-bottom: 2px solid grey;
    }
    
    .editor-modal .nav-link.active{
        border-bottom: 2px solid dodgerblue;
        color: black;
    }
    
    .editor-pair-input{
      width: calc(100% - 20px);
      margin: 10px;
      margin-block: 5px;
      background-color: white;
      border-radius: 5px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5px;
      min-height: 60px;
    }
    
    .editor-pair-input p{
      line-height: 60px;
      width: calc(100% - 20px);
      padding-left: 10px;
      padding-right: 10px;
      margin: 0px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
    }
    
    .editor-pair-input input{
      width: 100%;
      height: 100%;
    }
    
.nav-item.dropdown ,.nav-item.dropdown *{
    font-family: 'Abhaya Libre', serif;
    color: black;
}

.navbar-nav .dropdown-menu{
    background-color: rgba(0,0,0,0.4);
}

.navbar-nav .dropdown-menu *{
    color: white;
}

.editor-modal-standard .modal-body{
    display: grid;
    grid-template-columns: unset;
    grid-template-rows: 1fr max-content;
    height: 100%;
}

.editor-modal-standard .modal-body-options{
    display: flex;
    flex-direction: row-reverse;
}

.yes-or-no-prompt .modal-body-content{
    padding: 10px;
}

.yes-or-no-prompt .modal-body-content p{
    padding: 5px;
}

.yes-or-no-prompt .modal-body-option{
    width: 150px;
}


.yes-or-no-prompt .modal-dialog, .yes-or-no-prompt .modal-content{
    --bs-modal-width: 500px;
    --bs-modal-height: 300px;
    width: 500px !important;
    height: 300px !important;
}

/* assuming that p layout is styled */
.link, .link-standalone{ 
    color: dodgerblue;
    transition: .25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.link:hover .link-standalone{
    color: rgb(32, 46, 67);
}

.link-standalone{
    width: calc(100% - 20px);
    margin: 10px;
    height: max-content;
    line-height: unset !important;
}

/* btns api */

div.btn{
    width: calc(100% - 20px);
    height: 60px;
    display: grid;
    place-items: center;
    background-color: whitesmoke;
    border-radius: 100px;
    margin: 10px;
    font-weight: bold;
    font-family: Dm Sans;
}

button.btn-primary{
    background-color: var(--selected-background-color);
    color: var(--selected-text-color);
    transition: .25s all;
    height: 35px;
    width: max-content;
    padding: 30px;
    padding-block: 0px;
    margin: 10px;
    border-radius: 100px;
}

button.btn-primary:hover,button.btn-primary:focus{
    border: 1px solid var(--selected-background-color) !important;
    background-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}

.btn-primary:disabled{
    background-color: darkgrey;
    color: black;
    border: 1px solid black;
}

div.btn i{
    width: max-content;
    height: max-content;
    font-size: large;
}

/* animations */

i.bi-arrow-repeat{
    animation: bi-arrow-repeat-anim .5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
    width: 30px !important;
    height: 30px !important;
    display: grid;
    place-content: center;
    place-items: center;
}

@keyframes bi-arrow-repeat-anim {
    0%{transform: rotate(0deg);}
    100%{transform: rotate(360deg);}
}

/* invalid */

input:invalid{
    color: tomato;
}

input:invalid::placeholder{color: tomato;}

/* updated on 05-02-2023 */
/* GUI KIT 2.0 */


/* special headings */
.h1, .h2, .h3, .h4, .h5, .h6{
    display: grid;
}

.h1{grid-template-columns: 100px 1fr;height: 100px;}
.h2{grid-template-columns: 80px 1fr;height: 80px;}
.h3{grid-template-columns: 70px 1fr;height: 70px;}
.h4{grid-template-columns: 60px 1fr;height: 60px;}
.h5{grid-template-columns: 60px 1fr;height: 60px;}
.h6{grid-template-columns: 40px 1fr;height: 40px;}

.h1 i, .h2 i, .h3 i, .h4 i, .h5 i, .h6 i{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: dodgerblue;
}

.h1 i{font-size: xxx-large;}
.h2 i{font-size: xx-large;}
.h3 i{font-size: x-large;}
.h4 i{font-size: large;}
.h5 i{font-size: medium;}
.h6 i{font-size: medium;}

.h1 div, .h2 div, .h3 div, .h4 div, .h5 div, .h6 div{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 20px 1fr;
}

.h1 *, .h2 *, .h3 *, .h4 *, .h5 *, .h6 *{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small{
    line-height: 20px;
    font-size: medium;
    color: grey;
    font-weight: bold;
    width: 100%;
    height: 100%;
    transform: translateY(15px);
    font-family: Dm Sans;
}

.h1 p, .h2 p, .h3 p, .h4 p, .h5 p, .h6 p{
    display: grid;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: normal;
    margin: 0px;
}

.h3 small, .h4 small{
    transform: translateY(10px);
}

.h5 small, .h6 small{
    transform: translateY(5px);
}

.h1 p{font-size: 50px;}
.h2 p{font-size: 35px;}
.h3 p{font-size: 32px;}
.h4 p{font-size: 25px;}
.h5 p{font-size: 23px;}
.h6 p{font-size: 15px;font-weight: bold;}

/* chips */

.chips{
    display: flex;
    width: calc(100% - 10px);
    margin: 5px;
    height: max-content;
    min-height: 70px;
    background-color: whitesmoke;
    border-radius: 5px;
    flex-wrap: wrap;
}

.chip{
    display: grid;
    grid-template-columns: 50px 1fr;
    height: 50px;
    width: max-content;
    border: 2px solid grey;
    border-radius: 100px;
    margin: 5px;
    transition: .25s all;
    user-select: none;
}

.chip i{padding-left: 3px;display: grid;place-items: center;width: 100%;height: 100%;font-size: large;}

.chip p{line-height: 50px;margin: 0px;padding-right: 10px;font-weight: bold;font-size: small;transform: translateX(-5px);}

.chip-rounded{border-radius: 15px;}
.chip-square{border-radius: 5px;}

.chip.chip-additional div{
    display: grid;
    grid-template-rows: 25px 25px;
    width: 100%;
    height: 50px;
}

.chip.chip-additional div p,.chip.chip-additional div small{
    font-weight: bold;
    line-height: 25px;
}

.chip.chip-additional div p{transform: translateY(6px);font-size: medium;}
.chip.chip-additional div small{transform: translateY(-4px);color: grey;font-family: DM Sans;}

.chip.active{
    background-color: dodgerblue;
    color: white;
    border: 2px solid dodgerblue;
}

.chip:hover{
    background-color: lightgrey;
}

.chip.active:hover{
    background-color: rgb(27, 125, 223);
}

.offcanvas-header button{padding-right: 25px !important;}





.app-header{
    width: 100%;
    height: 100px;
    display: flex;
    flex-direction: row;
    background-color: var(--primary-color);
}

.app-icon{
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
}

.app-icon img{
    width: 50px;
    height: 50px;
}



.app-options{
    width: calc(100% - 40px);
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    margin: 20px;
}

.app-option{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: var(--default-border-radius);
    display: grid;
    grid-template-columns: 60px 1fr;
    position: relative;
}

.app-option i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.app-option > div{
    width: 100%;
    height: max-content;
}

.app-option > div > p:nth-child(1){
    font-weight: bold;
}

.app-option > div{padding-bottom: 10px;}


.app-option .btn{
    border: 1px solid var(--selected-background-color) !important;
    background-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}

.app-option img{
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
}

.app-option-header{
    width: calc(100% - 40px);
    margin: 20px;
    margin-block: 5px;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
}

.app-option-header p{font-weight: bold;transform: translateX(-5px);line-height: 60px;margin: 0px;}

.app-cover{
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
    pointer-events: none;
    animation: .25s fadeOut forwards;
    animation-delay: 2s;
    background-color: var(--primary-color);
    grid-template-rows: max-content max-content;
    align-content: center;
}

.app-cover img:nth-child(1){
    width: 300px;
    height: 300px;
}

.app-cover img:nth-child(2){
    width: 50px;
    height: 50px;
}

@keyframes fadeOut{
    0%{opacity: 1;}
    100%{opacity: 0;}
}

.app-header-search{
    display: grid;
    grid-template-columns: 60px 1fr;
    width: calc(100% - 40px);
    margin: 20px;
    background-color: var(--secondary-color);
    border-radius: var(--default-border-radius);
}

.app-header-search i{width: 100%;height: 100%;font-size: large;}

/* app system extention */

.app-modal{
    width: 500px;
    height: 500px;
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: var(--default-border-radius);
    background-color: var(--secondary-color);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 50px 1fr 60px;
    border: .5px solid var(--selected-background-color);
}

.app-modal:focus-within{
    border: 2px solid var(--selected-background-color);
}

.app-modal .app-modal-header{
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    background-color: var(--primary-color);
    display: grid;
    
}

.app-modal .app-modal-header img{width: 35px;height: 35px;margin: 7.5px;}
.app-modal .app-modal-header p{width: 100%;height: 100%;line-height: 50px;margin: 0px;}

.app-modal .app-modal-header i{width: 100%;height: 50px;display: grid;place-items: center}

.app-modal .app-modal-header i.bi.bi-X-lg,.app-cover .app-modal-header i.bi.bi-X{
    color: tomato;
}

.app-modal .app-modal-content{
    width: 100%;
    height: 100%;
    overflow: auto;
}

.app-modal .app-modal-options{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 100%;
}

.app-modal .app-modal-option{
    width: max-content;
    height: calc(100% - 20px);
    margin: 10px;
    background-color: var(--selected-background-color);
    color: var(--selected-text-color);
    border-radius: 100px;
    outline: 0px;
    border: 0px;
    padding: 30px;
    padding-block: 0px;
}

.app-modal .app-modal-option.cancel{
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--tertiary-color);
}

.app-modal-iframe{
    width: 100%;
    height: 100%;
    outline: 0;
    border: 0;
    display:block
}

.app-modal p{
    margin: 10px;
}

.app-file-uploader{
    width: calc(100% - 15px);
    margin: 7.5px;
    padding: 10px;
    background-color: var(--secondary-color);
    border-radius: var(--default-border-radius);
    overflow: hidden;
}

.app-file-uploader > h1{
    line-height: 60px;
    font-weight: bold;
    font-size: medium;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.app-file-uploader-div{
    background-color: var(--primary-color);
    border: 1px dashed var(--accent-color);
    width: 100%;
    height: max-content;
    border-radius: var(--default-border-radius);
    padding-block: 20px;
}

.app-file-uploader-div > i.bi{
    width: 100%;
    font-size: 100px;
    color: var(--accent-color);
    display: grid;
    place-items: center;
    height: 100%; 
}

.app-file-uploader-div > p{
    width: 300px;
    margin: auto;
    color: var(--faded-text-color);
    text-align: center;
}

/* animations */

/* when render class is present, basically it is called by the intersection observer, and is run once, when element is viewed*/

/* ANIMATION MODULE FOR CSS */

[delay=".25"]{animation-delay: 0.25s !important;}
[delay=".50"]{animation-delay: 0.50s !important;}
[delay=".75"]{animation-delay: 0.75s !important;}
[delay="1"]{animation-delay: 1s !important;}
[delay="2"]{animation-delay: 2s !important;}

[animation="fade"]{opacity: 0;}
[animation="fade"].render{
    animation: fadeIn .25s forwards;
}

[animation="slideLeft"]{opacity: 0;}
[animation="slideLeft"].render{
    animation: slideLeft .75s forwards;
}

[animation="slideRight"]{opacity: 0;}
[animation="slideRight"].render{
    animation: slideRight .75s forwards;
}

[animation="slideTop"]{opacity: 0;}
[animation="slideTop"].render{
    animation: slideTop .75s forwards;
}

[animation="slideBottom"]{opacity: 0;}
[animation="slideBottom"].render{
    animation: slideBottom .75s forwards;
}

[animation="swipeTop"]{clip-path: inset(100% 0 0 0);}
[animation="swipeTop"].render { animation: 1s swipeTop forwards; }

[animation="swipeRight"]{clip-path: inset(100% 0 0 0);}
[animation="swipeRight"].render { animation: 1s swipeRight forwards; }

[animation="swipeBottom"]{clip-path: inset(100% 0 0 0);}
[animation="swipeBottom"].render { animation: 1s swipeBottom forwards; }

[animation="swipeLeft"]{clip-path: inset(100% 0 0 0);}
[animation="swipeLeft"].render { animation: 1s swipeLeft forwards; }


[animation="clipLeftTop"]{clip-path: circle(0px at 0px 0px); }
[animation="clipLeftTop"].render { animation: 1s clipLeftTop forwards; }

[animation="clipRightTop"]{clip-path: circle(0px at 0px 0px); }
[animation="clipRightTop"].render { animation: 1s clipRightTop forwards; }

[animation="clipRightBottom"]{clip-path: circle(0px at 0px 0px); }
[animation="clipRightBottom"].render { animation: 1s clipRightBottom forwards; }

[animation="clipRightBottom"]{clip-path: circle(0px at 0px 0px); }
[animation="clipRightBottom"].render { animation: 1s clipRightBottom forwards; }

[animation="fadeSlideTop"]{opacity: 0;transform: translateY(-50%); }
[animation="fadeSlideTop"].render { animation: 1s fadeSlideTop forwards; }

[animation="skew"].render { animation: 15s skew infinite forwards; }

@keyframes fadeIn{
    0%{opacity: 0;}
    100%{opacity: 1;}
}

@keyframes slideLeaveTop {
    0%{opacity: 1;transform: translateY(0%);}
    100%{opacity: 0;transform: translateY(100%);}
}

@keyframes slideLeft{
    0%{opacity: 0;transform: translateX(-50%);}
    100%{opacity: 1;transform: translateX(0%);}
}

@keyframes slideRight{
    0%{opacity: 0;transform: translateX(50%);}
    100%{opacity: 1;transform: translateX(0%);}
}

@keyframes slideTop{
    0%{opacity: 0;transform: translateY(-50%);}
    100%{opacity: 1;transform: translateY(0%);}
}

@keyframes slideBottom{
    0%{opacity: 0;transform: translateY(50%);}
    100%{opacity: 1;transform: translateY(0%);}
}

@keyframes swipeTop {
  0% { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0)}
}

@keyframes swipeRight {
    0% { clip-path: inset( 0 100% 0 0); }
    100% { clip-path: inset(0)}
}

@keyframes swipeBottom {
    0% { clip-path: inset(0 0 100%  0); }
    100% { clip-path: inset(0)}
}

@keyframes swipeLeft {
    0% { clip-path: inset(0 0 0 100% ); }
    100% { clip-path: inset(0)}
}

@keyframes clipLeftTop {
    0% { clip-path: circle(0px at 0px 0px); }
    100% { clip-path: circle(200% at 0px 0px);}
}

@keyframes clipRightTop {
    0% { clip-path: circle(0px at 100% 0px); }
    100% { clip-path: circle(200% at 100% 0px);}
}

@keyframes clipLeftBottom {
    0% { clip-path: circle(0px at 0px 100%); }
    100% { clip-path: circle(200% at 0px 100%);}
}

@keyframes clipRightBottom {
    0% { clip-path: circle(0px at 100% 100%); }
    100% { clip-path: circle(200% at 100% 100%);}
}

@keyframes fadeSlideTop {
    0% { opacity: 0;transform: translateY(-50%); }
    100% { opacity: 1;transform: translateY(0%); }
}

@keyframes skew{
    0%{transform: skew(5deg, 5deg)}
    25%{transform: skew(15deg, 10deg);}
    50%{transform: skew(4deg, 8deg);}
    75%{transform: skew(12deg, 6deg);}
    100%{transform: skew(5deg, 5deg);}
}


/* this includes old font headings, text and more. */

.classic-heading-large{
    font-family: 'Nanum Myeongjo', serif;
    font-size: 70px;
    color: var(--text-color)
}

.classic-paragraph{
    font-family: 'Nanum Myeongjo', serif;
    font-size: 30px;
}

.classic-links{
    display: flex;
    height: 70px;
    flex-direction: row;
}

.classic-link{
    color: #a7d4ff;
    text-decoration: underline;
    font-family: 'Nanum Myeongjo', serif;
    font-size: 30px;
    line-height: 60px;
    padding: 10px;
    padding-block: 0px;
    cursor: pointer;
}

.animated-link-large{
    display: grid;
    grid-template-rows: 100px 5px;
    width: max-content;
    height: max-content;
    gap: 10px;
    cursor: pointer;
}

.animated-link-large div:nth-child(2){
    height: 5px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 100px;
    clip-path: circle(0% at 100% 0%);
    transition: 1s all;
}

.animated-link-large:hover div:nth-child(2){
    clip-path: circle(200% at 100% 0%);
}

.animated-link-large p{
    font-family: 'Nanum Myeongjo', serif;
    font-weight: bold;
    font-size: 60px;
    line-height: 100px;
    font-weight: 900;
    margin: 0px;
}

.animated-link-large-index{
    font-weight: bold;position: absolute;right: 100%;top: 0px;margin: 10px;font-family: Dm SANS;font-size: 25px;color: var(--text-color);margin-top: 25px;
}

.horizontal-scroll-wrapper-outer {
    width: auto;
    height: 100vh; /*  Changed to vh */
    width: 100vw; /* Added */
    /*transform: rotate(-90deg) translateX(-100vh); ROTATING containers brakes 90% of scrolling APIs
    transform-origin: top left;*/
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /*scroll-behavior: smooth; ISN'T NEEDED FOR MY API */
    display: flex;
    

}

.horizontal-scroll-wrapper-outer::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-wrapper {
    display: flex;
    flex-direction: row;
    /*width: auto; NOT NEEDED IF WE USE FLEX-SHRINK 0
    transform: rotate(90deg) translateY(-100vh); ROTATING containers brakes 90% of scrolling APIs
    transform-origin: top left;*/
    margin: 0; /* not really needed */
    padding: 0; /* not really needed */
    position: relative;
    flex-shrink: 0;
    gap: 1px;
}

.page-section{
    width: 100vw;
    height: 100vh;
    position: relative;

    z-index: 10000;
}

.classic-table-large{
    width: max-content;
    height: 100%;
    margin: 40px;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
}

.classic-table-large > div{
    width: 400px;
    height: 0px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}














.single-form-page{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.single-form-page-content{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
}

.single-form-page-content > .single-form-page-content-sub{
    width: calc(100% - 40px);
    height: max-content;
    padding: 20px;
}

.single-form-page-graphic{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: var(--primary-color);
}

.single-form-page-graphic img{
    width: 50%;
    margin: 50px;
    height: auto;
}

.single-form-page-heading{
    width: calc(70% - 60px);
    height: max-content;
    line-height: unset;
    font-weight: 900;
    font-family: 'Dm Sans';
    font-size: 60px;
    margin: 30px;
}

.single-form-page-input{
    margin: 30px;
    width: calc(70% - 60px);
    background-color: var(--primary-color);
    border-radius: var(--default-border-radius);
    display: grid;
    grid-template-columns: 60px 1fr;
    height: 60px;
}

.single-form-page-input i{
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: x-large;
}

.single-form-page-input input{
    border: 0px;
    margin: 0px;
    padding: 0px;
    outline: 0px;
    width: 100%;
    height: 100%;
    background-color: transparent;
    font-size: x-large;
}

.single-form-page-options{
    width: calc(70% - 60px);
    height: 60px;
    margin: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.single-form-page-option{
    width: max-content;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 100px;
    background-color: var(--primary-color);
    border: 1px solid var(--text-color);
    padding: 30px;
    padding-block: 0px;
    cursor: pointer;
    user-select: none;
}

.single-form-page-option.active{
    background-color: var(--selected-background-color);
    color: var(--selected-text-color);
}



.single-form-page-information{
    width: calc(100% - 60px);
    margin: 30px;
    margin-block: 10px;
    display: grid;
    grid-template-columns: 60px 1fr;
    height: max-content;
    background-color: var(--primary-color);
    border-radius: var(--default-border-radius);
    margin-block: 20px;
    padding-block: 10px;
}

.single-form-page-information i{
    width: 100%;
    height: 60px;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.single-form-page-information-content{
    height: 100%;
}

.single-form-page-information-content h1{
    font-weight: bold;
    font-size: large;
    margin: 0px;
    padding-left: 10px;
}

.single-form-page-information-content p{
    font-size: large;
    margin: 0px;
    padding-left: 10px;
    padding-right: 10px;
}


.left-btn{
    width: calc(100% - 20px);
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr;
    margin-block: 0px;
    
    border-radius: var(--default-border-radius);
    margin: 10px;
    cursor: pointer;
}

.left-btn:hover{
    background-color: var(--secondary-color);
}

.left-btn.active{
    border-left: 3px solid var(--accent-color);
}

.left-btn i{width: 60px;height: 60px;display: grid;place-items: center;font-size: large;}

.left-btn p{margin: 0px;line-height: 60px;}



.search{
    display: grid;
    grid-template-columns: 60px 1fr;
    background-color: var(--primary-color);
    border-radius: var(--default-border-radius);
    margin: 10px;
    width: calc(100% - 20px);
    height: 60px;
}

.form-control{
    height: 60px;
    background-color: var(--primary-color);
    color: var(--text-color);
}



.terminal{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 100px 1fr;
    background-color: var(--primary-color);
    position: relative;
}

.terminal.terminal-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: var(--default-border-radius);
    width: 800px;
    height: 600px;
    min-height: 500px;
    overflow: hidden;
}

.terminal-full{
    width: 100% !important;
    height: 100% !important;
    border-radius: 0px !important;
}

.terminal-options{
    background: linear-gradient(1deg, #9c47ba, #451c9a);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.terminal-content{
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 120px;
}

.terminal-options i{
    width: 100px;
    height: 70px;
    display: grid;
    place-items: center;
    font-size: x-large;
    cursor: pointer;
}


.terminal-options i:hover{
    background-color: rgba(255,255,255,0.2);
}

.terminal-options i.bi-terminal-fill{
    font-size: 45px;
    height: 100px;
}


.terminal-readonly .terminal-options i.bi-play-fill{
    color: grey;
}

.terminal-readonly .terminal-options i.bi-x-circle, .terminal-readonly .bi-question-square-fill{
    color: grey;
}



.terminal-log{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 40px;
    height: max-content;
    min-height: 40px;
}

.terminal-log:hover{
    background-color: rgba(255,255,255,0.2);
}

.terminal-log i{
    font-size: medium;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.terminal-log p{
    font-family: 'JetBrains Mono', monospace;
    padding: 20px;
    padding-block: 0px;
    margin: 0px;
    color: inherit;
}

.terminal-loader{
    width: calc(100% - 20px);
    margin: 10px;
    background-color: whitesmoke;
    border-radius: var(--default-border-radius);
    display: grid;
    grid-template-columns: 60px 1fr;
    height: max-content;color: black;
}

.terminal-loader-left i{
    width: 100%;
    height: 60px;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.terminal-loader p{
    font-family: large;
    font-family: 'Azeret Mono', monospace;
    padding: 20px;
    padding-block: 0px;
    line-height: 40px;
    margin: 0px;
    color: inherit;
}

.terminal-loader progress{
    width: calc(100% - 20px);
    margin: 10px;
}

.terminal-textfield{
    display: grid;
    grid-template-rows: 60px 60px;
    height: 120px;
    width: calc(100% - 100px);
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.terminal-textfield > div:nth-child(1){
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
}

.terminal-textfield > div:nth-child(1) i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.terminal-textfield > div:nth-child(2){
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 60px;
}

.terminal-textfield > div:nth-child(2) > div{
    width: max-content;
    max-width: 400px;
    overflow: hidden;
    display: grid;
    place-items: center;
    height: 50px;
    margin: 5px;
    border: 2px solid var(--text-color);
    border-radius: 100px;
    font-size: medium;
    color: var(--accent-color);
    padding: 15px;
    padding-block: 0px;
}

.terminal-textfield > div:nth-child(2) > div:hover{
    background-color: var(--tertiary-color);
}

.terminal-item-info{
    width: 300px;
    height: calc(100% - 30px);
    padding: 20px;
    background-color: var(--secondary-color);
    margin: 15px;
    position: absolute;
    right: 15px;
    top: 0px;
}

.terminal-item-info-item{
    width: 100%;
    height: 100px;
    display: grid;
    grid-template-columns: 100px 1fr;
    border-bottom: 1px solid white;
}

.terminal-item-info-item i{
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    font-size: large;
}   

.terminal-item-info-item p{
    margin: 0px;
    line-height: 100px;
    font-size: x-large;
}

.terminal-item-info-item.item-small p{
   font-size: small;
   overflow: hidden;
   text-overflow: clip;
}

.terminal-master-image{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.terminal-master-image img{
    width: 400px;
    height: 250px;
}

.modal-api{
    width: 800px;
    height: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--background-color);
    
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    z-index: 10000;

    overflow-x: hidden;
    overflow-y: auto;
}

.modal-api-form-ele{
    width: calc(100% - 40px);
    height: 70px;
    display: grid;
    grid-template-columns: 70px 1fr;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

.modal-api-form-ele i{
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    font-size: x-large;
}

.modal-api-form-ele input{
    font-size: large;
}

.modal-header-api {
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
}

.modal-header-api i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: large;
}

.hero-heading{
    font-family: Poppins;
    font-size: 85px;
    font-weight: 600;
    width: 70%;
    margin-block: 100px;
}

.hero-heading > .highlight{
    background: linear-gradient(to right, #ef5350, #f48fb1, #7e57c2, #2196f3, #26c6da, #43a047, #eeff41, #f9a825, #ff5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% 100%;
}



.dual-content-container{
    width: calc(100% - 60px);
    height: max-content;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 30px;
    min-height: 70vh;
}

.dual-content-container .dual-content-image{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.dual-content-container .dual-content-image img{
    width: 70%;
    height: max-content;
}

.dual-content-container .dual-content{
    width: 100%;
    height: 100%;
    padding: 100px;
}

.dual-content-container:nth-child(2n){
    background-color: whitesmoke;
}

i.disabled, i[disabled = "true"]{
    color: grey;
    cursor: unset;
}

i.disabled:hover, i[disabled = "true"]:hover{
    background-color: var(--background-color) !important;
    color: grey !important;
}

.outline-icon{
    width: 50px;
    height: 50px;
    margin: 5px;
    display: grid;
    place-items: center;
    font-size: medium;
    border: 1px solid grey;
    border-radius: 10px;
}

.outline-icon.disabled, .outline-icon.disabled:hover{
    background-color: var(--background-color) !important;
    color: grey !important;
    border: 2px solid grey;
}


.table-api{
    width: calc(100% - 20px);
    margin: 10px;
    display: grid;
    grid-template-rows: 60px 1fr 60px;
    border-radius: 10px;
    overflow: hidden;
}

.table-api > div:nth-child(1){
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
}

.table-api > div:nth-child(2){
    display: grid;
    grid-template-columns: 60px 1fr;
    width: 100%;
    height: 100%;
}

.table-api > div:nth-child(2) > div:nth-child(1){
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--primary-color);
}

.table-api > div:nth-child(2) > div:nth-child(2){
    overflow: auto;
    width: 100%;
    height: 100%;
}

.table-api > div:nth-child(3){
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.table-api-table{
    width: max-content;
    height: max-content;
    grid-template-columns: 250px 100px;
}

.table-api-table-column-header{
    width: 100%;
    height: 60px;
    background-color: var(--primary-color);
    display: grid;
    grid-template-columns: inherit;
}

.table-api-table-rows{
    width: max-content;
    height: max-content;
    grid-template-columns: inherit;
}

.table-api-table-rows > div{
    display: grid;
    width: 100%;
    height: 60px;
    grid-template-columns: inherit;
}


.table-api-table-rows > div > div, .table-api-table-column-header > div{
    outline: 1px solid grey;
    width: 100%;
    height: 60px;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

.wia-toggle .switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.wia-toggle .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.wia-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.wia-toggle .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.wia-toggle input:checked + .slider {
  background-color: #2196F3;
}

.wia-toggle input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.wia-toggle input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.wia-toggle .slider.round {
  border-radius: 34px;
}

.wia-toggle .slider.round:before {
  border-radius: 50%;
}

.wia-toggle{
    display: grid;
    grid-template-columns: 60px 1fr max-content;
    align-items: center;
    width: calc(100% - 20px);
    height: 60px;
    background-color: var(--primary-color);
    margin: 10px;
    padding-right: 10px;
    border-radius: 5px;
    user-select: none;
    border: 1px solid transparent;
}

.wia-toggle i{
    transform: translateX(20px);
}

.wia-toggle:hover{
    border:1px solid  var(--secondary-color);
}



.page-container{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: unset; 
    /* ↑ To be set by javascript */
    overflow: auto;
}

.page-body{
    width: max-content;
    height: max-content;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.page-header{
    width: 100%;
    height: 80px;
    overflow: hidden;
    display: grid;
    place-items: center;
    position: relative;
}

.page-header .navbar{
    width: 100%;
    height: 80px;
    border-radius: 10px;
    position: absolute;
    top: 0px;
}   


.nav-page-title{
    width: max-content;
    height: 80px;
    display: grid;
    grid-template-rows: 1fr;
}

.nav-page-title-nav-included{
    grid-template-rows: 50px 30px;
}

.nav-page-title h1{
    display: grid;
    place-items: center;
    width: max-content;
    height: 100%;
    margin: 0px;
    font-size: large;
    padding-left: 20px;
    transform: translateY(10px);
    font-weight: 600;
    font-family: "DM SANS";    
}

.nav-page-title-nav{
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
    padding-left: 20px;
    transform: translateY(-10px);
}

.nav-page-title-nav a{
    font-family: "DM SANS";
    color: dodgerblue !important;
    text-decoration: none !important;
}

.nav-page-title-nav p{
    width: 20px;
    display: grid;
    place-items: center;
    margin: 0px;
}

.nav i{
    width: 100%;
    height: 100%;
    font-size: large;
}

.nav{
    grid-template-columns: 40px 40px max-content;
    align-items: center;
    display: grid;
    position: relative;
    width: 100%;
    height: 80px;
    background-color: var(--primary-color);
}

table.sql-api{
    margin: 15px;
    border: 1px solid grey;
}

tale.sql-api:hover{
    border: 1px solid dodgerblue;
}

table.sql-api, table.sql-api td, table.sql-api th{
    border: 1px solid var(--tertiary-color);
    padding: 10px;
}

table.sql-api tr td:nth-child(2n)
{
    background-color: var(--secondary-color);
    
}


table.sql-api tr td:nth-child(2n)
{
    background-color: var(--primary-color);
    
}

table.sql-api th{
    background-color: var(--tertiary-color);
}

table.sql-api td:hover, table.sql-api th:hover{
    background-color: var(--selected-background-color);
    color: var(--selected-text-color);
}

/* UI KIT 3 */
/* OFFICIAL NEW UI KIT VERSION AS OF 31/3 */


.UIKIT3 *{
    font-family: 'DM SANS', sans-serif;
}


.UIKIT3 p{all: unset}

.UIKIT3 i{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: large;
    user-select: none;
}

.UIKIT3 i.disabled{color: grey;}

.UIKIT3 .mobile-blank-header{
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 60px;
}

.UIKIT3 .jumbotron{
    width: 100%;
    height: max-content;
    padding-block: 50px;
    margin: auto;
    margin-block: 0px;
    font-weight: bold;
    font-size: xxx-large;
    text-align: center;
}

.UIKIT3 .button-centered-contained, .UIKIT3 .button-centered{
    width: calc(100% - 40px);
    margin: 20px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-color);
}

.UIKIT3 .button-centered{
    width: max-content;
    padding: 30px;
    padding-block: 0px;
}

.UIKIT3 .button-centered-contained:hover, .UIKIT3 .button-centered:hover{
    background-color: var(--text-color);
    color: var(--background-color);
}

.UIKIT3 .button-centered-contained i{
    width: 40px;
    height: max-content;
}

.UIKIT3 .button-centered-contained p{
    width: max-content;
}

.UIKIT3 .button-contained, .UIKIT3 .button{
    
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 16px;
    gap: 10px;

    width: calc(100% - 40px);
    height: 60px;

    background: #4D5DFA;
    /* Button/Shadow 1 */

    box-shadow: 4px 8px 24px rgba(77, 93, 250, 0.25);
    border-radius: 100px;

    /* Inside auto layout */

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;

    margin: 20px;
}

.UIKIT3 .button{
    width: max-content;
    padding: 30px;
    padding-block: 0px;
}

.UIKIT3 .button-contained p , .UIKIT3 .button p{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 140%;
    /* or 22px */

    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.2px;

    color: #FFFFFF;

    /* Button/Shadow 1 */

    text-shadow: 4px 8px 24px rgba(77, 93, 250, 0.25);

    /* Inside auto layout */

    flex: none;
    order: 0;
    flex-grow: 0;
}

.UIKIT3 .text-separator{
    width: calc(100% - 40px);
    margin-top: 10px;
    margin: 20px;
    border-top: 2px solid var(--text-color);
    position: relative;
    
}

.UIKIT3 .text-separator p{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 10px;
    background-color: var(--background-color);
    padding-block: 0px;
    transform: translate(-50%, -50%);
}

.UIKIT3 .child-flex > *{
    width: max-content;
    height: max-content;
}

.UIKIT3 .child-centered{
    display: grid;
    place-items: center;
}

.UIKIT3 .list-icons-bar, .UIKIT3 .list-item .list-item-icons-bar{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 60px;
    overflow: hidden;
    overflow-x: auto;
    gap: 10px;
}

.UIKIT3 .list-item .list-item-icons-bar{
    height: 50px;
    margin-left: 10px;
    margin-right: 10px;
    width: max-content;
}

.UIKIT3 .list-item:hover *{
    border: 1px solid var(--tertiary-color);
}

.UIKIT3 .list-icons-bar i, .UIKIT3 .list-item .list-item-icons-bar i{
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid var(--tertiary-color);
}

.UIKIT3 .list-item .list-item-icons-bar i{
    height: 50px;
    width: 50px;
    border: 0px;
}

.UIKIT3 .list-icons-bar i:hover, .UIKIT3 .list-item .list-item-icons-bar i:hover{
    background-color: var(--secondary-color);
}

.UIKIT3 .list-header{
    display: grid;
    height: 30px;
    width: 100%;
    grid-template-columns: inherit;
    margin-bottom: 5px;
}

.UIKIT3 .list-header p{
    width: 100%;
    height: 100%;
    display: grid;
    align-items: end;
    cursor: pointer;
}

.UIKIT3 .list-header p:hover{
    color: dodgerblue;
}

.UIKIT3 .list{
    border: 1px solid var(--tertiary-color);
    border-radius: 10px;
    padding: 10px;
    box-sizing: content-box;
    resize: horizontal;
    overflow-x: scroll;
}

.UIKIT3 .list-item{
    width: 100%;
    
    border-radius: 10px;
    grid-template-columns: inherit;
    display: grid;
    height: 50px;
}



.UIKIT3 .list-item input{
    width: 100%;
    height: 50px;
    margin: 0px;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    outline: 0px;
    border: 0px;
    background-color: transparent;
    color: var(--text-color);
    background-color: var(--primary-color);
}

.UIKIT3 .list-item input:focus{
    background-color: var(--secondary-color);
}

.UIKIT3 .list-item input:hover{
    border: 1px solid dodgerblue;
}

.UIKIT3 .list-item-tag{
    margin: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.documentation-container{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: 80px 1fr; 
}

.documentation-header{
    display: grid;
    grid-template-columns: max-content 1fr 400px 80px;
    width: 100%;
    height: 80px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
}

.documentation-company-branding{
    width: max-content;
    padding: 10px;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.documentation-company-branding img{
    width: 130px;
    height: auto;
}

.documentation-documentation-branding{
    width: max-content;
    padding: 20px;
    padding-block: 0px;
    display: grid;
    place-items: center;
    background-color: dodgerblue;
    counter-reset: white;
    border-radius: 10px;
    height: 35px;
}

.documentation-search, .documentation-files-list-search{
    width: calc(100% - 20px);
    margin: 10px;
    display: grid;
    grid-template-columns: 60px 1fr;
    background-color: var(--secondary-color);
    border-radius: 10px;
    height: 60px;
}

.documentation-content-parent{
    width: 100%;
    height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 350px 1fr 200px;
}

.documentaion-files-list{
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    background-color: var(--primary-color);
}

.documentation-file-preview{
    width: calc(100% - 20px);
    margin: 10px;
    height: 60px;
    background-color: var(--secondary-color);
    display: grid;
    grid-template-columns: 60px 1fr max-content;
}

.documentation-file-preview p:nth-child(2){
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    color: darkgrey;
}

.documentation-file-preview p:nth-child(3){
    display: flex;
    align-items: center;
    width: max-content;
    height: 60px;
    color: darkgrey;
    font-size: small;
    padding: 10px;
    padding-block: 0px;
}

.documentation-file-preview.selected{
    border: 1px solid dodgerblue;
}


.documentation-file-preview.selected p:nth-child(2){color: var(--text-color);}

.documentation-content{
    width: 100%;
    height: calc(100vh - 80px);
    overflow: auto;
}

.documenation-content-metadata{
    width: 100%;
    height: 50px;
    background-color: var(--primary-color);
    outline: 1px solid var(--secondary-color);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding-left: 30px;
}

.documenation-content-metadata-item{
    width: max-content;
    height: 30px;
    display: grid;
    grid-template-columns: 30px 1fr 1fr;
    gap: 10px;
}

.documenation-content-metadata-item p{
    display: flex;
    align-items: center;
    width: max-content;
    height: 100%;
}

.user-profile-sub{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 15px;
}

.user-profile-sub i{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
}

.user-profile-options{
    position: absolute;
    top: 100%;
    right: 0px;
    background-color: var(--secondary-color);
    width: 300px;
    height: max-content;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--tertiary-color);
}

.user-profile-option{
    width: calc(100% - 20px);
    height: 60px;
    margin: 10px;
    background-color: var(--primary-color);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 60px 1fr;
}

.user-profile-option p{
    display: flex;
    align-items: center;
}

.user-profile-options h1{
    margin: 10px;
    font-size: large;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-block: 0px;
    padding: 0px;
    margin-top: 10px;
}

.user-profile-options > p{
    margin: 10px;
    color: grey;
    font-size: medium;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-block: 0px;
    padding: 0px;
}



    .menu-bar{
        --menubar-height: 40px;
        --menubar-border-color: #414141;
        font-family: "DM SANS", sans-serif;
        width: 100%;
        height: var(--menubar-height);
        display: flex;
        gap: 15px;
        flex-direction: row;
        background-color: var(--secondary-color);
        padding-left: 40px;

    }

    .menu-bar .menu{
        width: max-content;
        height: var(--menubar-height);
        position: relative;
    }

    .menu-bar .menu .menu-button{
        padding-left: 10px;
        padding-right: 10px;
        height: 40px;
        display: flex;
        align-items: center;
        cursor: pointer;
        font-family: "DM SANS", sans-serif;
    }

    .menu-bar .menu .menu-button .underline{
        text-decoration: underline;
    }

    .menu-bar .menu .menu-button:hover{
        color: dodgerblue;
    }
    
    .menu-content{
        width: max-content;
        position: absolute;
        left: 100%;
        top: 0px;
        background-color: var(--secondary-color);
        border: 1px solid var(--menubar-border-color);
        z-index: 100000;
    }
    
    .menu-content-separator{
        height: 0px;
        width: 100%;
        border-block: .5px solid var(--menubar-border-color);
    }
    
    .menu-bar > .menu > .menu-content{
        top: 100%;
        left: 0px;
    }
    
    .menu-content-button{
        width: 300px;
        height: var(--menubar-height);
        display: grid;
        grid-template-columns: 40px 1fr 40px;
        font-size: small;
        cursor: pointer;
        position: relative;
    }
    
    .menu-content-button i{
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
    }
    
    .menu-content-button:has(.menu-content){
        border-block: 1px solid var(--menubar-border-color);
    }
    
    .menu-content-button p{
        margin: 0;
        line-height: 40px;
    }
    
    .menu-content-button:hover{
        background-color: var(--tertiary-color);
    }
    
    /* ICON MENU */
    .icon-menu{
        width: 50px;
        height: 50px;
        display: grid;
        place-items: center;
        margin: 5px;
        background-color: var(--secondary-color);
        border-radius: 10px;
        cursor: pointer;
        position: relative;
    }

    .icon-menu:hover{
        background-color: var(--tertiary-color);
    }

    .icon-menu-content{
        background-color: var(--secondary-color);
        border: 1px solid var(--tertiary-color);
        min-width: 200px;
        width: max-content;
        height: max-content;
        padding: 10px;
        position: absolute;
        top: 110%;
        left: 0;
        border-radius: 5px;
    }

    .icon-menu.orientation-back .icon-menu-content{
        right: 0 ;
        left: unset;
    }

    .icon-menu-content-item{
        display: grid;
        grid-template-columns: 40px 1fr;
        width: 100%;
        height: 40px;
        border-radius: 5px;
    }

    .icon-menu-content-item p{
        font-size: small;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        margin: 0;
        padding-right: 20px;
    }

    .icon-menu-content-item:hover{
        background-color: var(--tertiary-color);
    }

    .icon-menu-content-separator{
        width: 100%;
        height: 0;
        border: 1px solid var(--tertiary-color);
        margin-block: 5px;
    }

    .icon-menu-content-section-heading{
        line-height: 30px;
        margin: 0;
        color: grey;
        font-weight: bold;
        padding-left: 10px;
        font-size: small;
        padding-right: 20px;
    }

    /* TAB MENU */
    .tab-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: 400px;
    }

    .tab-buttons{
        width: 100%;
        display: flex;
        padding: 10px;
        height: 60px;
    }

    .tab-button{
        width: max-content;
        padding-left: 20px;
        padding-right: 30px;
        border-bottom: 2px solid transparent;
        display: grid;
        grid-template-columns: 40px 1fr;
        height: 60px;
        cursor: pointer;
    }

    .tab-button.selected{
        border-bottom: 2px solid dodgerblue;
    }

    .tab-button p{
        line-height: 60px;
        margin: 0;
    }

    .tab-button:hover{
        background-color: var(--secondary-color);
    }

    .tab-content{
        width: 100%;
        height: 100%;
        overflow: auto;
    }
    
    
    
.image-card, .icon-card
{
    width: 300px;
    height: 450px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-card:hover *, .image-card:hover, .icon-card:hover * , .icon-card:hover, .only-icon-card:hover *, .only-icon-card:hover, .only-image-card:hover , .only-image-card:hover *
{
    background-color: var(--tertiary-color);
}

.icon-card
{
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    display: grid;
    grid-template-rows: 1fr 40px
}

.image-card img
{
    width: 100%;
    height: 100%;
}

.icon-card i
{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: x-large;
    transform: translateY(10px);
}

.image-card p, .icon-card p
{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    height: 60px;
    width: 100%;
    display: grid;
    place-items: center;
    margin: 0;
    font-weight: bold;
}

.icon-card p
{
    height: 40px;
    font-size: x-small;
}

.gallery
{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 30px;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.only-icon-card, .only-image-card
{
    display: grid;
    place-items: center;
    width: 100px;
    aspect-ratio: 1/1;
    background-color: var(--secondary-color);
    font-size: xx-large;
    cursor: pointer;
    border-radius: 10px;
}

.dialog
{
    background-color: var(--secondary-color);
    border: 1px solid var(--tertiary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-rows: 60px 1fr;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    user-select: none;
    color: grey;
    z-index: 1000;
}

.dialog p
{
    color: grey;
}

.dialog:focus-within, .dialog:focus
{
    border: 1px solid dodgerblue;
    color: var(--text-color);
}

.dialog:focus-within p, .dialog:focus p
{
    color: var(--text-color);
}

.dialog-header
{
    width: 100%;
    height: 60px;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
}

.dialog-header i.bi.bi-x-lg:hover
{
    background-color: tomato;
    color: white;
    cursor: pointer;
}

.dialog-header p
{
    line-height: 60px;
    margin: 0;
    font-size: small;
}

.dialog-content
{
    overflow: auto;
    width: 100%;
    height: 100%;
}

.overlay
{
    background-color: rgba(0,0,0,0.5);
    width: 100%;
    height: 100vh;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
}

.border-pane
{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.border-pane-top, .border-pane-bottom
{
    width: 100%;
    height: max-content;
}
    
.border-pane-horizontal
{
    display: flex;
    flex-direction: row;
    width: 100%;
    flex: 1;
}

.border-pane-left, .border-pane-right
{
    width: max-content;   
    height: 100%;
    overflow: auto;
}

.border-pane-center
{
    width: 100%;
    height: 100vh;
    flex: 1;
    overflow: auto;
}

.icon-bar
{
    display: flex;
    background-color: var(--secondary-color);
}
    
.icon-bar > i
{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin: 5px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.icon-bar-vertical
{
    width: 60px;
    height: 100%;
    flex-direction: column;
}

.icon-bar-horizontal
{
    height: 60px;
    width: 100%;
    flex-direction: row;
}


.list-item
{
    display: grid;
    padding: 10px;
    width: 100%;
    height: max-content;
}

.list-item:hover
{
    background-color: var(--secondary-color);
}

.list-item p
{
    line-height: 40px;
    margin: 0;
}

.list-item p:nth-child(2)
{
    color: #423c3c;
    padding-right: 20px;
}

.list > div:nth-child(1)
{
    width: 100%;
    height: 40px;
    display: grid;
    grid-template-columns: 40px 1fr 40px 40px 40px;
    background-color: var(--secondary-color);
}

.list > div:nth-child(1) p
{
    width: 100%;
    margin: 0;
    line-height: 40px;
    font-weight: bold;
}

.list > div:nth-child(1) i:hover
{
    color: dodgerblue;
    cursor: pointer;
}

.list-navigation
{
    display: grid;
    grid-template-columns: 1fr 40px 60px 40px;
    width: 100%;
    height: 40px;
    background-color: var(--secondary-color);
    gap: 10px;
}

.list-navigation i
{
    width: 40px;
    height: 40px;
    font-size: large;
}

.list-navigation input
{
    width: 60px;
    height: 40px;
    background-color: var(--primary-color);
    border: 1px solid var(--tertiary-color);
    outline: 0;
}

.properties-panel
{
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    overflow: auto;
    user-select: none;
}

.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"])
{
    display: grid;
    grid-template-columns: 1fr 2fr;
    overflow: hidden;
    width: 100%;
    margin-block: 5px;
    padding: 10px;
    height: max-content;
    gap: 10px;
}

.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"]) p
{
    line-height: 40px;
    margin: 0;
}

.properties-panel-property
{
    position: relative;
}

.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"]) input,
.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"]) select,
.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"]) textarea
{
    width: 100%;
    height: 40px;
    background-color: var(--primary-color);
    border: 2px solid var(--tertiary-color);
    outline: 0;
    color: var(--text-color);
}

.properties-panel-property[data-type]:not([data-type="button"]):not([data-type="custom"]) textarea
{
    height: 150px;
}

.properties-panel-property[data-type="button"] button
{
    width: 100%;
    height: 40px;
    background-color: var(--tertiary-color);
    border: 1px solid var(--primary-color);
    display: grid;
    place-items: center;
    color: var(--text-color);
    border-radius: 100px;
    margin-block: 10px;
}

.properties-panel-property[data-type="button"] button:hover
{
    background-color: var(--primary-color);
}

.properties-panel-section
{
    background-color: var(--secondary-color);
    margin: 10px;
    border-radius: 10px;
    padding: 10px;
}

.properties-panel-section-header
{
    display: grid;
    grid-template-columns: 40px 40px 1fr 40px;
    height: 40px;
}

.properties-panel-section-header p
{
    line-height: 40px;
    margin: 0;
}

.properties-panel-note
{
    background-color: var(--tertiary-color)
    color: darkred;
    width: 100%;
    border-radius: 10px;
    position: absolute;
    top: 40px;
    left: 0px;
    z-index: 1000;
    font-size: 12px;
}
.properties-panel-note p, .properties-panel-note b{
    color: darkred;
}

.form-dialog .properties-panel-section-header
{
    display: none;
}

.form-dialog .properties-panel-section
{
    margin: 0;
    border-radius: 0px;
}

.text-thumbnail
{
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-family: Garamond;
    font-size: x-large;
    font-weight: bold;
}

.app-header
{
    display: grid;
    grid-template-columns: 60px 60px 1fr 60px;
    width: 100%;
    height: 60px;
    background-color: var(--background-color);
    align-items: center;
}

.app-header i
{
    font-size: large;
}

.app-header .menu-bar
{
    background-color: var(--background-color);
}

.app-header .app-header-logo
{
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.app-header .app-header-logo img
{
    width: 40px;
    height: 40px;
    border-radius: 5px;
}


.material-symbols-rounded {
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 0,
  'opsz' 40
}


.input
{
    width: calc(100% - 20px);
    margin: 10px;
    height: 45px;
    border: 1px solid grey;
    padding-left: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    outline: 0;
}

.input:focus {background-color: whitesmoke;border: 1px solid dodgerblue}

button.input
{
    width: max-content;
    height: 40px;
    border-radius: 100px;
    background-color: dodgerblue;
    color: white;
    outline: 0;
    border: 0;
    font-size: small;
    padding-left: 30px;
    padding-right: 30px;
    font-family: "Dm SANS", sans-serif;
}

button.input:focus
{background-color: #1a70c6;}