@charset "utf-8";
@import "ecc.css";
/* CSS Document */
:root {
   --clr1: #000;
   --clr2: #FFF;
}
* {
   box-sizing: border-box;
   max-width: 100%;
   margin: 0;
   padding: 0;
   font-family: "Segoe", "Segoe UI", "DejaVu Sans", "Trebuchet MS", "Verdana", "sans-serif";
   font-size: 17px;
   color: var(--clr1);
   scroll-behavior: smooth;
}
*::-webkit-scrollbar {
   width: 5px;
}
*::-webkit-scrollbar-track {
   background: var(--clr2);
}
*::-webkit-scrollbar-thumb {
   background: #888;
}
*::-webkit-scrollbar-button {
   display: none;
}
body, html {
   display: block;
   width: 100%;
   min-height: 100vh;
   max-width: 100%;
   -ms-user-select: none;
   -moz-user-select: none;
   -webkit-user-select: none;
}



/* MAIN */
header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 100%;
   height: 100px;
   padding: 20px;
   background: linear-gradient(180deg, #888, rgba(0, 0, 0, 0));
}
header a {
   display: block;
   width: 75px;
   height: 75px;
   background: transparent;
   border: 7.5px solid #FF330D;
   border-radius: 75px;
   border-top-color: #FFB50D;
   border-right-color: #FF7100;
   border-bottom-color: #FF330D;
   border-left-color: #FF7100;
   filter: blur(.55px);
   animation: anmLogo 10s linear infinite;
   cursor: pointer;
}
header a[data-anm='stop'] {
   animation-play-state: paused;
}
@keyframes anmLogo {
   0% {
      transform: rotate(0deg);
   }
   100% {
      transform: rotate(360deg);
   }
}
header span {
   display: block;
   font-size: 2.5em;
   letter-spacing: .05em;
   color: var(--clr1);
   text-shadow: 3px 2px 3px #888;
}

main {
   display: block;
   width: 100%;
   min-height: calc(100vh - 100px);
}

footer {
   position: fixed;
   right: 0;
   bottom: 0;
   display: flex;
   width: 50px;
   height: 50px;
   color: var(--clr1);
   background: var(--clr2);
   border-top: 1px solid var(--clr1);
   border-left: 1px solid var(--clr1);
   border-top-left-radius: 100%;
   transition: .5s;
   overflow: hidden;
   z-index: 9;
}
footer:hover {
   width: 300px;
   height: auto;
   border-top-left-radius: 10px;
}
footer span {
   position: absolute;
   right: -5px;
   bottom: -5px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   background: var(--clr2);
   transition: 0s, color .5s;
}
footer:hover span {
   width: 80px;
   height: 80px;
   color: transparent;
   border: 1px solid var(--clr1);
   transform: rotate(45deg) translate(75%);
}
footer ul {
   display: none;
   width: 300px;
   height: auto;
   transition: .5s .5s;
}
footer:hover ul {
   display: block;
}
footer ul li {
   list-style: none;
   transition: .5s;
}
footer ul li a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   padding: 10px;
   text-decoration: none;
   text-transform: uppercase;
   border-bottom: 1px solid var(--clr1);
   cursor: pointer;
   transition: .5s;
}
footer ul li a:hover {
   box-shadow: inset 0 0 3px .25px #888;
}



/* CONTEXT-MENU */
menu {
   position: fixed;
   top: 0;
   left: 0;
   display: none;
   width: auto;
   height: auto;
   background: var(--clr2);
   border: 1px solid var(--clr1);
   border-radius: 10px;
   z-index: 10;
   overflow: hidden;
}
menu[data-active] {
   display: block;
}
menu span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   padding: 10px;
   color: var(--clr1);
   text-align: center;
   text-decoration: none;
   text-transform: uppercase;
   transition: .5s;
   cursor: pointer;
}
menu span:not(:last-child) {
   border-bottom: 1px solid var(--clr1);
}
menu span:hover {
   box-shadow: inset 0 0 3px .25px #888;
}

.menuFrm {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   display: none;
   width: auto;
   height: auto;
   padding: 10px;
   background: var(--clr2);
   border: 1px solid var(--clr1);
   border-radius: 10px;
   z-index: 10;
}
.menuFrm[data-active] {
   display: block;
}
.menuFrm p {
   padding: 7.5px;
   text-align: center;
}
.menuFrm input {
   display: block;
   width: 100%;
   padding: 2.5px;
   text-align: center;
   border: 1px solid var(--clr1);
   border-radius: 10px;
   transition: .5s;
   -ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;
}
.menuFrm input:hover, .menuFrm input:focus {
   box-shadow: inset 0 0 3px .25px #888;
}
.menuFrm input[type='button'] {
   cursor: pointer;
}
.menuFrmBg {
   position: fixed;
   top: 0;
   left: 0;
   display: none;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, .3);
   z-index: 9;
}
.menuFrmBg[data-active] {
   display: block;
}



/* FORMS */
form {
   width: 100%;
   padding: 20px;
}
form p {
   display: block;
   margin: 20px 0px 10px 0px;
}
form input, form textarea {
   display: block;
   width: 100%;
   margin: 5px 0px;
   padding: 10px 20px;
   background: var(--clr2);
   border: 1px solid #888;
   border-radius: 10px;
   outline: none;
   transition: .5s;
}
form input:hover, form input:focus, form textarea:hover, form textarea:focus {
   box-shadow: inset 0 0 3px .25px #888;
   border: 1px solid var(--clr1);
}
form textarea {
   min-height: 250px;
   resize: horizontal;
}
form input[type='submit'], form input[type='button'] {
   width: auto;
   text-align: center;
   text-transform: uppercase;
   cursor: pointer;
}



/* INDEX */
.idx {
   position: relative;
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100vh;
   background: var(--imgClr);
}
.idx img {
   position: absolute;
   top: 0;
   left: 0;
   display: block;
   width: 100%;
   height: 100vh;
   object-position: center;
   object-fit: cover;
}
.idx h1 {
   display: block;
   padding: 10px;
   color: #FF7100;
   font-weight: 600;
   text-align: center;
   overflow: visible;
   z-index: 1;
}
.idx p:not(:empty) {
   display: block;
   padding: 10px;
   color: #FFB50D;
   text-align: center;
   overflow: visible;
   z-index: 1;
}

.idxSub {
   display: block;
   width: 100%;
   height: auto;
   padding: 20px;
   color: var(--clr2);
   text-align: justify;
   text-align-last: center;
   background: var(--clr1);
}
.idxSub:empty {
   display: none;
}

.idxHdr {
   position: fixed;
   top: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: space-around;
   background: rgba(0, 0, 0, .2);
   width: 100%;
   height: 45px;
   z-index: 9;
}
.idxHdr a {
   position: relative;
   display: flex;
   align-items: center;
   justify-content: center;
   width: auto;
   min-width: 40px;
   max-width: 100px;
   height: 40px;
   text-align: center;
   text-decoration: none;
   border-radius: 5px;
   background-position: center;
   background-repeat: no-repeat;
   background-size: 35%;
   background-color: rgba(255, 255, 255, .5);
   cursor: pointer;
   transition: .5s;
   overflow: visible;
}
.idxHdr a span:not(:empty) {
   display: block;
   width: auto;
   padding: 2.5px;
   margin: 0 2.5px;
   color: #FFF;
   border-radius: 5px;
   background: rgba(0, 0, 0, .5);
   transition: .5s;
   opacity: 0;
   overflow: hidden;
}
.idxHdr a:hover span {
   opacity: 1;
}



/* ENTRIES */
.etyAnl {
   display: grid;
   grid-template-columns: 50% 50%;
   grid-template-rows: 20px 50px;
   width: calc(100% - 40px);
   height: 90px;
   margin: 20px;
   padding: 10px;
   border: 1px solid var(--clr1);
   border-radius: 10px;
}
.etyAnl p {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: .8em;
   text-align: center;
}
.etyAnl span {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.9em;
   font-weight: 600;
}

.etyLst { /*.dil*/
   display: block;
   width: 100%;
   padding: 20px;
}
.etyLst hr {
   display: block;
   width: 100%;
   margin: 10px 0;
   border: 1px solid #888;
}
.etyLst .etyLstEtr {
   display: flex;
   align-items: center;
   justify-content: space-around;
   width: 100%;
   height: 150px;
   margin: 10px 0;
   padding: 10px;
   border: 1px solid #888;
   border-radius: 10px;
   transition: .5s;
}
.etyLst .etyLstEtr:hover {
   border: 1px solid var(--clr1);
   box-shadow: inset 0 0 3px .25px #888;
}
.etyLst .etyLstEtr .etyLstEtrDex {
   display: flex;
   flex-flow: column;
   align-items: center;
   justify-content: space-around;
   width: 90%;
   height: 135px;
   margin: 5px 0;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexDtt {
   display: block;
   width: 100%;
   height: 85px;
   margin: 5px 0;
   overflow: hidden;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexDtt span {
   display: block;
   width: 100%;
   height: 15px;
   padding: 0 2.5px;
   font-size: .8em;
   font-weight: 100;
   overflow-y: auto;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexDtt h1 {
   display: block;
   width: 100%;
   height: 33px;
   font-size: 1.5em;
   font-weight: 450;
   text-transform: uppercase;
   overflow-y: auto;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexDtt p {
   display: block;
   width: 100%;
   height: 25px;
   padding: 5px 5px;
   overflow-y: auto;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct {
   display: flex;
   flex-flow: row;
   align-items: center;
   justify-content: flex-start;
   width: 100%;
   height: 33px;
   overflow: hidden;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct a, .etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct span {
   position: relative;
   display: block;
   margin-right: 10px;
   font-weight: 600;
   text-decoration: none;
   text-transform: uppercase;
   overflow: hidden;
   cursor: pointer;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct span {
   font-weight: normal;
   color: #888;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct a::before, .etyLst .etyLstEtr .etyLstEtrDex  .etyLstEtrDexAct a::after, .etyLst .etyLstEtr .etyLstEtrDex  .etyLstEtrDexAct span::before, .etyLst .etyLstEtr .etyLstEtrDex  .etyLstEtrDexAct span::after {
   position: absolute;
   top: 0;
   left: 0;
   content: '';
   display: block;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   transform: rotate(180deg) scale(0) translateY(0%);
   transform-origin: center;
   transition: .75s;
   z-index: -1;
}
.etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct a:hover:before, .etyLst .etyLstEtr .etyLstEtrDex .etyLstEtrDexAct span:hover:before {
   border-bottom: 1px solid #FFB50D;
   transform: rotate(180deg) scale(1) translateY(-80%);
}
.etyLst .etyLstEtr .etyLstEtrDex div:nth-child(2) a:hover:after, .etyLst .etyLstEtr .etyLstEtrDex div:nth-child(2) span:hover:after {
   border-bottom: 1px solid #FFB50D;
   transform: rotate(180deg) scale(1) translateY(100%);
}
.etyLst .etyLstEtr img {
   display: block;
   width: 10%;
   height: 125px;
   margin: auto 0;
   border-radius: 10px;
   object-fit: cover;
   object-position: center;
}



/* ENTRIES EDIT */
form label[type='switch'] {
   position: relative;
   display: block;
   width: 80px;
   height: 36px;
   margin: 5px 0px;
   padding: 10px 20px;
   background: var(--clr2);
   border: 1px solid #888;
   border-radius: 10px;
   transition: .5s;
   cursor: pointer;
   overflow: hidden;
}
form label[type='switch']:hover, form label[type='switch']:focus {
   box-shadow: inset 0 0 3px .25px #888;
   border: 1px solid var(--clr1);
}
form label[type='switch'] input {
   display: none;
}
form label[type='switch'] span {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
form label[type='switch'] span:before {
   content: '';
   position: absolute;
   top: 2.5%;
   left: 2.5%;
   width: 45%;
   height: 95%;
   background: #FF330D;
   border-radius: 10px;
   transition: .25s;
}
form label[type='switch'] input:checked + span:before {
   left: 52.5%;
   background: #60D394;
}

.etyEdtFlw {
   display: grid;
   grid-template-columns: 25% 25% 25% 25%;
}
.etyEdtFlw div {
   display: block;
   width: 100%;
   padding: 0 20px;
}
.etyEdtFlw div p {
   margin-top: 0;
}

form input[type='range'] {
   padding: 0;
   appearance: none;
   cursor: pointer;
}
form input[type='range']:hover {
   box-shadow: inset 0 0 3px .25px #888;
   border: 1px solid var(--clr1);
}
form input[type='range']::-moz-range-thumb {
   width: 1em;
   height: 1em;
   background: var(--clr1);
   border-radius: 10px;
   border: none;
   appearance: none;
}
form input[type='range']::-webkit-slider-thumb {
   width: 1em;
   height: 1em;
   background: var(--clr1);
   border-radius: 10px;
   border: none;
   appearance: none;
}

form input[type='color'] {
   padding: 0;
   overflow: hidden;
}

.etyEdtPrv {
   position: fixed;
   left: 105px;
   bottom: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   border-radius: 10px;
   transition: .5s;
   cursor: pointer;
   overflow: hidden;
}
.etyEdtPrv:hover {
   left: 0;
   bottom: 0;
   width: 75%;
   height: 75vh;
}
.etyEdtPrv span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   color: var(--clr1);
   font-size: 1.25em;
   background: var(--clr2);
   border: 1px solid var(--clr1);
   border-radius: 10px;
   transition: .5s;
}
.etyEdtPrv:hover span {
   display: none;
}
.etyEdtPrv iframe {
   display: none;
   width: 100%;
   height: 100%;
   border: none;
}
.etyEdtPrv:hover iframe {
   display: block;
}

.etyEdtSve {
   position: fixed;
   left: 50px;
   bottom: 50px;
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   color: var(--cl1);
   font-size: 1.75em;
   background: var(--clr2);
   border: 1px solid var(--clr1);
   border-radius: 10px;
   opacity: .5;
   transition: .25s;
   pointer-events: none;
}
.etyEdtSve[data-visibile] {
   opacity: .75;
}
.etyEdtSve[data-state='error'] {
   color: #F00;
}
.etyEdtSve[data-state='saved'] {
   color: #0F0;
}



/* LOADER */
loader, .load {
   position: relative;
   display: block;
   width: 50px;
   height: 50px;
   border-radius: 10px;
   overflow: hidden;
}
loader[type='line'], .load[data-flat] {
   width: 60px;
   height: 15px;
}
loader::before, loader::after, .load::before, .load::after {
   position: absolute;
   content: '';
   top: 0;
   left: 0;
   display: block;
   width: 100%;
   height: 100%;
   border-radius: 10px;
   background-color: #FFB50D;
   transform-origin: center;
   animation: anmLoad 2s ease infinite;
   filter: blur(1px);
}
loader::after, .load::after {
   background-color: #FF330D;
   animation-delay: 1s;
}
@keyframes anmLoad {
   0% {
      transform: scale(0);
      z-index: 1;
   }
   50% {
      transform: scale(1);
      z-index: 0;
   }
   100% {
      transform: scale(0);
      z-index: 1;
   }
}






























































































/*
.pbttu {
   display: grid;
   grid-template-columns: 50px 50px;
   width: 100px;
   margin: 5px auto 10px 15px;
}
.pbttu span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   color: #000000;
   overflow: hidden;
}
.pbttu span:hover {
   color: #ff330d;
}
.pbbu {
   display: flex;
   align-items: center;
   justify-content: center;
   width: auto;
   height: 40px;
   margin: auto;
   border-radius: 10px;
   background-position: center;
   background-repeat: no-repeat;
   background-size: contain;
   background-color: transparent;
   text-align: center;
   overflow: visible;
}
.pbbu span {
   display: flex;
   align-items: center;
   justify-content: center;
   width: auto;
   height: 25px;
   margin: 2.5px;
   padding: 5px;
   border-radius: 10px;
   background-color: rgba(0, 0, 0, 0.8);
   color: #ffffff;
   overflow: hidden;
}
.citb {
   min-height: 75vh;
   max-width: 95%;
   min-width: 95%;
   padding: 7.5px 10px;
}
#concept-mode {
   overflow: visible;
}
#asc-ico {
   position: fixed;
   top: 10px;
   right: 20px;
   display: flex;
   width: 50px;
   height: 50px;
   align-items: center;
   justify-content: center;
   border-radius: 50px;
   background-color: #FF7100;
   font-size: 1.75em;
   color: #ffffff;
}
#asc-ico:empty {
   display: none;
}
.btn {
   width: 50px;
   margin: 10px 60px;
   font-size: 2.5em;
   font-weight: 1000;
   overflow: hidden;
}
.cbo input[type=submit], .cbo input[type=button] {
   width: 90%;
}


.cpt {
   display: grid;
   grid-template-columns: 25% 25% 25% 25%;
   width: 95%;
   margin: 5px 2.5%;
   overflow: visible;
}
.cpt div {
   overflow: visible;
}
.cftt {
   display: block;
   width: 97.5%;
   height: auto;
   margin: 20px 1.75% 5px 1.75%;
   padding: 5px;
   text-align: left;
   text-transform: uppercase;
   transition: 0.5s;
   -ms-user-select: None;
   -moz-user-select: None;
   -webkit-user-select: None;
}
.cfttu {
   display: block;
   width: 95%;
   margin: 5px 2.5% 5px 2.5%;
   text-align: left;
   transition: 0.5s;
   -ms-user-select: None;
   -moz-user-select: None;
   -webkit-user-select: None;
}
.cet {
   display: block;
   width: 95%;
   height: auto;
   margin: 10px 2.5%;
   padding: 5px;
   color: #FF330D;
   text-align: left;
   text-transform: uppercase;
   transition: 0.5s;
   -ms-user-select: None;
   -moz-user-select: None;
   -webkit-user-select: None;
}
.cet:empty {
   height: 0px;
   margin: 0px 2.5%;
   padding: 0px;
}
.cip {
   display: block;
   width: 95%;
   height: 500px;
   margin: 10px 2.5%;
   border: none;
   border-radius: 10px;
}
.cbo {
   display: grid;
   grid-template-columns: 50% 50%;
   width: 95%;
   margin: 50px auto;
   padding: 10px;
}
.clickable {
   cursor: pointer;
   text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
   transition: 0.5s;
}
.clickable:hover {
   cursor: pointer;
   text-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
   overflow: visible;
}


*/






























































@media only screen and (max-width: 1400px) {
   .dii div {
      width: 80%;
   }
   .dii img {
      width: 20%;
   }
}
@media only screen and (max-width: 1200px) {
   input[type='submit'], input[type='button'] {
      width: 40%;
   }
}
@media only screen and (max-width: 800px) {
   #i {
      font-size: 10px;
   }
   #ist div {
      font-size: 12px;
   }
   header #hn {
      font-size: 2em;
   }
   .cpt {
      grid-template-columns: 50% 50%;
   }
   footer #fb {
      width: 100%;
   }
   footer #fb li a {
      width: 100%;
   }
   footer:hover {
      top: auto;
      left: auto;
      right: 0px;
      bottom: 0px;
      width: 100%;
      border-radius: 10px 10px 0px 0px;
      height: auto;
   }
   menu {
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: auto;
      width: 100%;
      border-radius: 0px;
      box-shadow: 0px 0px 0px 500vh rgba(0, 0, 0, 0.3);
   }
   menu span {
      width: 100%;
   }
}
@media only screen and (max-width: 600px) {
   #i {
      overflow-y: auto;
   }
   #iti, #ite {
      letter-spacing: 1px !important;
      padding-left: 1px !important;
   }
   .dii {
      position: relative;
      padding: 0px;
      background-color: transparent;
      transition: 0.5s;
   }
   .dii div {
      width: 100%;
      height: auto;
      margin: 0px 0px;
      padding: 5px 2.5%;
      background-color: rgba(255, 181, 13, 0.50);
      transition: 0.5s;
   }
   .dii:hover div {
      transition: 0.5s;
   }
   .dii div div:nth-child(1) {
      height: auto;
      margin: 5px 0px;
      background-color: transparent;
   }
   .dii div div:nth-child(1) span:nth-child(1) {
      height: 20px;
      font-size: 0.9em;
      font-weight: 800;
   }
   .dii div div:nth-child(1) span:nth-child(2) {
      font-weight: 600;
   }
   .dii div div:nth-child(1) p {
      height: 35px;
      padding: 0px 5px;
      font-size: 1.1em;
      font-weight: 400;
   }
   .dii div div:nth-child(2) {
      height: 26px;
      margin: 2.5px 0px;
      background-color: transparent;
   }
   .dii div div:nth-child(2) p {
      margin: 5px 10px;
      font-weight: 700;
   }
   .dii div div:nth-child(2) span {
      margin: 5px 10px;
      font-weight: 600;
   }
   .dii img {
      position: absolute;
      display: block;
      top: 0px;
      left: 0px;
      height: 100%;
      width: 100%;
      margin: 0px;
      border-radius: 0px;
      z-index: -1;
   }
   header {
      flex-flow: column;
      justify-content: space-around;
      width: 100%;
      height: auto;
      max-height: 150px;
      padding: 10px;
   }
   header #hl {
      width: 50px;
      height: 50px;
      margin: 2px auto;
      border-width: 5px;
   }
   header #hn {
      height: auto;
      max-height: 75px;
      padding: 10px 0px;
      font-size: 1.5em;
      letter-spacing: 0em;
      text-align: center;
   }
   footer {
      width: 40px;
      height: 40px;
   }
   footer #fl {
      padding-top: 20px;
      font-size: 0.9em;
   }
   .cbo {
      grid-template-columns: 100%;
   }
}
@media only screen and (max-width: 500px) {
   textarea {
      min-height: 400px;
   }
   .cpt {
      grid-template-columns: 100%;
   }
   input[type='submit'], input[type='button'] {
      width: 60%;
      font-size: 1.4em;
   }
   #isb {
      overflow-x: scroll;
   }
}
@media only screen and (max-width: 400px) {}
@media only screen and (max-width: 350px) {
   * {
      font-size: 0.95em;
   }
}