/* import api */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");
@import url("https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css");

/* font family */
@font-face {
    font-family: 'QuinnRegular';
    src: url('/resources/font/QuinnRegular.otf');
}
@font-face {
    font-family: 'QuinnRegular';
    src: url('/resources/font/QuinnRegularBold.otf');
    font-weight: bold;
}

:root {
    /* --clr-primary: hsl(226, 87%, 66%);
    --clr-secondary: hsl(226deg 87% 66% / 10%);
    --clr-accent: #8282a6;
    --clr-neutral-900: hsl(228, 8%, 12%); */
    
    /* color variable */
    --clr-primary: #ff724b;
    --clr-secondary: #006f8d;
    --clr-accent: #9decc4;
    --clr-neutral-900: #43465d;
    --clr-neutral-400: #8282a6;
    --clr-neutral-100: #fbfaff;

    /* secondary colors */
    --clr-gray: #faf9f9;
    --clr-darkgray: #ebebeb;
    --clr-darkergray: #7c7c7c;
    --clr-orange: #ffddd4;
    --clr-darkpurple: #1e1d30;
    --clr-lightpurple: #dddbff;
    --clr-blue: #3384EB;
    --clr-amber: #FB8468;
    --clr-red: #cc0000;
    --clr-green: #70cd24;

    /* font family */
    --ff-primary: 'QuinnRegular', sans-serif;
    /* font sizes  & font weight */
    --fs-400: 0.875rem; /* default */
    --fs-500: 1rem;
    --fs-600: 1.5rem;
    --fs-700: 1.75rem;
    --fs-800: 2rem;
    --fw-regular: 400; /* default */
    --fw-semi-bold: 500;
    --fw-bold: 700;
}

.dashboard_wikis{
    vertical-align:top;
    cursor:pointer;
    display:inline-block;    
    padding: 8px 0px;
    border-bottom:1px #CCC dotted;

}
.dashboard_wikis:hover{
}
.sectionWrapper{
    border-top:1px solid #CCC;           
    border-radius:15px;
    padding:5px 0px;

}
/* reset rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    border-radius: 0;
    font: inherit;
}/* Set core body defaults */
html,
body {
    min-height: 100%;
    overscroll-behavior: none;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
    list-style: none;
    list-style-type: none;
}
/* A elements that don't have a class get default styles */
a {
    text-decoration: none;
    cursor: pointer;
}
a:not([class]) {
    text-decoration-skip-ink: auto;
}
a:hover {
    color: black;
}
/* Make images easier to work with */
img,
picture {
    
    display: block;
}
/* general styling */
body {
    font-family: var(--ff-primary);
    font-size: var(--fs-400);
    font-weight: var(--fw-regular);
}
h1 {
    font-size: 2.6rem;
    font-weight: var(--fw-semi-bold);
    line-height: 1.1;
}
h2 {
    font-size: var(--fs-600);
    font-weight: var(--fw-semi-bold);
}
h3, h4 {
    font-size: 1.125rem;
    font-weight: var(--fw-semi-bold);
}
input,
button {
    border: 0;
    outline: 0;
    outline-color: transparent;
    outline-style: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
select {
    cursor: pointer;
    width: 100%;
    padding: 0.8rem;
    margin-block-start: 0.438rem;
    margin-block-end: 1.25rem;
    border: 1px solid #ccc;
    border-radius: 15px;
    
}
/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { 
    display: none; width : 0; height: 0; 
}
input[type=search]::-ms-reveal { 
    display: none; width : 0; height: 0; 
}
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { 
    display: none; 
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1em bottom 0.8rem;
}
label {
    color: var(--clr-neutral-400);
}
input::placeholder {
    color: var(--clr-primary);
}
input:ms-input-placeholder {
    color: var(--clr-primary);
}
input::ms-input-placeholder {
    color: var(--clr-primary);
}
::selection {
    background: var(--clr-primary);
    color: white;
}
a {
    color: var(--clr-primary);
    cursor: pointer;
}
b {
    font-weight: bold;
}
/* button class */
.btn-cta {
    display: grid;
    gap: 1rem;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    caret-color: transparent;
}
.btn-primary {
    width: 100%;
    height: 2.813rem;
    background: black;
    color: white;
    border-radius: 1rem;
    cursor: pointer;
    caret-color: transparent;
}
.btn-half {
    width: 50%;
}
.btn-primary.disabled {
    background: hsl(0deg 0% 85.83%);
    pointer-events: none;
    cursor: auto;
}
.btn-primary:hover,
.btn-primary:focus {
    background: var(--clr-primary);
    color: white;
    /* border: 1px solid black; */
}
/* loader */
.loading-screen {
    position: fixed;
    inset: 0 0 0 0;
    background: white;
    z-index: 2;
    display: none;
}
.loader-content {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-block-start: 40vh;
    position: relative;
}
.loader-content .loader {
    width: 100px;
    height: 100px;
}
/* full width */
.wholepageloading .loader::before,
.wholepageloading .loader::after,
.dashboard-content .loader::before,
.dashboard-content .loader::after {
    border: 15px solid var(--clr-secondary);
}
.wholepageloading .loader::after,
.dashboard-content .loader::after {
    border-color: var(--clr-primary);
    inset: 1.25rem;
}
/* loading text */
.loading {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
}
.loading span {
    display: inline-block;
    margin-inline-end: 0.25rem;
}.loading-animation span {
    animation: loading04 0.7s infinite;
}
.loading-animation span:nth-child(2) {
    animation-delay: 0.1s;
}
.loading-animation span:nth-child(3) {
    animation-delay: 0.2s;
}
.loading-animation span:nth-child(4) {
    animation-delay: 0.3s;
}
.loading-animation span:nth-child(5) {
    animation-delay: 0.4s;
}
.loading-animation span:nth-child(6) {
    animation-delay: 0.5s;
}
.loading-animation span:nth-child(7) {
    animation-delay: 0.6s;
}
@keyframes loading04 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}
.loader {
    display: none;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}
.loader::before , 
.loader::after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 5px solid var(--clr-secondary);
    animation: prixClipFix 2s linear infinite ;
}
.loader::after {
    border-color: var(--clr-primary);
    animation: prixClipFix 2s linear infinite , rotate 0.5s linear infinite reverse;
    inset: 6px;
}
@keyframes rotate {
0%   {transform: rotate(0deg)}
100%   {transform: rotate(360deg)}
}
@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}


/* class misc */
.clr-accent {
    color: var(--clr-accent);
}
.clr-primary {
    color: var(--clr-primary);
}
.clr-secondary {
    color: var(--clr-secondary);
}
.clr-red {
    color: #ff4747;
}
.clr-purple {
    color: #4A0070;
}
.clr-white {
    color: white;
}
.bg-accent {
    background: var(--clr-accent);
}
.bg-primary {
    background: var(--clr-primary);
}
.bg-secondary {
    background: var(--clr-secondary);
}
.pos-relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}
.font-bold {
    font-weight: var(--fw-bold);
}
.mt-1 {
    margin-block-start: 1rem;
}
.mt-2 {
    margin-block-start: 2rem;
}
.mt-3 {
    margin-block-start: 3rem;
}
.mt-4 {
    margin-block-start: 4rem;
}
.mb-1 {
    margin-block-end: 1rem;
}
.mb-2 {
    margin-block-end: 2rem;
}
.mb-3 {
    margin-block-end: 3rem;
}
.mt-8 {
    margin-block-start: 8rem;
}
.mb-8 {
    margin-block-end: 8rem;
}
.pb-1 {
    padding-block-end: 1rem;
}
.pb-2 {
    padding-block-end: 2rem;
}
.pb-3 {
    padding-block-end: 3rem;
}
.display-none {
    display: none;
}
.display-inherit {
    display: inherit;
}
.display-inline {
    display: inline-block;
}
