@import "./button.css";
@import "./typography.css";
@import "./spacing.css";
@import "./guest-user.css";
@import "./upload-files.css";

/* global css */
:root {
  --primary-color: #EC8E35;
}

body {
  padding-bottom: 0px !important;
}

form {
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: unset;
}

p {
  margin: 0;
}

li {
  text-decoration: none;
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #C7C8C7;
}

.cursor-pointer {
  cursor: pointer;
}

.poppins-text {
  font-family: 'Poppins', sans-serif;
}

.hide {
  display: none;
}

.ui-tooltip {
  border: none;
  font-size: 14px;
  color: #000000;
  background: #F9F9F9;
}

.nav-container {
  display: flex;
  justify-content: center;
}

.nav-sub-container {
  width: 100%;
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  justify-content: center;
}

/* header section */
.account-header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.10);
  min-height: 80px;
}

.account-header.account-header-login {
  width: 1140px;
  box-shadow: none;
}

.account-header .navbar-brand {
  width: 252px;
}

.account-header .navbar-nav a.nav-link {
  color: #000000;
  font-size: 18px;
  padding: 8px 25px;
}

.account-main-content-wrapper {
  height: calc(100vh - 80px);
  overflow: auto;
}

.account-main-content-wrapper::-webkit-scrollbar {
  display: none;
}

.sidebar-container {
  background: rgba(196, 196, 196, 0.10);
  width: 375px;
  min-width: 375px;
  padding: 67px 37px 40px;
  top: 0;
  position: sticky;
  overflow-y: scroll;
  z-index: 1;
}

li.list-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
}

.list-item span {
  margin-right: 24px;
}

li.list-item.active a,
li.list-item:hover a {
  text-decoration: underline;
  text-underline-offset: 2px;

}

li.list-item:hover>a {
  color: var(--primary-color);
}

li.list-item a {
  color: #000000;
}

li.list-item.active>a span,
li.list-item:hover>a span {
  filter: invert(68%) sepia(43%) saturate(1987%) hue-rotate(337deg) brightness(97%) contrast(90%);
}

.send-icon {
  height: 45px;
  width: 45px;
  background: var(--primary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
}

.upload-more-files {
  margin-bottom: 25px;
}

.upload-more-files button {
  font-size: 24px;
  color: #0681BB;
  text-decoration: underline;
}

.bottom-sec .progress-bar {
  /* width: 300px; */
  height: 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(196, 196, 196, 0.10);
  overflow: hidden;
}

.bottom-sec .progress {
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
  border-radius: 11px;
}

.bottom-sec .progress::after {
  border: unset;
}

.upgrade-box {
  border-radius: 15px;
  background: linear-gradient(180deg, #EC8E35 0%, #F3A02E 100%);
  padding: 33px;
  color: #ffffff;
  text-align: center;
}

.sidebar-container .nav-link {
  padding: 0;
  margin-bottom: 27px;
  text-decoration: underline;
}

.sidebar-container .navbar-nav {
  margin-top: 27px;
}

.cancel-icon {
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
}

.main-content {
  width: 100%;
  padding: 61px 78px;
  height: fit-content;
  width: calc(100% - 372px);
}

.main-content.sent-items-list {
  height: auto;
}

.main-content .search-input {
  flex-grow: 1;
  border-radius: 50px;
  margin: 0 14px 0 0;
}

.main-content .search-input-wrapper {
  margin-bottom: 32px;
}

.main-content .search-input-wrapper button {
  padding: 0 28px;
  height: 40px;
}

.recent-files-sec .recent-files {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
}

.recent-file {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.15);
  padding: 28px 34px 16px;
  margin-right: 26px;
  margin-bottom: 26px;
  width: fit-content;
  text-align: center;
}

.recent-file img {
  margin-bottom: 12px;
  height: 93px;
}

.recent-files-sec .file-title {
  margin-bottom: 29px;
}

.recent-file .title {
  max-width: 100px;
}

.storage-usage-sec {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.10);
  padding: 40px;
}

.storage-usage-sec .storage-title {
  margin-bottom: 35px;
}

.storage-usage-sec .storage-value {
  font-size: 40px;
  color: var(--primary-color);
}

/* progress bar */

.storage-usage-sec .progress {
  height: 256px;
  width: 256px;
  background: none;
  position: relative;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  border-radius: 50%;
}

.storage-usage-sec .progress::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 33px solid #E8E9EF;
  position: absolute;
  top: 0;
  left: 0;
}

.storage-usage-sec .progress>span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.storage-usage-sec .progress .progress-left {
  left: 0;
}

.storage-usage-sec .progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 33px;
  border-style: solid;
  position: absolute;
  top: 0;
  border-color: #EF9632;
}

.storage-usage-sec .progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 124px;
  border-bottom-right-radius: 124px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.storage-usage-sec .progress .progress-right {
  right: 0;
}

.storage-usage-sec .progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 124px;
  border-bottom-left-radius: 124px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
}

.storage-usage-sec .progress .progress-value {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
}


.storage-usage-sec .details-plan-sec .plan-title {
  margin-bottom: 29px;
}

/*------------------------- login pages ------------------------  */
.login-container .form-group.login-form {
  margin-top: 40px;
}

.login-container {
  max-width: 405px;
  width: 100%;
  margin-bottom: 80px;
}

.login-container label {
  top: 14px;
}

.login-container .select-wrapper.has-value label {
  top: 6px;
  font-size: 11px;
  color: #494949;
}

.login-container .select-wrapper label {
  top: 20px;
}

.login-container .sign-btn {
  padding: 7px 50px;
}

.login-section {
  max-height: calc(100vh - 126px);
}

.login-section .login-side-info {
  color: #ffffff;
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  padding: 132px 95px;
  position: absolute;
  z-index: 1;
  height: 100%;
}

.login-section .login-right-col {
  background-image: url("./imgs/bg-img.png");
  background-position: right;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0
}

.login-section {
  height: calc(100vh - 80px) !important;
  overflow: auto
}

.login-section .row {
  width: unset !important;
  max-width: unset !important;
}

.login-section::before {
  /* content: "DROPSEND"; */
  position: absolute;
  color: #F3A02E;
  font-family: Poppins;
  font-size: 165px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
  transform: rotate(270deg);
  left: -382px;
  top: 395px;
}

.login-container a:link,
a:visited {
  color: #0681BB;
}

.login-section .login-right-col .carousel-inner img {
  height: 100%;
  object-fit: cover;
}

.login-section .login-left-col {
  overflow: hidden;
}

.login-section .dropsend-text {
  position: absolute;
  z-index: 2;
  font-size: 155px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  left: -47px;
  font-weight: 700;
  top: 16px;
  color: #F3A02E;
  line-height: normal;
  opacity: 0.05;
  pointer-events: none
}

.login-container .select-wrapper select {
  border-color: #C7C8C7;
}

/* ------------------------------footer---------------------------------- */
.footer-new {
  background: linear-gradient(90deg, #F3A02E 4.15%, #EC8E35 99.97%);
  padding: 17px 25px;
}

.footer-new ul {
  display: flex;
  align-items: center;
  color: #ffffff;
  margin: 0;
}

.footer-new ul a {
  color: white;
}

.footer-new a:link,
.footer-new a:visited {
  color: white;
  font-size: 16px;
}

.footer-new nav.links-sec {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .footer-new nav.links-sec {
    font-size: 12px;
  }

  .footer-new nav.links-sec li:nth-child(3) {
    margin-left: 0;
  }

  .footer-new container {
    flex-wrap: wrap;
  }

  .social-media-sec {
    width: 100%;
  }

  .footer-new a:link,
  .footer-new a:visited {
    font-size: 12px;
  }

  .social-media-sec span {
    font-size: 12px;
    color: white;
  }

  .social-media-sec a img {
    height: 15px;
  }
}

@media (max-width: 575.98px) {
  .footer-new {
    padding: 17px 10px;
  }

  .footer-new nav.links-sec li {
    margin-left: 5px;
  }
}

/* ------------------------------footer---------------------------------- */

@media (max-width: 1199.98px) {
  .login-section .login-side-info {
    font-size: 40px;
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  .login-container {
    margin-top: 42px;
    width: 75%;
  }

  .login-section .container-fluid {
    padding: 0 24px;
  }
}

@media (max-width: 575.98px) {
  .login-container {
    width: 100%;
  }

  .login-container h1 {
    font-size: 28px;
  }
}

/*------------------------- login pages ------------------------  */

@media (max-width: 1199.98px) {
  .main-content {
    padding: 24px;
    width: 100%;
  }

  .sidebar-container {
    padding: 37px;
  }
}

@media (max-width: 991.98px) {
  .sidebar-container {
    position: fixed;
    background: white;
    z-index: 1;
    width: 100%;
    top: 80px;
    height: calc(100% - 80px);
    transform: translateX(-100%);
    transition: 200ms all ease-in;
  }

  .sidebar-container.active {
    transform: translateX(0);
    z-index: 11;
  }

  /* header */
  .account-header .navbar-brand {
    width: calc(100% - 82px);
    display: flex;
    justify-content: center;
    padding-right: 60px;
  }
}

@media (max-width: 767.98px) {
  .sidebar-container {
    min-width: unset;
  }

  .recent-files-sec .recent-files {
    flex-wrap: nowrap;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .recent-files-sec .recent-files::-webkit-scrollbar {
    display: none;
  }

  .recent-files {
    width: 100%;
  }

  .recent-file {
    padding: 15px 19px;
  }

  .recent-file img {
    wi
  }
}

@media (max-width: 575.98px) {
  .storage-usage-sec .details-sec {
    text-align: center;
    margin-top: 31px;
    margin-bottom: 29px;
  }

  .details-plan-sec {
    margin-top: 25px;
  }

  .navbar-brand img {
    height: 42px;
    object-fit: contain;
  }
}

/* Apply custom scrollbar styles to all scrollable elements */
.sidebar-container::-webkit-scrollbar {
  width: 6px;
}

.sidebar-container::-webkit-scrollbar-track {
  border-radius: 20px;
  background: rgba(218, 218, 218, 0.29);
}

.sidebar-container::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #DDD;
}

.scrollable-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(218, 218, 218, 0.29) #DDD;
}



/* ======================= files css =========================== */
.files-table-sec {
  padding: 24px;
  border-radius: 20px;
  background: #F9F9F9;
  margin-top: 28px;
  overflow: auto;
}


.table td,
.table th {
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding-left: 0;
}

.table thead th {
  border-bottom: 2px solid #000000;
  text-align: center;
  font-weight: bold;
}

.table td {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.files-table-sec input[type="checkbox"] {
  /* margin-right: 15px; */
  margin-top: 4px;
  height: 16px;
  width: 16px;
  cursor: pointer;
}

span.files-icon {
  width: 25px;
  display: inline-block;
}

.files-icon img {
  width: 100%;
}

span.edit-link {
  font-size: 14px;
  color: #0681BB;
  font-weight: 600;
  text-decoration: underline;
  margin-right: 20px;
  cursor: pointer;
}

.name-td label {
  max-width: 250px;
  min-width: 200px;
  display: inline-block !important;
}

.file-links-wrapper {
  border-radius: 20px;
  background: #F9F9F9;
  height: calc(100vh - 225px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-links-wrapper .links-text {
  font-size: 28px;
}

.action-links a.active img {
  filter: invert(81%) sepia(26%) saturate(7306%) hue-rotate(337deg) brightness(98%) contrast(88%);
}

.action-links a.active {
  color: #EC8E35;
}

.action-links a.active {
  color: #EC8E35;
}

.custom-pagination .prev-btn {
  color: #0681BB;
  font-weight: 600;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.custom-pagination .link-items {
  display: flex;
  justify-content: center;
}

.custom-pagination a {
  margin-right: 2px;
}

.link-items span {
  font-size: 16px;
  color: #0681BB;
  font-weight: 600;
  padding: 0 9px;
  cursor: pointer;
}

.link-items span:hover {
  text-decoration: underline;
}

.link-items span.active {
  text-decoration: underline;
}

.link-items span.dot {
  padding: 0;
}

.name-td {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

td.name-td div {
  display: flex;
  justify-content: center;
}

table thead tr th a {
  color: #000000;
}

th.sent-col {
  min-width: 110px;
}

th.size-col {
  min-width: 110px;
}

th.delivery-col {
  min-width: 110px;
}

th.checkbox-col {
  width: 29px;
}

.modal-content.online-storage-content {
  width: 719px;
  font-family: 'Poppins', sans-serif;
}

.send-content {
  width: 618px;
  font-family: 'Poppins', sans-serif;
}

.send-content .send-input-wrapper {
  width: 233px;
}

.storage-box {
  min-height: 172px;
}

.storage-box,
.new-folder-box {
  padding: 20px;
  border-radius: 20px;
  background: #F9F9F9;
}

.new-folder-box {
  margin-top: 20px;
}

.radio-wrapper label {
  position: relative;
  top: 6px;
  left: 8px;
}

.radio-wrapper input[type="radio"]:focus+label {
  font-size: 14px;
  top: 6px;
}

/* select input field */
.select-wrapper label {
  position: relative;
  font-size: 18px;
  top: 6px;
}

.select-wrapper select {
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  background: transparent;
  padding: 0;
  position: relative;
  top: -13px;
}

.select-wrapper select.form-control {
  height: calc(2.25rem + 2px);
}

.select-wrapper .form-control:focus {
  box-shadow: none;
  background: none;
  border-color: #000000;
}

.modal-content.sent-success-content {
  width: 618px;
  max-width: 618px;
  padding: 63px 24px;
}

.modal-content.sent-success-content h3 {
  margin-bottom: 48px;
}

.modal-dialog.send-content {
  max-width: 719px;
  width: 100%;
}

.modal-dialog.copy-content {
  max-width: 578px;
  width: 100%;
}

.modal-dialog.share-content {
  max-width: 719px;
  width: 100%;
}

.modal-dialog.send-content .form-md input,
textarea {
  border-bottom: 1px solid #000000;
}

.share-content .folders-text {
  margin-left: 76px;
}

.expires-after-block .expires-date-box {
  height: 50px;
  border-radius: 20px;
  background: #EEE;
}

.expires-after-block .days-box {
  padding: 0 40px;
  border-radius: 20px;
  background: #EC8F35;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  margin-left: 55px;
}

.share-content .form-control.search-input {
  flex-grow: 1;
  border-radius: 50px;
  margin: 0 14px 0 0;
  height: 35px;
  padding: 10px;
}

.checkbox-wrapper {
  position: relative;
}

.checkbox-wrapper label {
  margin-left: 25px;
  top: 17px;
}

input[type=checkbox]:focus+label {
  font-size: inherit;
  top: 15px;
}

.share-content .file-text {
  display: inline-block;
  max-width: 67%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

.fade.show {
  background: rgba(0, 0, 0, 0.50);
  overflow: auto;
}

.show .modal-dialog {
  padding-top: 100px;
  padding-bottom: 100px;
}

.modal-dialog-centered {
  display: flex;
  justify-content: center;
}

.files-table-sec table .primary-text {
  color: #EC8E35;
}

.files-table-sec th.actions-col {
  min-width: 110px;
}

.import-contact-box {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 28px 50px;
}

.import-contact-file input {
  border: none;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  margin: 0;
  height: 26px;
}

.import-contact-file {
  position: relative;
  width: fit-content;
}

.import-contact-file span.choose-file-text {
  padding: 5px 12px;
  background: #CBCBCB;
  border-radius: 20px;
  margin-right: 10px;
}

.import-contact-file {
  width: fit-content;
  margin-top: 15px;
  font-weight: 500;
  font-size: 12px;
  cursor: pointer;
}

span.choose-file-text {
  padding: 5px 12px;
  background: #CBCBCB;
  border-radius: 20px;
  margin-right: 10px;
}

.edit-contact-form {
  max-width: 618px;
  width: 100%;
  margin-top: 50px;
}

.add-contact-form {
  max-width: 618px;
  width: 100%;
  margin-top: 50px;
}


.add-contact-form {
  .company-select-wrapper {
    .form-group {
      width: 45%;
    }
  }
}

.add-contact-form .company-select-wrapper .flex-grow-1 {
  flex-grow: 1;
}

.email-list-name {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 40px;
  margin-top: 38px;
}

.edit-list-contacts .files-table-sec {
  height: calc(100vh - 477px);
  overflow: auto;
}

.edit-list-contacts .table td {
  padding: 8px;
}

/* edit users css */
.user-type-radio input[type=radio]:focus+label {
  font-size: 18px;
}

.user-type-radio input[type=radio] {
  height: 16px;
  width: 16px;
}

/* .limit-box {
  padding: 4px 37px;
  background: #D9D9D9;
} */
.limit-box {
  padding: 4px 11px 4px 24px;
  background: #D9D9D9;
  border: none;
  width: 105px;
  text-align: center;
  font-size: 16px;
  color: #00000080;
  margin-top: 0;
}

textarea:focus-visible {
  outline: none;
}

.move-arrow-section {
  flex-direction: column;
  align-items: center;
  padding: 38px 40px 0;
}

.allow-contact-wrapper {
  flex-grow: 1;
}

.allow-contect-wrapper-block {
  height: calc(100vh - 227px);
  overflow: auto;
}

.allow-contact-wrapper input[type=checkbox]:focus+label {
  font-size: 14px;
}

.expires-after-block .handle {
  text-align: center;
  font-size: 16px;
  line-height: 33px;
  border: 1px solid #FFAD00;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  border-radius: 20px;
  background: #EC8F35;
  height: 100%;
  width: fit-content;
  display: flex;
  align-items: center;
  padding: 0 40px;
  top: 0;
  margin-bottom: 15px;
  user-select: none;
}

.expires-after-block .slider {
  position: relative;
  margin-top: 12px;
  border-radius: 20px;
  background: #EEE;
  height: 50px;
}


.plan-card {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 69px 29px;
  width: 344px;
  min-width: 344px;
  margin-right: 20px;
  cursor: pointer;
}

.plan-card.active {
  box-shadow: inset 0 0 0 2px #ED8F35;
}

.plan-card:hover {
  box-shadow: inset 0 0 0 2px #ED8F35;
}

.plans-cards-list-wrapper {
  margin-top: 37px;
  display: flex;
  overflow: auto;
  width: 100%;
  padding-bottom: 24px;
}

.plan-card .price-text {
  font-size: 30px;
}

.plan-card button {
  margin-top: 54px;
}

.card-input input {
  padding-right: 119px;
}

.card-input img {
  position: absolute;
  right: 0;
  top: 0;
}

.nested-items .list-item img {
  width: 25px;
}

.nested-items {
  margin-left: 10px;
}

.nested-items .list-item {
  padding: 2px;
}

.nested-items .list-item span {
  margin-right: 17px;
}

.nested-items+.nested-items .list-item {
  margin-left: 15px;
}

.address-book-modal-content p {
  line-height: 28px;
}

.address-book-modal-content .mails-box {
  border-radius: 20px;
  padding: 10px 16px 16px;
  background: #F9F9F9;
}

.address-book-modal-content .select-wrapper {
  max-width: 246px;
}

.send-files-modal-content .form-md input[type=checkbox]:focus+label {
  font-size: 12px;
}

.send-files-modal-content input[type=checkbox]+label {
  line-height: 200%;
}

.send-files-modal-content .upload-circle input {
  width: 100%;
  position: absolute;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}

.send-files-modal-content .upload-circle {
  position: relative;
  margin-bottom: 12px;
}

#drop-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ec8d35;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  z-index: 9999999;
}

#drop-zone h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 42px;
}

#drop-zone p {
  font-family: 'Poppins', sans-serif;
}

.send-files-modal-content .extra_fields label {
  position: relative;
  top: 0;
  transform: none;
  margin-right: 11px;
  white-space: nowrap;
  overflow: hidden;
  width: 328px !important;
  text-overflow: ellipsis;
  height: 15px;
}

.send-files-modal-content .row.extra_fields.position-relative {
  align-items: center;
}

button.to-btn {
  position: absolute;
  top: -7px;
  padding-bottom: 0;
}

input:focus+button,
input.has-value+button {
  top: -31px;
}

.lined-tab .fade.show {
  background: none;
}

.nav-line-pills.nav-pills .nav-link.active {
  background: transparent;
  color: #EC8E35;
  font-weight: 600;
  border-bottom: 4px solid #EC8E35;
  border-radius: 0;
  padding: 0;
}

.nav-line-pills.nav-pills .nav-link {
  background: transparent;
  color: #000000;
  font-weight: 600;
  border-radius: 0;
  margin-right: 30px;
  padding: 0;
}

.upload-files-modal-content .upload-file-to {
  max-width: 283px;
  width: 100%;
}

.nested-items li.list-item {
  flex-direction: column;
  align-items: self-start;
}

.list-item.active>a {
  color: var(--primary-color);
}

.modal {
  overflow-y: auto;
}

.your-details-box {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 1px 50px;
}

/* .switch {
  position: relative;
  display: inline-block;
  width: 68px;
  height: 29px;
  min-width: 68px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 23px;
  width: 23px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked+.slider {
  background-color: #88CC56;
}

.switch input:focus+.slider {
  box-shadow: 0 0 1px #88CC56;
}

.switch input:checked+.slider:before {
  -webkit-transform: translate(37px, 0px);
  -ms-transform: translate(37px, 0px);
  transform: translate(37px, 0px);
} */

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-box-wrapper {
  width: fit-content;
}

#colorPickerContainer {
  display: flex;
  align-items: center;
}

#colorBox {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-right: 10px;
}

input.colorInput {
  width: 38px;
  height: 38px;
  margin: 0 !important;
  padding: 0 !important;
  border: none;
}

.server-security-logs .table thead th {
  width: 22%;
}

.server-security-logs .nav-line-pills.nav-pills .nav-link.active {
  border: none;
}

.group-setting-wrapper {
  border-radius: 20px;
  background: #F9F9F9;
  padding: 39px 35px;
}

.your-group-setting .checkbox-wrapper input[type=checkbox] {
  height: 16px;
  width: 16px;
}

.your-group-setting thead {
  background: #D9D9D9;
}

.your-group-setting .table tr {
  border-bottom: 1px solid #000000;
}

.your-group-setting input.days-box {
  padding: 4px 9px;
  background: #D9D9D9;
  margin: 0 4px;
  width: 44px;
  border: none !important;
}

.your-group-setting button {
  border: none;
  cursor: pointer;
}

.forgot-password-container {
  max-width: 497px;
}

.news-support-section {
  margin-top: 80px;
}

.settings-conflicts-col .header {
  background: #D9D9D9;
  padding: 6px 12px;
}

.settings-conflicts-row {
  padding: 0 45px;
}

.settings-conflicts-col .left-block {
  border-right: 1px solid #000000;
}

.settings-conflicts-col .content-block span.green-box {
  height: 16px;
  width: 16px;
  min-height: 16px;
  min-width: 16px;
  display: inline-block;
  background: #35EC52;
  border-radius: 50%;
  margin-right: 10px;
}

.settings-conflicts-row .col-sm {
  margin-bottom: 25px;
  border-bottom: 1px solid;

}

.download-footer-message {
  height: 137px;
  border-radius: 15px;
  background: #E7E7E7;
  border: none;
  margin-top: 20px;
  padding: 8px;
}

/* foundation switch  */
.switch {
  padding: 0;
  border: none;
  position: relative;
  outline: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.switch label {
  display: block;
  margin-bottom: 1rem;
  position: relative;
  color: transparent;
  background: #DDDDDD;
  text-indent: 100%;
  width: 4rem;
  height: 2rem;
  cursor: pointer;
  transition: left 0.15s ease-out;
}

.switch input {
  opacity: 0;
  position: absolute;
  top: 9px;
  left: 10px;
  padding: 0;
  width: 100%;
  cursor: pointer;
}

.switch input[type="checkbox"]:focus+label {
  top: 20px;
}

.switch input+label {
  margin-left: 0;
  margin-right: 0;
}

.switch label:after {
  content: "";
  display: block;
  background: #FFFFFF;
  position: absolute;
  top: .25rem;
  left: .25rem;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: translate3d(0, 0, 0);
  transition: left 0.15s ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.switch input:checked+label {
  background: #2ba6cb;
}

.switch input:checked+label:after {
  left: 2.25rem;
}

.switch label {
  width: 4rem;
  height: 2rem;
}

.switch label:after {
  width: 1.5rem;
  height: 1.5rem;
}

.switch input:checked+label:after {
  left: 2.25rem;
}

.switch label {
  color: transparent;
  background: #DDDDDD;
}

.switch label:after {
  background: #FFFFFF;
}

.switch input:checked+label {
  background: #35EC52;
}

.switch.large label {
  width: 5rem;
  height: 2.5rem;
}

.switch.large label:after {
  width: 2rem;
  height: 2rem;
}

.switch.large input:checked+label:after {
  left: 2.75rem;
}

.switch.small label {
  width: 3.5rem;
  height: 1.75rem;
}

.switch.small label:after {
  width: 1.25rem;
  height: 1.25rem;
}

.switch.small input:checked+label:after {
  left: 2rem;
}

.switch.tiny label {
  width: 3rem;
  height: 1.5rem;
}

.switch.tiny label:after {
  width: 1rem;
  height: 1rem;
}

.switch.tiny input:checked+label:after {
  left: 1.75rem;
}

.switch.radius label {
  border-radius: 4px;
}

.switch.radius label:after {
  border-radius: 3px;
}

.switch.round {
  border-radius: 1000px;
}

.switch.round label {
  border-radius: 2rem;
}

.switch.round label:after {
  border-radius: 2rem;
}

.loader-block {
  position: absolute;
  background: #0303034f;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  z-index: 2;
  display: none
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
  margin: 20% auto;
}



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

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

.add-online-storage-modal .select-wrapper label {
  top: -5px;
}

.sent-success-content .okay-button {
  padding: 10px 80px;
  margin-top: 30px;
  display: inline-block;
  text-align: center;
  width: 65%;
}

.sent-success-content .request-another-button {
  padding: 10px 80px;
  margin-top: 15px;
  display: inline-block;
  text-align: center;
  width: 65%;
}

#request_files {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#collaboration_folder {
  margin-top: 32px;
}

#request_collaboration_folder{
  padding: 0;
  height: 36px;
}

.alert-box.alert,
.alert-box.success {
  background-color: #ec8d35;
  color: white;
  font-family: "Poppins";
  box-shadow: 1px 1px 3px rgb(53, 53, 53);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .navbar-collapse.mobile-mode {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #343a40; /* Adjust the background color as needed */
    padding: 10px 0;
    z-index: 1000;
    display: block;
    color: white;
  }

  .navbar-collapse.mobile-mode .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-collapse.mobile-mode .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-collapse.mobile-mode .navbar-nav .nav-link {
    padding: 10px 20px;
    color: white;
  }

}


/* ======================= files css =========================== */