.desktop-view {
  position: relative;
  transition: 0.5s ease;
  display: none;
  opacity: 0;
}

.desktop-window {
  display: inline-block;
  margin: 0 auto;
}

.desktop-window::-webkit-scrollbar {
  width: 0 !important;
}

.desktop-window::-moz-scrollbar {
  width: 0 !important;
}

.desktop-window::-o-scrollbar {
  width: 0 !important;
}

.desktop-window::scrollbar {
  width: 0 !important;
}

.view-main {
  display: inline-block;
  transition: 0.5s ease;
  opacity: 1;
  margin-left: 130px;
  width: calc(100% - 130px);
}

.view-main::-webkit-scrollbar {
  width: 0 !important;
}

.view-head {
  display: flex;
  height: 100px;
  align-items: center;
  justify-content: flex-start;
  z-index: 9;
}

.view-title {
  font-size: 24px;
  margin-bottom: 5px;
  padding-left: 50px;
  z-index: 9;
  color: var(--main-text-color);
}

.view-body {
  position: relative;
  padding-bottom: 50px;
  z-index: 10;
}

.view-body-content {
  display: none;
  margin-left: 50px;
}

.active-content {
  display: block;
  height: calc(100vh - 120px);
}

.view-head-list {
  position: relative;
  display: block;
  padding-left: 0px;
  width: 266px;
  margin-right: 40px;
  margin-bottom: 0px;
}

.view-head-li {
  position: relative;
  display: block;
  float: left;
  padding: 10px 0px 0px 0px;
  margin: 0px;
  margin-left: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0);
  transition: 0.5s ease;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.view-head-li:hover {
  border-top: 1px solid rgba(0, 0, 0, 1);
}

@media (max-width: 800px) and (min-width: 225px) {
  .view-head {
    height: 50px;
  }

  .view-head-list {
    margin-right: 0px;
    top: -50px;
  }

  .view-head-li {
    float: right;
    margin-left: 10px;
  }

  .view-main {
    width: calc(100vw - 60px);
    margin: 20px 30px 0px 0px;
    padding-left: 30px;
    scroll-behavior: smooth;
    left: 0px;
  }

  .view-title {
    margin-top: 10px;
    width: 100%;
    padding-left: 0px;
  }

  .view-body-content {
    margin-left: 0px;
    scroll-behavior: smooth;
  }
}