@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root {
  --header-height: 3rem;
  --nav-width: 68px;
  --first-color: #4723d9;
  --first-color-light: #afa5d9;
  --white-color: #f7f6fb;
  --body-font: "Nunito", sans-serif;
  --normal-font-size: 1rem;
  --z-fixed: 100;
}
*,
::before,
::after {
  box-sizing: border-box;
}
body {
  background-color: ghostwhite;
  position: relative;
  margin: var(--header-height) 0 0 0;
  /* padding: 0 1rem; */
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: 0.5s;
  /* overflow: hidden; */
}

.nav_tools::-webkit-slider-thumb {
  background-color: #aaaaaa;
}
.nav_tools::-webkit-slider {
  width: 0.4rem;
}
.nav_tools::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.2rem;
}
.navbar-tools a {
  text-decoration: none;
  color: #afa5d9;
}
.nav_tools::-webkit-scrollbar-track {
  background-color: white;
}

.nav_tools::-webkit-scrollbar-thumb {
  background-color: #e2e2e2;
}

/* Canvas */
.canvas_scroll::-webkit-slider-thumb {
  background-color: #aaaaaa;
}
.canvas_scroll::-webkit-slider {
  width: 0.4rem;
}
.canvas_scroll::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}
.canvas_scroll a {
  text-decoration: none;
  color: #afa5d9;
}
.canvas_scroll::-webkit-scrollbar-track {
  background-color: white;
}

.canvas_scroll::-webkit-scrollbar-thumb {
  background-color: #e2e2e2;
}

a {
  text-decoration: none;
}
.header {
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 1rem;
  background-color: var(--white-color);
  z-index: var(--z-fixed);
  transition: 0.5s;
}

.header_toggle {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer;
}
.header_img {
  width: 35px !important;
  height: 35px !important;
  display: flex;
  justify-content: center;
  border-radius: 70px;
  overflow: hidden;
}
.header_img img {
  width: 40px;
}
.l-navbar {
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: #d92429;
  padding: 0.5rem 1rem 0 0;
  transition: 0.5s;
  z-index: var(--z-fixed);
}
.nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.nav_logo,
.nav_link {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.nav_logo {
  margin-bottom: 2rem;
}
.nav_logo-icon {
  font-size: 1.25rem;
  color: var(--white-color);
}
.nav_logo-name {
  color: var(--white-color);
  font-weight: 700;
}
.nav_link {
  position: relative;
  color: white;
  /* margin-bottom: 1.5rem; */
  transition: 0.3s;
}
.nav_link:hover {
  color: var(--white-color);
}
.nav_icon {
  font-size: 1.25rem;
}
.show_one {
  left: 0;
}
.hidden_all {
  display: none !important;
}
.body-pd {
  padding-left: calc(var(--nav-width) + 0rem);
}
.active {
  color: var(--white-color);
}

.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}
.height-100 {
  height: 100vh;
}
.hide {
  display: none;
}
.footer-padding {
  padding-left: 0px;
  transition: 0.5s;
}
.video-size {
  height: 150px !important;
  width: 250px !important;
}
.pad {
  margin-bottom: 25px;
}
.second-nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse !important;
}
.icons_size {
  margin-left: 10px !important;
  padding: 4px !important;
}
.hiddden {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .hiddden {
    display: none !important;
  }
  .second-nav-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row !important;
  }
  .hidden_all {
    display: none !important;
  }
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 0rem);
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }
  .header_img {
    width: 40px;
    height: 40px;
  }
  .header_img img {
    width: 45px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 1rem 0 0;
  }
  .show_one {
    width: calc(var(--nav-width) + 156px);
  }
  .body-pd {
    padding-left: calc(var(--nav-width) + 188px);
  }
  .body-pdd {
    padding-left: calc(var(--nav-width) + 9.8rem) !important;
  }
  .hide {
    display: inline-flex;
  }
  .footer-padding {
    padding-left: 45px;
  }

  /* Thumbnail */

  .res_thumbnail {
    display: block !important;
  }

  .thumbnail_style {
    position: relative;
    cursor: pointer;
    /* display: inline-block !important; */
    height: 100%;
    width: 10rem;
    background-color: white;
    transition: 0.3s;
  }
  .thumbnail_style:hover {
    box-shadow: 1px 1px 37px -11px rgba(0, 178, 255, 0.64);
    -webkit-box-shadow: 1px 1px 37px -11px rgba(0, 178, 255, 0.64);
    -moz-box-shadow: 1px 1px 37px -11px rgba(0, 178, 255, 0.64);
  }

  .thumbnail_container {
    display: flex;
    margin: 10px 0;
    width: 100%;
    height: 122px;
    padding: 0.5rem;
    overflow-y: hidden;
    /* overflow-x: scroll; */
    white-space: nowrap;
    background-color: rgb(238, 238, 238);
  }
  .plus-thumbnail {
    color: #d92429;
    cursor: pointer;
    transition: 0.3s;
  }
  .plus-thumbnail:hover {
    color: #277ea7;
  }
  .options_thumbnail {
    position: absolute;
    left: 140px;
  }
  .options_thumbnail i {
    color: #aaaaaa;
  }
  .options_thumbnail i:hover {
    color: black;
  }
  /* Thumbnail end */

  .grid_style {
    height: 250px;
    width: 400px;
    cursor: pointer;
    transition: 0.3s;
  }
  .grid_style:hover {
    transform: scale(0.96);
  }
  .grid {
    display: block !important;
  }
  .hide_pen {
    display: none !important;
  }
  .hide_fontsize {
    display: none !important;
  }
}

.hide_pen {
  display: none !important;
}
.hide_fontsize {
  display: none !important;
}

/* d */
/* Circle Avatar Styles */

.circle img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}

/* hide Thumbnail */
.hide_thumbnail {
  display: none !important;
}

.res_thumbnail {
  display: none;
}
/* Grid */
.grid {
  display: none;
}

.hide_grid {
  display: none !important;
}
