* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
}

button:active {
  color: black;
}

a {
  text-decoration: none;
  color: black;
}

body {
  font: normal 16px/1.5 Helvetica, sans-serif;
}

img{
  width: 100%;
  cursor: pointer;
}

/* Navbar */
.navbar {
  background: linear-gradient(90deg, #629c99, #80a8a6);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.36rem;
  /* z-index: 999; */
}
.navbar-left {
  color: #fff;
  display: flex;
}
.navbar-left img {
  width: 45px;
  height: 45px;

}
.navbar-action-items {
  color: #fff;
  display: flex;
}
.navbar-icon {
  border-radius: 4px;
  padding: 0.5rem 0.7rem;
  /* background: rgba(255, 255, 255, 0.15); */
  color: #fff;
  margin-left: 1rem;
  cursor: pointer;
}
.navbar-icon img{
  width: 25px;
}


/* .top-banner
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.top-banner {
  display: flex;
  width: calc(100% - 70px);
  height: calc(100vh - 60px);
  transform: translateX(70px);
  background: url(./image/sand-background/desktop/jpg/sand_background_1440x1024.jpg) no-repeat center / cover;
}
.top-banner canvas{
  /* display: flex;
  width: 800px; */
  /* width: calc(100% - 70px) !important;
  height: calc(100vh - 60px) !important; */
  /* background: rgba(0, 0, 0, 0.045); */
}

/* .menu-wrapper
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top-nav .menu-wrapper {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 350px;
  padding: 0 20px;
  transform: translateX(-280px);
  transition: transform .7s;
  background: #EAE5DA;
  color: #fff;
  overflow-y: auto;
  scrollbar-width: auto;
  scrollbar-color: #030103 #8A8A8A;
}

.top-nav .menu-wrapper.is-opened {
  transform: translateX(70px);
}

/* .top-nav .menu-wrapper .menu {
  opacity: 0;
  transition: opacity .4s;
}

.top-nav .menu-wrapper.is-opened .menu {
  opacity: 1;
  transition-delay: .6s;
} */

.top-nav .menu-wrapper .menu a {
  font-size: 1.2rem;
}

.top-nav .menu-wrapper .menu-close {
  color: #ED1C24;
  font-weight: bolder;
  position: sticky;
  top: 20px;
  left: 260px;
  font-size: 2rem;
  z-index: 999;
  padding: 0;
  margin: 0;
}


/* .fixed menu
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.top-nav .fixed-menu {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: 70px;
  /* padding: 20px; */
  text-align: center;
  background: #18191b;
  overflow-y: auto;
  scrollbar-width: none;
}

.top-nav .fixed-menu .panel-items{
  font-size: 10px;
  color: #FFFFFF;
  cursor: pointer;
  transition: color 0.3s;
  height: 52px;
}

.top-nav .fixed-menu .panel-items .menu-icon {
  font-size: 1.5rem;
}
.top-nav .fixed-menu .panel-items:hover{
  color: #FFFF00;
  font-size: 15px;
}
.top-nav .fixed-menu .panel-items.active {
  color: #4D4D4D;
  font-size: 15px;
}

.top-nav .fixed-menu ul .active-tab{
  width: 100%;
  height: 52px;
  background-color: #EAE5DA;
  position: absolute;
  top: -52px;
  left: 0;
  transition: top 0.3s;
}

.top-nav .fixed-menu ul{
  padding: 0;
  list-style: none;
  position: relative;
}
.top-nav .fixed-menu ul li{
  position: relative;
}