@import url("https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/*
CSS RESET
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Anonymous Pro", monospace !important;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

input {
  outline: 0;
}

:root {
  --hellenic-blue: #0179b4;
  --army-yellow: #fde81a;
  --army-olive: #556b2f;
  --army-khaki: #bdb76b;
  --haf-blue: #008bd0;
  --navy-blue: #1b4279;
}

main {
  flex: 1;
}

body {
  /* background: linear-gradient(-45deg, var(--army-olive),var(--army-khaki),var(--army-yellow),var(--haf-blue), var(--hellenic-blue),var(--navy-blue)); */
  background: linear-gradient(to right, #7474bf, #348ac7);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.grey-color {
  color: #b3b1ab;
}

/* Header */

header {
  display: flex;
  justify-content: center;
  align-items: center;
}

header img {
  max-width: 370px;
}

/* First Page */

#uploadform {
  display: flex;
  height: 100%;
  align-items: center;
}

#dashboard {
  display: none;
  margin: 3rem 0;
}

.maincol {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  border: 1px solid transparent;
}
.left {
  background: #fff;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.right {
  background: #000;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  color: #fff;
}

#uploadform input {
  display: none;
}

#uploadform label {
  width: 100%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom, #4b5320 0%, #3c4411 100%);
  text-shadow: 0 1px 0 #5a622f;
  color: white;
  transition: all 0.5s;
}

#uploadform label:hover {
  cursor: pointer;
  transform: scale(1.1);
}

/* Dashboard page */

.dash {
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
  position: relative;
}

#closebtn {
  height: 40px;
  background-repeat: no-repeat !important;
  border: none;
  position: absolute;
  width: 40px;
  right: 0;
  margin: 0.5rem;
}

.col-dash {
  display: flex;
  padding: 1.2rem 0;
}

.col-border {
  border-right: 1px solid #eeeeee;
}

.col-middle {
  background: #f5f5f5;
}

#somaimg {
  max-width: 90px;
}

.box {
  border: 1px solid transparent;
  padding: 0.8rem;
  border-radius: 13px;
  background: #4f46bb;
  color: #fff;
}

.box-number {
  font-weight: bold;
  font-size: 2rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.innercol {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.innercol img {
  max-width: 40px;
}

.innercol .box-number {
  font-weight: bold;
  font-size: 5rem;
  color: #000 !important;
}

.whitebox {
  background: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.boxinner {
  align-items: center;
  justify-content: center;
}

.whitebox img {
  max-width: 40px;
}

#adeies_pie,
#service-pie,
#thiteia-pie {
  width: 100%;
  height: 100%;
  min-height:250px;
}

#vathmos {
  font-size: 12px;
  font-weight: bold;
}

#vathmosimg {
  max-width: 35px;
  margin: 1rem auto;
  rotate: -90deg;
}

.pie {
  display: none;
  background:#fff;
  padding:2rem;
  box-shadow: 0px 5px 16px #10121729;
}

.pie h2{
  border-bottom:1px solid #000;
  text-align: center;
  padding:1rem 0;
}

#event {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 1.4rem;
}

.eventdate {
  padding: 0.4rem;
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  height: 100%;
}

.eventname {
  margin-bottom: 0 !important;
  padding: 1.2rem 0;
}

#event > div {
  align-items: center;
  box-shadow: 0px 5px 16px #10121729;
  padding: 0rem 3.2rem 0rem 0rem;
  transition: all ease 0.2s;
}

tspan {
  font-weight: bold;
}

footer h5{
  font-weight: bold;
}

#info,#stats{
  display:none;
}

.dashbtn{
  background-color: #fff;
  border:none;
  padding:1rem;
  font-size: 20px;
  width: 100%;
  margin:1rem 0;
}

#bar{
  display:none;
}

.step img{
  max-width: 250px;
  margin:0 auto;
}

.step{
  display:flex!important;
  flex-direction: column;
  text-align: center;
  gap:2rem;
  margin:2rem 0;
  justify-content: center;
  min-height: 50vh;
}

.slick-prev:before,
.slick-next:before{
  color:#000;
}

.slick-next{
  right:0;
}

.slick-prev{
  left:0;
}

.slick-dots li button:before{
  font-size: 20px;
}

@media screen and (max-width:1024px){
  #info .row{
    flex-direction: column;
    gap:2rem;
  }
  .col-md-3,.col-md-2,.col-md-7,.event{
    width:100%;
  }
  table{
    overflow-x: auto;
  }
  .col-dash{
    border:none;
  }
}
