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

body {
  font-family: "robotoregular", Arial, Helvetica, sans-serif;
  /* overflow: hidden; */
  background-color: var(--content-bgc);
}

/* ==============================FONTS============================== */

@font-face {
  font-family: "dancing_regular";
  src: url(../fonts/dancingscript-variablefont_wght-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotoblack";
  src: url(../fonts/Roboto-Black.ttf) format("ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotomedium";
  src: url(./../fonts/roboto-medium-webfont.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotoblack";
  src: url(./../fonts/roboto-black-webfont.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotobold";
  src: url(../fonts/roboto-bold-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotobold_italic";
  src: url(../fonts/roboto-bolditalic-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotolight";
  src: url(../fonts/roboto-light-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotolight_italic";
  src: url(../fonts/roboto-lightitalic-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "robotoregular";
  src: url(../fonts/roboto-regular-webfont.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

/* WRAPPER */
.wrap-all {
  display: flex;
  flex-direction: column;
}

/* ==============================Preloader============================== */

section.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4731d3;
  min-height: 100vh;
  z-index: 99999999;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

section.preloader .loader {
  position: relative;
  width: 200px;
  height: 200px;
  border: 4px solid #4731d3;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.1),
    10px 10px 10px rgba(0, 0, 0, 0.4),
    inset -5px -5px 5px rgba(255, 255, 255, 0.2),
    inset 10px 10px 10px rgba(0, 0, 0, 0.4);
}

section.preloader .loader .text {
  /* content: "Loading"; */
  color: var(--content-bgc);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
  background: #4731d3;
  border-radius: 50%;
  border: 2px solid #4731d3;
  box-shadow: inset -2px -2px 5px rgba(255, 255, 255, 0.2),
    inset 3px 3px 5px rgba(0, 0, 0, 0.5);
}

section.preloader .loader .text h6 {
  font-weight: 300;
  font-size: 0.9em;
  letter-spacing: 1px;
  animation: fade 2s ease-in-out infinite;
}

section.preloader .loader span {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
  animation: rotate 0.5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* ==============================NAVBAR============================== */

.navbar {
  width: 100%;
  /* height: 66px; */

  height: 100vh;
  background-color: #5d44f8;
  overflow: auto;
}

.navbar-content.head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
  margin-top: 12px;
}

.navbar-content.head .btn-toggle-navbar a {
  color: white;
}

.navbar-content.head .title {
  display: none;
}

.navbar-content.head .logo-brand img {
  width: 40px;
}

.navbar-content.body .head {
  font-size: 14px;
  font-family: "robotobold";
  padding: 25px 32px 0 32px;
}

.navbar-content.body .navbar-nav li {
  list-style: none;
}

.navbar-content.body .navbar-items a {
  text-decoration: none;
  padding: 13px 32px;
  display: block;
  color: white;
  font-size: 14px;
}

.navbar-content.body .navbar-items a.navbar-link:hover,
.navbar-content.body .navbar-items .navbar-list .list-item a:hover {
  background-color: var(--sidebar-active);
}

.navbar-content.body .navbar-items a.navbar-link {
  display: flex;
}

.navbar-content.body .navbar-items a.navbar-link .icon {
  flex-grow: 2;
}

.navbar-content.body .navbar-items a.navbar-link .title {
  flex-grow: 12;
  text-transform: capitalize;
}

.navbar-content.body .navbar-items a.navbar-link.head-list::after {
  content: "\002B";
  transition: transform 0.2s ease-in-out;
}

.navbar-content.body .navbar-items a.navbar-link.head-list.active::after {
  content: "\2212";
  transform: rotate(360deg);
}

.navbar-content.body .navbar-items a.active,
.navbar-content.body .navbar-items .navbar-list .list-item a.active {
  background-color: var(--sidebar-active);
}

.navbar-content.body .navbar-items a.navbar-link.active .icon {
  color: var(--icon-color);
}

.navbar-content.body .navbar-items .navbar-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}

.navbar-content.body
  .navbar-items
  a.navbar-link.head-list.active
  + .navbar-list {
  max-height: 100vh;
}

.navbar-content.body .navbar-items .navbar-list .list-item a {
  padding-left: 55px;
}

.navbar-content.footer {
  color: var(--content-bgc);
  font-size: 10;
  padding: 35px 32px 10px 32px;
  display: flex;
  text-align: right;
  font-family: "robotolight";
  align-self: flex-end;
}

.navbar-content.footer small {
  text-transform: capitalize;
}

.navbar-content.footer small span {
  color: var(--icon-color);
  font-weight: bold;
}

/* ==============================CONTENT============================== */

.content {
  background-color: rgb(0, 128, 255);
  display: flex;
  flex-direction: column;
}

.content .content-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px;
}

.content-header .content-title {
  font-family: "robotobold";
  font-size: 15px;
}

.content-header .user-dropdown a {
  border: 0;
  background: none;
  font-family: "robotoregular";
  font-size: 15px;
  text-decoration: none;
  color: var(--primary-text);
}

.content-header .user-dropdown a .user-name::after {
  content: "\25BE";
  color: var(--primary-text);
}

.content-header .user-dropdown a .user-name {
  transition: all 0.1s ease-in-out;
  text-transform: capitalize;
}

.content-header .user-dropdown a .user-name:hover {
  color: var(--icon-color);
}

.user-dropdown .dropdown-menu {
  position: relative;
}

.user-dropdown .dropdown-menu ul.dropdown-item {
  position: absolute;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  width: 230px;
  top: 10px;
  right: 0;
  border-radius: 10px 0 10px 10px;
  background-color: var(--heading-link-text);
  transition: all 0.3s;
  z-index: 3;
}

.dropdown-menu .dropdown-item .list-menu,
.dropdown-menu .dropdown-item .list-menu .link-menu .icon {
  transition: all 0.2s ease-in-out;
}

.dropdown-menu .dropdown-item .list-menu .link-menu {
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-transform: capitalize;
  font-size: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
}

.dropdown-menu ul.dropdown-item .list-menu:nth-child(1):hover {
  background-color: var(--sidebar-active);
  border-top-left-radius: 10px;
}

.dropdown-menu ul.dropdown-item .list-menu:hover,
.dropdown-menu ul.dropdown-item .list-menu:hover .icon {
  background-color: var(--sidebar-active);
  color: var(--icon-color);
}

.dropdown-menu ul.dropdown-item .list-menu:nth-last-child(1):hover {
  background-color: var(--sidebar-active);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.dropdown-menu .dropdown-item .list-menu .link-menu .icon {
  flex-grow: 1;
}

.dropdown-menu .dropdown-item .list-menu .link-menu .title {
  flex-grow: 12;
}

/* ===========Content Body==================*/
.content .content-body {
  padding: 0 50px 20px 50px;
}

.container.not-exist {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ==============Counter================== */
.counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  grid-auto-rows: 153px;
  grid-gap: 12px;
  margin-top: 12px;
}

.counter.d-count {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  grid-auto-rows: 153px;
  grid-gap: 12px;
  margin-top: 12px;
}

.counter .counter-items {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.counter .counter-items:hover,
.counter-items:hover {
  box-shadow: inset 0 0 500px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.counter .counter-items a.link-items {
  display: block;
  height: 100%;
  text-decoration: none;
  padding: 30px 42px;
}

.counter.d-count .counter-items a.link-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.counter-items:nth-child(odd) {
  background-color: #fff;
}

.counter-items:nth-child(even) {
  background-color: var(--heading-link-text);
  color: var(--icon-color);
}

.counter-items:nth-child(odd) a.link-items {
  color: #6e717e;
}

.counter-items:nth-child(even) a.link-items {
  color: rgb(230, 230, 230);
}

.counter-items:nth-child(even) a.link-items .icon {
  color: var(--sidebar-active);
}

.counter-items .link-items .head {
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-items .link-items .head h1 {
  font-family: robotobold;
  font-size: 39px;
  margin-left: 4px;
}

.counter-items .link-items .title {
  text-align: center;
  font-size: 20px;
}

.counter-items .link-items .head .small-count {
  font-size: 20px;
}

/* ==============data-view============== */

.content-body .data-view {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 14px;
}

.data-view .table {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.data-view .table .table-head {
  border-bottom: 1px solid #f5f5f5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table .table-head h1 {
  font-family: "robotobold";
  font-size: 17px;
  color: var(--primary-text);
  text-transform: capitalize;
}

.table .table-head a.link,
.d-group .group-item a {
  font-family: "robotomedium";
  font-size: 14px;
  color: var(--heading-link-text);
  text-decoration: none;
}

.d-group .group-item a {
  margin-left: 10px;
}

.table .table-head a.link:hover {
  color: var(--sidebar-active);
}

.table .table-body {
  padding: 20px;
}

.table .table-body .search-form {
  text-align: center;
}

.table .table-body .search-form input[type="text"] {
  width: 255px;
  border: none;
  background-color: #eee;
  height: 30px;
  border-radius: 39px;
  padding: 0 12px;
  font-family: "robotoregular";
  color: #6e717e;
  font-size: 14px;
  margin-bottom: 20px;
}

.table .table-body .search-form input[type="text"]:focus {
  outline: none;
  border: 1px solid var(--sidebar-active);
}

.table .table-body .tb_secondary {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.tb_secondary thead tr {
  color: var(--primary-text);
  font-size: 13px;
  font-family: "robotobold";
}

.tb_secondary tbody tr {
  color: var(--primary-text);
  font-size: 13px;
  font-family: "robotoregular";
}

.tb_secondary tbody td,
.tb_secondary tbody th {
  padding: 5px 0;
}

.tb_secondary tbody tr:hover {
  background-color: rgb(243, 243, 243);
}

.capitalize td {
  text-transform: capitalize;
}

/* ========================tab-content============================ */
.tab {
  display: flex;
  flex-direction: column;
}

.tab .tab-nav ul {
  display: flex;
  list-style: none;
}

.tab .tab-nav ul .tab-item .tab-link {
  text-decoration: none;
  padding: 9px 18px;
  background-color: #ececec;
  display: block;
  color: var(--secondary-text);
  font-size: 14px;
  font-family: "robotoregular";
  text-transform: capitalize;
}

.tab .tab-nav ul .tab-item .tab-link:hover {
  /* box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.055); */
  color: var(--sidebar-active) !important;
  cursor: pointer;
}

.tab .tab-nav ul .tab-item.active .tab-link {
  background-color: #fff;
  display: block;
  color: var(--sidebar-active);
  font-family: "robotomedium";
}

.tab .tab-nav ul .tab-item:nth-child(1) .tab-link {
  border-top-left-radius: 10px;
}

.tab .tab-nav ul .tab-item:nth-last-child(1) .tab-link {
  border-top-right-radius: 10px;
}

.data-view .table.tab-content {
  background-color: #fff;
  border-radius: 0px 10px 10px 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 3%), -5px 5px 5px rgba(0, 0, 0, 3%);
  display: none;
}

.data-view .table.tab-content .table-head {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  justify-content: space-between;
}

.data-view .table.tab-content.active {
  display: block;
}

/* =======================Button==================== */
.tb_secondary a {
  text-decoration: none;
  font-family: "robotoregular";
}

.tb_secondary a img.icon {
  transition: filter 0.1s ease-in-out;
}

.tb_secondary a img.icon:hover {
  filter: drop-shadow(0px 2px 0px var(--sidebar-active));
}

.tb_secondary a img.icon:active {
  filter: drop-shadow(0px -1px 0px var(--sidebar-active));
}

.tb_secondary .icon-action {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

/* ====================Data Detail==================== */
@keyframes popUpOut {
  0% {
    max-width: 0;
    overflow: hidden;
    /* filter: blur(5px); */
    transform: scale(0);
  }

  100% {
    padding: 50px 40px;
    overflow: auto;
    /* filter: blur(0); */
    max-width: 100%;
    transform: scale(1);
  }
}

.data-detail {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 7s ease-in-out;
}

.data-detail .container-detail {
  background-color: #fff;
  width: 650px;
  padding: 50px 40px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  animation: popUpOut 0.3s ease-in-out;
}

.data-detail .container-detail .profile-detail {
  padding-left: 20px;
}

.data-detail .container-detail .profile-detail .head-detail h1 {
  font-family: "robotobold";
  font-size: 20px;
  text-transform: capitalize;
}

.data-detail .container-detail .profile-detail .head-detail h1 span {
  font-family: "robotoregular";
  font-size: 14px;
  color: #9e90f8;
  text-transform: lowercase;
}

.data-detail
  .container-detail
  .profile-detail
  .body-detail
  table
  tr
  td:nth-child(1) {
  margin-right: 60px;
}

.data-detail .container-detail .profile-detail .body-detail table tr td h5 {
  font-family: "robotoregular";
  font-size: 14px;
}

.data-detail .container-detail .profile-detail .body-detail table tr td p {
  font-family: "robotoregular";
  font-size: 14px;
  color: #9e90f8;
}

.data-detail .container-detail .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  color: #9e90f8;
  border-radius: 50%;
}

.data-detail .container-detail .btn-close:hover {
  cursor: pointer;
}

.data-detail .container-detail .profile-image {
  position: relative;
}

.data-detail .container-detail .profile-image .profile-id {
  position: absolute;
  transform: translateY(-32px) translateX(30px);
}

/* ================icon style===================== */
.no-exist {
  color: var(--secondary-text);
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* ==========kondisi style=============== */
.red-count {
  color: var(--btn-delete);
  font-weight: 900;
}

/* ========data tidak ada style ============= */
.no-exist .text span:nth-child(1) {
  display: inline-block;
  animation: left-X 1.1s infinite;
}

.no-exist .shadow {
  width: 150px;
  height: 20px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  border-radius: 50%;
  animation: scale 1.1s infinite;
}

.no-exist .text span:nth-last-child(1) {
  display: inline-block;
  animation: right-X 1.1s infinite;
}

.no-exist img {
  animation: Top-Y 1.1s infinite;
}

.no-exist .text {
  animation: Bottom-Y 1.1s infinite;
}

@keyframes scale {
  0% {
    width: 80px;
    height: 8px;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(0, 0, 0, 0.15) 100%
    );
    transform: translateX(-10px);
  }

  50% {
    width: 120px;
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(0, 0, 0, 0.1) 100%
    );
    height: 15px;
  }

  100% {
    width: 80px;
    transform: translateX(-10px);
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(0, 0, 0, 0.15) 100%
    );
    height: 8px;
  }
}

@keyframes Top-Y {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes Bottom-Y {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  50% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes left-X {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes right-X {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

/* ======================CHECKOUT====================== */
.shadow {
  background-color: var(--sidebar-bgc);
  width: 100%;
  height: 350px;
}

.checkout.container {
  padding: 0 100px;
  transform: translateY(-350px);
}

.checkout.container header {
  background-color: var(--content-bgc);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: "robotomedium", cursive;
  color: var(--primary-text);
  border-radius: 0 0 10px 10px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.checkout.container header .brand {
  width: 50px;
  height: 100%;
  background-color: var(--primary-text);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  margin-right: 5px;
}

.checkout.container .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  background-color: transparent;
}

.checkout.container .details {
  width: 63%;
  background-color: var(--content-bgc);
  padding: 30px 20px;
  border-radius: 10px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.checkout.container .details .body {
  margin-top: 5px;
}

.checkout.container .details .body table {
  width: 100%;
  border-collapse: collapse;
}

.checkout.container .details .body table tr td,
.checkout.container .details .body table tr th {
  border: 1px solid #cacaca;
  font-size: 0.8em;
  padding: 4px;
  text-transform: capitalize;
}

.checkout.container .price {
  width: 33%;
  background-color: var(--content-bgc);
  padding: 30px 20px;
  border-radius: 10px;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

.checkout.container .price .head {
  margin-bottom: 20px;
}

.checkout.container .price .body table {
  width: 100%;
}

.checkout.container .price .body table {
  font-size: 0.8em;
}

.checkout.container .price .body table tr td:nth-child(1) {
  text-align: left;
}

.checkout.container .price .body table tr td:nth-last-child(1) {
  text-align: right;
}

.checkout.container .price .body table tr td.total {
  font-weight: 900;
  color: var(--sidebar-active);
}

.checkout.container .price .foot {
  border-top: 1px solid #cacaca;
  margin-top: 20px;
  padding-top: 20px;
}

.checkout.container .price .foot p {
  font-size: 0.8em;
  letter-spacing: 0.7px;
}

.checkout.container .price .foot ul {
  list-style: none;
  /* display: inline-block; */
  margin: 10px 0;
}

.checkout.container .price .foot ul li {
  width: 120px;
}

.checkout.container .price .foot button[name="pay"] {
  background: var(--icon-color);
  border: none;
  outline: none;
  width: 100%;
  padding: 15px;
  cursor: pointer;
}

.checkout.container .price .foot button[name="cancel"] {
  background: #ebebeb;
  color: var(--secondary-text);
  border: none;
  outline: none;
  width: 100%;
  padding: 15px;
  cursor: pointer;
}

.checkout.container .price .foot button[name="pay"]:hover {
  box-shadow: inset 0 0 500px rgba(255, 255, 255, 0.2);
}

.checkout.container .price .foot button[name="cancel"]:hover {
  box-shadow: inset 0 0 500px rgba(0, 0, 0, 0.1);
}

.checkout.container img {
  width: 100%;
}

footer.checkout {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background: #ebebeb;
  color: var(--secondary-text);
}

footer.checkout a {
  text-decoration: none;
  font-weight: 800;
  color: var(--primary-text);
}

/* ======================Responsive====================== */
@media (min-width: 768px) {
  .wrap-all {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: row;
  }

  /* ======================NAVBAR====================== */
  .sidebar {
    display: flex;
    flex-direction: column;
    width: 235px;
  }

  .navbar {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: var(--sidebar-bgc);
    color: #fff;
    overflow-y: scroll;
    transition: all 0.3s ease-in-out;
  }

  .fixed {
    position: fixed;
  }

  .navbar-content.head {
    font-family: "robotomedium";
    color: #fff;
    font-size: 21px;
    padding: 35px 32px;
    display: flex;
    justify-content: start;
    margin-top: 0;
  }

  .navbar-content.head .title {
    display: flex;
  }

  .navbar-content.head .title h2 {
    font-size: 0.9em;
  }

  .navbar-content.head .btn-toggle-navbar {
    display: none;
  }

  .navbar-content.head .logo-brand img {
    width: 30px;
  }

  .navbar-content.body {
    flex-grow: 9;
  }

  .navbar-content.body .head {
    font-size: 14px;
    font-family: "robotobold";
    padding: 25px 32px 0 32px;
  }

  .navbar-content.body .navbar-nav li {
    list-style: none;
  }

  .navbar-content.body .navbar-items a {
    text-decoration: none;
    padding: 13px 32px;
    display: block;
    color: white;
    font-size: 14px;
  }

  .navbar-content.body .navbar-items a.navbar-link:hover,
  .navbar-content.body .navbar-items .navbar-list .list-item a:hover {
    cursor: pointer;
    background-color: var(--sidebar-active);
  }

  .navbar-content.body .navbar-items a.navbar-link {
    display: flex;
  }

  .navbar-content.body .navbar-items a.navbar-link .icon {
    flex-grow: 2;
  }

  .navbar-content.body .navbar-items a.navbar-link .title {
    flex-grow: 12;
    text-transform: capitalize;
  }

  .navbar-content.body .navbar-items a.navbar-link.head-list::after {
    content: "\002B";
    transition: transform 0.2s ease-in-out;
  }

  .navbar-content.body .navbar-items a.navbar-link.head-list.active::after {
    content: "\2212";
    transform: rotate(360deg);
  }

  .navbar-content.body .navbar-items a.navbar-link.active,
  .navbar-content.body .navbar-items .navbar-list .list-item a.active {
    background-color: var(--sidebar-active);
  }

  .navbar-content.body .navbar-items a.navbar-link.head-list.active {
    background-color: var(--sidebar-bgc);
  }

  .navbar-content.body .navbar-items .navbar-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
  }

  .navbar-content.body
    .navbar-items
    a.navbar-link.head-list.active
    + .navbar-list {
    max-height: 100vh;
  }

  .navbar-content.body .navbar-items .navbar-list .list-item a {
    padding-left: 55px;
  }

  .navbar-content.footer {
    color: var(--content-bgc);
    font-size: 10;
    padding: 35px 32px 10px 32px;
    display: flex;
    text-align: right;
    font-family: "robotolight";
    align-self: flex-end;
  }

  .navbar-content.footer small {
    text-transform: capitalize;
  }

  .navbar-content.footer small span {
    color: var(--icon-color);
    font-weight: bold;
  }

  /* width */
  .navbar::-webkit-scrollbar {
    width: 5px;
  }

  /* Track */
  .navbar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--sidebar-active);
    border-radius: 10px;
    position: relative;
    background-color: var(--sidebar-active);
  }

  /* Handle */
  .navbar::-webkit-scrollbar-thumb {
    background: var(--sidebar-active);
    border-radius: 10px;
  }

  /* Handle on hover */
  .navbar::-webkit-scrollbar-thumb:hover {
    background: var(--icon-color);
  }

  /* ======================CONTENT====================== */
  /* size-content */
  .content {
    width: 1135px;
    background-color: var(--content-bgc);
  }
}

/* ======================END Responsive====================== */

/* ======================COLOR====================== */
:root {
  /* Sidebar-BG */
  --sidebar-bgc: #5d44f8;
  /* Active-link Sidebar */
  --sidebar-active: #4731d3;
  /* Icon */
  --icon-color: #f7bd4b;
  /* Heading Content */
  --heading-link-text: #6e58f8;
  /* BG CONTENT */
  --content-bgc: #f5f6f7;
  /* primary text */
  --primary-text: #2d3145;
  /* secondary text */
  --secondary-text: #6e717e;
  /* icon-delete */
  --btn-delete: #ef5350;
}
