@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
  outline: none;
  box-sizing: border-box;
}

:root {
  --theme-bg-color: rgba(16 18 27 / 40%);
  --border-color: rgba(113 119 144 / 25%);
  --theme-color: #f9fafb;
  --inactive-color: rgb(113 119 144 / 78%);
  --body-font: "Poppins", sans-serif;
  --hover-menu-bg: rgba(12 15 25 / 30%);
  --content-title-color: #999ba5;
  --content-bg: rgb(146 151 179 / 13%);
  --input-disabled-bg: rgba(25, 25, 32, 0.2);
  --button-inactive: rgb(249 250 251 / 55%);
  --dropdown-bg: #21242d;
  --dropdown-hover: rgb(42 46 60);
  --popup-bg: rgb(22 25 37);
  --search-bg: white;
  --overlay-bg: rgba(36, 39, 59, 0.3);
  --scrollbar-bg: rgb(1 2 3 / 40%);
  --notify-bg-color: rgb(16, 18, 27);
  --modal-bg-color:rgb(44, 47, 62);
  --modal-border-color: #cccccc30;
  --notify-title-color: white;
  --notify-second-color: #ddd;
  --notify-time-color: #8c8d90;
}

.light-mode {
  --theme-bg-color: rgb(255 255 255 / 31%);
  --theme-color: #3c3a3a;
  --inactive-color: #333333;
  --button-inactive: #3c3a3a;
  --search-bg: rgb(255 255 255 / 31%);
  --dropdown-bg: #f7f7f7;
  --input-disabled-bg: #b3b6c3;
  --overlay-bg: rgb(255 255 255 / 30%);
  --dropdown-hover: rgb(236 236 236);
  --border-color: rgb(255 255 255 / 35%);
  --popup-bg: rgb(255 255 255);
  --hover-menu-bg: rgba(255 255 255 / 35%);
  --scrollbar-bg: rgb(255 253 253 / 57%);
  --content-title-color: #3c3a3a;
  --notify-bg-color: rgb(255, 255, 255);
  --modal-bg-color:rgb(255, 255, 255);
  --modal-border-color:#cccccc30;
  --notify-title-color: black;
  --notify-second-color: rgb(112, 112, 112);
  --notify-time-color: #5a5a5b;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--body-font);
  /* background-color: rgb(240, 244, 247); */

  /* background: linear-gradient(-70deg, #202020, #000000); */
  background-image: url(https://wallpapershome.com/images/wallpapers/macos-big-sur-1280x720-dark-wwdc-2020-22655.jpg);

  /* background: gradient(-70deg,  #0d2145, #000000); */
  /* background-color: rgb(2,0,36); */
  /* background: radial-gradient(circle, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); */
  /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); */
  /* background: rgb(5,20,43); */
  /* background: radial-gradient(circle, #283593 0%, #1976d2 55%, #283593 80%); */
  /* background: linear-gradient(to left, #283593, #1976d2); */
  /* background: linear-gradient(90deg, rgba(40,53,147,1) 15%, rgba(25,118,210,1) 72%); */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2em;
  width: 100%;
  height: 100vh;
}

/* Background circles start */
.circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(120deg, #1D976C, #2c3e50);
}

.circles {
  position: absolute;
  height: 0px;
  width: 1337px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.circle-1 {
  height: 216px;
  width: 216px;
  top: 100px;
  left: -50px;
  opacity: 0.8;
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-iteration-count: infinite;
  animation-name: float;
  -webkit-animation-name: float;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  -webkit-animation-delay: 3.5s;
  animation-delay: 3.5s;
  animation-direction: alternate;
}

.circle-2 {
  height: 240px;
  width: 240px;
  bottom: 40px;
  right: -100px;
  opacity: 0.8;
  animation-timing-function: cubic-bezier(0.54, 0.085, 0.5, 0.92);
  animation-iteration-count: infinite;
  animation-name: float;
  -webkit-animation-name: float;
  animation-duration: 6s;
  -webkit-animation-duration: 6s;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  animation-direction: alternate;
}

/* Background circles end */


@keyframes explode {
  0% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes float {

  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(1px) translateX(5px);
    -moz-transform: rotateX(0deg) translateY(10px) translateX(5px);
    -ms-transform: rotateX(0deg) translateY(30px) translateX(5px);
    -o-transform: rotateX(0deg) translateY(40px) translateX(5px);
    transform: rotateX(0deg) translateY(10px) translateX(5px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px) translateX(1px);
    -moz-transform: rotateX(0deg) translateY(0px) translateX(1px);
    -ms-transform: rotateX(0deg) translateY(0px) translateX(1px);
    -o-transform: rotateX(0deg) translateY(0px) translateX(1px);
    transform: rotateX(0deg) translateY(0px) translateX(1px);
  }

}

@media screen and (max-width: 480px) {
  body {
    padding: 0.8em;
  }
}

a {
  text-decoration: none;
}

li, ol, ul {
  list-style-type: none;
}

.video-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  max-width: 100%;
}

.dark-light {
  position: fixed;
  bottom: 38px;
  right: 15px;
  background-color: var(--dropdown-bg);
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
}

.dark-light svg {
  width: 24px;
  flex-shrink: 0;
  fill: #ffce45;
  stroke: #ffce45;
  transition: 0.5s;
}

.light-mode .dark-light svg {
  fill: transparent;
  stroke: var(--theme-color);
}

.light-mode .profile-img {
  border: 2px solid var(--theme-bg-color);
}

.light-mode .content-section ul {
  background-color: var(--theme-bg-color);
}

.light-mode .pop-up__title {
  border-color: var(--theme-color);
}

.light-mode .dropdown.is-active ul {
  background-color: rgba(255, 255, 255, 0.94);
}

body.light-mode:before,
body.light-mode .video-bg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-backdrop-filter: saturate(3);
  backdrop-filter: saturate(3);
}

.app {
  background-color: var(--theme-bg-color);
  /* max-width: 1650px; */
  max-height: 1060px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: 15px;
  font-weight: 500;
}

.header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  /* border-bottom: 1px solid var(--border-color); */
  padding: 0 30px;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .header {
    padding: 0 16px;
  }
}

.header-menu {
  display: flex;
  align-items: center;
}

.header-menu a {
  padding: 20px 30px;
  text-decoration: none;
  color: var(--inactive-color);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

@media screen and (max-width: 610px) {
  .header-menu a:not(.main-header-link) {
    display: none;
  }
}

.header-menu a.is-active, .header-menu a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.notify {
  position: relative;
}

.notify:before {
  content: "";
  position: absolute;
  background-color: #3a6df0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  right: 20px;
  top: 16px;
}

@media screen and (max-width: 1055px) {
  .notify {
    display: none;
  }
}

.menu-circle {
  width: 15px;
  height: 15px;
  background-color: #f96057;
  border-radius: 50%;
  box-shadow: 24px 0 0 0 #f8ce52, 48px 0 0 0 #5fcf65;
  margin-right: 195px;
  flex-shrink: 0;
}

@media screen and (max-width: 945px) {
  .menu-circle {
    display: none;
  }
}

.content-section-form {
  /* display: flex; */
  width: 100%;
  height: 100%;
  /* justify-content: space-around; */
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
}

.content-section-form-flex {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  margin: 0;
  border-radius: 10px;
  border: 1px solid var(--theme-bg-color);
  padding: 20px;
}

/*.content-section-form input {
  height: 40px;
  border: none;
  background-color: var(--content-bg);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px 0 12px;
   box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02); 
  /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e"); */
/* background-size: 14px;
  background-repeat: no-repeat;
  background-position: 16px 48%; 
  color: var(--theme-color);
}*/
.form-select {
  height: 40px;
  width: 100%;
  border: none;
  background-color: var(--content-bg);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  padding: 0 20px 0 12px;
  /* box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02); */
  /* background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23717790c7'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e"); */
  /* background-size: 14px;
  background-repeat: no-repeat;
  background-position: 16px 48%; */
  color: var(--theme-color);
}

.form-select:disabled {
  background-color: var(--input-disabled-bg);
}

.content-section-form label {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--theme-color);
  margin-bottom: 12px;
  display: inline-block;
}

.content-section-form input::-moz-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.search-bar input:-ms-input-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.search-bar input::placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.search-bar {
  height: 40px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 400px;
  padding-left: 16px;
  border-radius: 4px;
}

.search-bar svg {
  color: var(--inactive-color);
}

.header-profile {
  display: flex;
  align-items: center;
  padding: 0 16px 0 40px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-profile svg {
  width: 22px;
  color: #f9fafb;
  flex-shrink: 0;
}

.notification {
  position: relative;
}

.notification-number {
  position: absolute;
  background-color: #3a6df0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: -6px;
  top: -6px;
}

.notification+svg {
  margin-left: 22px;
}

@media screen and (max-width: 945px) {
  .notification+svg {
    display: none;
  }
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid var(--theme-color);
  margin-left: 22px;
}

.wide .header-menu,
.wide .header-profile {
  display: none;
}

.wide .search-bar {
  max-width: 600px;
  margin: auto;
  transition: 0.4s;
  box-shadow: 0 0 0 1px var(--border-color);
  padding-left: 0;
}

.wide .menu-circle {
  margin-right: 0;
}

.wrapper {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
}

.left-side {
  flex-basis: 240px;
  /* border-right: 1px solid var(--border-color); */
  padding: 26px;
  overflow: auto;
  flex-shrink: 0;
}
/* 
@media screen and (max-width: 945px) {
  .left-side {
    display: none;
  }
} */

.side-wrapper+.side-wrapper {
  margin-top: 20px;
}

.side-title {
  color: var(--inactive-color);
  margin-bottom: 14px;
}

.side-menu {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.side-menu a {
  text-decoration: none;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  font-weight: 400;
  padding: 10px;
  font-size: 14px;
  /* border-radius: 6px; */
  transition: 0.3s background-color;
}

.side-menu a:hover {
  background-color: var(--hover-menu-bg);
  border-bottom: 1px solid var(--content-bg);
}

.side-menu svg {
  width: 16px;
  margin-right: 8px;
}

.drop-menu {
  display: none;
  padding-left: 0px;
}

.menu-dropdown-arrow {
  position: absolute;
  background-color: #1D976C;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: -6px;
  top: -6px;
}


.updates {
  position: relative;
  top: 0;
  right: 0;
  margin-left: auto;
  width: 18px;
  height: 18px;
  font-size: 11px;
}

.main-header {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid var(--border-color); */
  height: 58px;
  flex-shrink: 0;
}

.main-header .header-menu {
  margin-left: 150px;
}

@media screen and (max-width: 1055px) {
  .main-header .header-menu {
    margin: auto;
  }
}

.main-header .header-menu a {
  padding: 20px 24px;
}

.main-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.menu-link-main {
  text-decoration: none;
  color: var(--theme-color);
  padding: 0 30px;
}

@media screen and (max-width: 1055px) {
  .menu-link-main {
    display: none;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  color: var(--theme-color);
  padding: 20px 0px;
  height: 100%;
  overflow: auto;
}

@media screen and (max-width: 510px) {
  .content-wrapper {
    padding: 20px;
  }
}

.content-wrapper-header {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  /* background-image: url("https://www.transparenttextures.com/patterns/cubes.png"), linear-gradient(to right top, #cf4af3, #e73bd7, #f631bc, #fd31a2, #ff3a8b, #ff4b78, #ff5e68, #ff705c, #ff8c51, #ffaa49, #ffc848, #ffe652); */
  border-radius: 14px;
  padding: 20px 15px;
}

@media screen and (max-width: 415px) {
  .content-wrapper-header {
    padding: 20px;
  }
}

.content-wrapper.overlay {
  pointer-events: none;
  transition: 0.3s;
  background-color: var(--overlay-bg);
}

.overlay-app {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: all;
  background-color: rgba(36, 39, 59, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay-app.is-active {
  visibility: visible;
  opacity: 1;
}

.img-content {
  font-weight: 500;
  font-size: 17px;
  display: flex;
  align-items: center;
  margin: 0;
}

.img-content svg {
  width: 28px;
  margin-right: 14px;
}

.content-text {
  font-weight: 400;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7em;
  color: #ebecec;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-wrapper-context {
  max-width: 350px;
}

.content-button {
  background-color: #3a6df0;
  border: none;
  padding: 8px 26px;
  color: #fff;
  border-radius: 20px;
  margin-top: 16px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.content-wrapper-img {
  width: 186px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: -25px;
  -o-object-position: center;
  object-position: center;
}

@media screen and (max-width: 570px) {
  .content-wrapper-img {
    width: 110px;
  }
}

.content-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 15px;
  border-radius: 14px;
}

.content-section-header {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem;
}

.content-section-title {
  color: var(--content-title-color);
  margin-bottom: 14px;
}

.content-section ul {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: space-around;
  background-color: var(--content-bg);
  padding-left: 0;
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--theme-bg-color);
  cursor: pointer;
}

.content-section ul li {
  list-style: none;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  transition: 0.3s;
}

.content-section ul li:hover {
  background-color: var(--theme-bg-color);
}

.content-section ul li:hover:first-child {
  border-radius: 13px 13px 0 0;
}

.content-section ul li:hover:last-child {
  border-radius: 0 0 13px 13px;
}

.content-section ul li+li {
  border-top: 1px solid var(--border-color);
}

.content-section ul svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 16px;
  flex-shrink: 0;
}

.products {
  display: flex;
  align-items: center;
  width: 150px;
}

@media screen and (max-width: 480px) {
  .products {
    width: 120px;
  }
}

.status {
  margin-left: auto;
  width: 140px;
  font-size: 15px;
  position: relative;
}

@media screen and (max-width: 700px) {
  .status {
    display: none;
  }
}

.status-circle {
  width: 6px;
  height: 6px;
  background-color: #396df0;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: -20px;
}

.status-circle.green {
  background-color: #3bf083;
}

.status-button {
  font-size: 15px;
  margin-top: 0;
  padding: 6px 24px;
}

@media screen and (max-width: 390px) {
  .status-button {
    padding: 6px 14px;
  }
}

.status-button.open {
  background: none;
  color: var(--button-inactive);
  border: 1px solid var(--button-inactive);
}

.status-button:not(.open):hover {
  color: #fff;
  border-color: #fff;
}

.content-button:not(.open):hover {
  background: #1e59f1;
}

.menu {
  width: 5px;
  height: 5px;
  background-color: var(--button-inactive);
  border-radius: 50%;
  box-shadow: 7px 0 0 0 var(--button-inactive), 14px 0 0 0 var(--button-inactive);
  margin: 0 12px;
}

@media screen and (max-width: 415px) {
  .adobe-product .menu {
    display: none;
  }
}

.dropdown {
  position: relative;
  height: 53px;
  width: 40px;
  top: -24px;
  display: flex;
  left: -5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.dropdown ul {
  position: absolute;
  background: var(--dropdown-bg);
  height: 110px;
  width: 120px;
  right: 0;
  top: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translatey(10px);
  transition: all 0.4s ease;
}

.dropdown ul li a {
  text-decoration: none;
  color: var(--theme-color);
  font-size: 12px;
}

.dropdown.is-active ul {
  opacity: 1;
  pointer-events: all;
  transform: translatey(25px);
}

.dropdown.is-active ul li:hover {
  background-color: var(--dropdown-hover);
}

.button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 187px;
  margin-left: auto;
}

@media screen and (max-width: 480px) {
  .button-wrapper {
    width: auto;
  }
}

.pop-up {
  position: absolute;
  padding: 30px 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: auto;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
  z-index: 10;
  background-color: var(--popup-bg);
  width: 500px;
  visibility: hidden;
  opacity: 0;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  white-space: normal;
}

@media screen and (max-width: 570px) {
  .pop-up {
    width: 100%;
  }
}

.pop-up.visible {
  visibility: visible;
  opacity: 1;
}

.pop-up__title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pop-up__subtitle {
  white-space: normal;
  margin: 20px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}

.pop-up__subtitle a {
  color: var(--theme-color);
}

.content-button-wrapper .content-button.status-button.open.close {
  width: auto;
}

.content-section .close {
  margin-right: 0;
  width: 24px;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}

.checkbox-wrapper+.checkbox-wrapper {
  margin: 20px 0 40px;
}

.checkbox {
  display: none;
}

.checkbox+label {
  display: flex;
  align-items: center;
}

.checkbox+label:before {
  content: "";
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--theme-color);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox:checked+label:before {
  background-color: #3a6df0;
  border-color: #3a6df0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3e%3cpath d='M20 6L9 17l-5-5'/%3e%3c/svg%3e");
  background-position: 50%;
  background-size: 12px;
  background-repeat: no-repeat;
}

.content-button-wrapper {
  margin-top: auto;
  margin-left: auto;
}

.content-button-wrapper .open {
  margin-right: 8px;
}

.align-items-center {
  align-items: center;
}

.apps-card {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  background-color: var(--theme-bg-color);
  border: 2px solid var(--content-bg);
  border-radius: 14px;
  padding: 30px;
  max-height: 200px;
}

.app-card {
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 20px);
  font-size: 16px;
  background-color: var(--theme-bg-color);
  border: 2px solid var(--content-bg);
  border-radius: 14px;
  /* border: 1px solid var(--theme-bg-color); */
  padding: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  max-height: 155px;
  min-height: 115px;
}

.app-card:hover {
  transform: scale(1.02);
  /* background-color: var(--theme-bg-color); */
}

.app-card img {
  margin-right: 22px;
  width: 30px;
  height: 30px;
}

.app-card svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.app-card h1 {
  text-align: left;
  font-weight: 500;
}

.app-card span {
  font-weight: 400 !important;
}

/* 
.app-card + .app-card {
  margin-left: 20px;
} */
.app-card span {
  display: flex;
  align-items: center;
}

.app-card__subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.app-card__subtext h1 {
  font-size: 2.4em;
}

.app-card-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}

@media screen and (max-width: 1110px) {
  .app-card {
    width: calc(50% - 20px);
  }

  .app-card:last-child {
    margin-top: 20px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 565px) {
  .app-card {
    width: calc(100% - 20px);
    margin-top: 20px;
  }

  .app-card+.app-card {
    margin-left: 0;
  }
}

.app-card-w-mh {
  display: flex;
  flex-direction: column;
  width: calc(33.3% - 20px);
  font-size: 16px;
  background-color: var(--theme-bg-color);
  border: 2px solid var(--content-bg);
  border-radius: 14px;
  /* border: 1px solid var(--theme-bg-color); */
  padding: 20px;
  cursor: pointer;
  transition: 0.3s ease;
  min-height: 115px;
}

.app-card-w-mh:hover {
  transform: scale(1.02);
  /* background-color: var(--theme-bg-color); */
}

.app-card-w-mh img {
  margin-right: 22px;
  width: 30px;
  height: 30px;
}

.app-card-w-mh svg {
  width: 28px;
  border-radius: 6px;
  margin-right: 12px;
  flex-shrink: 0;
}

.app-card-w-mh h1 {
  text-align: left;
  font-weight: 500;
}

/* .app-card-w-mh span {
  font-weight: 400 !important;
} */

.app-card-w-mh+.app-card-w-mh {
  margin-left: 20px;
}

/* .app-card-w-mh span {
  display: flex;
  align-items: center;
} */
.app-card-w-mh__subtext {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6em;
  margin-top: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.app-card-w-mh__subtext h1 {
  font-size: 2.4em;
}

.app-card-w-mh-buttons {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-top: 16px;
}

@media screen and (max-width: 1110px) {
  .app-card-w-mh {
    width: calc(50% - 20px);
  }

  .app-card-w-mh:last-child {
    margin-top: 20px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 565px) {
  .app-card-w-mh {
    width: calc(100% - 20px);
    margin-top: 20px;
  }

  .app-card-w-mh+.app-card-w-mh {
    margin-left: 0;
  }
}

.card-body {
  text-align: center;
}

::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-bg);
  border-radius: 10px;
}


.wc-col {
  width: 100%;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wc-col-2 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(16.6%);
}

.wc-col-3 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(25%);
}

.wc-col-4 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(33.3%);
}

.wc-col-5 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(41.6%);
}

.wc-col-6 {
  padding-right: 15px;
  padding-left: 15px;
  width: 50%;
}

.wc-col-7 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(58.3%);
}

.wc-col-8 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(66.6%);
}

.wc-col-9 {
  padding-right: 15px;
  padding-left: 15px;
  width: 75%;
}

.wc-col-10 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(83.3%);
}

.wc-col-11 {
  padding-right: 15px;
  padding-left: 15px;
  width: calc(91.6%);
}

.wc-col-12 {
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
}

.border-1 {
  border:1px solid !important;;
}

.border-2 {
  border:2px solid !important;
}

.border-color-black {
  border-color: black  !important;;
}
.border-color-silver {
  border-color: silver  !important;;
}

.b-none {
  border: none !important;
}

.b-right {
  border-right: 1px solid var(--border-color) !important;
}

.b-left {
  border-left: 1px solid var(--border-color) !important;
}

.b-radius-0 {
  border-radius: 0px;
}

.p-full-10 {
  padding: 10px;
}

.bg-transparent {
  background: transparent;
}


.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-2 {
  margin-bottom: 0.13rem !important;
}

.mb-4 {
  margin-bottom: 0.25rem !important;
}

.mb-6 {
  margin-bottom: 0.50rem !important;
}

.mb-8 {
  margin-bottom: 0.75rem !important;
}

.mb-12 {
  margin-bottom: 1rem !important;
}

.mb-14 {
  margin-bottom: 1.25rem !important;
}

.mb-16 {
  margin-bottom: 1.50rem !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mr-2 {
  margin-right: 2px !important;
}

.mr-4 {
  margin-right: 4px !important;
}

.mr-6 {
  margin-right: 6px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}


.pb-0 {
  padding-bottom: 0px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}


.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.d-justify-start {
  justify-content: flex-start;
}

.d-justify-end {
  justify-content: flex-end;
}

.d-align-end {
  align-items: flex-end;
}

.d-justify-center {
  justify-content: center;
}

.d-justify-between {
  justify-content: space-between;
}

.d-align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.h-100 {
  height: 100%;
}

.w-100 {
  width: 100% !important;
}

.w-75 {
  width: 75% !important;
}

.min-h-100 {
  min-height: 100px;
}

.min-h-200 {
  min-height: 200px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-400 {
  min-height: 400px;
}

.min-h-500 {
  min-height: 500px;
}

.max-h-100 {
  max-height: 100px;
}

.max-h-200 {
  max-height: 200px;
}

.max-h-300 {
  max-height: 300px;
}

.max-h-400 {
  max-height: 400px;
}

.max-h-500 {
  max-height: 500px;
}


/* Colors */

.white-text {
  color: white !important;
}

/* Analytics */

.graphic-1 {
  min-height: 415px;
  position: relative;
}

.chart {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.bars {
  display: flex;
  flex-direction: row;
}

.bar, .column {
  margin-right: 12px;
  margin-left: 12px;
  width: 10%;
  border-radius: 23px;
}

.bar-1, .bar-2, .bar-3, .bar-4 {
  height: 100px;
  background-color: var(--content-bg);
}

.column {
  text-align: center;
  color: gray;
}

.columns {
  margin-top: 21px;
  margin-bottom: 21px;
  display: flex;
  flex-direction: row;
}

.btn {
  border: none;
  outline: none;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  background-color: var(--content-bg);
  padding: 15px 26px;
  font-family: var(--body-font);
  color: #fff;
}

.btn.btn-primary {
  background-color: #3a6df0;
}

.btn.btn-danger {
  background-color: #960200;
}

.btn.btn-success {
  background-color: #1D976C;
}

.btn.btn-warning {
  background-color: #ff8811;
}

.btn.btn-secondary {
  background-color: #1c1c1c;
}

.search-bar input {
  width: 100%;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: bold;
  padding: 0 20px 0 12px;
  box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02);
  color: var(--theme-color);
}

.search-bar input::before {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: black;
}

.search-bar input::-moz-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.search-bar input:-ms-input-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.search-bar input::placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}


.form-control {
  width: 100%;
  height: 40px;
  border: none;
  background-color: var(--content-bg);
  border-radius: 4px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: bold;
  padding: 0 20px 0 12px;
  box-shadow: 0 0 0 2px rgba(134, 140, 160, 0.02);
  color: var(--theme-color);
}

.form-control:disabled {
  background-color: var(--input-disabled-bg);
}

.form-control::-moz-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.form-control:-ms-input-placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

.form-control::placeholder {
  font-family: var(--body-font);
  color: var(--inactive-color);
  font-size: 15px;
  font-weight: 500;
}

textarea.form-control {
  min-height: calc(1.5em + 7.45rem + 2px);
}

.dataTables_paginate {
  display: flex;
  margin-top: 10px;
}
table.dataTable thead th, table.dataTable thead td{
  border-bottom: 1px solid var(--modal-border-color) !important;
}
/* modal */
:root {
  --hue: 223;
  --bg: hsl(var(--hue), 10%, 85%);
  --fg: hsl(var(--hue), 10%, 5%);
  --trans-dur: 0.3s;
  font-size: calc(16px + (20 - 16) * (100vw - 320px) / (2560 - 320));
}
.modal-header > .close {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__actions {
  animation-delay: 0.2s;
  align-items: center;
  flex-wrap: wrap;
}

.modal__body,
.modal__header {
  position: relative;
  z-index: 1;
}

.modal__body {
  display: flex;
  flex-direction: column;
  padding: 0 2em 1.875em 1.875em;
}

.modal__button,
.modal__close-button {
  color: currentColor;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.modal__button {
  background-color: hsla(var(--hue), 10%, 50%, 0.2);
  border-radius: 0.25rem;
  font-size: 0.75em;
  padding: 0.5rem 2rem;
  transition:
    background-color var(--trans-dur),
    border-color var(--trans-dur),
    opacity var(--trans-dur);
  width: 100%;
}

.modal__button+.modal__button {
  margin-top: 0.75em;
}

.modal__button:disabled {
  opacity: 0.5;
}

.modal__button:focus,
.modal__close-button:focus {
  outline: transparent;
}

.modal__button:hover,
.modal__button:focus-visible {
  background-color: hsla(var(--hue), 10%, 60%, 0.2);
}

.modal__button--upload {
  background-color: transparent;
  border: 0.125rem dashed hsla(var(--hue), 10%, 50%, 0.4);
  flex: 1;
  padding: 0.375rem 2rem;
}

.modal__col+.modal__col {
  flex: 1;
  margin-top: 1.875em;
}

.modal__close-button,
.modal__message,
.modal__progress-value {
  color: hsl(var(--hue), 10%, 30%);
  transition: color var(--trans-dur);
}

.modal__close-button {
  background-color: transparent;
  display: flex;
  width: 1.5em;
  height: 1.5em;
  transition: color var(--trans-dur);
}

.modal__close-button:hover,
.modal__close-button:focus-visible {
  color: hsl(var(--hue), 10%, 40%);
}

.modal__close-icon {
  display: block;
  margin: auto;
  pointer-events: none;
  width: 50%;
  height: auto;
}

.modal__content>* {
  /* don’t use shorthand syntax, or actions delay will be overridden */
  animation-name: fadeSlideIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  opacity: 0;
}

.modal__file {
  flex: 1;
  font-size: 0.75em;
  font-weight: 700;
  margin-right: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal__file~.modal__button {
  margin-top: 1.5em;
}

.modal__file-icon {
  color: hsl(var(--hue), 10%, 50%);
  display: block;
  margin-right: 0.75em;
  width: 1.5em;
  height: 1.5em;
  transition: color var(--trans-dur);
}

.modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 2.5em;
  padding: 0.5em;
}

.modal__icon {
  display: block;
  margin: auto;
  width: 2.25em;
  height: 2.25em;
}

.modal__icon--blue g {
  stroke: hsl(223, 90%, 50%);
}

.modal__icon--red g {
  stroke: hsl(3, 90%, 50%);
}

.modal__icon--green g {
  stroke: hsl(138, 90%, 40%);
}

.modal__icon circle,
.modal__icon line,
.modal__icon polyline {
  animation: sdo 0.25s ease-in-out forwards;
  transition: stroke var(--trans-dur);
}

.modal__icon :nth-child(2) {
  animation-delay: 0.25s;
}

.modal__icon :nth-child(3) {
  animation-delay: 0.5s;
}

.modal__icon-sdo10 {
  stroke-dashoffset: 10;
}

.modal__icon-sdo14 {
  stroke-dashoffset: 14.2;
}

.modal__icon-sdo69 {
  stroke-dashoffset: 69.12;
  transform: rotate(-90deg);
  transform-origin: 12px 12px;
}

.modal__message {
  animation-delay: 0.1s;
  font-size: 1em;
  margin-bottom: 1.5em;
  min-height: 3em;
}

.modal__progress {
  flex: 1;
}

.modal__progress+.modal__button {
  margin-top: 1.75em;
}

.modal__progress-bar {
  background-image: linear-gradient(90deg, hsl(var(--hue), 90%, 50%), hsl(var(--hue), 90%, 70%));
  border-radius: 0.2em;
  overflow: hidden;
  width: 100%;
  height: 0.4em;
  transform: translate3d(0, 0, 0);
}

.modal__progress-fill {
  background-color: hsl(var(--hue), 10%, 90%);
  width: inherit;
  height: inherit;
  transition: transform 0.1s ease-in-out;
}

.modal__progress-value {
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1.333;
  text-align: right;
}

.modal__sr {
  overflow: hidden;
  position: absolute;
  width: auto;
  height: auto;
}

.modal__title {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* state change */
[data-state="2"]:before {
  background-color: hsl(3, 90%, 60%);
}

[data-state="3"]:before {
  background-color: hsl(138, 90%, 60%);
}

.modal__icon+.modal__icon,
[data-state="1"] .modal__icon:first-child,
[data-state="2"] .modal__icon:first-child,
[data-state="3"] .modal__icon:first-child,
.modal__content+.modal__content,
[data-state="1"] .modal__content:first-child,
[data-state="2"] .modal__content:first-child,
[data-state="3"] .modal__content:first-child {
  display: none;
}

[data-state="1"] .modal__icon:first-child,
[data-state="2"] .modal__icon:nth-child(2),
[data-state="3"] .modal__icon:nth-child(3),
[data-state="1"] .modal__content:nth-child(2),
[data-state="2"] .modal__content:nth-child(3),
[data-state="3"] .modal__content:nth-child(4) {
  display: block;
}

[data-ready="false"] .modal__content:first-child .modal__actions:nth-of-type(2),
[data-ready="true"] .modal__content:first-child .modal__actions:first-of-type {
  display: none;
}

[data-ready="true"] .modal__content:first-child .modal__actions:nth-of-type(2) {
  display: flex;
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(33%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sdo {
  to {
    stroke-dashoffset: 0;
  }
}

/* Beyond mobile */
@media (min-width: 768px) {
  .modal__actions--center {
    justify-content: center;
    margin-left: -4.125em;
  }

  .modal__body {
    flex-direction: row;
    align-items: center;
  }

  .modal__button {
    width: auto;
  }

  .modal__button+.modal__button {
    margin-top: 0;
    margin-left: 1.5rem;
  }

  .modal__file~.modal__button {
    margin-top: 0;
  }

  .modal__file~.modal__close-button {
    margin-right: 1.5rem;
  }

  .modal__progress {
    margin-right: 2em;
  }

  .modal__progress+.modal__button {
    margin-top: 0;
  }

  .modal__col+.modal__col {
    margin-top: 0;
    margin-left: 1.875em;
  }

  .modal__title {
    text-align: left;
  }
}

.overlayy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.ortala {
  display: flex;
  justify-content: center;
  align-items: center;
}

table tr .d-flex button {
  margin-right: 15px;
}

.seperator {
  background-color: var(--content-bg);
  height: 1px;
  width: 100%;
}


/* Badge */

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

/* modal */

.fade {
  opacity: 0;
  transition: opacity .15s linear;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal {
  z-index: 1072;
}

.fade.show {
  opacity: 1;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
}

.modal.fade .modal-dialog {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--modal-bg-color);
  background-clip: padding-box;
  border: 1px solid var(--modal-border-color);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--modal-border-color);
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-xl {
  max-width: 1140px !important;
}

.modal-lg {
  max-width: 800px;
}

.loader svg path,
.loader svg rect {
  fill: #FF6700;
}

/* .notifyHead{
  border-bottom: 1px solid white;
} */
.active {
  border-bottom: 1px solid var(--theme-color);
}

.notifySub {
  position: absolute;
  left: 76%;
  top: 5%;
  z-index: 1;
  width: 300px;
  color: var(--theme-color);
  max-height: 700px !important;
  background-color: var(--notify-bg-color) !important;
}

.scroll-y {
  overflow-y: scroll;
  position: relative;
}

.notifyTitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--notify-title-color);
}

.notifyContent {
  font-size: 14px;
  color: var(--notify-second-color);
}

.notifyTime {
  font-size: 10px;
  color: var(--notify-time-color);
}

.icn {
  fill: var(--theme-color) !important;
}

.customerHomeDiv {
  height: 300px;
  max-height: none;
  justify-content: center;
  align-items: center;

}

.app-card-close {
  float: right;
  position: absolute;
  bottom: 789px;
  right: 5px;
  background-color: var(--dropdown-bg);
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 50%;
}

.app-card-close svg {
  width: 20px;
  height: 20px;
  margin-right: 0px;
  margin-left: 0px;
}
.res-sidebar-close{
  display: none;
}
/* Responsive */

@media only screen and (min-width: 769px) and (max-width: 1200px){
  .res-apps-card{
    max-height: none;
    flex-wrap: wrap;
  }
  .res-content-section-form{
    display: grid !important;
    justify-content: center;
  }
  .res-app-card{
    width: 50%;
  }
  .left-side{
   display: none;
  }
  .res-sidebar-close{
    display: block;
    font-size: 15px;
    background-color: #1D976C;
    border-radius: 50%;
    color: white;
    width: 18px;
    height: 18px;
    text-align: center;
    position: absolute;
    left: 180px;
  }
  .res-toggle-class{
    left: 20px
  }
  .res-form-wc-pad{
    padding: 0px !important;
  }
  .res-form-wc{
    width: 100% !important;
   }
}
@media only screen and (max-width: 768px){
  .res-apps-card{
    max-height: none;
    flex-wrap: wrap;
    width: auto;
  }
  .res-app-card{
    width: 100%;
  }
  .res-notifySub {
    left: 0%;
    top: 3%;
  }
  .res-sidebar-close{
    display: block;
    font-size: 15px;
    background-color: #1D976C;
    border-radius: 50%;
    color: white;
    width: 18px;
    height: 18px;
    text-align: center;
    position: absolute;
    left: 180px;
    top: 32px;
  }
  .res-toggle-class{
    left: 20px
  }
  .left-side{
    display: none;
   }
   .res-content-section-form{
    display: grid !important;
    justify-content: center;
  }
   .res-form-wc{
    width: 100% !important;
   }
   .res-form-grid{
    padding: 0px !important;
    width: auto !important;
   }
   .res-form-wc-pad{
    padding: 0px !important;
   }
}

