@font-face {
  font-family: "roboto-light";
  src: url("./fonts/Roboto-Light.ttf");
  font-weight: normal;
  font-style: normal;
}

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

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

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

@font-face {
  font-family: "CircularStd-Medium";
  src: url("./fonts/CircularStd-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "heebo-medium";
  src: url("./fonts/Heebo-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "heebo-light";
  src: url("./fonts/Heebo-Light.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "heebo-regular";
  src: url("./fonts/Heebo-Regular.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "heebo-bold";
  src: url("./fonts/Heebo-Bold.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "poppins-medium";
  src: url("./fonts/Poppins-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}


@font-face {
  font-family: "poppins-light";
  src: url("./fonts/Poppins-Light.ttf");
  font-weight: 500;
  font-style: normal;
}



@font-face {
  font-family: "inter";
  src: url("./inter-font/Inter-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "inter";
  src: url("./inter-font/Inter-Medium.woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "inter-medium";
  src: url("./inter-font/Inter-Medium.woff");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "inter";
  src: url("./inter-font/Inter-SemiBold.ttf");
  font-style: normal;
  font-weight: 600;
}


@font-face {
  font-family: "Larsseit";
  src: url("./fonts/Larsseit Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

* {
 font-family: "inter"; 
}

html {
  font-size: 15px;
}

body {
  font-family: "roboto-medium" !important;
  color: #333 !important;
}

html,
body {
  height: 100%;
  border-color: #ced8e1;
}
* {
  box-sizing: border-box;
  /* for firefox */
  scrollbar-width: thin;
}

#app {
  height: 100%;
  width: 100%;
}

.home {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header .top {
  background: #012e54;
  display: flex;
  border-bottom: 1px solid rgba(162, 222, 252, 0.377);
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em 0.5em;
}

.header .top .section:last-child {
  display: flex;
  margin-right: 2em;
}

.header .top .section:last-child img {
  cursor: pointer;
}

.header .top .section .menu {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.header .top .section .menu div {
  margin: 0 0.5em;
}

.header .top .section .menu .create-new {
  margin-right: 1em;
  position: relative;
}

.header .top .section .menu .create-new .new-button {
  background: #fff;
  border-radius: 100px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 4px;
  display: block;
  color: #012e54;
  cursor: pointer;
  margin-right: 1em;
  font-size: 0.875rem;
  padding: 0.5em 0.8em;
  font-weight: bold;
  text-align: center;
  width: 85px !important;
}

.header .top .section .menu .create-new .dropdown {
  background: #fff;
  border-radius: 4px;
  border: 1px #f1f1f1 solid;
  position: absolute;
  font-size: 1rem;
  margin-top: 0.2em;
  padding: 0;
  text-align: left;
  z-index: 1000;
}

.header .top .section .menu .create-new .dropdown ul {
  width: 220px;
  margin-bottom: 0;
}

.header .top .section .menu .create-new .dropdown ul li {
  cursor: pointer;
  padding: 0.8em 1em;
}

.header .top .section .menu .create-new .dropdown ul li .fa-file-word {
  color: #069;
  font-size: 18px !important;
}

.header .top .section .menu .create-new .dropdown ul li .fa-file-excel {
  color: #01bc4c;
  font-size: 18px !important;
}

.header .top .section .menu .create-new .dropdown ul li .fa-file-powerpoint {
  color: #FC6D6C;
  font-size: 18px !important;
}

.header .top .section .menu .create-new .dropdown ul li .fa-folder {
  /*/* color: #fbd348; */ 
  font-size: 18px !important;
}

.header .top .section .menu .create-new .dropdown ul li .fa-cloud-upload-alt {
  font-size: 18px !important;
}

.header .top .section .menu .create-new .dropdown ul li:hover {
  background: #f9f9f9;
}

.header .top .section .menu .create-new .dropdown ul li.line-div {
  background: #f1f1f1;
  height: 1px;
  padding: 0 !important;
}

.header .top .section .profile {
  display: flex;
  align-items: center;
}

.header .top .section .profile > div {
  margin-right: 1em;
}

.header .bottom {
  background: #f9f9f944;
  box-shadow: rgba(0, 0, 0, 0.1) 6px 2px 5px 0;
  height: 45px;
  padding: 0.9em 1em 1em;
}

.note {
  cursor: pointer;
}

.page {
  display: flex;
  padding: 1em 1em;
  text-align: left;
  border-left: 1px solid #ccc;
  height: calc(100% - 50px);
}

.page .sidebar {
  height: 100%;
}

.page .file {
  flex-grow: 6;
}

.chatbox {
  background-color: #fff;
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  width: 350px;
}

.notebox {
  background-color: #fff;
  position: fixed;
  height: 100vh;
  top: 0;
  right: 0;
  width: 24.4375rem;
  transition: transform 300ms ease-in;
  transform: translateX(120%);
}

.chatbox-session {
  height: 100%;
  width: 100%;
}

.chatbox-session iframe {
  height: 100%;
  width: 100%;
}

.page .file-info {
  flex-grow: 1;
}


.page .file-info h3 {
  font-weight: 900;
  font-size: 18px;
  margin-top: 3em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid rgb(212, 211, 211);
}

.file-data .name {
  background: #2569a1;
  border-bottom: 1px solid rgb(170, 168, 168);
  color: #fff;
  font-weight: 900;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}

.file-data .row {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 0.8em !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.file-data .row span:first-child {
  color: #333;
  font-size: 0.875rem;
  width: 140px;
}

.file-data .row span:last-child {
  font-size: 0.875rem;
}

.statistics .usage-bar {
  background: rgb(190, 190, 190);
  display: block;
  margin-bottom: 0.8em;
  height: 5px;
  width: 100%;
}

.statistics .usage-bar .bar {
  background: #61DB99;
  display: none;
  margin-bottom: 0.8em;
  height: 5px;
}

.statistics .usage-bar .bar-exceed {
  background: #FC6D6C;
  display: none;
  margin-bottom: 0.8em;
  height: 5px;
}

.statistics .stat-data {
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.4em;
}

.statistics .go-premium span {
  display: block;
}

.statistics .go-premium .more-space {
  font-size: 9px;
}

.statistics .usage-stats {
  margin-top: 2em;
}

.statistics .usage-stats ul {
  font-size: 12px;
}

.statistics .usage-stats ul li {
  display: table;
  margin-bottom: 0.8em;
  width: 100%;
}

.statistics .usage-stats ul li strong {
  float: right;
  text-align: right;
}

.sidebar > div > h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.sidebar .list {
  font-size: 0.875rem;
}

.sidebar .list .fa {
  font-size: 15px;
}

.sidebar .list .fa-folder {
  color: #fdd662;
}

.sidebar .list img {
  fill: #fdd662;
}

.sidebar .list .fa-trash {
  color: #FC6D6C;
}

.sidebar .list ul {
  margin-bottom: 0 !important;
}

.sidebar .list ul li {
  cursor: pointer;
  padding: 0.4em 0;
  padding-right: 4em;
  padding-left: 0.3em;
}

/* .list ul li:hover {
	background-color: #f9f9f9;
} */

.sidebar .personal {
  border-bottom: 1px solid rgb(236, 236, 236);
}

.sidebar .personal-scroll {
  height: 280px;
  overflow-y: scroll;
}

.min-link a svg {
  cursor: pointer;
}

.min-link {
  position: relative;
}

.min-link .drop-under {
  background: #fff;
  border-radius: 4px;
  border: 1px #f1f1f1 solid;
  font-size: 1rem;
  text-align: left;
  width: 180px;
  height: auto;
  position: absolute;
  top: 2rem;
  right: -50px;
  z-index: 100000000;
}

.min-link .drop-under > li > a {
  color: #666 !important;
  display: flex;
  font-weight: normal;
  align-items: center;
  padding: 0.8em 1em !important;
}

.min-link .drop-under > li > a svg {
  margin-right: 10px;
}

.min-link .drop-under > li > a:hover {
  border-radius: 0 !important;
  background-color: #f9f9f9 !important;
}

.public-color {
  color: #46b2fa !important;
}

.group-color {
  color: #d3d606 !important;
}

.project-color {
  color: #05709e !important;
}

.grid-files .file-ext .ext .fade-folder {
  color: #fbd44852 !important;
}

.sidebar .public .fa {
  color: #46b2fa;
}

.sidebar .group .fa {
  color: #d3d606;
}

.sidebar .messenger .fa {
  color: #428504;
}

.sidebar .project .fa {
  color: #05709e;
}

.header .bottom {
  display: flex;
}

.header .bottom .section-left {
  width: 15%;
}

.header .bottom .section-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .bottom .section-right .file-order {
  align-items: center;
  display: flex;
}

.header .bottom .section-right .file-order > div {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-right: 2em;
}

.header .bottom .section-right .file-order > div img {
  margin-right: 0.5em;
}

.file-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.file-actions div {
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  margin-right: 2em;
  white-space: nowrap;
}

.file-actions div.share-file .fa {
  color: #000;
  font-size: 0.875rem;
  font-weight: bold;
}

.file-actions div.share-file:hover {
  color: #1e6abb !important;
}

.file-actions div.share-file:hover > .fa {
  color: #1e6abb !important;
}

.file-actions div.delete-file {
  display: flex;
  align-items: center;
}

.file-actions div.move-folder:hover {
  color: #1e6abb;
}

.file-actions div.move-folder:hover > .folder-move svg {
  fill: #1e6abb !important;
}

.file-actions div.delete-file:hover {
  color: #1e6abb;
}

.file-actions div.delete-file:hover > .trash svg {
  fill: #1e6abb !important;
}

.file-actions div.copy-file:hover {
  color: #1e6abb;
}

.file-actions div.copy-file:hover > .vector-arrange-below svg {
  fill: #1e6abb !important;
}

.file-actions div.rename-file:hover {
  color: #1e6abb;
}

.file-actions div.rename-file:hover > .vector-arrange-below svg {
  fill: #1e6abb !important;
}

.file-actions div.compress-file:hover {
  color: #1e6abb;
}

.file-actions div.compress-file:hover > .vector-arrange-below .fa {
  fill: #1e6abb !important;
}

.file-actions div.favourite-file:hover {
  color: #1e6abb;
}

.file-actions div.favourite-file:hover > .vector-arrange-below .fa {
  fill: #1e6abb !important;
}

.file-actions div.add-comment-file:hover {
  color: #1e6abb;
}

.file-actions div.add-comment-file:hover > .vector-arrange-below .fa {
  fill: #1e6abb !important;
}

.comment-section .comment .user {
  width: 48px;
  height: 48px;
}

.comment-section .comment .user img {
  border-radius: 50%;
  max-width: 100% !important;
  max-height: 100% !important;
}

.files-system {
  padding: 0 1.5rem;
  height: 100%;
  position: relative;
}

.files-system > h3 {
  font-size: 1rem;
  font-weight: bold;
}

.files-system .list-view-parent {
   height: calc(100vh - 16rem);
  overflow: auto;
}

.files-system .list-view .fa {
  font-size: 18px !important;
}

.files-system .list-view .fa-file-word {
  color: #069;
}

.files-system .list-view .fa-file-excel {
  color: #01bc4c;
  font-size: 18px !important;
}

.files-system .list-view .fa-file-powerpoint {
  color: #FC6D6C;
  font-size: 18px !important;
}

.files-system .list-view .fa-folder {
 /* color: #fbd348; */
  font-size: 18px !important;
}

.files-system table {
  width: 100%;
}

.files-system table tr:hover {
  background-color: #f2f7fc;
}

.files-system table tr {
  cursor: pointer;
  font-size: 0.875rem;
  min-height: 3.75rem;
}

.files-system table tr td {
  padding: 1rem !important;
  position: relative;
  min-height: 3.5rem;
}

.files-system table tr td .ext {
  display: inline;
  padding: 0.9em 0em 1em !important;
}

.files-system table tr td img {
  width: 2.5rem !important;
  min-width: 2.5rem;
}

.files-system table tr td .image {
  overflow: hidden;
  margin-left: 0.5rem;
}

.files-system table.no-files tr:last-child td {
  border-bottom: none;
  padding: 1em !important;
}

.files-system table tr td .unchecked {
  color: #f1f1f1 !important;
  fill: #f1f1f1;
}

.file-order .sort-order {
  position: relative;
}

.file-order .sort-order .sort-options {
  background: #fff;
  border-radius: 0.5rem;
  border: 1px #f9f9f9 solid;
  position: absolute;
  top: 25px;
  font-size: 0.875rem;
  text-align: left;
  padding: 1em 0.5em;
  z-index: 1000;
  right: 0;
  box-shadow: 0px 5px 44px 0px #B2BDD33D;
color: #111;
}

.file-order .sort-order .sort-options ul {
  padding: 0;
  width: 188px;
}

.file-order .sort-order .sort-options ul li {
  padding: 0.5rem 0.5rem; cursor: pointer;
  border-radius: 0.25rem;
  
}

.file-order .sort-order .sort-options ul li:hover {
  background-color: 
  #F2F7FC;
  
}


.file-order .sort-order .sort-options ul li span {
  display: inline-block;
  margin-right: 0.5em;
  width: 12px;
}

.file-order .sort-order .sort-options ul:last-child {
  border-top: 1px solid #f1f1f1;
  padding-top: 0.5em;
  margin-top: 0.5em;
}

.file-view-options {
  position: relative;
}

.file-view-options .view-options {
  background: #fff;
  border-radius: 4px;
  border: 1px #f9f9f9 solid;
  position: absolute;
  top: 25px;
  font-size: 0.875rem;
  text-align: left;
  padding: 1em 0.8em;
  z-index: 1000;
}

.file-order .view-options ul {
  padding: 0.2em 0.4em;
  width: 120px;
}

.file-order .view-options ul li {
  cursor: pointer;
  padding: 0.3em 0;
}

.file-order .view-options ul li span.mark {
  display: inline-block;
  margin-right: 0.5em;
  width: 12px;
}

.action-options svg {
  fill: #f1f1f1;
}

.files-system table tr:hover > .action-options svg {
  fill: #999;
}

.files-system table tr:hover .unchecked {
  fill: #888;
}

.list-view table tr:hover td .unchecked {
  fill: #333;
}

.action-options {
  position: relative;
}

.action-options .file-dropdown {
  position: absolute;
  background: #fff;
  border-radius: 4px;
  border: 1px #f1f1f1 solid;
  padding: 0.8em 0.6em;
  height: auto;
  width: 230px;
  right: 0;
  z-index: 1000;
}

.action-options .file-dropdown .fa {
  font-size: 12px !important;
}

.action-options .file-dropdown ul li {
  display: flex;
  padding: 0.6em 0.6em;
  font-size: 13px;
  align-items: center;
  width: auto;
}

.action-options .file-dropdown ul li:hover {
  background: #fcfafa;
}

.action-options .file-dropdown ul li.line-div:hover {
  background: #f1f1f1;
}

.action-options .file-dropdown ul li.line-div {
  background: #f1f1f1;
  height: 1px;
  padding: 0;
  margin: 0.4em 0;
}

.action-options .file-dropdown ul li i {
  margin-right: 0.9em;
}

.action-options .file-dropdown ul li i.fa-trash {
  color: #f04040;
}

.action-options .file-dropdown ul li i.fa-folder {
 /* color: #fbd348; */
}

.top-title {
  display: flex;
  font-size: 20px;
  align-items: center;
}

.top-title .within {
  border-radius: 50px;
  background-color: #f6f8fb;
  border: none;
  padding: 0.65em 1em;
  font-size: 0.875rem;
  width: 300px;
  margin-left: 0.6em;
}

.top-title .refresh-folder {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
  background: #1e6abb;
  border-radius: 100%;
  margin-left: 3em;
  width: 30px;
  height: 30px;
}

.upgrade-btn {
  background: #012e54;
  color: #fff !important;
  display: inline-block;
  padding: 0.8em 0.9em;
  width: 100%;
  border-radius: 3px;
  text-align: center;
}

.empty {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 18rem);
  flex-direction: column;
}

.empty-recent-file {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  flex-direction: column;
  overflow-y: auto;
}

.empty-recent-file img {
  width: 100px;
  height: auto;
}

.grid-view {
  background: #f6f8fb;
  height: calc(100% - 100px);
  overflow: auto;
  overflow-x: hidden;
  padding: 0.5em 2em;
}

.grid-files {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-template-rows: 180px;
  grid-auto-rows: 180px;
  padding-right: 0.6em;
  overflow: auto;
  height: calc(100vh - 17rem);
}

.home-files {
  height: calc(100vh - 16rem);
}

.grid-view.home-files .grid-files {
  height: fit-content;
} 


/* .recent-files {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-template-rows: 180px;
  grid-auto-rows: 180px;
  padding-right: 0.6em;
  overflow: auto;
} */

/* .recent-files {
  height: 200px !important;
  overflow-y: auto !important;
}

.pinned-files {
  height: 200px !important;
  overflow-y: auto !important;
} */

.highlighted {
  background: rgba(0, 176, 240, 0.034);
}

.grid-files > div {
  background: /*#D9ECFA*/ #F2F7FC;
  /* border: 1px solid #e8e6e6; */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.grid-files > div:hover {
  background: /*rgba(0, 176, 240, 0.034);*/ #D9ECFA
}

.grid-files div:hover .unchecked path {
  fill: #888 !important;
}

.grid-files .header {
  display: flex;
  justify-content: space-between;
  padding: 1em 0.9em 0.3em;
  width: auto;
}

.grid-files .header div {
  cursor: pointer;
}

.grid-files .file-ext {
  cursor: pointer;
  text-align: center;
}

.grid-files .file-ext img {
  border-radius: 3px;
  max-width: 80%;
  max-height: 80%;
}

.grid-files .file-ext .ext {
  padding-left: 10px;
  padding-right: 10px;
}

.grid-files .size {
  display: flex;
  align-items: center;
  color: #4B5458;
}

.grid-files .file-ext .ext .fa-file-powerpoint {
  color: #FC6D6C;
}

.grid-files .file-ext .ext .fa-file-word {
  color: #069;
}

.grid-files .file-ext .ext .fa-file-excel {
  color: #01bc4c;
}

.grid-files .file-ext .ext .fa-file-pdf {
  color: #c72205;
}

.grid-files .file-ext .ext .fa-file-audio {
  color: #333;
}

.grid-files .file-ext .ext .fa-file-video {
  color: #fd043a;
}

.grid-files .header div:last-child {
  position: relative;
}

.grid-files .header div:last-child .file-dropdown {
	background-color: #fff;
	box-shadow: 0px 5px 44px rgba(178, 189, 211, 0.24);
	border-radius: 4px;
	position: fixed;
	padding: 0.6em 0.6em;
	width: 230px;
	z-index: 100;
}

.grid-files .header div:last-child .file-dropdown .fa {
  font-size: 12px !important;
}

.grid-files .header div:last-child .file-dropdown ul {
  margin-bottom: 0;
}

.grid-files .header div:last-child .file-dropdown ul li {
  display: flex;
  padding: 0.4em 0.6em;
  font-size: 13px;
  align-items: center;
}

.grid-files .header div:last-child .file-dropdown ul li.player {
  display: flex;
  padding: 1.1em 0.6em;
  font-size: 13px;
  align-items: center;
  width: 100%;
}

.grid-files .header div:last-child .file-dropdown ul li .play {
  display: flex;
  align-items: center;
}

.grid-files .header div:last-child .file-dropdown ul li .play svg {
  position: absolute;
  left: 2px;
  right: 10px;
}

.grid-files .header div:last-child .file-dropdown ul li .play span {
  position: absolute;
  left: 26px;
}

.grid-files .header div:last-child .file-dropdown ul li:hover {
  background: #fcfafa;
}

.grid-files .header div:last-child .file-dropdown ul li.line-div:hover {
  background: #f1f1f1;
}

.grid-files .header div:last-child .file-dropdown ul li.line-div {
  background: #f1f1f1;
  height: 1px;
  padding: 0;
  margin: 0.4em 0;
}

.grid-files .header div:last-child .file-dropdown ul li i {
  margin-right: 0.9em;
}

.grid-files .header div:last-child .file-dropdown ul li i.fa-trash {
  color: #f04040;
}

.grid-files .header div:last-child .file-dropdown ul li i.fa-folder {
 /* color: #fbd348; */
}

.grid-files .file-name {
  /*background-color: #eaf0fa33;*/
  display: flex;
  justify-content: space-between;
  padding: 1em 0.9em;
  position: absolute;
  bottom: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  width: 100%;
}

.grid-files .file-name .favourite {
  color: #f8c81a !important;
  font-size: 8px !important;
  position: absolute;
  top: 0;
  width: 20px;
  right: -20px;
}

.grid-files .file-name > span:first-child {
  color: #333;
  font-size: 0.875rem;
  position: relative;
}

.grid-files .file-name span.can_browse {
  cursor: pointer;
}

.grid-files .file-name .size {
  font-size: 12px;
  font-weight: bold;
}

.grid-files .file-ext .ext {
  text-align: center;
}

.grid-files .file-ext .ext .fa {
  font-size: 80px;
}

.top .search {
  display: flex;
  flex-grow: 3;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-left: 2em;
}

.top .search .input-box {
  margin-top: 3px;
  position: relative;
  width: 32%;
}

.top .url {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  margin-left: 2em;
  height: 100%;
  font-family: "inter";
}

.top .url li a {
  font-size: 1rem;
  color: #fff;
  padding: 0.4em 0.9em;
}

.top ul.url li.active a {
  color: #fff !important;
  background-color: #13355e !important;
  border-radius: 50px !important;
  text-decoration: none !important;
}

.top ul.url li a {
  color: #677888;
  padding: 0.6em 0.9em;
}

.top ul.url li a:hover {
  color: #fff;
  background-color: #13355e;
  border-radius: 50px;
  text-decoration: none;
}

.top .search .input-box input {
  border: 1px #f9f9f9 solid;
  border-radius: 3px;
  font-size: 0.875rem;
  padding: 6px 30px 6px 30px;
  width: 100%;
  font-family: "roboto";
}

.top .search .input-box i {
  position: absolute;
}

.top .search .input-box i.fa-search {
  font-size: 12px;
  top: 12px;
  left: 10px;
}

.top .search .input-box i.fa-caret-down {
  cursor: pointer;
  font-size: 15px;
  top: 12px;
  right: 10px;
}

.top .search .listdown {
  background-color: #fcfcfc;
  text-align: left;
  position: absolute;
  font-family: "roboto";
  width: 79.8%;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.2) 0 12px 30px 0;
  top: 40px;
  right: 0;
}

.top .search .listdown ul {
  margin-bottom: 0;
}

.top .search .listdown ul li {
  cursor: pointer;
  font-size: 15px;
  padding: 0.6em 1em;
}

.top .search .listdown ul li:hover {
  background-color: #f1f1f1;
}

.top .search .listdown ul li .fa-file-excel {
  color: #01bc4c;
}

.top .search .listdown ul li .fa-file-powerpoint {
  color: #FC6D6C;
}

.top .search .listdown ul li .fa-file-word {
  color: #069;
}

.top .search .advance ul li .fa {
  font-size: 18px;
}

.top .search .advance ul li .fa-file-pdf {
  color: #c72205;
}

.top .search .advance ul li .fa-folder {
  color: #fdd804;
}

.top .search .advance ul li .fa-file-video {
  color: #fd043a;
}

.top .search .advance ul li .fa-file-excel {
  color: #01bc4c;
}

.top .search .advance ul li .fa-file-powerpoint {
  color: #FC6D6C;
}

.top .search .advance ul li .fa-file-word {
  color: #069;
}

.top .search .advance ul li .fa-file-pdf {
  color: #c72205;
}

.top .search .advance ul li .fa-folder {
  color: #fdd804;
}

.top .search .advance ul li .fa-file-video {
  color: #fd043a;
}

.top .search .advance {
  background-color: #fcfcfc;
  font-family: "roboto";
  text-align: left;
  position: absolute;
  width: 79.8%;
  padding: 0.8em;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.2) 0 12px 30px 0;
  top: 40px;
  right: 0;
}

.top .search .advance .tbox {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #666;
  font-size: 0.875rem;
  height: 38px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  padding: 0.3em 0.9em;
}

.top .search .advance .tbox svg {
  position: absolute;
  right: 5px;
}

.top .search .advance ul.menu {
  background: #fff;
  position: absolute;
  z-index: 1000;
  width: 100%;
  border: 1px solid #e1e8ee;
}

.top .search .advance ul.menu li {
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  padding: 0.5em 0.6em;
  margin: 0;
  color: #555;
  align-items: center;
}

.top .search .advance ul.menu li:hover {
  background: #f9f9f9;
}

.vdp-datepicker {
  width: 100% !important;
  margin-left: 0 !important;
}

.top .search .advance ul {
  margin-bottom: 0;
}

.top .search .advance ul li {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.8em;
}

.top .search .advance ul li > div:first-child {
  width: 25%;
}

.top .search .advance ul li div.mix {
  position: relative;
  margin-left: 1em;
  width: 50%;
}

.top .search .advance ul li div.mix input.suga {
  width: 100%;
  border: 1px solid #f1f1f1;
  border-radius: 2px;
  padding: 0.5em 0.6em;
  font-size: 0.875rem;
}

.top .search .advance ul li div.mix .custom-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 100%;
}

.mx-input {
  width: 100% !important;
  border-radius: 2px !important;
  border: 1px solid #f1f1f1 !important;
  box-shadow: none !important;
  webkit-box-shadow: none !important;
}

.mx-datepicker {
  width: 100% !important;
}

.top .search .advance ul li div.mix .custom-date > span {
  width: 48%;
}

.top .search .advance ul li div.mix .custom-date span svg {
  right: 4px;
  top: 8px;
}

.top .search .advance ul li div.mix .custom-date span input::placeholder {
  color: #e1e0e0;
}

.top .search .advance ul li .search-btn {
  background: #1e6abb;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  padding: 0.6em 3em;
}

.top .search .advance ul li .reset-btn {
  background: #dbdbdb;
  border-radius: 3px;
  border: 1px solid rgba(119, 119, 119, 0.22);
  color: rgb(85, 85, 85);
  cursor: pointer;
  padding: 0.6em 3em;
}

.top .search .advance h3 {
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(117, 117, 117, 0.2);
  padding-bottom: 0.3em;
}

.top .search .advance .custom-date {
  margin-bottom: 0;
}

.login {
  display: flex;
  font-family: "heebo-light", Helvetica, sans-serif;
  height: auto;
}

.login > div {
  flex-flow: 1;
  height: auto;
  width: 50%;
}

.login .intro {
  background: url("Bg.svg");
  color: #fff;
  min-height: 100vh;
}

.login .intro h3 {
  font-family: "Larsseit";
  font-size: 1.5rem;
  font-weight: 600;
  word-spacing: 2px;
  letter-spacing: 1px;
}

.login .intro .slogan {
  font-family: "DM Sans";
}

.login .intro p {
  font-size: 15px;
  margin-top: 0.6em;
}

.login .intro .signup {
  margin-top: 8em;
}

.login .intro .signup p {
  font-size: 1rem !important;
  margin-bottom: 2em;
}

.login .intro .signup a {
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: 1em 5em;
  font-weight: bold;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 0 0;
}

.login .form {
  display: flex;
  margin: 2em 0;
  justify-content: center;
}

.login .logo {
  text-align: left;
  margin-bottom: 2em;
}

.login .form h3 {
  font-family: "Larsseit";
  font-weight: bold;
  color: #000;
  font-size: 1.5rem;
  margin-top: 0.6em;
  text-align: left;
}

.login .form p.tagline {
  font-family: "DM Sans";
  color: #4b5458;
  font-weight: 500 !important;
  margin-bottom: 15px !important;
  font-size: 15px;
  text-align: left;
}

.login .form form {
  text-align: center;
  margin-top: 3em;
}

.login .form form div {
  text-align: left;
}

.login .form form div .error {
  font-family: "heebo-regular";
}

.login .form > div {
  width: 56%;
}

.login .form .error-login {
  background-color: rgb(248, 201, 201);
  border-radius: 3px;
  color: #FC6D6C;
  position: relative;
  font-size: 0.875rem;
  border: 1px solid rgb(245, 88, 88);
  padding: 0.9em 1em;
  text-align: left;
}

.login .form .error-login .fa-times {
  position: absolute;
  color: rgb(255, 68, 68);
  top: 3px;
  cursor: pointer;
  font-size: 12px;
  right: 8px;
}

.login .form form div {
  position: relative;
}

.login .dont {
  margin-top: 2em;
}

.login .dont p {
  font-family: "DM Sans";
  font-weight: normal;
  text-align: left;
}

.login .form form .error {
  color: #FC6D6C;
  font-size: 0.875rem;
}

.login .form form input {
  display: block;
  border-radius: 8px;
  border: 1px solid #a7b9cb;
  font-family: "DM Sans";
  font-size: 15px;
  text-align: left;
  padding: 1em;
  width: 100%;
}

.login .form form label {
  color: #677888;
  font-family: "DM Sans";
  font-weight: 800;
  font-size: 1rem;
}

.login .form form input:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 1px 10px 0;
  border: 1px solid #ebebeb;
}

.login .form form > div {
  margin-bottom: 2em;
}

.login .keepme {
  display: flex;
  margin: 0 0 0.8em !important;
  flex-direction: row;
  justify-content: space-between;
  font-family: "DM Sans";
}

.login .keepme label {
  display: flex !important;
  font-size: 13px;
  align-items: center;
  color: #4b5458 !important;
  font-weight: normal !important;
}

.login .keepme label input {
  display: inline-block !important;
  margin-right: 5px;
  width: auto;
}

.login .keepme span a {
  color: #3f96d1;
}

.login .keepme span a:hover {
  text-decoration: none;
}

.login .form form input:focus {
  border: 1px solid #d1cfcf;
}

.login .form form button {
  background: #3f96d1;
  border-radius: 8px;
  display: block;
  border: none;
  font-family: "DM Sans";
  font-weight: normal;
  color: #fff;
  font-weight: 500;
  padding: 1em 3em;
  margin-bottom: 1em;
  width: 100%;
}

.login .form form .reveal {
  cursor: pointer;
  position: absolute;
  top: 0.875rem;
  right: 12px;
}

.pricing .top-header {
  background-color: #fff;
}

.pricing .top-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
}

.pricing .top-header > div div:first-child {
  flex-grow: 1;
  text-align: left;
}

.pricing .top-header > div div:last-child {
  flex-grow: 2;
  display: flex;
  justify-content: right;
  text-align: right;
}

.pricing .top-header > div div:last-child span {
  margin-left: 1.2em;
}

.pricing .top-header > div div:last-child span a {
  color: #333;
  font-family: "roboto-light";
  font-weight: bold;
}

.pricing .top-header > div div:last-child span:last-child a {
  border: 1px solid #999;
  border-radius: 5px;
  padding: 0.6em 1.5em;
}

.pricing .top-header > div div:last-child span:last-child a:hover {
  text-decoration: none;
}

.pricing .choose-plan {
  background-color: #f9f9f9;
  padding: 4em 0;
}

.pricing .choose-plan h3 {
  color: #069;
  font-size: 25px;
  margin-bottom: 2em;
}

.pricing .choose-plan table {
  margin: 0;
  text-align: center;
  width: 100%;
}

.pricing .plans {
  display: flex;
  justify-content: space-evenly;
  height: 100%;
}

.pricing .plans .plan-box {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 5px 6px 0;
  height: 460px;
  padding: 2em 1em;
  text-align: center;
  width: 300px;
}

.pricing .plans .corporate {
  display: flex;
  width: 600px;
}

.pricing .plans .corporate > div {
  width: 50%;
}

.pricing .plans .plan-box .continue-button {
  cursor: pointer;
  background-color: #3382c7;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px 0;
  padding: 0.8em 2em;
  text-decoration: none;
  margin-top: 1em;
}

.pricing .plans .plan-box .continue-button-trial {
  cursor: pointer;
  background-color: #FC6D6C;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px 0;
  padding: 0.8em 2em;
  text-decoration: none;
  margin-top: 1em;
}

.create-account {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.create-account .top-header {
  background-color: #012e54;
}

.create-account .top-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
}

.create-form {
  display: flex;
  text-align: left;
  justify-content: center;
  align-items: center;
}

.create-account .top-header .flex {
  display: flex !important;
}

.create-form .form {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px 0;
  border-radius: 5px;
  margin: 2em;
  padding: 1em 1em;
  height: min-content;
}

.create-form .form h3 {
  color: #069;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}

.create-form .form .input {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.9em;
}

.create-form .form .input > div:last-child {
  margin-left: 1em;
}

.create-form .form .input div.email {
  margin-left: 0;
  width: 100%;
}

.create-form .form .input div.email input {
  width: 95%;
}

.create-form .form .input div label,
.create-form .form .input div input {
  display: block;
}

.create-form .form .input div input {
  border-radius: 4px;
}

.create-form .form .input div input:focus {
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 5px 0;
}

.create-form .form .input div label {
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.create-form .form .submit button {
  background: #012e54;
  display: block;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-bottom: 1em;
  padding: 0.9em 4em;
  width: 100%;
}

.create-form .form .submit a {
  color: #069;
  text-decoration: none;
}

.create-form .form .submit p {
  font-size: 0.875rem;
}

.create-form .form .input div input {
  border: 1px solid #f1f1f1;
  padding: 0.6em 0.6em;
}

.create-form .form .err {
  color: #FC6D6C;
  font-size: 0.875rem;
}

.blockuser {
   background: rgba(14, 29, 47, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 16000;
  width: 100%;
}

.blockuser .notify {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px 1px;
  text-align: center;
  padding: 4em 3em 2em;
  width: 490px;
  position: relative;
}

.blockuser .notify_succes {
  padding-bottom: 3em;
}

.blockuser .notify {
  padding: 3em !important;
}

.blockuser .notify .closewarning {
  cursor: pointer;
  position: absolute !important;
  top: 10px;
  right: 10px;
}

.blockuser .notify .close-box {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

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

.top-header .help {
  font-size: 0.875rem;
}

.top-header .help i {
  font-size: 12px;
}

.top-header .logout {
  cursor: pointer;
  font-size: 0.875rem;
}

.top-header .welcome {
  color: #fff;
  cursor: pointer;
  font-size: 0.875rem;
}

.top-header div > div {
  color: #fff;
}

.setup-account {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.setup-account .top-header {
  background: #012e54;
}
.setup-account .top-header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 1em;
}

.security-question {
  background-image: url("BG-light.svg");
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100% !important;
}

.security-question .setup {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  padding: 2em;
}

.security-question .setup h3 {
  font-size: 20px;
  font-weight: bold;
}

.security-question .setup p {
  font-size: 12px;
  margin-top: 0.5em;
  margin-bottom: 2em;
}

.security-question .setup .form {
  display: flex;
  flex-direction: column;
  width: 450px;
}

.security-question .setup .form div {
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.security-question .setup .form div label {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 0.5em;
}

.security-question .setup .form div input {
  background-color: rgb(250, 250, 250);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: center;
  padding: 0.9em 1em;
}

.security-question .setup .form div span.error {
  color: #FC6D6C;
  font-size: 0.875rem;
  margin-top: 5px;
}

.security-question .setup .form div.submit {
  margin-top: 1em;
}

.security-question .setup .form div.submit span {
  cursor: pointer;
  text-align: left;
  font-family: "heebo-regular";
  margin-top: 0.6em;
  font-size: 15px;
}

.security-question .setup .form div.submit button {
  background-color: #0d538d;
  border-radius: 4px;
  font-family: "heebo-medium";
  border: none;
  padding: 1em 5em;
  color: #fff;
  position: relative;
}

.security-question .toastr {
  position: absolute;
  background-color: #1db95b;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  color: #fff;
  border-radius: 3px;
  padding: 0.8em 1em;
  font-family: "heebo-regular";
  top: 60px;
  right: 12px;
  text-align: left;
  width: 320px;
}

.security-question .toastr h4 {
  font-family: "heebo-medium";
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin: 0;
}

.security-question .toastr .closebtn {
  font-family: "heebo-medium";
  cursor: pointer;
  font-size: 22px;
}

.security-question .toastr p {
  font-size: 13px;
  margin-bottom: 0;
}

.security-question .setup .error-login {
  background-color: rgb(248, 201, 201);
  border-radius: 3px;
  color: #FC6D6C;
  position: relative;
  font-size: 0.875rem;
  border: 1px solid rgb(245, 88, 88);
  padding: 0.9em 1em;
  text-align: left;
}

.security-question .setup .error-login .fa-times {
  position: absolute;
  color: rgb(255, 68, 68);
  top: 3px;
  cursor: pointer;
  font-size: 12px;
  right: 8px;
}

.send-div {
  display: flex;
  flex-direction: column;
}

.send-div span,
.send-div label,
.send-div input {
  display: block;
}

.send-div label {
  font-weight: bold;
  margin-bottom: 0.6em;
}

.send-div label,
.send-div input {
  width: 100%;
}

.send-div input {
  background-color: rgb(250, 250, 250);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: center;
  padding: 0.9em 1em;
}

.send-div .send-btn {
  background-color: #0d538d;
  border-radius: 3px;
  font-family: "heebo-medium";
  border: none;
  cursor: pointer;
  padding: 1em 5em;
  margin-top: 1em;
  color: #fff;
}

.send-div .error {
  color: #FC6D6C;
  font-size: 0.875rem;
}

.send-div > span:last-child {
  margin-top: 1em;
}

.security-question .setup-name {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  text-align: left;
  margin: 3em 0;
  padding: 2em;
}

.security-question .setup-name h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1em;
}

.security-question .setup-name p {
  font-size: 12px;
  margin-top: 0.5em;
  margin-bottom: 2em;
}

.security-question .setup-name .form {
  display: flex;
  flex-direction: column;
  width: 450px;
}

.security-question .setup-name .form div {
  margin-bottom: 0.4em;
}

.security-question .setup-name .form div label {
  font-size: 15px;
}

.security-question .setup-name .form div input {
  background-color: rgb(253, 253, 253);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: left;
  padding: 0.7em 1em;
  width: 100%;
  display: block;
}

.security-question .setup-name .form div select {
  background-color: rgb(253, 253, 253);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: left;
  padding: 0.9em 1em;
  outline-style: none;
  width: 100%;
}

.security-question .setup-name .form div span.error {
  color: #FC6D6C;
  font-size: 0.875rem;
  margin-top: 5px;
}

.security-question .setup-name .form div.submit {
  margin-top: 1em;
}

.security-question .setup-name .form div.submit span {
  color: rgb(3, 95, 187);
  font-weight: bold;
  cursor: pointer;
  text-align: left;
  margin-top: 0.6em;
  font-size: 0.875rem;
}

.security-question .setup-name .form div.submit button {
  background-color: #0d538d;
  border-radius: 3px;
  font-weight: bold;
  border: none;
  padding: 1em 5em;
  color: #fff;
  width: 100%;
}

.security-question .setup-name .form div.submit .skip {
  color: #0d538d;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
}

.security-question .setup-name .error-login {
  background-color: rgb(248, 201, 201);
  border-radius: 3px;
  color: #FC6D6C;
  position: relative;
  font-size: 0.875rem;
  border: 1px solid rgb(245, 88, 88);
  padding: 0.9em 1em;
  text-align: left;
}

.security-question .setup-name .error-login .fa-times {
  position: absolute;
  color: rgb(255, 68, 68);
  top: 3px;
  cursor: pointer;
  font-size: 12px;
  right: 8px;
}

.security-question .setup-name .create_public {
  display: flex;
  font-size: 12px;
  margin-top: 1rem;
}

.security-question .setup-name .create_public .fa {
  cursor: pointer;
  font-size: 0.875rem;
  margin-top: -2px;
  margin-left: 8px;
}

.security-question .setup-name .create_public input {
  margin-top: -2px;
  margin-right: 4px;
}

.security-question .setup-name .success {
  background-color: #08ec63;
  border-radius: 3px;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.9em 0.6em;
  margin-bottom: 0.8em;
}

.security-question .add-employee {
  padding-bottom: 0.6em;
}

.security-question .add-employee .form .input {
  display: flex !important;
  flex-direction: row;
}

.security-question .add-employee .form .input input {
  padding: 0.6em 1em;
}

.security-question .add-employee .form .input div {
  display: inline;
}

.security-question .add-employee .form .password-field div {
  display: flex !important;
  flex-direction: column;
}

.security-question .add-employee .form .input div input.full {
  width: 100%;
}

.security-question .add-employee .form .password-field div:last-child {
  margin-left: 10px;
}

.security-question .add-employee .form .password-field div:last-child input {
  width: 100%;
}

.security-question .add-employee .form .not {
  flex-direction: column;
}

.security-question .add-employee .form .not div:first-child {
  margin-left: 0 !important;
}

.upload {
	position: absolute !important;
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	box-shadow: 0px 5px 44px rgba(178, 189, 211, 0.24);
	bottom: 30px;
	right: 70px;
	width: 400px;
}

.upload .header {
	border-top-right-radius: 4px;
	border-top-left-radius: 4px;
	display: flex;
	justify-content: space-between;
	padding: 0.8em 1em;
}

.minimize .header {
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.upload .header div {
  color: #fff !important;
}

.upload .header div i {
  font-size: 0.875rem;
}

.upload .header .minimize {
	cursor: pointer;
}

.upload .body {
	background: #fff !important;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
	height: 220px;
	overflow-y: auto;
}

.upload .body .file-upload {
	padding: 1em 1em 0.8em;
	font-family: 'inter' !important;
}

.upload .body .file-upload > span:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.upload .file-upload {
  display: flex;
  justify-content: space-between;
}

.upload .file-upload .file-exists {
  color: #FC6D6C;
  font-size: 12px;
  text-align: left;
}

.upload .file-upload .file-name {
  display: flex;
  flex-direction: column;
  justify-content: left;
}

.upload .done {
  color: #01bc4c;
  margin-top: 3px;
}

.upload .upload-done {
  display: flex;
}

.upload .remove-upload {
  cursor: pointer;
}

.pro .progress-bar {
  border-radius: 50%;
  color: #fff !important;
  font-size: 10px;
  font-weight: bold;
  height: 40px;
  width: 40px;
}

.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke-dashoffset: 8.5;
  stroke-dasharray: 8.5;
  animation: progress 2s infinite alternate;
}

.upload .body .cancel-upload {
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: .4em;
}

.upload .body .cancel-upload:hover {
  background: #f2f7fc;
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
}

.upload .body .pause-upload {
  cursor: pointer;
  font-weight: 100;
  font-size: 12px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.6em;
}

.upload .body .pause-upload:hover {
  background: rgba(14, 29, 47, 0.54);
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
}

.upload .body .restart-upload {
  cursor: pointer;
  font-weight: 100;
  font-size: 0.875rem;
  border-radius: 50%;
  padding: 0.6em 1em;
}

.upload .body .restart-upload:hover {
  background: rgba(14, 29, 47, 0.54);
  cursor: pointer;
  color: #fff;
  border-radius: 50%;
  padding: 0.6em 1em;
}

.create-file {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
}

.create-file .box {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  padding: 3em 2em 1em;
  text-align: left;
  position: relative;
  height: auto;
  width: 480px;
}

.create-file .box .input {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.create-file .box .input label {
  font-weight: bold;
  margin-bottom: 0.6em;
}

.create-file .box .input input {
  border: 1px solid #e2e2e2;
  background-color: #f7f7f7;
  border-radius: 3px;
  margin-bottom: 0.6em;
  padding: 0.9em 0.6em;
  width: 100%;
}

.create-file .box .input .error {
  color: #FC6D6C;
  font-size: 0.875rem;
}

.create-file .box .btn {
  margin-top: 0.3em;
  display: flex;
  margin-left: 0 !important;
  padding: 0 !important;
}

.create-file .box .btn button {
  background-color: #1e6abb;
  border: 1px solid #034b88;
  border-radius: 3px;
  color: #fff;
  padding: 0.6em 2em;
}

.create-file .box .close-box {
  position: absolute;
  cursor: pointer;
  top: 10px;
  right: 12px;
}

.create-file .loader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.1em;
  margin-left: 0.9em;
  height: 40px;
}

.login_pop {
   background: rgba(14, 29, 47, 0.54);
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 200;
}

.login_pop .form {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid rgb(177, 177, 177);
  height: auto;
  display: flex;
  font-family: Arial, Helvetica, sans-serif;
  flex-direction: column;
  padding: 2em 2em;
  width: 490px;
}

.login_pop .form div {
  height: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
}

.login_pop .form div label {
  font-weight: bold;
  margin-bottom: 0.4em;
}

.login_pop .form div .error {
  color: #FC6D6C;
  font-size: 0.875rem;
  margin-top: 0.2em;
}

.login_pop .form div input {
  background-color: #f8f8f8;
  border-radius: 3px;
  border: 1px solid #e6e5e5;
  text-align: center;
  padding: 0.8em 0.6em;
}

.login_pop .form div input:focus {
  background-color: rgb(252, 252, 252);
  box-shadow: inset rgba(0, 0, 0, 0.1) 0 0 5px 0;
  border: none;
}

.login_pop .form .logo {
  margin-bottom: 0.1em;
}

.login_pop .form .tagline {
  color: #6a6868;
  font-size: 0.875rem;
}

.login_pop .form .btn button {
  background-color: #1e6abb; /* 0d538d */
  color: #fff;
  border-radius: 3px;
  border: none;
  padding: 1em 0.2em;
}

.login_pop .form div.error {
  background-color: rgb(243, 125, 125);
  border-radius: 3px;
  border: 1px solid rgb(235, 86, 86);
  text-align: left;
  color: #fff;
  padding: 0.9em 0.9em;
}

.login_pop .form .signin {
  margin-bottom: 1.5em;
}

.browse_parent {
  position: relative;
  height: auto;
}

.browse_parent .browse_folder {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  height: 100%;
}

.browse_parent .browse_folder .ext {
  margin-right: 10px;
}

.browse_parent span.svg {
  display: inline-block;
  width: 22px;
  height: 22px;
}

.browse_parent .browse_folder .ext img {
  max-width: 100%;
}

/* .browse_parent .browse_folder .ext > span {
  display: block;
  width: 24px;
  height: 24px;
} */

.browse_parent span.svg img {
  max-width: 100%;
  max-height: 100%;
}

.file-container {
  height: 100%;
}

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

.comments .loader span.loader {
  display: flex;
  flex-direction: column;
}

.add_favourite {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
}

.add_favourite div {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 160px;
  width: 400px;
}

.files-system .list-view .favourite {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.5em;
}

.files-system .list-view .favourite .fa {
  color: #f8c81a;
  font-size: 8px !important;
}

.favourite .fa {
    color: #f8c81a;
    font-size: 8px !important;
}

.personal-default-folder li {
  position: relative;
  height: 21px;
}

.personal-default-folder li div:first-child {
  display: inline;
}

.personal-default-folder li .drag-area {
  position: absolute;
  top: 0;
  background-color: #ececec;
  border: 2px dashed #a09f9f;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 98%;
}

.personal-default-folder li .drag-area p {
  margin: 0;
  text-align: center;
}

.modal {
  background: rgba(14, 29, 47, 0.54);
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  max-height: 100vh !important;
  overflow-y: auto !important;
}

.modal > div {
  max-width: calc(100vw - 1.5rem);
}

.modal div.renamefile {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1em;
  height: auto;
  width: 420px;
}

.modal div.renamefile h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
}

.deletefile div.renamefile {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  position: relative;
  flex-direction: column;
  padding-bottom: 1em;
  height: auto;
  width: 420px;
}

.modal div.renamefile .closefile {
  cursor: pointer;
  top: -10px;
  position: absolute;
  right: -8px;
  z-index: 100;
}

.modal div.renamefile div {
  display: flex;
  flex-direction: column;
  margin-top: 1.8em;
  width: 80%;
}

.deletefile div.renamefile div {
  margin-top: 1.8em;
  width: 80%;
}

.modal div.renamefile div input {
  box-shadow: inset rgba(0, 0, 0, 0.1) 0 1px 3px 0;
  border-radius: 3px;
  border: none;
  font-size: 0.875rem;
  padding: 1em 0.6em;
  width: 100%;
}

.modal .renamefile .header {
  background-color: #3281cb;
  color: #fff;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  text-align: left;
  font-weight: bold;
  margin-top: 0;
  padding: 0.8em 0.9em;
  width: 100%;
}

.modal div.renamefile div .error {
  color: #FC6D6C;
  font-size: 0.875rem;
  margin-top: 0.5em;
  text-align: left;
}

.modal div.renamefile div:last-child {
  display: flex;
  flex-direction: row;
  margin-top: 1.3em;
}

.modal div.renamefile .save span {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.8em;
  padding: 0.4em 1em !important;
}

.deletefile div.renamefile .save span {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.deletefile div.renamefile .save span:first-child {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.file-container h3 {
  display: flex;
  justify-content: space-between;
}

.file-container .fa {
  cursor: pointer;
}

.file-collaborators-container {
  display: flex;
  align-items: center;
  position: relative;
}

.file-collaborators-content {
  display: inline-flex;
  flex-direction: row;
  padding-left: 10px;
}

.single-collaborator {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(226, 232, 240, 1);
  color: rgba(113, 128, 150, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  cursor: default;
}

.single-collaborator-user {
  color: #1e6abb;
  margin-left: 5px;
  cursor: default;
  font-size: 13px;
}

.single-collaborator-user:hover + .assigned-to-others-layout {
  display: block;
}

.assigned-to-others-layout:hover {
  display: block;
}

.assigned-to-others-layout {
  display: none;
  position: absolute;
  top: 22px;
  left: -95px;
  border: 1px solid #fefefe;
  background-color: #fff;
  width: 200px;
  max-height: 180px;
  overflow-y: auto;
  padding: 10px 10px 0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.assigned-to-div {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 15px;
}

.assigned-to-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.single-user-initials {
  max-height: 40px;
  max-width: 40px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: rgba(226, 232, 240, 1);
  color: rgba(113, 128, 150, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.assigned-to-span {
  font-size: 13px;
  font-weight: bold;
  opacity: 0.7;
}

.breadcrumb-nav {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  line-height: 0;
  flex-wrap: wrap;
  line-height: 1rem;
}

.breadcrumb-nav .fa {
  font-size: 10px;
}

.breadcrumb-nav span {
  color: #677888;
  font-weight: 400;
  
}

.breadcrumb-nav span:last-of-type {
  color: #111;
  
}

.breadcrumb-nav span.show-cursor {
  cursor: pointer;
}

.breadcrumb-nav span.show-cursor:hover {
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin-left: 0.4em;
}

.breadcrumb-nav span:last-child {
  font-weight: bold;
  margin-left: 5px;
}

tr.no-hover {
  background: none !important;
  cursor: default !important;
}

.settings {
  position: relative;
}

.settings ul {
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  text-align: left;
  position: absolute;
  top: 30px;
  left: -40px;
  z-index: 100;
  width: 230px;
}

.settings ul li a {
  display: block;
  font-size: 15px;
  padding: 0.7em 0.6em;
  text-decoration: none;
  color: rgb(61, 61, 61);
  border-bottom: 1px solid rgba(51, 51, 51, 0.041);
}

.settings ul li a:hover {
  background: #333;
  color: #fff;
}

.menu-body {
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  position: fixed;
  top: 0;
  text-align: left;
  width: 100%;
}

.menubody {
  text-align: left;
}

.menubody .menu {
  background: rgb(8, 41, 97);
  height: 100vh;
  padding: 0.5em 0.8em;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
}

.menubody .menu .user {
  color: #fff;
  margin-top: 3em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menubody .menu li a {
  color: #f4f1f2;
}

.menubody .menu li a:hover {
  text-decoration: none;
}

.menubody .menu .user span {
  display: block;
}

.menubody .menu .user span .fa-user-circle {
  font-size: 60px;
}

.menubody .menu .user span:last-child {
  font-size: 20px;
  font-weight: 500;
  margin-top: 0.5em;
}

.menubody .menu strong {
  color: #cadcfc;
}

.menubody .menu .about span {
  display: block;
  color: #f1f1f1;
  text-transform: capitalize !important;
  font-size: 0.875rem;
  margin-top: -4px;
}

.menubody .menu .about {
  border-bottom: 1px solid rgba(26, 109, 253, 0.185);
  margin: 0.9em 0;
}

.menubody .menu .about li {
  margin-bottom: 0.6em;
}

.menubody .menu .crm {
  border-bottom: 1px solid rgba(1, 18, 47, 0.2);
  margin: 0.9em 0;
  padding-bottom: 0.9em;
}

.menubody .close {
  text-align: right;
}

.menubody .close {
  cursor: pointer;
}

.menubody .hideMenu {
  display: none;
}

.menubody .nav {
  color: #fff;
}

.menubody .nav li {
  padding: 0.6em 0;
}

.logout {
  cursor: pointer;
}

.update {
  background-color: #dededf;
  border-radius: 3px;
  color: #666;
  cursor: pointer;
  font-size: 12px;
  padding: 0.6em 0.4em;
}

.create-file .box .svg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1em;
}

.create-file .box .svg span {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.create-file .box select {
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: "Arial";
  font-size: 0.875rem;
  padding: 1em 0.3em;
  margin-bottom: 5px;
}

.create-file .phone-box {
  display: flex !important;
  flex-direction: row !important;
}

.create-file .phone-box div:first-child {
  width: 140px !important;
}

.create-file .phone-box div:first-child select {
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: "Arial";
  font-size: 0.875rem;
  padding: 1em 0.3em;
  margin-bottom: 5px;
  width: 140px;
}

.create-file .phone-box div:last-child {
  margin-left: 10px;
  width: 100%;
}

.create-file .phone-box div label {
  display: inline-block;
  margin-bottom: 15px;
}

.btn .completed {
  color: #01bc4c;
  display: flex;
  align-items: center;
  margin-left: 1em;
}

.pic {
  display: none;
}

.trigger_pic {
  cursor: pointer;
}

.startupload {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100%;
  width: 100%;
}

.startupload .modal {
  background-color: #fff;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  height: 200px;
  width: 420px;
}

.startupload .progress-bar {
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 0.875rem;
  border-radius: 50px;
  width: 80%;
}

.startupload .progress {
  background-color: #01bc4c;
  color: #fff;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: bold;
  height: 12px;
}

.startupload .retry {
  background-color: #FC6D6C;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  padding: 0.8em 0.9em;
  margin-top: 0.6em;
  width: 100px;
}

.startupload .error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.addcomment {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 0 15px;
  z-index: 10;
}

.commentbox {
  background: #f3f5f7;
  border: 1px solid #f9f9f9;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  height: fit-content;
  width: 420px;
}

.comment-header {
  background-color: #fff;
  min-height: 82px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
}

.comment-header .filename {
  flex-grow: 1;
}

.comment-header .filename h3 {
  font-size: 20px;
  color: #000;
  line-height: 24px;
  font-family: "inter";
  font-weight: 600;
  text-align: left;
  margin-bottom: 0;
}

.comment-header .filename p {
  font-size: 0.875rem;
  color: #677888;
  line-height: 24px;
  font-family: "inter-medium";
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}

.commentbox .box {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 1em;
}

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

.commentbox .close .success {
  font-size: 13px;
  font-weight: bold;
  color: #01bc4c;
  margin-top: 0.6em;
}

.commentbox .close .close-box {
  position: absolute;
  top: 0;
  right: -10px;
  cursor: pointer;
}

.commentbox .box label {
  text-align: left;
  margin-bottom: 0.6em;
  font-size: 0.875rem;
}

.commentbox .box textarea {
  border: 1px solid #d3d2d2;
  border-radius: 2px;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  padding: 0.5em;
  font-size: 0.875rem;
}

.commentbox .box .error {
  color: #FC6D6C;
  font-size: 0.875rem;
  text-align: left;
}

.commentbox .box .btn {
  background-color: #1e6abb;
  cursor: pointer;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  padding: 1em;
  margin-top: 0.6em;
}

.commentbox .box .loader {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.commentbox .box .top {
  position: relative;
  padding: 0 8px 8px;
}

.commentbox .box .top .cancel {
  color: #012e54;
  font-weight: normal;
  cursor: pointer;
  font-size: 0.875rem;
}

.commentbox .box .top .textfield {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 4px 1rem rgba(171, 179, 188, 0.21);
}

.commentbox .box .top .comment {

  border-radius: 3px;
  padding: 1.1rem 1rem;
  font-size: 12px;
  text-align: left;
  resize: none;
  word-break: break-word;
  flex-grow: 1;
  box-shadow: 0px 4px 16px 0px #ABB3BC36;
  min-height: 3.5rem;
  padding-bottom: 1rem;

}

.commentbox .box .top div.error {
  border: 1px solid #FC6D6C;
}

.commentbox .box .top .comment[placeholder]:empty:before {
  content: attr(placeholder);
  color: rgb(201, 201, 201);
}

.commentbox .box .top .comment[placeholder]:empty:focus:before {
  content: "";
}

.commentbox .box .top .fint {
  color: #d6d4d4;
}

.commentbox .box .top .send {
  cursor: pointer;
  position: absolute;
  right: 15px;
}

.comments {
  flex-grow: 1;
  height: auto;
  padding: 1rem 0;
}

.comment_preview .comments h3 {
  font-size: 0.875rem;
}

.comments .no-comment {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comments .comment-section h3 {
 
 font-weight: 600;
 font-size: 1.125rem;
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
 
}

.comments .comment-section .view_all {
  cursor: pointer;
  font-size: 12px;
  font-weight: normal;
  margin-top: 0.3em;
  color: #2A7BB1;
  font-weight: 500;
}

.comments .comment-section .comment {
  display: flex;
  margin-bottom: 0.5em !important;
}

pre {
  font-size: inherit !important;
  color: inherit !important;
  border: initial !important;
  padding: 0 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  margin-bottom: 0 !important;
}

.comments .comment-section .comment-text {
  margin-left: 0.8em;
  width: 100%;
}

.comment-text .reply-btn {
  font-size: 12px;
  cursor: pointer;
}

.comments .comment-section .comment-text .name {
  display: flex;
  font-size: 11px;
  margin-bottom: 0.5em;
  justify-content: space-between;
  align-items: center;
}

.comments .comment-section .comment-text .name span.date {
  margin-left: 0.8em;
  margin-top: 0.1em;
  font-size: 9px;
}

.comments .comment-section .comment-text .name span.edit {
  cursor: pointer;
  color: #069;
  font-size: 12px;
  /* margin-left: 5em; */
}

.comments .comment-section .comment-text .name span.edit:hover {
  text-decoration: underline;
}

.comments .comment-section .comment-text .comment {
  font-size: 0.875rem;
  word-break: break-word;
  word-wrap: break-word;
}

.addcomment .comments .loader {
  display: flex;
  flex-direction: column;
}

.addcomment .comments .loader span {
  font-size: 12px;
}

.addcomment .no-comment {
  text-align: left;
  margin: 1em 0;
  font-size: 13px;
}

.addcomment .comment-text {
  text-align: left;
  margin-top: 10px;
  height: 340px;
  overflow-y: auto;
}

.addcomment .comment-text .body {
  display: flex;
  flex-direction: row;
  margin-bottom: 1rem;
}

.addcomment .comment-text .body .profile-pix {
  width: 40px;
  height: 40px;
}

.addcomment .comment-text .body .profile-pix img {
  border-radius: 50%;
  max-width: 100%;
  max-height: 100%;
}

.addcomment .comment-text .body .text .name {
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 4px;
}

.addcomment .comment-text .body .text {
  margin-left: 8px;
  width: fit-content;
  max-width: calc(100% - 2.5rem);
}

.addcomment .comment-text .body .text .top {
  background: #f9f9f9;
  border-radius: 3px;
  padding: 0.5rem 1rem;
}

.addcomment .comment-text .body .text .comment {
  font-size: 0.875rem;
}

.commentbox .more {
  text-align: left;
}

.more-comments {
  cursor: pointer;
  color: #0d4fc2;
  font-size: 13px;
  font-weight: 600;
}

.addcomment .comment-text .body .text .footer {
  font-size: 12px;
  display: flex;
  margin-top: 0.3em;
  align-items: center;
  padding-left: 10px;
}

.addcomment .comment-text .body .text .footer span:first-child {
  color: #01356b;
  cursor: pointer;
}

.addcomment .comment-text .body .text .footer .delete-comment {
  color: #FC6D6C;
  cursor: pointer;
}

.addcomment .comment-text .body .text .footer span.date {
  font-size: 10px;
  margin-left: 1em;
}

.choose-plan table {
  margin: 0 auto;
  width: 80%;
}

.choose-plan table thead th {
  background: #0071e0;
  border-right: 2px solid #fff;
  color: #fff;
}

.choose-plan table thead th:nth-child(1) {
  background: rgb(0, 176, 80);
}

.choose-plan table thead th:nth-child(2) {
  background: rgb(0, 176, 240);
}

.choose-plan table thead th:nth-child(3) {
  padding: 0;
}

.choose-plan table thead th table {
  background: rgb(0, 112, 192);
  width: 100%;
}

.choose-plan table tbody tr:nth-child(odd) {
  background: #ccc;
  color: #333;
}

.choose-plan table tbody tr:nth-child(even) table tr {
  background: none;
  color: #333;
}

.choose-plan table tbody tr td {
  padding: 0.6em 0.6em;
  font-size: 0.875rem;
  border-right: 2px solid #fff;
}

.choose-plan table tbody tr td table tr td {
  border-right: none;
}

.choose-plan table tbody tr td table {
  margin: 0;
  width: 100%;
}

.choose-plan table .continue-button {
  cursor: pointer;
  background-color: #3382c7;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px 0;
  padding: 0.8em 2em;
  text-decoration: none;
}

.choose-plan table .continue-button-trial {
  cursor: pointer;
  background-color: #FC6D6C;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 3px 6px 0;
  padding: 0.8em 2em;
  text-decoration: none;
  margin-top: 1em;
}

.choose-plan table thead th table thead tr:first-child th:nth-child(1) {
  background: none;
  border-right: none;
  padding: 0.9em 0;
}

.choose-plan table thead th table thead tr:last-child th:nth-child(1) {
  background: rgb(1, 80, 133);
  border-right: 2px solid #fff;
  padding: 0.9em 0;
}

.choose-plan table thead th table thead tr th:nth-child(2) {
  background: #011436;
  border-right: none;
  padding: 0.9em 0;
}

.add-button {
  position: absolute;
  bottom: 20px;
  right: 30px;
}

.storage-premium {
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0px 6px 0;
  padding: 0.6em 1.2em;
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.storage-premium .go-premium {
  display: flex;
  flex-direction: column;
}

.storage-premium .go-premium span:first-child svg {
  cursor: pointer;
}

.storage-premium .go-premium span:first-child {
  display: flex;
  justify-content: space-between;
}

.storage-premium .go-premium span:last-child {
  font-size: 0.875rem;
}

.add-button .btn {
  align-items: center;
  background: #022b72;
  border-radius: 100%;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  height: 42px;
  justify-content: center;
  width: 42px;
  position: absolute;
  top: -60px;
  right: -4px;
}

.add-button .btn:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 2px;
}

.add-button .dropdown {
  background: #fff;
  border-radius: 4px;
  border: 1px #f1f1f1 solid;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px 2px;
  font-size: 1rem;
  margin-top: 0.2em;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  z-index: 1000;
}

.add-button .dropdown ul {
  margin-bottom: 0;
}

.add-button .btn i {
  color: #fff;
}

.explore a {
  color: #1e6abb;
  font-weight: bold;
  text-decoration: none;
}

.add-button {
  width: 230px;
}

.add-button .dropdown {
  width: 100%;
}

.add-button .dropdown ul {
  width: 100%;
}

.add-button .dropdown ul li {
  cursor: pointer;
  padding: 0.8em 1em;
}

.add-button .dropdown ul li .fa-file-word {
  color: #069;
  font-size: 18px !important;
}

.add-button .dropdown ul li .fa-file-excel {
  color: #01bc4c;
  font-size: 18px !important;
}

.add-button .dropdown ul li .fa-file-powerpoint {
  color: #FC6D6C;
  font-size: 18px !important;
}

.add-button .dropdown ul li .fa-folder {
 /* color: #fbd348; */
  font-size: 18px !important;
}

.add-button .dropdown ul li .fa-cloud-upload-alt {
  font-size: 18px !important;
}

.add-button .dropdown ul li:hover {
  background: #f9f9f9;
}

.add-button .dropdown ul li.line-div {
  background: #f1f1f1;
  height: 1px;
  padding: 0 !important;
}

.modal div.deletefile {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  position: relative;
  flex-direction: column;
 
  padding-bottom: 1em;
  height: auto;
  width: 520px;
}

.modal div.deletefile .closefile {
  cursor: pointer;
  top: 5px;
  position: absolute;
  right: 5px;
  z-index: 100;
}

.modal div.deletefile div {
  margin-left: 2em;
  text-align: left;
  width: 80%;
}

.modal .deletefile .header {
  /*background-color: #3281cb;*/
  color: #000;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  text-align: left;
  font-weight: bold;
  margin-top: 0;
  padding: 1em 0;
  width: 100%;
}

.modal div.deletefile div .error {
  color: #FC6D6C;
  font-size: 0.875rem;
  margin-top: 0.5em;
  text-align: left;
}

.modal div.deletefile div:last-child {
  display: flex;
  flex-direction: row;
  margin-top: 1.3em;
}

.modal div.deletefile .save span {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.modal div.deletefile .save span {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.modal div.deletefile .save span:last-child {
  cursor: pointer;
  background-color: #FC6D6C;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.modal div.permanent {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 3em 0;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 30px 2px;
  height: auto;
  width: 420px;
}

.blockuser {
   background: rgba(14, 29, 47, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 16000;
  width: 100%;
}

.blockuser .cant_create {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 10px 1px;
  text-align: center;
  padding: 4em 3em 2em;
  width: 490px;
  position: relative;
}

.blockuser .cant_create {
  padding-bottom: 3em;
}

.blockuser .cant_create {
  padding: 3em !important;
}

.blockuser .cant_create .closewarning {
  cursor: pointer;
  position: absolute !important;
  top: 10px;
  right: 10px;
}

.blockuser .cant_create .close-box {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.blockuser .cant_create .text {
  line-height: 18px;
}

.close-upload {
  cursor: pointer;
}

.play-video {
   background: rgba(14, 29, 47, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 16000;
  width: 100%;
}

.play-video .video-loader {
  background: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 390px;
  height: 190px;
  padding: 1em;
}

.view-file {
  background: rgba(14, 29, 47, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 16000;
  width: 100%;
}

.view-file .header {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.88+0,0+100 */
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  height: 60px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  padding: 0 2em;
  top: 0;
  align-items: center;
  font-weight: 600;
}

.view-file .header .left {
  display: flex;
  color: #fff;
  margin-top: 10px;
}

.view-file .header .left span:last-child {
  /* margin-top: 4px; */
}

.view-file .header .left .close {
  cursor: pointer;
  margin-right: 20px;
}

.view-file .header .right {
  display: flex;
  color: #fff;
  margin-top: 10px;
}

.view-file .header .right span {
  cursor: pointer;
  margin-left: 18px;
}

.view-file .footer {
  background: #000;
  border-radius: 3px;
  position: absolute;
  display: flex;
  bottom: 18px;
  padding: 0.5em 0.9em;
}

.view-file .footer span {
  cursor: pointer;
  margin-left: 0.8em;
}

.view-file .footer span:first-child {
  margin-left: 0;
}

.view-file .img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1em;
  height: 80%;
  width: 100%;
}

.view-file .img-holder {
  height: 80vh;
}

.view-file .img-holder .btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #fff;
  right: -1.9rem;
  top: -1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.view-file .img span {
  cursor: pointer;
  display: inline;
  
}

.view-file .img img {
  max-width: 100%;
  max-height: 100%;
}

.copybox {
  position: fixed;
  display: flex;
  background: rgba(14, 29, 47, 0.54);
  top: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 10000;
}

.closebox {
  color: #fff;
  position: absolute;
  font-size: 18px;
  cursor: pointer;
  top: -5px;
  right: -2px;
}

.copybox .thebox {
  position: relative;
}

.copybox .box {
  background: #fff;
  border-radius: 5px;
  height: 370px;
  padding: 0 !important;
  width: 490px;
}

.copybox .conflict {
  background: #fff;
  border-radius: 5px;
  height: 180px !important;
  padding: 0 !important;
  width: 490px;
}

.copybox .box .thebox h3 {
  background: rgb(15, 89, 248);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 1em 0.9em;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
}

.copybox .box .thebox h3 .fa {
  font-size: 12px !important;
  cursor: pointer;
}

.copybox .box .load_wait {
  margin-top: 6em;
  text-align: center;
}

.copybox .box .thebox h3 strong {
  color: #fff;
}

.copybox .theboxtop .body .load {
  display: block;
  height: 250px;
  padding-top: 5em;
  text-align: center;
}

.copybox .theboxtop .body ul {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
  height: 250px;
  overflow-y: auto;
}

.copybox .theboxtop .body ul li {
  cursor: pointer;
  padding: 0.4em 0.3em 0.4em 0.3em;
}

.copybox .theboxtop .body ul li:hover {
  color: #fff;
  background: #444;
}

.copybox .theboxtop .body ul li .fa-folder {
  color: #fccc1f;
}

.copybox .theboxtop .body ul li .btu {
  cursor: pointer;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
  height: 30px;
  width: 30px;
}

.copybox .theboxtop .body ul li .btu:hover {
  background: rgb(45, 134, 252);
  color: #fff;
  border-radius: 3px;
}

.copybox .theboxtop .body ul li .btu .fa-chevron-right {
  font-size: 10px;
}

.copybox .theboxtop .body ul li.folder_blue .fa-folder {
  color: #4bc0fa !important;
}

.copybox .theboxtop .body ul li.selected_folder {
  color: #fff;
  background: #444;
}

.copybox .theboxtop .foot {
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  padding-left: 20px;
  height: 60px;
}

.copybox .theboxtop .foot p .btn-cancel {
  border-radius: 3px;
  background: #FC6D6C;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  padding: 0.6em 1em;
}

.copybox .theboxtop .foot p .btn-continue {
  border-radius: 3px;
  background: #069;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  margin-left: 0.6em;
  padding: 0.6em 1em;
}

.copybox .theboxtop .foot p .disable_continue {
  cursor: not-allowed;
}

.copybox .theboxtop .foot p .enable_continue {
  cursor: pointer;
}

.file_conflict p:first-child {
  padding: 20px;
  text-align: left !important;
}

.file_conflict p.foot .btn-continue {
  border-radius: 3px;
  background: #069;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  margin-left: 0.6em;
  padding: 0.6em 1em;
}

.file_conflict p.foot .btn-cancel {
  border-radius: 3px;
  background: #FC6D6C;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  padding: 0.6em 1em;
}

.view-file .txt {
  background: #fff;
  height: 100%;
  padding: 5em 1em;
  width: 900px;
  text-align: left;
}

.view-file .txt .txt-content {
  font-size: 1rem;
  height: 100%;
  overflow-y: auto;
}

.fdepartment .added-department {
  background: #fff;
  padding: 0;
  margin-left: 2em;
  text-align: left;
  border: 1px solid #f1f1f1;
  height: 100%;
  overflow-x: auto;
  width: 380px;
}

.fdepartment .added-department h3 {
  background: #0d538d;
  color: #fff;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
  padding: 0.8em 2em;
  font-size: 18px;
  font-weight: bold;
}

.fdepartment .added-department ul {
  padding: 0 2em;
}

.fdepartment .added-department ul li {
  margin-bottom: 1em;
}

.fdepartment .added-department ul li div {
  display: flex;
  justify-content: space-between;
}

.fdepartment .added-department ul li div .action span {
  cursor: pointer;
}

.fdepartment .added-department ul li div input {
  border: 1px solid #f1f1f1;
  padding: 0.5em 0.3em;
}

.fdepartment .added-department ul li div .action2 {
  padding-top: 0.6em;
}

.fdepartment .added-department ul li div .action2 span {
  cursor: pointer;
}

.add-employee {
  display: flex;
  flex-direction: row;
}

.add-employee .added-user {
  background: #fff;
  height: auto;
  overflow-y: auto;
  margin-top: 3em;
  margin-left: 1em;
  text-align: left;
  width: 380px;
}

.add-employee .added-user h3 {
  background: rgb(107, 175, 243);
  border-bottom: 4px solid #0071e0;
  color: #fff;
  font-size: 20px;
  padding: 0.5em 1em;
}

.add-employee .added-user ul li {
  display: flex;
  flex-direction: row;
  padding: 0.9em 1em;
}

.add-employee .added-user ul li {
  background: #fbfbfb63;
}

.add-employee .added-user ul li:nth-child(even) {
  background: #f9f9f9;
}

.add-employee .added-user ul li .data {
  display: flex;
  justify-content: space-between;
  margin-left: 0.8em;
  flex-grow: 3;
}

.add-employee .added-user ul li .data div {
  display: flex;
  flex-direction: column;
}

.add-employee .added-user ul li .data div:first-child {
  flex-grow: 3;
}

.add-employee .added-user ul li .data div .name {
  font-size: 20px;
}

.add-employee .added-user ul li .data div .dept {
  font-size: 12px;
  margin-top: 0.4em;
}

.add-employee .added-user ul li .data .action span {
  cursor: pointer;
}

.edit-user {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100%;
  width: 100%;
}

.edit-user .add-user {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f9f9f9;
  display: flex;
  flex-direction: column;
  padding: 2em 2em;
  width: 480px;
}

.edit-user .add-user h3 {
  font-weight: bold;
  text-align: left;
  font-size: 20px;
  margin-bottom: 1em;
}

.edit-user .add-user form .input {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.8em;
}

.edit-user .add-user form .input div {
  text-align: left;
}

.edit-user .add-user form .input div:last-child {
  margin-left: 0.8em;
}

.edit-user .add-user form .not {
  flex-direction: column;
}

.edit-user .add-user form label {
  font-weight: bold;
  font-size: 15px;
  text-align: left;
  margin-bottom: 0.5em;
}

.edit-user .add-user form input {
  background-color: rgb(250, 250, 250);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: left;
  padding: 0.9em 1em;
}

.edit-user .add-user form .input select {
  background-color: rgb(250, 250, 250);
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  text-align: left;
  padding: 0.9em 1em;
  outline-style: none;
}

.edit-user .add-user form .not div:last-child {
  margin-left: 0;
}

.edit-user .add-user form .not input {
  padding: 0.6em 1em;
}

.edit-user .add-user form div.submit {
  margin-top: 2em;
  display: flex;
  flex-direction: row;
}

.edit-user .add-user form div.submit span {
  background-color: #0071e0;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 2px 0;
  border-radius: 3px;
  font-weight: bold;
  border: none;
  padding: 1.2em 5em;
  color: #fff;
}

.edit-user .add-user form div.submit span:last-child {
  background-color: rgb(209, 15, 5);
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 2px 0;
  border-radius: 3px;
  font-weight: bold;
  border: none;
  padding: 1.2em 5em;
  color: #fff;
}

.change-password {
  text-align: left !important;
}

.change-password input {
  text-align: left !important;
}

.change-password .skip {
  display: block;
  text-align: center !important;
  font-size: 1rem !important;
}

.request-more-space {
  color: #01356b;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: bold;
}

.header .profile {
  position: relative;
}

.header .profile .userdropdown {
  background: #fff;
  border: 2px solid #f1f1f1;
  position: absolute;
  top: 40px;
  right: 0;
  text-align: left;
  width: 246px;
}

.header .profile .userdropdown li {
  justify-content: space-between;
  display: flex;
  padding: 0.4em 0.9em;
  font-size: 13.5px;
  border-bottom: 1px solid #f1f1f1;
  color: rgba(74, 85, 104, 1);
}

.top-header .profile {
  position: relative;
}

.top-header .profile .userdropdown {
  background: #fff;
  border: 2px solid #f1f1f1;
  position: absolute;
  top: 30px;
  right: 0;
  text-align: left;
  width: 246px;
  z-index: 100000000000;
}

.top-header .profile .userdropdown li {
  justify-content: space-between;
  display: flex;
  padding: 0.8em 0.9em;
  font-size: 13.5px;
  border-bottom: 1px solid #f1f1f1;
  color: rgba(74, 85, 104, 1);
}

.collapsable {
  flex-direction: column !important;
}

.collapsable p {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}

.collapsable ul {
  margin-top: 0.8em;
}

.collapsable ul li {
  border-bottom: 1px solid #fdfdfd1c;
  padding: 0.5em 0.6em !important;
}

.collapsable ul li:last-child {
  border-bottom: none !important;
}

.collapsable ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.collapsable ul li a i {
  margin-right: 12px;
}

.pic-house {
  display: flex;
  align-items: center;
  justify-content: start !important;
}

.header .profile .userdropdown li a {
  color: rgba(74, 85, 104, 1);
}

.header .profile .userdropdown li a:hover {
  text-decoration: none;
  color: #4a5583;
}

.top-header .profile .userdropdown li a {
  color: rgba(74, 85, 104, 1);
}

.top-header .profile .userdropdown li a:hover {
  text-decoration: none;
  color: #4a5583;
}

.header .profile > div {
  color: #fff;
}

.header .profile div.profile-name strong {
  color: #fff;
}

.header .profile-pic {
  height: 2rem;
  width: 2rem;
}

.header .profile-pic img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.top-header .profile-pic {
  display: inline-block;
  height: 2rem;
  width: 2rem;
}

.top-header .profile-pic img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.trigger_pic_self {
  display: inline-block;
  cursor: pointer;
  height: 63px;
  width: 63px;
  margin-bottom: 0.9em;
}

.trigger_pic_self img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.selected_files {
  font-size: 0.875rem;
}

.selected_files li {
  display: flex;
  justify-content: left;
  align-items: flex-start;
  line-height: normal;
  margin-bottom: 0.2em;
}

.browsefolder {
  height: 260px;
  width: 90% !important;
  overflow-x: auto;
}
.browsefolder .no-user {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.selected_folders {
  font-size: 0.875rem;
  margin-top: 1em;
}

.selected_folders li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: normal;
  padding: 0.5em 0.6em;
}

.selected_folders li:hover {
  background: #fcfcfc;
}

.selected_folders .highlighted {
  background: #eeecec;
  cursor: pointer;
  padding: 0.5em 0.6em;
  width: 100%;
}

.selected_folders li > span {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.selected_folders li > span:first-child {
  width: 80%;
}

.selected_folders li > span:first-child .dir {
  margin-left: 0.4em;
  margin-bottom: 0 !important;
  font-size: 1rem;
}

.selected_folders li > span:last-child {
  cursor: pointer;
  margin-bottom: 0 !important;
}

.browse_folder {
  /* width: 26rem !important; */
  max-width: 65vw;
}

.browse_folder .header {
  margin-left: 0 !important;
  background: #fff;
  color: #111;
  padding-left: 2em !important;
}

.browse_folder .header h3 {
  color: #111;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 20px;
}

.browse_folder .header h3 .back {
  margin-top: 0.2em;
  margin-right: 0.5em;
  cursor: pointer;
}

.modal div.browse_folder .closefile {
  top: 18px !important;
  right: 22px !important;
}

.modal div.browse_folder .save span {
  font-size: 12px !important;
  padding: 0.6em 0.8em !important;
}

.modal div.browse_folder .save span:last-child {
  cursor: pointer;
  background-color: #1e6abb;
  border-radius: 3px;
  border: none;
  color: #fff;
  font-size: 0.875rem;
  margin-right: 0.8em;
  padding: 0.8em 1em;
}

.copy_box {
  position: fixed;
  display: flex;
  background: rgba(14, 29, 47, 0.54);
  top: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  z-index: 10000;
}

.closebox {
  color: #fff;
  position: absolute;
  font-size: 18px;
  cursor: pointer;
  top: -5px;
  right: -2px;
}

.copy_box .thebox {
  position: relative;
}

.copy_box .box {
  background: #fff;
  border-radius: 5px;
  height: 370px;
  padding: 0 !important;
  width: 490px;
}

.copy_box .conflict {
  background: #fff;
  border-radius: 5px;
  height: auto !important;
  padding: 0 !important;
  width: 490px;
}

.copy_box .box .thebox h3 {
  background: rgb(15, 89, 248);
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  padding: 0.6em 0.9em;
  display: flex;
  font-size: 18px;
  justify-content: space-between;
  width: 100%;
  color: #fff;
}

.theboxtop .file_conflict p {
  margin-bottom: 0 !important;
}

.copy_box .box .thebox h3 .fa {
  font-size: 12px !important;
  cursor: pointer;
}

.copy_box .box .load_wait {
  margin-top: 6em;
  text-align: center;
}

.copy_box .box .thebox h3 strong {
  color: #fff;
}

.copy_box .theboxtop .body .load {
  display: block;
  height: 150px;
  text-align: center;
}

.copy_box .theboxtop .body ul {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
  height: 250px;
  overflow-y: auto;
}

.copy_box .theboxtop .body ul li {
  cursor: pointer;
  padding: 0.4em 0.3em 0.4em 0.3em;
}

.copy_box .theboxtop .body ul li:hover {
  color: #fff;
  background: #444;
}

.copy_box .theboxtop .body ul li .fa-folder {
  color: #fccc1f;
}

.copy_box .theboxtop .body ul li .btu {
  cursor: pointer;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -4px;
  height: 30px;
  width: 30px;
}

.copy_box .theboxtop .body ul li .btu:hover {
  background: rgb(45, 134, 252);
  color: #fff;
  border-radius: 3px;
}

.copy_box .theboxtop .body ul li .btu .fa-chevron-right {
  font-size: 10px;
}

.copy_box .theboxtop .body ul li.folder_blue .fa-folder {
  color: #4bc0fa !important;
}

.copy_box .theboxtop .body ul li.selected_folder {
  color: #fff;
  background: #444;
}

.copy_box .theboxtop .foot {
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  padding-left: 20px;
  margin-bottom: 0;
  height: 60px;
}

.copy_box .theboxtop .foot p .btn-cancel {
  border-radius: 3px;
  background: #FC6D6C;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  padding: 0.6em 1em;
}

.copy_box .theboxtop .foot p .btn-continue {
  border-radius: 3px;
  background: #069;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  margin-left: 0.6em;
  padding: 0.6em 1em;
}

.copy_box .theboxtop .foot p .disable_continue {
  cursor: not-allowed;
}

.copy_box .theboxtop .foot p .enable_continue {
  cursor: pointer;
}

.file_conflict p:first-child {
  padding: 10px 15px;
}

.file_conflict p.foot .btn-continue {
  border-radius: 3px;
  background: #069;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  margin-left: 0.6em;
  padding: 0.6em 1em;
}

.file_conflict p.foot .btn-cancel {
  border-radius: 3px;
  background: #FC6D6C;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  padding: 0.6em 1em;
}

.player {
  width: 70%;
}

.pdf .img {
  height: 100%;
  width: 90%;
}

.copy_box .loading {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0px 20px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em 10em;
}

.copy_box .loading .btn_ok {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#207ce5+0,3a8de0+52,499bea+100 */
  background: #207ce5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #207ce5 0%, #3a8de0 52%, #499bea 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #207ce5 0%,
    #3a8de0 52%,
    #499bea 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #207ce5 0%, #3a8de0 52%, #499bea 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#207ce5', endColorstr='#499bea', GradientType=0);
  /* IE6-9 */
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 2px;
  cursor: pointer;
  color: #fff;
  padding: 0.5em 2.3em;
  border-radius: 3px;
}

.modal .loading {
  background: #fff;
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0px 20px 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  height: 160px;
  width: 420px;
}

.modal .loading .btn_ok {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#207ce5+0,3a8de0+52,499bea+100 */
  background: #207ce5;
  /* Old browsers */
  background: -moz-linear-gradient(top, #207ce5 0%, #3a8de0 52%, #499bea 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    #207ce5 0%,
    #3a8de0 52%,
    #499bea 100%
  );
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #207ce5 0%, #3a8de0 52%, #499bea 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#207ce5', endColorstr='#499bea', GradientType=0);
  /* IE6-9 */
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 2px;
  cursor: pointer;
  color: #fff;
  padding: 0.5em 2.3em;
  border-radius: 3px;
}

.close-btn {
  background: #0071e0;
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  padding: 0.6em 1em;
  width: 100px;
  margin-top: 1em;
}

.compressed {
  align-items: center;
}

.select-all {
  margin-bottom: 1em;
}

.select-all span {
  display: flex;
  font-size: 0.875rem;
  align-items: center;
  cursor: pointer;
}

.select-all span svg {
  margin-right: 0.5em;
}

.player .controls {
  display: flex;
  justify-content: flex-end;
  background-color: rgb(243, 243, 243);
  padding: 3px 7px;
}

.player .controls span {
  margin-right: 0.6em;
}

.player .controls span:last-child {
  margin-right: 0;
}

.user-card {
  background: #fff;
  border: 1px solid #f1f1f1;
  /*box-shadow: rgba(0, 0, 0, .4) 2px 1px 20px 1px;*/
  border-radius: 6px;
  font-family: "roboto-light", Arial, Helvetica, sans-serif;
  height: auto;
}

.user-card .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
}

.user-card .name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  padding: 0 1em;
  margin-bottom: 1em;
}

.user-card .stat {
  padding: 0 1em;
}

.user-card .stat .text {
  font-size: 0.875rem;
  font-weight: bold;
}

.user-card .btn-card {
  border-top: #f1f1f1 solid 1px;
  padding: 0 1em 0;
  margin-top: 0.9em;
}

.user-card .action {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.user-card .add-bar {
  border-left: 1px solid #f1f1f1;
}

.user-card .action span {
  padding: 0.6em 0;
}

.user-card .action span:first-child {
  margin-right: 0.4em;
}

.user-card .profile-pic {
  height: 64px;
  width: 64px;
}

.user-card .profile-pic img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.margin-bottom-10 {
  margin-bottom: 10px;
}

.margin-bottom-30 {
  margin-bottom: 30px;
}

.rounded-border {
  border-radius: 50px !important;
}

.padding-all {
  padding: 0.6em !important;
}

.create-file .adduser {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  text-align: left;
  height: auto;
  margin: 3em 0;
  padding: 2em;
  width: 480px;
}

.create-file .adduser label {
  font-size: 15px;
}

.create-file .adduser h3 {
  font-size: 20px !important;
}

.create-file .adduser .error {
  font-size: 0.875rem !important;
}

.selected_folders .profile-pic {
  height: 48px;
  width: 48px;
}

.selected_folders .profile-pic img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.serach-user-bar {
  border-radius: 3px;
  border: 1px solid #dfdcdc;
  padding: 0.6em 0.5em;
  color: #888;
  width: 80%;
}

.notification {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f1f1f1;
  position: absolute;
  text-align: left;
  right: -200px;
  top: 2rem;
  height: 320px;
  overflow-y: scroll;
  width: 380px;
  z-index: 100;
}

.notification li {
  cursor: pointer;
  display: flex;
  padding: 1em 0.8em;
}

.notification li:hover {
  background: rgb(252, 252, 252);
}

.notification .pro-pic {
  width: 64px;
  height: 64px;
}

.notification .pro-pic img {
  border-radius: 50%;
  max-width: 100%;
  max-height: 100%;
}

.notification .note-text {
  line-height: normal;
}

.bell {
  position: relative;
}

.notificattion-count {
  cursor: pointer;
  border-radius: 0.25rem;
  background: rgb(239,68,68);
  color: #fff;
  font-size: 11px;
  position: absolute;
  width:  0.75rem;
  height: 1rem;
  padding: 0 5px;
  top: -5px;
  right: 5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.notification .note-text p:first-child {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.notification .note-text p.unviewed {
  font-weight: bold;
}

.notification .note-text p:last-child {
  font-size: 12px;
  margin-bottom: 0;
}

.personal li {
  position: relative;
}

.share-notice {
  display: flex;
  background-color: rgb(239,68,68);
  color: #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 10px;
  border-radius: 50%;
}

.list {
  font-family: "roboto-light";
}

.list div h3 {
  font-size: 20px;
}

.choose-plan .top-plan h3 {
  font-family: "roboto-medium";
  font-weight: bold;
}

.auth {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.mx-datepicker {
  width: 100%;
}

.still-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.profile-pic {
  cursor: pointer;
}

.profile-name {
  cursor: pointer;
}

.avatar {
  width: 30px;
  height: 30px;
  background: linear-gradient(#1e6abb, #95bde0);
  color: #fff;
  border-radius: 5pc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browse-user .col-md-2 li {
  cursor: pointer;
  padding: 0.3em 0 0.3em 0.3em !important;
  margin: 0 !important;
}

.browse-user li:hover {
  background-color: #f9f9f9;
}

.browse-user .col-md-2 .defaultfolder li {
  margin-bottom: 8px;
}

.browse-user .public {
  margin-bottom: 0;
}

.browse-user .group {
  margin-bottom: 0;
}

.browse-user .messenger {
  margin-bottom: 0;
}

.browse-user .trash {
  margin-bottom: 0;
}

.no-files {
  width: 100%;
}

.list-view .browse_parent .ext span {
  display: flex;
  align-items: center;
}

.list-view .browse_parent .ext span img {
  display: block;
  max-width: 100%;
}

.list-view .browse_parent {
  word-break: break-all;
  min-height: 3.5rem;
}

.create-account .mobile {
  display: none;
}

.create-account .desk {
  display: flex;
}

.unread td {
  font-weight: bold;
}

.unread {
  background: rgba(253, 253, 253, 0.329);
}

@media all and (max-width: 980px) {
  .create-account .create-form .form {
    width: 50% !important;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }
}

@media all and (max-width: 736px) {
  .create-account .create-form {
    padding-left: 1em;
    padding-right: 1em;
  }

  .create-account .create-form .form {
    width: 100% !important;
  }

  .create-form .form {
    margin-bottom: 2em !important;
  }

  .create-account .desk {
    display: none !important;
  }

  .create-account .mobile {
    display: block !important;
    position: relative;
  }

  .create-account .mobile span {
    cursor: pointer;
  }

  .create-account .mobile ul {
    background-color: #011436;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    right: 0;
    width: 200px;
  }

  .create-account .mobile ul li a {
    display: block;
    padding: 0.8em 0;
  }

  .create-account .mobile ul li:last-child a {
    display: inline-block;
    padding-bottom: 0.8em;
  }

  .create-account .mobile ul li:last-child {
    padding: 0.8em 0;
  }

  .login .intro {
    display: none;
  }

  .login .intro img {
    max-width: 100%;
  }

  .login .form {
    width: 100%;
  }

  .login .form > div {
    width: 100%;
    padding: 3em 1em 0;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }
}

.selected-plan {
  box-shadow: rgba(0, 0, 0, 0.8) 0 3px 5px 0 !important;
}

.payment-analysis {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 540px) {
  .login .input:first-child div:first-child {
    margin-bottom: 1.5em;
  }
}

@media all and (max-width: 980px) {
  .create-account .create-form .form {
    width: 50% !important;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }
}

@media all and (max-width: 736px) {
  .create-account .create-form {
    padding-left: 1em;
    padding-right: 1em;
  }

  .create-account .create-form .form {
    width: 100% !important;
  }

  .create-form .form {
    margin-bottom: 2em !important;
  }

  .create-account .desk {
    display: none !important;
  }

  .create-account .mobile {
    display: block !important;
    position: relative;
  }

  .create-account .mobile span {
    cursor: pointer;
  }

  .create-account .mobile ul {
    background-color: #011436;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    right: 0;
    width: 200px;
  }

  .create-account .mobile ul li a {
    display: block;
    padding: 0.8em 0;
  }

  .create-account .mobile ul li:last-child a {
    display: inline-block;
    padding-bottom: 0.8em;
  }

  .create-account .mobile ul li:last-child {
    padding: 0.8em 0;
  }

  .login .intro {
    display: none;
  }

  .login .form {
    width: 100%;
  }

  .login .form > div {
    width: 100%;
    padding: 3em 1em 0;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }

  .security-question .setup .form {
    width: auto !important;
  }
}

@media only screen and (max-width: 480px) {
  .create-account .create-form {
    padding-left: 1em;
    padding-right: 1em;
  }

  .create-account .create-form .form {
    width: 100% !important;
  }

  .create-account .create-form > .form {
    margin-bottom: 2em !important;
  }

  .create-account .desk {
    display: none !important;
  }

  .create-account .mobile {
    display: block !important;
    position: relative;
  }

  .create-account .mobile span {
    cursor: pointer;
  }

  .create-account .mobile ul {
    background-color: #011436;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    right: 0;
    width: 200px;
  }

  .create-account .mobile ul li a {
    display: block;
    padding: 0.8em 0;
  }

  .create-account .mobile ul li:last-child a {
    display: inline-block;
    padding-bottom: 0.8em;
  }

  .create-account .mobile ul li:last-child {
    padding: 0.8em 0;
  }

  .login .intro {
    display: none;
  }

  .login .form {
    width: 100%;
  }

  .login .form > div {
    width: 100%;
    padding: 3em 1em 0;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }
}

@media (min-width: 768px) {
  .security-question .setup {
    width: 34%;
  }
  .security-question .setup-name {
    width: 34%;
  }
  .security-question .setup-name .form {
    width: 450px;
  }

  .fdepartment .setup-name {
    width: auto !important;
  }

  .fdepartment {
    flex-wrap: nowrap !important;
    width: 60% !important;
  }

  .fdepartment .form {
    width: auto !important;
  }

  .user-adding {
    flex-wrap: nowrap !important;
  }

  .update-body {
    background-color: #fff;
    border-radius: 4px;
    width: 56%;
    height: 700px;
    margin: -43px auto 0;
    padding: 32px;
  }

  .update-body-nav {
    border-right: 1px solid #ced8e1;
    height: 386px;
  }
}

@media (max-width: 575.98px) {
  #app {
    overflow-y: auto;
  }
  .security-question .setup-name .form {
    width: auto;
  }

  .user-adding {
    flex-wrap: wrap;
  }

  .fdepartment {
    padding: 0.6em;
  }

  .fdepartment .added-department {
    height: auto;
    width: 100%;
    margin-left: 0 !important;
  }

  .fdepartment {
    flex-wrap: wrap;
  }

  .setup .submit {
    flex-direction: column !important;
  }

  .setup .submit button:nth-child(1) {
    margin-right: 0 !important;
    margin-bottom: 10px;
  }

  .setup .submit button {
    flex-basis: auto !important;
  }

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

.added-user ul {
  padding-left: 0;
}

.user-adding .form {
  width: auto !important;
}

.give-header-height {
  height: 46.15px;
}

.bg-stand {
  background-color: #e8f0f6;
  overflow: hidden;
}

.new-header {
  background-color: #102e51;
  height: 8.5rem;
  font-family: inter;
}

.new-header .profile-pic {
  display: inline-block;
  height: 39px;
  width: 39px;
}

.new-header .profile-pic img {
  border-radius: 50%;
  height: 100% !important;
  width: 100% !important;
}

.new-header {
  padding-top: 1rem;
}

.new-header ul.url {
  text-align: left;
  margin-bottom: 0;
}

.new-header ul.url li {
  display: inline;
  font-size: 1rem;
}

.new-header ul li.active a {
  color: #fff !important;
  background-color: #13355e !important;
  border-radius: 50px !important;
  text-decoration: none !important;
}

.new-header ul.url li a {
  color: #677888;
  padding: 0.6em 0.9em;
  font-weight: 500;
}

.new-header ul.url li a:hover {
  color: #fff;
  background-color: #13355e;
  border-radius: 50px;
  text-decoration: none;
}

.new-header-top {
  margin-left: 0 !important;
  margin-right: 0 !important;
  display: flex;
  align-items: center;
}

.update-body {
  font-family: inter;
  text-align: left;
}

.update-body ul li {
  cursor: pointer;
  font-size: 13.5px;
  padding: 8px 0.875rem;
  display: flex;
  justify-content: start;
  align-items: center;
  border-radius: 4px;
  margin: 8px 0;
}

.update-body ul li:first-child {
  margin-top: 0;
}

.update-body ul li.active {
  background-color: #f2f7fc;
  color: #3f96d1;
}

.update-body ul li:hover {
  background-color: #f2f7fc;
}

.update-body .profile-title h4 {
  font-size: 18px;
  font-weight: bold;
}

.update-body input,
.update-body select {
  width: 100%;
}

.update-body .save-btn {
  color: #fff;
  cursor: pointer;
  background-color: #3f96d1;
  border-radius: 4px;
  padding: 12px 20px;
  font-size: 13px;
}

.update-body h6 {
  font-weight: bold;
}

.update-body p {
  font-size: 0.875rem;
  color: #5d696f;
}

.update-body label {
  font-size: 13.5px;
  font-weight: 500;
  color: #5d696f;
}

.update-body input {
  border-radius: 5px;
  border: 1px solid #96abbe;
  font-size: 13.5px;
  color: #677888;
  padding: 10px 8px;
}

.update-body select {
  border-radius: 5px;
  border: 1px solid #96abbe;
  font-size: 13.5px;
  color: #677888;
  padding: 11px 8px;
}

.update-body input::placeholder {
  color: #677888;
}

.top-navbar {
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  padding: 18px;
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -4rem;
  text-align: left;
  
}

.bg-stand .container-fluid {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.add-user-btn {
  background-color: #3f96d1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 132px;
  height: 46px;
  font-size: 0.875rem;
  border-radius: 10px;
  color: #fff;
}

.serach-user-box {
  background-color: #f2f7fc;
  color: #677888;
  border: none;
  width: 366px;
  height: 48px;
  border-radius: 10px;
  padding: 1rem;
}

.search-bar-icon {
  position: absolute;
  top: 1rem;
  right: 0.875rem;
}

.user-status-btn.active {
  background-color: #d9ecfa;
  border: 1px solid #3f96d1;
  box-sizing: border-box;
  border-radius: 8px;
  color: #3f96d1;
}

.viewtype.active {
  background-color: #d9ecfa;
  border: 1px solid #3f96d1;
  box-sizing: border-box;
  border-radius: 6px;
  padding: 7px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.viewtype {
  cursor: pointer;
}

.user-status-btn {
  background-color: #f2f7fc;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #677888;
  padding: 10px 18px;
}

.users-table table {
  width: 100%;
}

.users-table table tr td {
  background-color: #fff;
}

.users-table .default-pic {
  width: 56px !important;
  height: 56px !important;
  background: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #71809a;
  font-size: 3rem;
  font-weight: bold;
  box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  -moz-box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  border: 3px solid #ffffff;
}

.users-table .default-pic img {
  border-radius: 50%;
}

.users-list,
.top-navbar {
  font-family: "inter";
}

.users-list .row:first-child {
  height: 52px;
  align-items: center;
}

.users-list > .row:last-child {
  height: calc(100% - 52px);
  overflow-y: auto;
}

.users-list {
  background-color: #f3f5f7;
  height: 100%;
}

.user-list-cover {
  height: 90%;
}

.show-profile {
  background: rgba(14, 29, 47, 0.54);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  font-family: "inter";
  width: 100%;
  height: 100%;
}

.show-profile .content {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f9f9f9;
  height: 408px;
  overflow-y: auto;
  padding: 18px;
  text-align: left;
  width: 61rem;
  overflow-y: auto;
}

.show-profile .content.content-archived {
  height: 366px;
}

.view-user-files {
  display: inline-flex;
  background-color: #3f96d1;
  color: #fff;
  border-radius: 8px;
  font-size: 0.875rem;
  width: 178px;
  height: 48px;
  justify-content: center;
  align-items: center;
}

.view-user-files:hover {
  color: #fff;
  text-decoration: none;
}

.user-file-stats {
  border-top: 1px solid #ced8e1;
  padding-top: 2em;
}

.user-file-stats .col {
  height: 50px;
}

.user-file-stats .col h5 {
  color: #111111;
  font-weight: bold;
  font-size: 20px;
}

.user-file-stats .col p {
  color: #677888b5;
  font-size: 0.875rem;
  margin-bottom: 6px;
}

.user-file-stats .col:nth-child(1),
.user-file-stats .col:nth-child(2),
.user-file-stats .col:nth-child(3) {
  border-right: 1px solid #ced8e1;
}

.atn-btn {
  padding: 7.5px 8px;
  border: 1px solid #a9bbcc;
  border-radius: 4px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.atn-btn.edit {
  border: 1px solid #3f96d1;
  color: #3f96d1;
  font-size: 0.875rem;
  padding: 5.4px 18px;
}

.grid-user-box .photo {
  width: 96px;
  height: 96px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  -moz-box-shadow: 0px 0px 10px 0px rgba(97, 96, 96, 0.24);
  margin-top: -50px;
  position: relative;
}

.grid-user-box .photo .default-pic {
  width: 100% !important;
  height: 100% !important;
  background: #e2e8f0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #71809a;
  font-size: 3rem;
  font-weight: bold;
}

.grid-user-box .photo .default-pic img {
  border-radius: 50%;
}

.user-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 15px;
  height: calc(100% - 52px);
  overflow-y: auto;
}

.grid-user-box {
  background-color: #fff;
  box-shadow: 0px 4px 18px rgba(145, 157, 160, 0.17);
  border-radius: 8px;
  width: 100%;
  height: 284px;
  position: relative;
  margin-top: 80px;
}

.grid-user-box .user-badge {
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 4px;
  position: absolute;
  bottom: -18px;
}

.grid-user-box .edit-pen {
  cursor: pointer;
  position: absolute;
  top: 18px;
  right: 25px;
}
.grid-user-box .user-badge.active {
  background-color: #e2f8ec;
  color: #40d886;
  right: 15px;
}
.grid-user-box .user-badge.archived {
  background-color: #e8f0f6;
  color: #677888;
  right: 6px;
}
.grid-user-box .user-badge.blocked {
  background-color: #ffebeb;
  color: #fc6d6c;
  right: 10px;
}

.grid-user-box .name {
  margin-top: 1.8em;
}

.grid-user-box .name h4 {
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

.grid-user-box .name h4 span {
  font-weight: normal;
}

.grid-user-box .dept {
  color: #5d696f;
  font-size: 15px;
}

.grid-user-box .stat {
  margin-top: 2em;
}

.grid-user-box .stat p {
  margin-bottom: 0;
}

.user-atn-btn {
  margin-top: 2.8em;
}

.user-atn-btn > span:nth-child(1) {
  cursor: pointer;
  border-right: 1px solid #ced8e1;
  padding: 2px 15px;
  display: inline-flex;
  align-items: center;
}

.user-atn-btn > span:nth-child(2) {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 2px 15px;
}

.user-atn-btn > span:nth-child(1) span {
  color: #677888;
  font-size: 0.875rem;
}

.user-atn-btn > span:nth-child(2) span {
  color: #fc6d6c;
  font-size: 0.875rem;
}

.grid-user-box .stat span {
  font-size: 0.875rem;
}

.create-user {
  background: rgba(14, 29, 47, 0.54);
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}

.create-user .adduser {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 1.8em;
  text-align: left;
  position: relative;
  height: auto;
  width: 502px;
  font-family: "inter-medium";
}

.create-user .adduser input {
  background-color: #fff !important;
  border: 1px solid #a7b9cb !important;
  border-radius: 8px !important;
  padding: 1.2em 0.9em !important;
  font-family: "inter";
  font-size: 0.875rem;
}

.create-user .adduser select {
  background-color: #fff !important;
  border: 1px solid #a7b9cb !important;
  border-radius: 8px !important;
  padding: 1.2em 0.9em !important;
  font-family: "inter";
  font-size: 0.875rem;
  width: 100%;
}

.create-user .adduser .input {
  margin-bottom: 0.9em !important;
}

.create-user .adduser label {
  color: #677888 !important;
  font-size: 0.875rem;
}

.create-user .adduser .submit button {
  background-color: #3f96d1;
  border-radius: 8px;
  height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 100% !important;
  box-shadow: none !important;
  border: none !important;
  font-size: 0.875rem;
  font-family: "inter";
}

.create-user .storage {
  background-color: #f3f5f7;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
  margin-bottom: 1em;
  padding: 0.8em 1em;
}

.create-user .storage-bar {
  flex-grow: 1;
  margin-left: 1em;
}

.create-user .storage-bar > span:nth-child(1) {
  height: 6px;
  background: #d9ecfa;
  display: block;
  border-radius: 10px;
  margin-bottom: 0.4em;
}

.create-user .storage-bar span:nth-child(1) span {
  height: 6px;
  background: #0acca9;
  display: block;
  border-radius: 10px;
  width: 100px;
}

.create-user .storage-bar span:nth-child(2) {
  font-size: 12px;
  font-weight: bold;
}

.mobile-menu {
  display: none;
}

.phone-mobile {
  padding-right: 0 !important;
}

.menu-slide-bg {
  display: none;
}

@media only screen and (max-width: 480px) {
  .create-company-page div span {
    display: block;
    width: 100% !important;
    margin-bottom: 14px !important;
  }
  .create-company-page div span input {
    height: auto !important;
    padding: 15px 12px !important;
  }
  .create-company-page li > div {
    display: block !important;
    width: 100% !important;
  }
  .create-company-page .action2 {
    margin-left: 0 !important;
  }
  .update-body-nav p img {
    display: none !important;
  }
  .update-body-nav {
    height: auto !important;
    display: none !important;
  }
  .update-body {
    height: auto !important;
  }
  .invite {
    width: auto !important;
    margin: 30px 10px;
  }
  .invite label span {
    line-height: 20px !important;
  }
  .invite .font-weight-normal {
    justify-content: unset !important;
    align-items: unset !important;
    margin-top: 5px;
  }
  .invite .font-weight-normal checkbox {
    margin-top: 5px;
  }
  .invite .btnn span.send {
    padding: 1rem;
    margin-right: 5px;
  }
  .menu-slide-bg {
    display: block;
  }
  .update-body {
    background-color: #fff;
    border-radius: 4px;
    width: 94%;
    height: auto;
    margin: 15px 10px 0;
    padding: 32px;
  }

  .phone-mobile {
    padding-right: 1em !important;
    margin-bottom: 15px;
  }

  .bg-stand .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .mobile-menu {
    display: block;
  }

  .d-menu {
    display: none;
  }

  .new-header {
    height: 80px !important;
  }

  .create-account .create-form {
    padding-left: 1em;
    padding-right: 1em;
  }

  .create-account .create-form .form {
    width: 100% !important;
  }

  .create-account .create-form > .form {
    margin-bottom: 2em !important;
  }

  .create-account .desk {
    display: none !important;
  }

  .create-account .mobile {
    display: block !important;
    position: relative;
  }

  .create-account .mobile span {
    cursor: pointer;
  }

  .create-account .mobile ul {
    background-color: #011436;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: absolute;
    right: 0;
    width: 200px;
  }

  .create-account .mobile ul li a {
    display: block;
    padding: 0.8em 0;
  }

  .create-account .mobile ul li:last-child a {
    display: inline-block;
    padding-bottom: 0.8em;
  }

  .create-account .mobile ul li:last-child {
    padding: 0.8em 0;
  }

  .login .intro {
    display: none;
  }

  .login .form {
    width: 100%;
  }

  .login .form > div {
    width: 100%;
    padding: 3em 1em 0;
  }

  #loginapp svg {
    max-width: 100%;
    padding: 0 1em;
  }

  .commentbox {
    height: 80%;
    width: 100%;
  }
}

*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #cad5e1;
}

*::-webkit-scrollbar-thumb {
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 4px #ddd;
  box-shadow: inset 0 0 4px #ddd;
  background-color: #cad5e1;
  box-shadow: none;
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar {
  background-color: transparent;
  box-shadow: none;
  border: none;
}

.root-main::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.root-main::-webkit-scrollbar-track {
  background-color: #fff;
}

.root-main::-webkit-scrollbar-thumb {
  background-color: #a7b9cb;
}

.p-cursor {
  cursor: pointer;
}
.drop-down-menu-class {
  border: none !important;
  box-shadow: 0px 5px 44px 0px #B2BDD33D;
  padding: 0.25rem 0.5rem !important;

}
.dropdown-toggle.menu-btn {
  background: transparent !important;
  font-weight: 0.875rem;
  font-weight: 600;
  color: #677888;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.drop-down-menu-class label:hover {
  background-color: #f2f7fc !important;
  border-radius: 0.25rem;
 cursor: pointer;
}

.notices .toast {
  font-weight: 400 !important;
  flex-basis: 1.5rem  !important;
  padding: 0rem !important;
  border-radius: 0.375rem !important;
  font-size: 0.875rem !important;
  
}

.notices .toast .toast-text {
  display: flex;
  gap: 0.5rem;
  font-weight: 400 !important;
  align-items: center;
}

.notices .toast-default {
  background: #2C2C2C  !important;
}

.disabled-label {
pointer-events: none;
color: #999;
}

@media only screen and (max-width: 960px) {
  .top-navbar {
    margin-top: -1rem;
   
  }

  .top-navbar > div {
    all: unset;
    position: fixed;
    z-index: 10000;
    width: 100%;
    background: rgba(14, 29, 47, 0.4);
    left: -100%;
    transition: left 0ms ease-in;
    
  }

  .top-navbar .the-sidebar {
    width: 15.9375rem;
    background-color: #fff;
    padding: 0.875rem;
    height: calc(100% - 4.5rem) !important;
    left: -15.9375rem;
    transition: left 200ms ease-in;
  }

  .top-navbar > div.show {
    left: 0;
  }

  .the-sidebar.show{
    left: 0;
  }

  .statistics {
    width: calc(100% - 2rem) !important;
  }

  .bg-stand .container-fluid {
    padding: 0 !important;
  }

  .top-navbar .col-10 {
    all: unset;
    width: 100vw;
  }

  .grid-view {
    padding: 1rem !important;
    height: calc(100% - 1rem);
  }

  .select-all {
    margin: 0;
  }

  .grid-files {
    padding: 0;
    grid-template-columns: auto auto;
    grid-auto-rows: 8.6rem;
    grid-template-rows: unset;
    height: calc(100vh - 16rem) !important;
   
  }

  .grid-files .file-ext img {
    width: 2.5rem !important;
  }

  .files-system {
    padding: 0 1rem;
  }

  .files-system .list-view-parent {
    height: calc(100vh - 14.5rem)  !important;
  }

  .upload {
    right: 0.5rem;
    max-width: calc(100vw - 1rem);
  }

  
}

.circle-percent-text-body {
  top: -2px !important;
}

.percent-text {
  font-weight: 500 !important;
}



