// customize some Bootstrap variables
// Prefix for :root CSS variables

$variable-prefix: bs- !default; // Deprecated in v5.2.0 for the shorter `$prefix`
$prefix: $variable-prefix !default;

$primary: #193b68;
$light: #f2f3f8;
$muted: #969faf;
$body-color: $primary;

$complementary-1: #ffc107;
$complementary-2: #8bc34a;
$complementary-3: #3f51b5;
$complementary-4: #ff5722;
$complementary-5: #9e9e9e;
$complementary-6: #3f3f3f;
$complementary-7: #f44336;

$enable-negative-margins: true;

// import Bootstrap and its default variables

// the ~ allows you to reference things in node_modules
@import '~bootstrap/scss/functions.scss';
@import '_variables.scss';
@import '~bootstrap/scss/bootstrap';
@import "flash.scss";

@import '~icofont/dist/icofont.css';

@import '~dropzone/dist/dropzone.css';

//Datatable BS5
@import '~datatables.net-bs5/css/dataTables.bootstrap5.min.css';

//@import 'select2/src/scss/core.scss'; // optional if you have css loader
@import '~select2/src/scss/core';
// If you need to import Bootstrap as well:
@import '~select2-bootstrap-5-theme/src/select2-bootstrap-5-theme';
// Or if you have already imported Bootstrap:
@import '~select2-bootstrap-5-theme/src/include-all';

// GOOGLE FONTS
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.select2-container--default {
  .select2-results > .select2-results__options {
    max-height: 400px;
    overflow-y: auto;
  }
}

.select2-container--bootstrap-5
.select2-dropdown
.select2-results__options:not(.select2-results__options--nested) {
  max-height: 400px;
  overflow-y: auto;
}

.select2-container--bootstrap-5
.select2--small.select2-dropdown
.select2-results__options
.select2-results__option[role='group']
.select2-results__group {
  display: block;
  font-size: 120%;
  background: $muted;
  color: $white;
}

.dz-upload {
  background: white !important;
}


.the-progress-text {
  display: none !important;
}

.btn-circle {
  width: 30px;
  height: 30px;
  padding: 6px 0px;
  border-radius: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 1.42857;

  &.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
  }
}

.tox-statusbar__branding {
  display: none;
}

.page-sidebar {
  width: 400px;
}

.page-content {
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-add {
  background-color: $gray-200;
}

.bg-highlight {
  background-color: #ffffc0;
}

.bg-gradient-highlight {
  background-image: linear-gradient(to bottom, #ffffc0, #ffffff);
}

.bg-gradient-add {
  background-image: linear-gradient(to bottom, $gray-200, #ffffff);
}

.bg-gradient-nav {
  background: $secondary;
  //border-bottom: 1px solid $gray-700;
  //background: linear-gradient(180deg, $secondary 0%, $secondary 90%, $white 100%);
}

.border-gradient {
  background-image: linear-gradient(to bottom, $gray-400, #ffffff);
  background-clip: padding-box; /* Stellt sicher, dass der Hintergrund nur innerhalb des Inhaltsbereichs angezeigt wird */
  padding: 1px; /* Gib dem Element einen Innenabstand, um den Gradienten sichtbar zu machen */
  border-width: 1px; /* Stelle die gewünschte Breite des Rands ein */
  border-style: solid;
  border-color: transparent; /* Macht den Rand transparent */
}

.select2 {
  width: 100% !important;
}

#cookiescript_link {
  position: absolute;
  top: -100px;
}

.offer-container {
  min-height: 100px;
  overflow: hidden;
  position: relative;
}

.offer-content {
  padding-top: 20px;
  padding-left: 60px;
}

.offer-triangle {
  background-color: red;
  display: inline-block;
  transform: translateX(-50%) rotate(45deg) translateX(50%) rotate(-90deg);
  transform-origin: center top;
  box-shadow: 0px -50px 0px 50px red;
  color: white;
  position: absolute;
}

.bg-white-trans {
  background-color: rgba(255, 255, 255, 0.7);
}

.circles {
  margin-bottom: -10px;
}

.circle {
  width: 100px;
  margin: 6px 6px 20px;
  display: inline-block;
  position: relative;
  text-align: center;
  line-height: 1.2;
}

.circle canvas {
  vertical-align: top;
}

.circle strong {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
}

.circle strong i {
  font-style: normal;
  font-size: 0.6em;
  font-weight: normal;
}

.circle span {
  display: block;
  color: #aaa;
  margin-top: 12px;
}


.download-container .icon-circle {
  width: 80px;
  height: 80px;
  border: 1px solid white;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;

  i {
    color: white !important;
  }
}

.icofont-ui-user {
  font-size: 60px;
}

/**
Wizard
 */
.wizard-steps-navigation ul {
  list-style-type: none;
  padding: 0;
}

.wizard-steps-navigation li {
  display: inline-block;
  margin-right: 10px;
  padding: 5px;
  border: 1px solid #ddd;
}

.wizard-steps-navigation li.enabled a {
  color: blue;
  text-decoration: underline;
}

.wizard-steps-navigation li.disabled {
  color: #ccc;
}

#in-progress {
  display: none;
  position: absolute;
  top: 20%;
  left: 40%;
}

#newContactZone {
  display: none;
}

#no-show-pw {
  display: none;
}

a.download-link:link,
a.download-link:visited,
a.download-link:active {
  text-decoration: none;
  color: #fff;
}

a.download-link:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}

.the-progress-text {
  font-size: 22px;
  color: #fff;
}

.dropzone .dz-preview .dz-progress {
  top: 115% !important;
  background: rgba(54, 54, 58, 0.9) !important;
}

.dropzone .dz-preview {
  margin: 20px 35px 0 30px !important;
}

.dropzone .dz-message .dz-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px auto;
  color: black;
  background: #f2f3f8;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 18px;
  font-weight: 500;
  transition: scale 0.5s ease;

  i {
    margin-right: 6px;
  }


  &:hover {
    background: lightgray;
    scale: 1.05;
  }
}

.upload-folder {
  font-size: 14px;
  color: white;
  text-transform: capitalize;


  &:hover {
    color: lightgray;
  }
}

#spinner {
  display: none;
  z-index: 10000;
  position: absolute;
  top: 30%;
  left: 50%;
  width: 500px;
  height: 500px;
  margin-left: -250px;
}

#form-area {
  z-index: 0;
}

#trialButton {
  --bs-primary-rgb: #223a65 !important;
  --bs-box-shadow: 1px 4px 9px 2px rgba(0, 0, 0, 0.77) !important;

  @include media-breakpoint-up(sm) {
    margin-top: 4em;
    width: 75% !important;
    border-width: 2px !important;
    border-radius: 11px !important;
  }

  @include media-breakpoint-only(md) {
    width: 90% !important;
    margin-top: 4em;
    border-width: 2px !important;
    border-radius: 11px !important;
  }

  @include media-breakpoint-down(xs) {
    margin-top: 30px;
  }
}

#trialButtonContain {
  $blue: #223a65 !important;
}

.paymentContain {
  @include media-breakpoint-between(sm, xl) {
    width: 70% !important;
  }

  .form-control {
    margin-top: 14px;
    border: 1px solid var(--border-color) !important;
  }
}

.loginContain {
  @media (max-width: 1440px) and (min-width: 575.98px) {
    width: 50% !important;
  }
}

.grow {
  transition: 200ms ease-in-out !important;

  &:hover {
    transform: scale(1.1) !important;
  }
}

.btn {
  transition: 200ms ease-in-out !important;

  &:hover {
    transform: scale(1.03) !important;
  }
}

.size-12 {
  font-size: 12px;
}

.size-13 {
  font-size: 13px;
}

.size-14 {
  font-size: 14px;
}

.size-16 {
  font-size: 16px;
}

.size-18 {
  font-size: 18px;
}

.bg-light-gray {
  background-color: #b9b9b9;
}

.bg-dark {
  background: #202020;
}

.font-success {
  color: #198754;
}

.link-decoration-none {
  text-decoration: none;
}


//RICCI

:root {
  --white-color: #FFFFFF;
  --black-color: #202020;
  --gray-color: #808080FF;

  --background-color: #202020;
  --background-trans: rgba(32, 32, 32, 0.7);
  --border-trans: rgba(255, 255, 255, 0.25);

  --search-input-border-color: #ced4da;
  --border-color: #30363d;
  //#d6d6d6

  --border-color-active: white;
  --border-default-color: #30363d;
  --navbar-border-color: #606060;

  --hide-input-background: #101010;


  --text-color: #FFFFFF;
  --opposite-text-color: #202020;
  --opposite-background-color: #FFFFFF;

  --navbar-background-color: #202020;
  --main-navbar-background-color: #1E1E1E;
  --container-background-color: #202020;
  --card-background-color: #2f2f2f;
  --menu-settings-background-color: #404040;

  --button-background-color: #E0E0E0;
  --button-text-color: #202020;
  --filled-button-color: #202020;
  --filled-button-background: #D9D9D9;
  --blue-color: #003FA5;
  --blue-color-hover: #00378f;

  --dark-blue-color: #002766;

  --search-input-background-color: #626262;
  --invert-calendar-picker-indicator: 100%;

  --active-background: white;
  --active-color: rgba(84, 95, 113, 1);

  --search-icon: url('../../public/images/search_dark.svg');

  --avatar-sm-size: 60px;
  --avatar-md-size: 150px;
}

:root.white-theme {
  --white-color: #FFFFFF;
  --black-color: #505050;
  --gray-color: #A0A0A0;

  --background-color: #FFFFFF;
  --background-trans: rgba(255, 255, 255, 0.9);
  --border-trans: rgba(32, 32, 32, 0.25);
  --border-color: #d6d6d6;
  --navbar-border-color: #d6d6d6;
  --border-color-active: #202020;

  --search-input-border-color: #ced4da;


  --hide-input-background: ghostwhite;


  --text-color: #202020;
  --opposite-text-color: #FFFFFF;
  --opposite-background-color: #202020;

  --navbar-background-color: #FFFFFF;
  --main-navbar-background-color: #FFFFFF;
  --container-background-color: #FFFFFF;
  --card-background-color: #F8F8F8;
  --menu-settings-background-color: #F0F0F0;

  --button-background-color: #E0E0E0;
  --button-text-color: #202020;
  --filled-button-color: #FFFFFF;
  --filled-button-background: #808080;
  --blue-color: #003FA5;
  --blue-color-hover: #00378f;
  --dark-blue-color: #002766;

  --search-input-background-color: #E0E0E0;
  --invert-calendar-picker-indicator: 0%;

  --active-background: darkgray;
  --active-color: white;

  --search-icon: url('../../public/images/search_light.svg');

  --avatar-sm-size: 60px;
  --avatar-md-size: 150px;
}

* {
  transition: color 0.5s ease; /* Уменьшено время перехода */
}

* {
  transition: background-color 0.5s ease; /* Уменьшено время перехода */
}

a, svg {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;;
}

.list-style-none {
  list-style: none;
}

// margin or padding

.p-xs-0 {
  @media (max-width: 575.98px) {
    padding: 0 !important;
  }
}

.m-top-120 {
  margin-top: 120px !important;

  @include media-breakpoint-down(xl) {
    margin-top: 70px !important;
  }

  @include media-breakpoint-down(md) {
    margin-top: 70px !important;
  }
}

.fs-30 {
  font-size: 1.75rem !important;
}

.ml-mr-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-mb-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.mr-md-30 {
  @include media-breakpoint-up(md) {
    margin-right: 80px;
  }
  @include media-breakpoint-up(lg) {
    margin-right: 200px;
  }
  @include media-breakpoint-up(xl) {
    margin-right: 300px;
  }
}


// images, icons

.icofont-edit {
  font-size: 24px;
  color: grey;
}

.icofont-trash {
  font-size: 24px;
  color: red;
}

svg {
  color: var(--text-color);
  cursor: pointer;
}

.svg-icon {
  width: 60px;
  height: 60px;
}

.svg-arrow {
  color: var(--text-color);
}

.svg-close {
  color: var(--text-color);

  &:hover {
    color: var(--gray-color)
  }
}

.add-round-icon {
  border: 1px solid var(--text-color);
  border-radius: 50%;
  cursor: pointer;
}

.svg-navbar-menu {
  width: 36px;
  height: 36px;
}

.svg-navigation-menu {
  width: 30px;
  height: 30px;
}

.svg-navbar {
  margin-left: 6px;
  width: 16px;
  height: 16px;
}

.bi-lock-fill {
  color: rgba(255, 150, 0, 1) !important;
}

.bumble-img {
  z-index: 0;
  position: absolute;
  pointer-events: none;
  user-select: none; /* basic CSS */
  -webkit-user-select: none; /* for Chrome и Safari */
  -moz-user-select: none; /* for Firefox */
  -ms-user-select: none; /* for Internet Explorer/Edge */
}

.empty-account-image-sm {
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: var(--avatar-sm-size);
  height: var(--avatar-sm-size);
}


// colors

.text-color {
  color: var(--text-color);
}

.blue-text-color {
  color: rgba(1, 255, 240, 1);
}

.background-color {
  background-color: var(--background-color);
}

.background-trans-black {
  background: rgba(32, 32, 32, 0.7);
}

.background-trans {
  color: var(--text-color);
  background-color: var(--background-trans);
}

.transparent {
  background-color: transparent !important;
}

.border-radius-container {
  border-radius: 32px;
  @include media-breakpoint-down(md) {
    height: 100%;
    border-radius: 0 !important;
  }
}

.border-radius-container-sm {
  border-radius: 60px;
  @include media-breakpoint-down(sm) {
    border-radius: 0 !important;
  }
}

.custom-left-border {
  @include media-breakpoint-up(md) {
    border-left: 1px solid var(--border-trans);
  }
}

.border-color {
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

.green-color {
  color: #447a69;
}

.link-color {
  color: #0dcaf0;

  &:hover {
    color: #1dc9a4;
  }
}

// inputs

.form-control:focus {
  border-color: var(--text-color);
  box-shadow: none;
}

.input-wrap {
  margin: 6px 0;
}

.input-underline {
  padding-left: 0;
  width: 100%;
  color: var(--text-color);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--text-color);
  border-radius: 0;

  &:focus {
    color: var(--text-color);
    background-color: transparent;
    box-shadow: none;
  }

  &:active {
    color: var(--text-color);
    background-color: transparent;
    box-shadow: none;
  }

}

.input-border {
  //padding: 14px;
  color: var(--text-color) !important;
  border: 1px solid var(--text-color);
  background: transparent !important;

  &::placeholder {
    font-weight: 300;
    color: var(--gray-color);
  }
}

.input-hide-color-style {
  font-family: "Poppins", sans-serif;

  label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
  }

  input, textarea {
    font-size: 14px;
    color: var(--text-color);
    background: var(--background-color);
    border: 0.5px solid #606060;

    &:active,
    &:focus {
      color: var(--text-color);
      background: var(--hide-input-background);
      border: 0.5px solid #606060;
    }
  }

  textarea {
    min-height: 180px;
    background: var(--hide-input-background) !important;
  }
}


.new-contact-input {

}

.input-payment {
  background: var(--background-color);

  &:active,
  &:focus {
    background: var(--background-color);
  }
}

.paymentContain {
  .input-wrap {
    position: relative;
    min-width: 100%;
    max-width: 300px;

    input {
      color: var(--text-color);
      min-width: 100%;
      padding: 28px 10px 10px 10px;
      box-sizing: border-box;

    }

    label {
      font-size: 14px;
      position: absolute;
      left: 10px;
      top: 10px;
      transition: all 0.2s ease;
      pointer-events: none;
      color: var(--gray-color);
    }
  }
}

label {
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--text-color);
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}


// BUTTONS

.button {
  min-width: 100px;
  padding: 8px 16px;
  color: var(--button-text-color);
  background-color: var(--button-background-color);
  border: none;
  border-radius: 38px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;

  @include media-breakpoint-down(lg) {
    min-width: 80px;
    font-size: 14px;
  }

  &:hover {
    transform: scale(1.03);
  }

}

.button-gradient {
  color: var(--white-color);
  background: linear-gradient(
                  to right,
                  rgba(0, 63, 106, 1),
                  rgba(1, 255, 240, 1)
  );

  &:hover {
    color: var(--white-color) !important;
  }

  &:disabled {
    cursor: auto;
    opacity: 0.6;
    transform: none;
  }

}

.button-filled {
  color: var(--filled-button-color);
  background: var(--filled-button-background);
}

.button-delete {
  color: var(--white-color);
  background-color: #d00000;
}

.button-no-style {
  border: none;
  background: transparent;
}

.button-resend {
  padding: 8px 10px;
  font-weight: 400;
  font-size: 14px !important;
  background: transparent;
  color: rgb(1, 255, 240);
}

.add-button-wrap {
  display: flex;
  justify-content: start;
}

.add-button {
  //position: absolute;
  //z-index: 100;
  //right: 30px;
  //bottom: -76px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 10px 14px;
  background: none;
  color: var(--white-color);
  font-size: 16px;
  border-radius: 60px;
}

.button-blue {
  color: var(--white-color) !important;
  background-color: var(--blue-color) !important;

  &:disabled {
    cursor: not-allowed;
  }

  &:hover {
    background: var(--blue-color-hover) !important;
    transform: none !important;
  }

}

.button-login {
  color: #FFFFFF;
  background-color: transparent;
  border: 2px solid #FFFFFF;
}

.button-download {
  width: auto;
  color: white !important;
  background: gray !important;
}

.button-lg {
  padding: 12px 20px;
  font-weight: 300;
  font-size: 18px;
}

.button-custom-bank {
  border-radius: 6px;

  i {
    font-size: 48px;
    @include media-breakpoint-down(xl) {
      font-size: 48px;
    }
    @include media-breakpoint-down(lg) {
      font-size: 33px;
    }
    @include media-breakpoint-down(md) {
      font-size: 28px;
    }
  }
}

// DISPLAY

.display-none {
  display: none;
}

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

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

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

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

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

.h-100-sm {
  @include media-breakpoint-down(sm) {
    height: 100%;
  }
}

.max-w-600 {
  max-width: 580px;
}

.max-content {
  width: max-content;
}

// TEXT

a {
  text-decoration: none;
}

.a-small-white {
  display: flex;
  color: var(--white-color);
  font-weight: 100;
  font-size: 10px;
  cursor: pointer;

  &:hover {
    text-decoration: underline 1px solid white;
  }
}

.a-medium-white {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: 200;
  line-height: 20px;
  font-size: 16px;

  &:hover {
    text-decoration: underline 1px solid var(--white-color);
  }
}

.p-medium-white {
  color: var(--white-color);
  font-weight: 300;
  line-height: 20px;
  font-size: 16px
}

.p-small {
  font-size: 12px;
  color: var(--gray-color);
}

.font-50 {
  font-size: 50px !important;
  @include media-breakpoint-down(md) {
    font-size: 30px !important;
  }
}

.font-family {
  font-family: "Poppins", sans-serif;
}

.ghost-text {
  color: gray;
}

.image-text {
  color: var(--text-color);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 500;
}


@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown30 {
  0% {
    transform: translateY(-30%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animation-out-top {
  animation: slideDown30 1.5s ease-out;
}

.custom-alert {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 99999;
  min-width: 180px;
  animation: slideDown 1s ease-out;


  button {
    padding: 10px 10px 0 0 !important;
  }


  svg {
    margin-right: 20px;
    width: 40px;
    height: auto;
  }

  .svg-success {
    fill: green;
  }

  .svg-error {
    fill: red;
  }


}


.hover-white {
  &:hover {
    color: white !important;
  }
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.f-34 {
  font-size: 34px;
}

.f-24 {
  font-size: 24px;
}

.f-22 {
  font-size: 22px;
}

.f-20 {
  font-size: 20px;
}

.f-18 {
  font-size: 18px;
}

.f-16 {
  font-size: 16px;
}

.f-14 {
  font-size: 14px;
}

.f-12 {
  font-size: 12px;
}

.f-10 {
  font-size: 10px;
}


// another classes

.h-md-auto {
  @include media-breakpoint-up(md) {
    height: auto !important;
  }
}

.h-sm-100 {
  @include media-breakpoint-down(sm) {
    height: 100%;
  }
}

.z-index-1 {
  position: relative;
  z-index: 1;
}

.border-radius-1 {
  border-radius: 8px;
}


// animation
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-20%);
    opacity: 0;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(20%);
    opacity: 0;
  }
}

@keyframes navigation-menu-appear {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

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

@keyframes navigation-price-menu-appear {
  from {
    transform: translateY(-24%);
    opacity: 0;
  }

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

// general classes

.page-content {
  background-image: url(../../public/images/mountain.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.section-navbar {
  height: 12%;
  min-height: 75px;
  max-height: 90px;
  background-color: var(--main-navbar-background-color);

  .nav-menu {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--text-color);
    padding: 10px 0;
    margin-bottom: 20px;

    li {
      display: flex;
      align-items: center;
      list-style: none;

      .link {
        font-family: 'Poppins', sans-serif !important;
        font-weight: 600;
        font-size: 24px;
        color: var(--text-color);
        text-decoration: none;

        &:hover {
          color: gray;
        }


        img {
          margin-right: 16px;
        }
      }
    }

    .bi-lock-fill {
      margin-left: 8px;
    }
  }
}

.bottom-menu {
  justify-content: space-around;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background-color: rgba(32, 32, 32, 0.6);
  backdrop-filter: blur(1px);

  div {
    font-size: 24px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
  }
}

.modal-content {
  color: var(--text-color);
  background-color: var(--navbar-background-color);
  border: 1px solid var(--border-color);
}

// !!!   ALL PAGES   !!!

// 1. HOME page

.home-container {
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--white-color);

  span {
    letter-spacing: 6px;
    font-weight: 200;
  }

  h3 {
    text-align: center;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 300;
  }

  a {
    letter-spacing: 4px;
    padding: 16px 20px;
    font-size: 20px;
    font-weight: 400;
  }

  img.logo {
    width: 340px;
  }

  img.bumble-img {
    margin: 120px 0 0 0;
  }

  .upload-preview {
    border-radius: 32px;
    width: 100%;
    max-width: 400px;
  }

  .video-container {
    position: relative;
    width: 210px;
    height: 120px;
    cursor: pointer;

    video {
      width: 100%;
      height: 100%;
    }

  }

  .reverse-small {
    @include media-breakpoint-down(md) {
      display: flex;
      flex-direction: column-reverse;
    }
  }


  .text-section {
    width: 80%;
    margin: 10px 0;

    h4 {
      font-size: 20px;
    }

    p {
      font-size: 14px;
    }


  }

  @include media-breakpoint-down(xl) {
    .video-test {
      margin: 0 10px 50px auto;

    }
  }

  @include media-breakpoint-down(lg) {
    .text-section {
      h4 {
        font-size: 20px;
      }

      p {
        font-size: 12px;
      }
    }

  }
  @include media-breakpoint-down(md) {
    .text-section {
      margin: 2px 0;

      h4 {
        font-size: 18px;
      }

    }
  }

}

// Features page

.features-container {
  background-color: black;
  color: var(--white-color);
  padding: 20px 0;

  h1 {
    position: relative;
    font-size: 4rem;
    color: white;

    @include media-breakpoint-down(md) {
      font-size: 1.75rem;
    }

  }

  h2 {
    font-size: 18px;
    color: #c0c0c0;
  }

  h3 {
    font-size: 20px;
    color: rgb(1, 255, 240);
    font-weight: 700;
  }

  h4 {
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: -.01em;
    margin-bottom: 30px;
  }

  img {
    width: 100%;
    height: auto;
  }

  .color-back {
    background-color: #202020;
    border-radius: 20px;
    //opacity: 0;

  }

  .element-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
  }

  .slide-in-right {
    animation: slideInRight 1s ease-out forwards;
  }

  .slide-out-left {
    animation: slideOutLeft 1s ease-out forwards;
  }

  .slide-out-right {
    animation: slideOutRight 1s ease-out forwards;
  }


}


// 2. REGISTER / LOGIN
.auth-container {
  position: relative;
  padding: 25px 40px;
  max-width: 430px;
  border-radius: 45px;
  background: rgba(32, 32, 32, 0.7);

  @include media-breakpoint-down(sm) {
    height: 100%;
    max-width: none;
    border-radius: 0 !important;
  }

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--white-color);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px transparent;
  }

  h1 {
    //margin: 30px auto;
    text-align: center;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: var(--white-color);
  }

  label {
    color: var(--white-color);
  }

  button {
    display: flex;
    margin: 20px auto;
    padding: 14px 20px;
    font-size: 20px;
    @include media-breakpoint-down(md) {
      font-size: 16px;
    }
  }

  .icofont-instagram,
  .icofont-linkedin,
  .icofont-facebook,
  .icofont-web {
    color: gray;
  }

  .input-wrap {
    margin: 0 !important;
  }

  .input-underline {
    color: var(--white-color);
    border-bottom: 1px solid var(--white-color);
    box-shadow: none;

    &:focus {
      color: var(--white-color);
    }
  }


}

.return-link {
  position: absolute;
  right: 24px;
  top: 20px;
  z-index: 100;
}

.logo-absolute {
  position: absolute;
  left: 24px;
  top: 20px;
  z-index: 100;
}

.logo-wrap {
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: end;
  font-size: 14px;
  font-weight: 200;

  img {
    width: 160px;
  }

  span {
    letter-spacing: 7.7px;
  }

  .logo {
    width: 140px;
    height: 60px;
  }


  @include media-breakpoint-down(sm) {
    font-size: 10px;
    img {
      width: 140px;
    }
  }
}


// 3. PRICE
.price-container {
  height: 100%;
  color: #FFFFFF;
  background: #202020;

  h3 {
    text-align: start;
    padding: 0 0 10px 40px;
    color: #FFFFFF;
  }

  .radio-wrap {
    display: flex;
    flex-direction: column;
    align-items: start;

    input {
      width: 20px;
      height: 20px;
    }

    .savings {
      font-size: 14px;
      text-align: start;
      padding-left: 30px;
      color: #0d6efd;
    }

    .name {
      font-weight: 200;
      font-size: 16px;
      margin-left: 10px;
    }

    .name.active {
      font-weight: bold;
    }
  }

  .link-button {
    font-size: 16px;
    display: flex;
    justify-content: center;
    margin: auto 0 0 0;
    border: none;
    border-radius: 38px;
    padding: 10px;
    cursor: pointer;
    background-color: #FFFFFF;
    transition: 0.3s ease;

    &:hover {
      transform: scale(1.03) !important;
    }


    @include media-breakpoint-down(xl) {
      font-size: 12px;
    }
    @include media-breakpoint-down(lg) {
      font-size: 10px;
    }
  }

  .fixed-size {
    max-width: 1600px;
    margin: 60px auto;
  }

  .show-navbar {
    display: block !important;
  }

  .white-button {
    border: 1px solid #FFFFFF !important;
    color: black;

    &.current-button {
      cursor: default;
      transform: none ! IMPORTANT;
      background-color: #FFFFFF !important;
      color: #202020 !important;
    }

    &:hover {
      background: #202020;
      color: white;
    }

  }

  .purple-button {
    border: 1px solid #FFFFFF !important;
    color: #a62bbd;

    &.current-button {
      cursor: default;
      transform: none ! IMPORTANT;
      background-color: #FFFFFF !important;
      color: #a62bbd !important;
    }

    &:hover {
      background-color: #c760e1;
      color: #FFFFFF;
    }
  }

  .blue-button {
    border: 1px solid #FFFFFF !important;
    color: #58bbe3;

    &.current-button {
      cursor: default;
      transform: none ! IMPORTANT;
      background-color: #FFFFFF !important;
      color: #58bbe3 !important;
    }

    &:hover {
      background-color: #85d5f0;
      color: #FFFFFF;
    }
  }

  .month-span {
    margin: 10px 0 10px 4px;
  }

  #business-price,


    // text settings
  .title-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .title-price {
    font-family: "Inter", sans-serif;
    color: white;
    font-weight: 700;
    font-size: 120px;
    line-height: 100px;
    letter-spacing: 1.25rem;
  }

  .plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .plan-info-wrap {
    flex: 1;
    margin: 0 20px;
    background-color: #f4f4f4;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px;
    text-align: center;

    height: 130px;
  }

  .price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
  }

  .purple-color {
    color: #a62bbd;
  }

  .blue-color {
    color: #58bbe3;
  }

  // blocks
  .free {
    background: rgba(32, 32, 32, 1) !important;
  }

  .pro {
    background: #58bbe3;
  }

  .business {
    background: #a62bbd;
  }

  .border-card {
    border: 1px solid #FFFFFF;
  }

  .section-plan {
    //width: 90%;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    margin: 20px auto;
    padding: 20px;
    max-width: 500px;
    color: #FFFFFF;
    border-radius: 20px;
    text-align: center;

    h2 {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      margin: 0;
      letter-spacing: 1px;
    }
  }

  .navbar-price {
    height: 180px;
    display: none;
    text-align: center;
    position: sticky;
    top: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    color: white;
    animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running navigation-price-menu-appear;
    transition: transform 2s ease;


    h2 {
      display: flex;
      align-items: center;
      text-align: start;
      font-size: 18px;
      height: 56px;
      margin: 0;
      letter-spacing: 1px;
    }

    .navbar-empty-div {
      height: 50px;
      width: 100%;
      background: #202020;
    }
  }

  .navbar-plan-container {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10px 0 10px;
    height: 130px;
    width: 100%;
  }

  .navbar-plan-section {
    flex: 1;
    margin: 0 20px;
    padding-bottom: 20px;
    border-radius: 20px;
    text-align: center;
  }

  .navbar-border-card {
    border: 1px solid #FFFFFF;
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .price-middle-container {

    @include media-breakpoint-down(lg) {
      flex-direction: column;
      .navbar-plan-section:first-child {
        .section-plan {
          margin: 0 auto !important;
          padding: 0 !important;
        }
      }
      .navbar-plan-section {
        width: 90% !important;
        min-height: 0 !important;

        .section-plan {
          min-height: 0;
        }
      }
    }

  }

  table {
    color: black !important;
    width: 100%;
    border-collapse: collapse;

    .navbar-plan-section {
      padding: 20px;
    }

    tr {
      display: flex;
      flex-direction: column;
      color: #FFFFFF;
    }

    th,
    td {
      height: 64px;
      font-size: 16px;
      text-align: left;
      margin: 20px 0;
      padding: 20px;
      border-bottom: 1px solid #d4d7d9 !important;
      @include media-breakpoint-down(xl) {
        font-size: 14px;
      }
    }
  }

  .price-table-container {
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px;
  }

  @include media-breakpoint-down(xxl) {
    .title-price {
      font-size: 90px;
      line-height: 80px;
    }
  }

  @include media-breakpoint-down(xl) {
    .title-price {
      font-size: 64px;
      line-height: 55px;
      letter-spacing: 16px;
    }
  }

  @include media-breakpoint-down(lg) {
    .title-price {
      font-size: 50px;
      line-height: 42px;
      letter-spacing: 14px;
    }
  }

  @include media-breakpoint-down(md) {
    .title-price {
      font-size: 40px;
      line-height: 36px;
      letter-spacing: 14px;
    }
  }

  @include media-breakpoint-down(sm) {
    .title-price {
      letter-spacing: 8px;
    }
  }

}

// class for price TS
.overflow-hidden-only-small-screen {
  overflow: hidden;
  @include media-breakpoint-up(lg) {
    overflow: visible !important;
  }
}

.accordion {
  border: none;
  padding-bottom: 100px;

  * {
    color: var(--white-color);
    background-color: #202020;
  }


  .accordion-item {
    border: none;
    border-radius: 0;
    padding: 20px 0;
    border-top: 0.5px solid white;
  }

  .accordion-item:last-child {
    border-bottom: 0.5px solid white;
  }

  .accordion-button {
    border: none;
    border-radius: 0;
    min-width: 100%;
    color: var(--white-color);
    background-color: #202020;
  }

  .accordion-button::after {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(0%) contrast(0%);
  }

  .accordion-button:not(.collapsed)::after {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(0%) contrast(0%);
  }
}

// 4. UPLOAD new
#form-area {
  form[name="upload"] {
    position: relative;
    z-index: 6;
    text-align: center;
    background-color: transparent;
    border: none;
    min-height: 20px;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0;

    @include media-breakpoint-down(md) {
      max-width: none;
    }
  }

  input {
    font-size: 16px;
    border-bottom: 3px solid white;
    outline: none !important;
    color: white !important;
  }

  input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(100%) brightness(100);
  }

  input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--white-color);
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px transparent;
    font-size: 16px;
  }

  label {
    color: white;
    font-size: 16px !important;
    font-weight: 200 !important;
  }

  .button-gradient {
    font-size: 18px;
    padding: 14px 30px;
  }

  .toggle-files {
    display: flex;
    margin: 40px auto 0 auto;
    padding: 10px;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;

    &:hover {
      border-bottom: 1px solid var(--white-color);;
    }
  }

  .shared-file-form {
    max-width: 580px;
    background-color: #00000080;
    border-radius: 60px;
    margin-bottom: 100px;


    @include media-breakpoint-down(sm) {
      border-radius: 0;
      margin-bottom: 0;
    }
  }

  .select2-selection {
    padding-left: 0;
    color: var(--white-color);
    border: none;
    border-radius: 0;
    border-bottom: 3px solid $white;
    background-color: transparent !important;
  }

  .select2-container--bootstrap-5 .select2-selection--single {
    padding: 0;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20viewBox=%270%200%2016%2016%27%3E%3Cpath%20fill=%27none%27%20stroke=%27%23ffffff%27%20stroke-linecap=%27round%27%20stroke-linejoin=%27round%27%20stroke-width=%272%27%20d=%27M2%205l6%206%206-6%27/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
  }

  .select2-selection__rendered {
    padding-left: 0 !important;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: var(--white-color) !important;
    background-color: transparent !important;
  }

}

.select2-dropdown--below {
  border-color: white !important;
}

#contactSelectZone {
  .select2-dropdown {
    color: var(--black-color);

    input[type='search'] {
      color: var(--black-color) !important;
    }
  }
}

#newContactZone {
  a {
    margin: -12px -3px 0 0;
  }

  h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-right: 4px;
    font-family: 'Poppins', sans-serif;
    color: var(--white-color);
    margin: 0;
  }
}

.upload-title::-webkit-scrollbar {
  display: none; /* Скрыть скроллбар в WebKit браузерах */
}

.upload-title {
  overflow-y: hidden;
  overflow-x: scroll;
  max-width: 100%;
  height: 100%;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  font-size: 80px;
  font-weight: 400;

  -ms-overflow-style: none; /* Скрыть скроллбар в IE и Edge */
  scrollbar-width: none; /* Скрыть скроллбар в Firefox */

  @include media-breakpoint-down(lg) {
    display: none;
  }


}

.block-input-wrap {
  position: relative;
  display: flex;

  input {
    padding-right: 30px; /* Отступ для иконки */
  }

  .icon-wrapper {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Иконка не мешает вводу текста */

    svg {
      font-size: 16px;
      color: white;
    }
  }
}


.versions-container {
  height: auto !important;

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }

  .section-plan {
    display: flex;
    flex-direction: column;
  }

  .link-button {
    transition: 0.3s ease;
    margin: auto 0 0 0;

    &:hover {
      transform: scale(1.03) !important
    }
  }

  .navbar-plan-section {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }
}

// 5. ACCOUNT  NEED !!!!
.account-container {
  color: var(--text-color) !important;
  background-color: var(--main-navbar-background-color);
  height: 100%;
  padding: 0 0 20px 0;
  font-family: 'Poppins', sans-serif;

  h3 {
    font-weight: 400;
    font-size: 20px;
  }

  li {
    margin: 40px 0;
    font-size: 20px;
    font-weight: 200;
  }

  a, label {
    &:hover {
      color: gray;
    }
  }

  .ghost-text {
    color: var(--text-color);
    margin-top: 10px;
    font-size: 12px;
    font-weight: 200;
  }

  .info-account {
    color: var(--text-color);
    background-color: var(--card-background-color);
    min-height: 90%;
  }

  .wrap-account-image {
    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;

    a {
      margin-top: 6px;
      font-family: 'Poppins', sans-serif;
      font-weight: 100;
      font-size: 12px;
      text-decoration: none;
      color: var(--text-color);
    }
  }

  .avatar-with-delete-button {
    width: var(--avatar-md-size);
    height: var(--avatar-md-size);
    position: relative;
    cursor: pointer;


    .change-account-image {
      position: absolute;
      right: 0;
      bottom: 8px;
      padding: 4px;
      background: var(--card-background-color);
      border: 1px solid #8d96a0;
      border-radius: 50%;

      svg {
        width: 22px;
        height: 22px;
      }

      &:hover {
        svg {
          color: gray;
        }
      }
    }

    @include media-breakpoint-down(lg) {
      width: 100px;
      height: 100px;
    }
  }

  .account-image {
    width: var(--avatar-md-size);
    height: var(--avatar-md-size);
    border-radius: 50%;
    border: 1px solid var(--text-color);
    background: var(--opposite-text-color);
  }

  .account-image .info-account {
    color: var(--text-color);
    min-height: 800px;
  }

  .info-account-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-top: 30px;

    ul {
      min-width: 300px;
      list-style: none;
    }

    .ul-border {
      li:not(:last-child) {
        border-bottom: 1px solid var(--text-color);
      }
    }

    .color-site-toggle {
      margin: 10px 0;

      .switch {
        position: relative;
        display: inline-block;
        width: 100px;
        height: 34px;
        cursor: pointer;
      }

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

      .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 18px;
        background-color: rgba(217, 217, 217, 1);
        transition: 0.4s;
      }

      .slider:before {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 34px;
        width: 54px;
        border: 1px solid white;
        border-radius: 18px;
        background-color: rgba(29, 29, 29, 1);
        transition: 0.4s;
      }

      .slider:after {
        border: 1px solid black;
      }

      input:checked + .slider {
        background-color: rgba(29, 29, 29, 1);
      }

      input:checked + .slider:before {
        background-color: rgba(217, 217, 217, 1);
        transform: translateX(46px);
      }

      .moon, .sun {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        padding: 0 5px;
      }

      .moon {
        left: 6px;
      }

      .sun {
        right: 10px;
      }
    }


  }

  @include media-breakpoint-down(lg) {
    .info-account-section {
      padding-top: 0;
      align-items: center;
    }
    .wrap-account-image {
      width: 100%;
      //padding: 20px 0;
      margin-left: auto;
      margin-right: auto;
    }
    .account-image {
      width: 100px;
      height: 100px;
      margin-right: auto;
    }
  }
}

// 6. SETTINGS
.settings-container-test {
  height: 100%;
  width: 100%;
  color: var(--text-color);
  background-color: var(--main-navbar-background-color);
  font-family: "Poppins", sans-serif;

  h1 {
    justify-content: start;
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 30px 0;
  }

  ul {
    padding: 60px 0 0 0;
    list-style: none;
  }

  li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 10px;
    font-size: 20px;
    font-weight: 300;
    border-radius: 12px;
    cursor: pointer;
  }

  input, textarea {
    margin-top: 26px;
    color: var(--text-color);
    background-color: var(--card-background-color);
    border-radius: 0;

    &:active,
    &:focus {
      color: var(--text-color);
      background-color: var(--card-background-color);
    }

  }

  input[type="color"],
  input[type="number"] {
    width: 50px;
    margin: 0 10px;
  }

  input[type="checkbox"] {
    margin-top: 4px;
    border: 1px solid var(--text-color);
  }

  input[type="text"] {
    border: none;
    border-bottom: 1px solid var(--text-color);
    padding-left: 0;
  }

  input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }

  label.form-label {
    font-weight: 200;
    color: var(--text-color);

    &::after {
      background: none;
    }
  }

  .logo {
    max-height: 100px;
    max-width: 100px;
  }

  .custom-border {
    padding: 10px 0;
    border-bottom: 1px solid var(--text-color);
  }

  .m-0 {
    .form-label {
      margin-bottom: 0 !important;
    }
  }

  .input-wrap {
    input {
      padding-left: 0;
      width: 100%;
      color: var(--text-color);
      background-color: transparent;
      border: none;
      border-bottom: 1px solid var(--text-color);
      border-radius: 0;

      &:focus {
        color: var(--text-color);
        background-color: transparent;
        box-shadow: none;
      }

      &:active {
        color: var(--text-color);
        background-color: transparent;
        box-shadow: none;
      }
    }

    #user_settings_myLink {
      padding-right: 40px;
    }
  }

  .menu-settings {
    height: 500px;
    background-color: var(--menu-settings-tex-color);

    #link-trusted-domains {
      a {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        color: var(--text-color);
      }
    }
  }

  .setting-container {
    min-height: 500px;
    background-color: var(--card-background-color);
  }

  .setting-section {
    @include media-breakpoint-down(lg) {
      margin-bottom: 30px;
    }
  }

  .image-wrap {
    height: 150px;
    width: 260px;

    img {
      text-align: center;
      width: 250px;
      height: 150px;
    }
  }

  .border-bottom {
    font-weight: 200;
    border-bottom: 1px solid var(--text-color);
  }

  .email-template-settings {
    height: 100%;
  }

  .email-settings-preview-container {
    padding: 20px;
    min-height: 340px;
    margin: 0 auto;
    color: var(--black-color);
    background-color: var(--white-color);
  }

  .email-settings-preview {
    min-height: 440px;
    margin-left: auto;
    margin-right: auto;
    color: var(--black-color);
    background-color: rgba(217, 217, 217, 1);
  }

  .title-wrap {
    height: 10%;
  }

  .text-wrap {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    p {
      word-wrap: break-word; /* или overflow-wrap: break-word; */
    }
  }

  #signature-preview,
  #subject-preview {
    word-wrap: break-word; /* или overflow-wrap: break-word; */

  }

  .active {
    background: var(--active-background);
    color: var(--active-color);

    svg {
      color: var(--opposite-text-color);
    }
  }

  .display-block {
    @include media-breakpoint-down(lg) {
      display: block !important;
    }
  }

  .display-none {
    display: none;
    height: 100%;
    width: 100%;
    @include media-breakpoint-down(lg) {
      display: block !important;
    }
  }

  @include media-breakpoint-down(lg) {
    .menu-settings {
      height: 100px;

      ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0 !important;
      }

      li {
        font-size: 18px;
        margin: 10px 0;
        text-align: center;
        width: 50% !important;
        border-bottom: 0;
        text-decoration: underline !important;
      }

    }
  }
}

// 7. UPLOAD PAGE
.upload-container {

  .upload-section {
    width: 100%;
    //margin: 20px 0;
    background: transparent;
    cursor: pointer;

    h3 {
      font-weight: 700;
      font-size: 16px;
    }

    &:hover {
      background: var(--card-background-color);
    }
  }

  .no-hover {
    background: transparent !important;
    cursor: auto !important;

    &:hover {
      background: transparent !important;
    }
  }
}

.file-info-section {
  color: var(--text-color);
  font-size: 16px;

  h3 {
    font-weight: 700;
    font-size: 16px;
  }

}

.sent-file-container {
  background-color: var(--card-background-color);
  padding: 20px 40px 40px 40px;
  margin: 40px 0;

  .sent-file-wrap {
    padding: 5px 0;
    border-bottom: 0.5px solid var(--gray-color);
  }

  @include media-breakpoint-down(lg) {
    margin: 0;
  }
}


// !!! COMPONENTS  !!!

// 1. header // footer // main

header {

  img {
    vertical-align: baseline;
  }

  .navbar {
    z-index: 7;
    font-family: "Poppins", sans-serif;
    height: 90px;
    padding: 6px 20px;
    background-color: var(--navbar-background-color);
    border-bottom: 0.5px solid var(--navbar-border-color);
  }

  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 100%;
    width: 100%;
  }


  .button-gradient {
    margin-left: 10px;
  }

  .link-wrap {
    display: flex;
    justify-content: space-between;
    //width: 210px;
    margin-right: auto;
    margin-left: 10px;

    a {
      font-size: 18px;
    }
  }

  .nav-link {
    color: var(--text-color) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 30px;
    margin: 0 16px;

    &:hover {
      color: var(--gray-color) !important;
    }
  }

  .nav-link-dark {
    color: #FFFFFF !important;
  }

  .open-menu {
    position: relative; /* Необходимо для позиционирования псевдоэлемента */
    //width: 64px;
    //height: 64px;
    cursor: pointer;

    img {
      border: 1px solid var(--border-color);
      border-radius: 50%;
      width: 60px;
      height: 60px;
    }

    &::after {
      content: '';
      position: absolute;
      bottom: 4px;
      right: -4px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--text-color);
    }
  }


}

.navigation-menu {
  display: none;
  min-width: 320px;
  height: auto;
  position: absolute;
  font-family: "Poppins", sans-serif;
  z-index: 1000;
  right: -2px;
  top: -2px;
  animation: 200ms cubic-bezier(0.33, 1, 0.68, 1) 0s 1 normal none running navigation-menu-appear;
  transition: transform 1s ease;

  @include media-breakpoint-down(md) {
    right: 0;
    top: 0;
    width: 100%;
  }


  .dropdown-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    padding-bottom: 40px;
    width: 100%;
    //height: 100%;

    font-family: 'Poppins', sans-serif;
    line-height: 36px;
    font-size: 18px;
    font-weight: 300;

    border: none;
    background-color: var(--navbar-background-color);

    opacity: 1;
    transition: transform 0.5s ease;

    li {
      margin: 10px 0;
      display: flex;
      justify-content: center;
      align-items: end;

      img {
        border: 1px solid var(--border-color);
        border-radius: 50%;
        width: var(--avatar-sm-size);
        height: var(--avatar-sm-size);
      }

      a {
        font-size: 18px;
        min-width: 200px;
        text-decoration: none;
      }

      &:not(:first-child):hover {
        .drop-items,
        svg,
        {
          color: var(--gray-color) !important;
        }
      }
    }

    .gray-hover:hover {
      color: gray !important;
    }

    li:first-child {
      align-items: start;
    }

    .drop-items {
      display: flex;
      justify-content: start;
      align-items: center;
      width: 200px;
      color: var(--text-color);
    }

    .dropdown-link {
      height: 76px;
      width: 120px;
    }

    .icon-wrap {
      min-width: 80px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 2px;
    }

    .no-hover:hover {
      color: var(--text-color) !important;

      * {
        color: var(--text-color) !important;
      }
    }

  }


  .dropdown-menu-mobile {
    background: #202020;
    text-align: center;

    @include media-breakpoint-up(md) {
      display: none;
    }


    li {
      .link {
        color: #FFFFFF;
        font-weight: 400;
        font-size: 40px;
        line-height: 60px;
        letter-spacing: 4px;

        &:hover {
          color: var(--gray-color) !important;
        }
      }

      .button {
        margin-top: 160px;
        padding: 20px 30px;

        &:hover {
          color: white !important;
        }
      }
    }

  }

}

main {
  min-height: 88vh;
  @include media-breakpoint-down(lg) {
    min-height: 70vh;
  }
}

.footer {
  position: relative;
  z-index: 100;

  * {
    color: #8d96a0;
  }

  ul {
    flex-wrap: wrap;
    gap: 15px;

    li {

    }

    a, i {
      &:hover {
        color: #4493f8;
      }
    }

  }

  .pb-md-8 {
    @include media-breakpoint-down(lg) {
      padding-bottom: 60px !important;
    }

  }

  .link-wrap {
    width: 300px;
  }

  .lang-wrap {
    width: 130px;
  }
}


// 2. TABLE
.table-container {
  background-color: var(--main-navbar-background-color) !important;
  height: 100%;
  padding-bottom: 200px;
  color: var(--text-color) !important;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;

  @include media-breakpoint-down(lg) {
    height: 100%;
  }


  a {
    border: 1px solid transparent;
    color: var(--text-color);
    text-decoration: none;
  }

  input[type='search'] {
    padding: 5px 5px 5px 40px !important;
    border: 1px solid var(--search-input-border-color);
    color: var(--text-color);
    background-color: var(--search-input-background-color);
    background-image: var(--search-icon);
    background-repeat: no-repeat;
    background-position: 5px center;

    &:focus {
      background-color: var(--search-input-background-color);
    }

    &::placeholder {
      color: var(--text-color);
    }

    &::-webkit-search-cancel-button {
      -webkit-appearance: none;
      appearance: none;
    }
  }


  #contactTable_wrapper {

    .table,
    .table th,
    .table td {
      text-align: center;
      vertical-align: middle;
    }

    .table > :not(caption) > * > * {
      padding-right: 26px;
    }

    .sorting {
      text-align: center;
    }
  }


  .link-wrap {
    display: flex;
    justify-content: start;
  }

  .table-section {
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 80px;
    background-color: var(--card-background-color);
    @include media-breakpoint-down(sm) {
      padding: 18px 30px;
    }
  }

  .col-sm-12 {
    padding: 0;
  }

  .table > :not(caption) > * > * {
    color: var(--text-color) !important;
  }

  table.dataTable {
    // color of borders
    border-color: transparent;
  }

  .dataTables_length {
    label {
      display: flex;
      align-items: center;

      select {
        margin: 0 10px;
        color: var(--text-color);
        background-color: var(--search-input-background-color);
      }

    }
  }

  table.dataTable.table-striped > tbody > tr.odd > * {
    box-shadow: none;
  }

  table.dataTable thead > tr > th.sorting:after,
  table.dataTable thead > tr > th.sorting:before {
    // delete sorting arrow
    display: none;
  }

  .nav-tabs,
  .nav-link {
    color: var(--text-color);
    border: none;
  }

  .nav-link.active {
    color: var(--text-color);
    font-weight: 700;
    border-color: var(--container-background-color);
    border-bottom: 1px solid var(--text-color);
    background: var(--container-background-color);
  }

  #contactTable_wrapper,
  #uploadTable_wrapper,
  #userTable_wrapper,
  #importTable_wrapper,
  #downloadTable_wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
  }


  .table-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    .show-entire-custom {
      display: flex;
      justify-content: start;
      align-items: center;
      width: 50%;
    }

    .search-section-custom {
      display: flex;
      justify-content: end;
      align-items: center;
      width: 50%;

      label {
        display: flex;
        align-items: center;
        height: 60px;
      }
    }

    @include media-breakpoint-down(lg) {
      align-items: end;
      flex-direction: column;

      .search-section-custom {
        width: 100%;
      }

      .show-entire-custom {
        justify-content: end;
      }

      .dataTables_filter {
        width: 100%;

        label {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 100%;

          input {
            width: 100%;
          }
        }
      }
    }
  }

  .table-footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 50px;

    ul.pagination {
      justify-content: end !important;
    }

    .show-entire-custom {
      font-size: 14px;
      @include media-breakpoint-up(sm) {
        width: 50%;
      }
    }

    .pages-section-custom {
      @include media-breakpoint-up(sm) {
        width: 50%;
      }
    }

    .page-link {
      font-size: 12px;
    }

    .dataTables_paginate .previous {
      display: none;
    }


    @include media-breakpoint-down(lg) {
      align-items: start;
      flex-direction: column;

      .pages-section-custom {
        width: 100%;
      }

    }
  }

  // TABLE MOBILE VERSION

  .table-mobile-class,
  .rows-mobile {
    @include media-breakpoint-down(lg) {
      display: none;
    }
  }

  .rows-mobile-show {
    @include media-breakpoint-down(lg) {
      text-align: start !important;
      padding-right: 0;
      margin: 40px 0;
      border-bottom: 1px solid var(--text-color);
    }
  }

  .rows-mobile-show:hover {
    a {
      font-weight: 500;
    }
  }

  .paginate_button {
    background-color: var(--search-input-background-color);
    margin-right: 8px;
    border: 1px solid var(--border-color);
    border-radius: 4px;

    * {
      color: var(--text-color);
      background-color: var(--search-input-background-color);
    }
  }

  .page-link {
    &:focus,
    &:active {
      box-shadow: none !important;
      border: 1px solid var(--text-color);
    }
  }

  .page-link.active, .active > .page-link {
    border: 1px solid var(--border-color-active);
  }

}

.sort-select-section {
  select {
    margin-left: 8px;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
  }
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
  justify-content: flex-end !important;
}

.action-container {
  height: 100%;
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  background-color: var(--container-background-color);

  .action-section {
    width: 800px;
    background-color: var(--card-background-color);
    padding: 20px 40px 40px 40px;
    margin: 40px 0;

    @include media-breakpoint-down(xxl) {
      width: 700px;
    }
    @include media-breakpoint-down(xl) {
      width: 600px;
    }
    @include media-breakpoint-down(lg) {
      width: 100%;
      margin: 0;
    }
  }

  h1 {
    margin: 0;
    font-size: 20px;
    color: var(--text-color);
  }

  button,
  .button-delete {
    font-size: 16px;
    padding: 16px 20px;
  }

  label {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
  }

  input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(var(--invert-calendar-picker-indicator));
  }

  .button-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  @include media-breakpoint-down(sm) {
    button,
    .button-delete {
      width: 100%;
      margin: 10px 0;
    }

    .button-wrap {
      flex-direction: column;
      align-items: center;

      a {
        width: 100%;
      }
    }
  }

}

// 3. mobile dropzone

.dropzone .dz-default {
  margin: 0 !important;
}

.dropzone .dz-cust {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;

  span {
    margin-left: 6px;
    font-size: 18px !important;
  }
}

@include media-breakpoint-down(md) {
  .dropzone .dz-preview .dz-progress {
    top: 115% !important;
    background: rgba(54, 54, 58, 0.9) !important;
  }

  .dropzone .dz-preview {
    margin: 20px 35px 0 30px !important;
  }

  .dz-cust {
    color: white;
    background: transparent;
    border: none;
  }

  .dropzone {
    color: var(--white-color)
  }

  .dropzone .dz-size {
    display: none;
  }

  .dropzone .dz-details {
    padding-left: 0 !important;
    min-width: 0 !important;
  }

  .dropzone .dz-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    border-bottom: 1px solid white;
  }

  .dropzone .dz-image {
    color: var(--white-color);
    background: transparent !important;
    height: auto !important;
    width: 100% !important;

    img {
      border-radius: 20px !important;
    }
  }

  .dropzone .dz-preview.dz-image-preview {
    background: transparent !important;
  }

  .dropzone .dz-remove i {
    margin-top: -8px !important;
    margin-left: -30px !important;
  }

  .dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
    padding-left: 0 !important;
    font-size: 16px;
    color: var(--white-color);
    background-color: transparent;
    border-radius: 1px;
  }
  .file-container .file-preview:nth-child(n+4) {
    display: none;
  }

  .file-container.show-all .file-preview {
    display: block;
  }
}

// another

.disabled-custom-style {
  cursor: pointer;

  * {
    color: darkgray !important;
  }

  .bi-lock-fill {
    * {
      color: rgb(255, 150, 0) !important;
    }
  }
}

// popover

.popover {
  padding: 10px;
  background: var(--opposite-text-color);
  border: 1px solid var(--border-default-color);
  border-radius: 20px !important;


  .popover-header {
    color: var(--text-color);
    background: var(--opposite-text-color);
    text-align: center;
  }

  .popover-body {
    color: var(--text-color);
    background: var(--opposite-text-color);
    border-radius: 20px;
  }

  @include media-breakpoint-down(lg) {
    width: 240px;

    .popover-header {
      font-size: 14px;
    }

    .popover-body {
      font-size: 12px;
    }
  }
}

.copy-link {
  display: block !important;
  position: absolute !important;
  right: 0;
  top: 0;
  z-index: 2;
}

.download-container {
  font-family: "Poppins", sans-serif;
  background: rgba(32, 32, 32, 0.7);
  border-radius: 50px;
  @include media-breakpoint-down(md) {
    border-radius: 0;
  }


  h1 {
    margin: 20px auto;
    max-width: 70%;
    color: var(--white-color);
    font-size: 19px;
    font-weight: 100;
    letter-spacing: 3px;
    text-align: center;

  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 3px;
  }

  img {
    max-width: 120px;
    max-height: 120px;
  }

  button {
    margin-top: 30px;
    padding: 16px 40px;
    font-size: 20px;
  }

  i {
    color: grey !important;
  }

  .input-container {
    display: flex;
    gap: 16px;
    margin: 20px 0;
  }

  .digit-input {
    width: 40px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #fff;
    border-radius: 0;
    background-color: transparent;
    color: #fff;
    outline: none
  }

  .button-login {
    font-weight: 200;
    padding: 4px 8px;
  }

  .button-download-container {
    display: contents;


    .button-download {
      display: flex;
      height: 50px;
      width: 150px;
      border-radius: 6px;
    }

    .margin-20 {
      margin: 20px;
    }

    .file-name-wrap {
      font-size: 12px;
      padding-top: 16px;
      padding-left: 4px;
      max-height: 50px;
    }

    @include media-breakpoint-down(md) {
      display: block;

      .button-download {
        width: 200px;
      }
    }
  }
}

.your-plan-container {
  border: 1px solid var(--border-color);
  border-radius: 24px;

  h1 {
    font-size: 14px;
  }

  h2 {
    font-size: 26px;
    font-weight: 600;
  }

  div {
    margin: 40px 0;
  }

  .bold {
    font-size: 18px;
    font-weight: 900;
  }

  .save-section {
    background: #f2ebfb;
    color: var(--black-color);
    border-radius: 18px;
    padding: 10px;

    a {
      color: var(--black-color);
      text-decoration: underline var(--black-color);

      &:hover {
        color: #6247aa;
        text-decoration: underline #6247aa;

      }
    }
  }
}

.support-container {
  .accordion-button:not(.collapsed) {
    box-shadow: none;
  }

  .accordion {

    * {
      color: var(--text-color);
      background-color: var(--background-color);
    }

    .accordion-item {
      border-top: 0.5px solid var(--text-color);
    }

    .accordion-item:last-child {
      border-bottom: 0.5px solid var(--text-color);
    }

    .accordion-button {
      color: var(--text-color);
      background-color: var(--background-color);
    }

    .accordion-button::after {
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(0%) contrast(0%);
    }

    .accordion-button:not(.collapsed)::after {
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(0%) contrast(0%);
    }
  }

}

.payment-edit {
  color: var(--text-color);

  .custom-floating {
    margin: 20px 0;
    display: flex;
    flex-direction: column;

    label {
      font-weight: 600;
      font-size: 14px;
      color: var(--text-color);
    }

    input {
      padding: 6px 12px;
      color: var(--text-color);
      //background: var(--hide-input-background);
      border: 0.5px solid #606060;
    }
  }
}

#memberSection {
  display: none;

  .select2-selection, .select2-selection--multiple {
    background-color: var(--card-background-color);
    border: 1px solid var(--text-color);

  }

  .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid var(--text-color) !important;

  }

  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none !important;
    color: #e21212;
  }

  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: transparent;
    color: var(--text-color);
  }

}


.select-contact-guest {
  background: transparent;
  color: white;
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0;
  padding-left: 0;

  overflow: visible; /* Убедись, что псевдо-элемент не обрезается */
  position: relative;
  appearance: none; /* Убираем стандартную стрелочку */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px; /* Место для стрелочки */

  &:focus {
    background: transparent;
    color: white;
  }

}

#shared_file_guest_contact_guest {
  position: relative;
  z-index: 40;
  cursor: pointer;
}


.modal-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);

  .modal-content-form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 600px;
    padding: 40px;
    background: white;
    border-radius: 20px;
  }

}


.trusted-domains {
  width: 100vw;
  height: 100%;
  background-color: var(--background-color) !important;
  color: var(--text-color) !important;

  th, td {
  color: var(--text-color) !important;  
  }

  .btn-outline-primary {
    background-color: white;
    margin-right: 1rem;

    &:hover {
      color: var(--background-color) !important;  
      opacity: 0.9;
    }
  }

  .card {
    padding: 2rem;
    color: var(--text-color);
    background-color: var(--card-background-color);

    input {
      background: transparent;
    }
  }
}