@import url("navbar.css");
@import url("items.css");

body, html {

    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    height: 100%;
    background: #fbfbfb;
  }

/* BROWSER'S SCROLL BAR */

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background: #1b2126;
}

body::-webkit-scrollbar-thumb {
  background: #113f44;
  border-radius: 5px;
}

body::-webkit-scrollbar-thumb:hover {
  background: #00293b;
}

html {
  scrollbar-color: #113f44 #1b2126;
  scrollbar-width: thin;
}

:root {
  --gold-color: #918602;
  --gold-text: #918602;
  --blue-green-gradient: linear-gradient(167deg, #002A1B 0%, #001E3F 100%);
  --blue-gold-gradient: linear-gradient(167deg, #2B2613 0%, #001E3F 100%);
}

.register-card {
  margin-top: 50px!important;
  transition: all 0.4s ease;
}

.register-card:hover {
  cursor: pointer;
  background: #113f44;
  color: #fff;
  transition: all 0.4s ease;
}

.progressbar {
  counter-reset: step;
}
.progressbar li {
  list-style: none;
  display: inline-block;
  width: 30.33%;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height : 30px;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}
.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index : -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: white;
}
.progressbar li.active:before {
  border-color: green;
  background-color: green;
} 
.progressbar li.active + li:after {
  background-color: green;
}