@charset "UTF-8";
:root {
    --bs-blue: #3b89ff;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-green-w: #049761;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef; 
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
}

:root {
    --bg-color: #eeeeee;
    --bg-box-color: #ffffff;
    --bg-box-b-color: #ffffffde;
    --fn-color: #000000;
    --fn-color-o: #ffffff;
    --fn-a-color: #2d74e7;
    --fn-a-hover: #8d3dfc;
    --fn-a-active: #5c3cdb;
    --fn-g-color: #555555;
    --fn-g-hover: #383838;
    --fn-g-active: #555555;
    --fn-h-color: #2d2d2d;
    --fn-h-hover: #383838;
    --fn-h-active: #2d2d2d;
    --fn-t-color: #d9d9d9;
    --btn-active: #757575;
    --btn-active-d: #515151;
    --btn-th-color: #6798f2;
    --btn-th-hover: #6495ed;
    --btn-th-active: #4f78c6;
    --btn-rd-color: #f26767;
    --btn-rd-hover: #ed6464;
    --btn-rd-active: #c64f4f;
    --btn-gr-color: #76e362;
    --btn-gr-hover: #7ded64;
    --btn-gr-active: #51c64f;
    --btn-pr-color: #7c67f2;
    --btn-pr-hover: #7b64ed;
    --btn-pr-active: #634fc6;
    --btn-ye-color: #ffd500;
    --shadow: #223c5060;
    --shadow-o: #00000000;
    --br-bg-color: #cbcbd4;
}
:root[theme="dark"] {
    color-scheme: dark;
    --bg-color: #0b0b0b;
    --bg-box-color: #1f1f1f;
    --bg-box-b-color: #1f1f1fde;
    --fn-color: #ffffff;
    --fn-color-o: #000000;
    --fn-a-color: #5c91e5;
    --fn-a-hover: #ab7af0;
    --fn-a-active: #8372c9;
    --fn-g-color: #808080;
    --fn-g-hover: #858585;
    --fn-g-active: #757575;
    --fn-h-color: #868686;
    --fn-h-hover: #b0b0b0;
    --fn-h-active: #656565;
    --fn-t-color: #171717;
    --btn-active-d: #515151;
    --btn-active: #626262;
    --btn-th-color: #5989e1;
    --btn-th-hover: #6495ed;
    --btn-th-active: #4f78c6;
    --btn-rd-color: #e15959;
    --btn-rd-hover: #ed6464;
    --btn-rd-active: #c64f4f;
    --btn-gr-color: #76e362;
    --btn-gr-hover: #7ded64;
    --btn-gr-active: #51c64f;
    --btn-pr-color: #7c67f2;
    --btn-pr-hover: #7b64ed;
    --btn-pr-active: #634fc6;
    --btn-ye-color: #ffd500;
    --shadow: #37373793;
    --shadow-o: #000000;
    --br-bg-color: #3b3b3b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/*no scrollbar*/
::-webkit-scrollbar {
    width: 0;
}

html {
    height: 100%;
}
  
body {
    position: relative;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

br {
    user-select: none;
}

h1 {
    font-size: 35px;
}
h2 {
    font-size: 25px;
}
h3 {
    font-size: 20px;
}
h4 {
    font-size: 17px;
}
h5 {
    font-size: 16px;
}

a {
    text-decoration: none;
}
li {
    list-style: none;
}
ol {
    list-style: none;
}
hr {
    margin: 0;
	padding: 0;
	height: 0;
	border: none;
	border-top: 2px dashed #ddd;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.x-center {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.y-center {
    position: absolute;
    top: 50%;
    transform: translate(-50%);
}
.xy-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

/*justify-content: flex-start flex-end center space-between space-around;*/
/*align-items: flex-start flex-end center sctetch baseline*/

/*container*/
.container{
    display:flex;
}

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

.float-l {
    float: left;
}
.float-r {
    float: right;
}

.s-between {
    justify-content: space-between;
}
.s-around {
    justify-content: space-around;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.error {
    padding: 150px;
}

.application {
    color: var(--fn-color);
    background: var(--bg-color);
    border: var(--br-bg-color);
}
