body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1b2a;
  color: #f8f9fa;
  text-align: center;
  overflow-x: hidden;
}
body{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
abbr{
  text-decoration:none;
}
.left{
  text-align: left;
}
.cta-button {
  background-color: #f5c35d;
  color: #000;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s;
}
.cta-button:hover {
  background-color: #f2b838;
}
.hero {
  padding: 1.5rem 1rem;
}
.hero p {
  font-size: 1.2rem;
  color: #e0e1dd;
}
a{
  color:#cf8f2f;
  text-decoration: none;
}
code{
  font-size: 1.2em;
  word-break: break-all;
}
#global-container{
  height: 100vp;
  overflow-x: hidden;
}

#menu_background{
  background-color: #0d1b2a;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height:50px;
  z-index: 2;
}

#menu{
  position: relative;
  max-width: 900px;
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  z-index: 2;
}
#menu #right-menu{
  display: flex;
}
#menu #right-menu img{
  position: relative;
  top: -1px;
  width: 15px;
  margin-right: 15px;
  cursor: pointer;
}
#menu .button-main {
  background-color: initial;
  border: none;
  color: white;
  height:50px;
  font-size:1em;
  font-weight: 400;
  margin-right:15px;
  cursor: pointer;
  padding:0 15px;
  margin: 0;
}
#menu .button-main.active,
#menu .button-main:hover{
  background-color: #2f3d4c;
}
#menu .dropdown button,
#menu .dropdown-menu button {
  background-color: initial;
  border: none;
  color: white;
  cursor: pointer;
  font-size:1em;
  margin:5px 0;
}
#menu .dropdown {
  color: white;
  font-weight: 400;
  position: relative;
}
#menu .dropdown-menu-left {
  text-align: left;
  left: 0;
}
#menu .dropdown-menu-right {
  text-align: right;
  right: 0;
}

#menu .dropdown-menu {
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #2f3d4c;
  display: none;
  position: absolute;
  top: calc(100% + 20px);
  padding: 10px;
  z-index: 99;
  border-radius: 5px;
}
#menu .dropdown-menu li button {
  white-space: preserve nowrap;
}
#menu .dropdown.open .dropdown-menu {
  display: block;
}
#menu-small-device{
  display: none;
}
#menu-small-device img{
  width: 15px;
}

#page_intro{
  position: relative;
  text-align: center;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page_intro #logo {
    padding: 1.5rem 0 0 0;
}
#page_intro #logo img {
    width: 190px;
}
#page_intro h1 {
    font-size: 3rem;
    color: #ffd369;
    margin:0;
}
.page{
  background-color: #f6f6f6;
  color: #111111;
  position: relative;
  text-align: center;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page > div{
  width: 900px;
  display: flex;
}
.page > div.page-column{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page > div.page-center{
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.page .widget {
  padding-top: 30px;
}
.page .widget h2{
  color:#efaf4f;
}
.page .widget p{
  padding: 0;
  margin: 10px;
  text-align: justify;
}

.text-image{
  display: flex;
  align-items: center;
}
.text-image p{
  text-align: justify;
  padding-left: 50px;
}

.widget_by_one{
  width:100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding:20px 0;
}
.widget_by_one > div{
  padding: 5px 20px 25px 20px;
  background-color: white;
  border-radius: 15px;
  width: 100%;
}

.widget_by_two{
  width:100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding:20px 0;
}
.widget_by_two > div{
  padding: 5px 20px 25px 20px;
  background-color: white;
  border-radius: 15px;
  width: calc(50% - 50px);
}

.widget_by_three{
  width:100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
.widget_by_three > div{
  padding: 5px 20px 25px 20px;
  background-color: white;
  border-radius: 15px;
  width: calc(33% - 50px);
}
.widget_by_two > div h3,
.widget_by_three > div h3{
  text-align: left;
  font-weight: 400;
}
.widget_by_three > div span{
  display: block;
  text-align: left;
  font-size: 2.5em;
}

.warning{
    width: 60px;
    height: 60px;
}

.pie-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.pie-chart-svg {
  width: 200px;
  height: 200px;
  transform: rotate(-90deg);
  cursor: pointer;
  overflow:visible;
}

.pie-chart-svg path {
  transition: transform 0.2s ease, filter 0.2s ease;
  transform-origin: 50% 50%;
}

.pie-chart-svg path:hover,
.pie-chart-svg path.active {
  border:1px solid red;
  transform: scale(1.05);
  filter: brightness(1.2);
}

.legend {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legend li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.legend li.selected {
  border-bottom: 1px dashed grey;
}

.legend li .color {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border-radius: 3px;
}

#pie-value{
  padding-top: 10px;
  height: 60px;
}
#owner-wallets{
  text-align: left;
}
#owner-wallets > div{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#copyright{
  background-color:#050F1A;
  color: #e0e1dd;
  width:100%;
  height:50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#copyright #copyright-center{
  width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
#copyright abbr{
  vertical-align: -3px;
}
#copyright #social{
  display: flex;
}
#copyright img{
  width: 30px;
  height: 30px;
  margin: 0 5px;
  opacity: 0.6;
}
#copyright img:hover{
  opacity: 1;
}

/* Extra small portrait */
@media (max-width: 376px){
  #menu-small-device{
    display: block;
    padding-left: 20px;
  }
  #menu-desktop{
    display: none;
  }
  #menu{
    max-width: 100%!important;
    width: 100%!important;
  }

  .page > div{
    max-width: 100%!important;
    width: 100%!important;
    flex-direction: column!important;
  }
  .page .widget:not(:last-child){
    margin-bottom: 30px!important;
  }

  .text-image{
    flex-direction: column;
  }
  .text-image p{
    padding-left:0;
  }
  #img-getstarted{
    width: 280px;
  }

  .widget_by_one{
    width: calc(100% - 40px);
    justify-content: center;
  }
  .widget_by_two > div:last-child{
    top:10px;
  }
  .widget_by_two > div{
    position: relative;
    top:-20px;
    width: calc(100% - 80px);
  }
  .widget_by_two,
  .widget_by_three{
    flex-direction: column;
    align-items: center;
  }
  .widget_by_three > div{
    width: calc(100% - 80px);
  }
  .widget_by_three .widget:first-child{
    margin-top:30px;
  }
  .widget_by_three .widget:last-child{
    margin-bottom:30px;
  }
  .widget-activity{
    margin-bottom: 30px;
  }
  .widget-activity:first-child{
    margin-top: 10px;
  }

  .pie-wrapper{
    flex-direction: column-reverse;
  }
  #owner-wallets > div{
    flex-direction: column;
  }


  #menu #left-menu{
    padding-left: 20px!important;
  }
  #menu #right-menu{
    padding-right: 20px;
  }

  #copyright #copyright-center{
    width: 100%;
    padding-left:20px;
  }
  #copyright #copyright-center #social{
    padding-right: 30px;
  }
}

/* Small portrait */
@media (min-width: 376px) and (max-width: 599px){
  #menu-small-device{
    display: block;
    padding-left: 20px;
  }
  #menu-desktop{
    display: none;
  }

  #menu{
    max-width: 100%!important;
    width: 100%!important;
  }

  .page > div{
    max-width: 100%!important;
    width: 100%!important;
    flex-direction: column!important;
  }
  .page .widget:not(:last-child){
    margin-bottom: 30px!important;
  }

  .text-image{
    flex-direction: column;
  }
  .text-image p{
    padding-left:0;
  }
  #img-getstarted{
    width: 280px;
  }

  .widget_by_one{
    width: calc(100% - 40px);
    justify-content: center;
  }
  .widget_by_two > div:last-child{
    top:10px;
  }
  .widget_by_two > div{
    position: relative;
    top:-20px;
    width: calc(100% - 80px);
  }
  .widget_by_two,
  .widget_by_three{
    flex-direction: column;
    align-items: center;
  }
  .widget_by_three > div{
    width: calc(100% - 80px);
  }
  .widget_by_three .widget:first-child{
    margin-top:30px;
  }
  .widget_by_three .widget:last-child{
    margin-bottom:30px;
  }
  .widget-activity{
    margin-bottom: 30px;
  }
  .widget-activity:first-child{
    margin-top: 10px;
  }

  .pie-wrapper{
    flex-direction: column-reverse;
  }
  #owner-wallets > div{
    flex-direction: column;
  }

  #menu #left-menu{
    padding-left: 20px!important;
  }
  #menu #right-menu{
    padding-right: 20px;
  }

  #copyright #copyright-center{
    width: 100%;
    padding-left:20px;
  }
  #copyright #copyright-center #social{
    padding-right: 30px;
  }
}

/* Portrait */
@media (min-width: 600px) and (max-width: 767px) {
  #menu-small-device{
    display: block;
    padding-left: 20px;
  }
  #menu-desktop{
    display: none;
  }
  #menu{
    max-width: 100%!important;
    width: 100%!important;
  }

  .page > div{
    max-width: 100%!important;
    width: 100%!important;
    flex-direction: column!important;
  }
  .page .widget:not(:last-child){
    margin-bottom: 30px!important;
  }

  .text-image{
    flex-direction: column;
  }
  .text-image p{
    padding-left:0;
  }
  #img-getstarted{
    width: 300px;
  }

  .widget_by_one{
    width: calc(100% - 40px);
    justify-content: center;
  }
  .widget_by_two > div:last-child{
    top:10px;
  }
  .widget_by_two > div{
    position: relative;
    top:-20px;
    width: calc(100% - 80px);
  }
  .widget_by_two,
  .widget_by_three{
    flex-direction: column;
    align-items: center;
  }
  .widget_by_three > div{
    width: calc(100% - 80px);
  }
  .widget_by_three .widget:first-child{
    margin-top:30px;
  }
  .widget_by_three .widget:last-child{
    margin-bottom:30px;
  }
  .widget-activity{
    margin-bottom: 30px;
  }
  .widget-activity:first-child{
    margin-top: 10px;
  }

  .pie-wrapper{
    flex-direction: column-reverse;
  }
  #owner-wallets > div{
    flex-direction: column;
  }

  #menu #left-menu{
    padding-left: 20px!important;
  }
  #menu #right-menu{
    padding-right: 40px;
  }

  #copyright #copyright-center{
    width: 100%;
    padding-left:20px;
  }
  #copyright #copyright-center #social{
    padding-right: 30px;
  }
}

/* Small laptops */
@media (min-width: 768px) and (max-width: 1023px) {
  #menu{
    max-width: 100%!important;
    width: 100%!important;
  }

  .page > div{
    max-width: 100%!important;
    width: 100%!important;
    flex-direction: column!important;
  }
  .page .widget:not(:last-child){
    margin-bottom: 30px!important;
  }

  #img-getstarted{
    width: 300px;
  }

  .widget_by_one{
    width: calc(100% - 40px);
    justify-content: center;
  }
  .widget_by_two > div:last-child{
    top:10px;
  }
  .widget_by_two > div{
    position: relative;
    top:-20px;
    width: calc(100% - 80px);
  }
  .widget_by_two,
  .widget_by_three{
    flex-direction: column;
    align-items: center;
  }
  .widget_by_three > div{
    width: calc(100% - 80px);
  }
  .widget_by_three .widget:first-child{
    margin-top:30px;
  }
  .widget_by_three .widget:last-child{
    margin-bottom:30px;
  }
  .widget-activity{
    margin-bottom: 30px;
  }
  .widget-activity:first-child{
    margin-top: 10px;
  }

  .pie-wrapper{
    justify-content: space-evenly;
  }

  #menu #left-menu{
    padding-left: 20px!important;
  }
  #menu #right-menu{
    padding-right: 35px;
  }

  #copyright #copyright-center{
    width: 100%;
    padding-left:20px;
  }
  #copyright #copyright-center #social{
    padding-right: 30px;
  }
}

/* Medium laptops */
@media (min-width: 1024px) and (max-width: 1279px) {
  #menu,
  .page > div{
    max-width: 900px!important;
    width: 900px!important;
  }

  #menu #left-menu{
    padding-left: 0!important;
  }
  #menu #right-menu{
    padding-right: 10px!important;
  }

  #copyright #copyright-center{
    width: 900px;
  }

  .pie-wrapper svg{
    width: 90%;
  }
}

/* Large laptops */
@media (min-width: 1280px) and (max-width: 1599px) {
  #menu,
  .page > div{
    max-width: 1000px!important;
    width: 1000px!important;
  }

  #menu #left-menu{
    margin-left: -5px!important;
  }
  #menu #right-menu{
    padding-right: 0!important;
  }

  #copyright #copyright-center{
    width: 1000px;
  }
}

/* Extra large laptops */
@media (min-width: 1600px) {
  #menu,
  .page > div{
    max-width: 1200px!important;
    width: 1200px!important;
  }
  #menu #left-menu{
    padding-left:  -5px!important;
  }
  #menu #right-menu{
    padding-right: 20px!important;
  }

  html{
    font-size:1.3em;
  }

  #copyright #copyright-center{
    width: 1200px;
  }
}
