:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
}

.Toastify--animate-icon {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@-webkit-keyframes Toastify__trackProgress {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes Toastify__trackProgress {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.Toastify__progress-bar--animated {
  -webkit-animation: Toastify__trackProgress linear 1 forwards;
          animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  -webkit-transform-origin: right;
          transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  -webkit-animation: Toastify__spin 0.65s linear infinite;
          animation: Toastify__spin 0.65s linear infinite;
}

@-webkit-keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
            transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
            transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
}
@-webkit-keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes Toastify__bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  -webkit-animation-name: Toastify__bounceInLeft;
          animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  -webkit-animation-name: Toastify__bounceInRight;
          animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  -webkit-animation-name: Toastify__bounceInDown;
          animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  -webkit-animation-name: Toastify__bounceInUp;
          animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  -webkit-animation-name: Toastify__bounceOutLeft;
          animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  -webkit-animation-name: Toastify__bounceOutRight;
          animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  -webkit-animation-name: Toastify__bounceOutUp;
          animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  -webkit-animation-name: Toastify__bounceOutDown;
          animation-name: Toastify__bounceOutDown;
}

@-webkit-keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  -webkit-animation-name: Toastify__zoomIn;
          animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  -webkit-animation-name: Toastify__zoomOut;
          animation-name: Toastify__zoomOut;
}

@-webkit-keyframes Toastify__flipIn {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes Toastify__flipIn {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
@-webkit-keyframes Toastify__flipOut {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes Toastify__flipOut {
  from {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  -webkit-animation-name: Toastify__flipIn;
          animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  -webkit-animation-name: Toastify__flipOut;
          animation-name: Toastify__flipOut;
}

@-webkit-keyframes Toastify__slideInRight {
  from {
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__slideInRight {
  from {
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInLeft {
  from {
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInUp {
  from {
    -webkit-transform: translate3d(0, 110%, 0);
            transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    -webkit-transform: translate3d(0, 110%, 0);
            transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideInDown {
  from {
    -webkit-transform: translate3d(0, -110%, 0);
            transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    -webkit-transform: translate3d(0, -110%, 0);
            transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(110%, 0, 0);
            transform: translate3d(110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-110%, 0, 0);
            transform: translate3d(-110%, 0, 0);
  }
}
@-webkit-keyframes Toastify__slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 500px, 0);
            transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 500px, 0);
            transform: translate3d(0, 500px, 0);
  }
}
@-webkit-keyframes Toastify__slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -500px, 0);
            transform: translate3d(0, -500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -500px, 0);
            transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  -webkit-animation-name: Toastify__slideInLeft;
          animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  -webkit-animation-name: Toastify__slideInRight;
          animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  -webkit-animation-name: Toastify__slideInDown;
          animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  -webkit-animation-name: Toastify__slideInUp;
          animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  -webkit-animation-name: Toastify__slideOutLeft;
          animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  -webkit-animation-name: Toastify__slideOutRight;
          animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  -webkit-animation-name: Toastify__slideOutUp;
          animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  -webkit-animation-name: Toastify__slideOutDown;
          animation-name: Toastify__slideOutDown;
}

@-webkit-keyframes Toastify__spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes Toastify__spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*# sourceMappingURL=ReactToastify.css.map */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  font-family: "Inter", sans-serif !important;
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #DCDFE9;
}

::-webkit-scrollbar-thumb {
  background: #4E69B2;
  border-radius: 10px;
}

.product-menurr .MuiPaper-root {
  border: 1px solid #DCDFE9;
}
.familyProduct-menu .MuiPaper-root{
  background: #FFFFFF;
  border: 1px solid rgba(28, 28, 28, 0.1);
  border-radius: 8px;
  -webkit-filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.05));
}
.familyProduct-menu .MuiPaper-root ul{
  padding: 0;
}
.react-flow__node-networkZone {
  background: transparent;
  width: 24.875rem;
}

.react-flow__node-internalCluster,
.react-flow__node-externalCluster {
  width: 19.6875rem;
}

.react-flow__node-networkZone,
.react-flow__node-internalCluster,
.react-flow__node-externalCluster {
  /* z-index: 1; */
  position: absolute;
}

.react-flow__node-internalCluster.selected,
.react-flow__node-externalCluster.selected,
.react-flow__node-complexExternalNode,
.react-flow__node-complexInternalNode {
  /* z-index: 7 !important; */
  position: absolute;
}

.react-flow__node-intermediateObject,
.react-flow__node-simpleExternalNode,
.react-flow__node-simpleInternalNode,
.react-flow__node-simpleExternalNode,
.react-flow__node-internalAdditional,
.react-flow__node-externalAdditional {
  /* z-index: 8 !important; */
  position: absolute;
}

.react-flow__node-internalBrick,
.react-flow__node-externalBrick,
.react-flow__node-personNode {
  /* z-index: 9 !important; */
  position: absolute;
}

.react-flow__nodes {
  /* z-index: 10 !important; */
}

.react-flow__edges,
.react-flow__edge {
  z-index: 10001 !important;
}

.with_higher_z_index {
  z-index: 10001 !important;
}

.invisible {
  visibility: hidden !important;
}

.MuiAutocomplete-groupLabel {
  font-weight: 700 !important;
  color: #000 !important;
}

.red-border {
  -webkit-box-shadow: 0px 0px 10px 5px rgba(255, 0, 0, 1);
          box-shadow: 0px 0px 10px 5px rgba(255, 0, 0, 1);
  -webkit-transition: boxShadow 0.2s ease-in-out;
  transition: boxShadow 0.2s ease-in-out;
}

.project-list {
  max-height: calc(100vh - 272px);
  overflow-y: scroll;
}

.network-zone {
  max-height: calc(100vh - 411px);
  overflow-y: scroll;
}

.list-rules {
  max-height: calc(100vh - 318px);
  overflow-y: scroll;
}

.objects-parameter {
  max-height: calc(96vh - 274px);
  overflow-y: scroll;
}

.homepage_list_wrap {
  max-height: 100vh;
  overflow-y: scroll;
}

.homepage_list_wrap .MuiPagination-ul {
  justify-content: start;
}

.product_page_pagination .MuiStack-root{
  margin-top: 0px;
}

.homepage_list_wrap .MuiPagination-ul li {
  background-color: white;
  border: 1px solid #E9E9E9;
  height: 36px;
  width: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.homepage_list_wrap .application-list{
  padding: 0 20px 0 24px;
}
.homepage_list_wrap .MuiStack-root {
  margin-right: 3px;
}

.homepage_list_wrap .MuiPagination-ul li button:hover{
  background-color: transparent;
}

.homepage_list_wrap .MuiPagination-ul li:has(button.Mui-selected) {
  background-color: #E9E9E9;
}

.homepage_list_wrap .MuiPagination-ul li:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.homepage_list_wrap .MuiPagination-ul li:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.homepage_list_wrap .MuiPagination-ul .Mui-selected {
  background-color: transparent;
  color: #B3B3B3;
  border-radius: 0px;
}

.homepage_list_wrap .MuiPagination-ul .Mui-selected:hover{
  background-color: transparent;
  color: #B3B3B3;
}

.line-clamp{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.homepage_list_wrap .header-list {
  border: 1px solid #1c1c1c1a;
  padding: 0px 30px;
  background: white;
  top: 5rem;
  border-top-left-radius: 8px;   
  border-top-right-radius: 8px;
  max-width: 100%;
  max-height: 60px;
}
.infrastructure {
  max-height: calc(100vh - 312px);
  overflow-y: scroll;
}

.infrastructure-grid {
  grid-template-columns: 0.5fr 1fr 80px !important;
}

.review-process {
  max-height: calc(100vh - 565px);
  overflow-y: scroll;
}

.attributes {
  max-height: calc(100vh - 312px);
  overflow-y: scroll;
}

.products_list {
  max-height: calc(100vh - 266px);
  overflow-y: scroll;
}

.external_service {
  max-height: calc(100vh - 344px);
  overflow-y: scroll;
}

.users_list {
  max-height: calc(100vh - 397px);
  overflow-y: scroll;
}

.setting_integration {
  height: calc(100vh - 304px);
  overflow-y: auto;
}

.deployment-team-table {
  max-height: calc(100vh - 456px);
  overflow-y: scroll;
}

.compatibility-table {
  height: calc(100vh - 319px);
  overflow-y: auto;
  margin-top: 9rem;
}

.assets-table-body-wrap {
  max-height: calc(98vh - 384px);
  overflow-y: scroll;
  min-height: 150px;
}

.edit-asset-content {
  padding: 0;
}

.edit-asset-content .edit-asset-rules {
  flex-direction: column;
  grid-gap: 20px;
  gap: 20px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

.custom-scrollbar:hover::-webkit-scrollbar-thumb {
  background: #4E69B2;
}

.custom-scrollbar:hover::-webkit-scrollbar-thumb:hover {
  background: #4E69B2;
}

.hatched-background {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    transparent 10px,
    transparent 20px
  ) !important;
  background-size: 28px 28px !important;
}
.user-bg {
  display: block;
  max-width: 430px;
  margin-bottom: 0px;
  border-radius: 0 0 8px 8px;
  width: 100%;
}
.inter {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.user-image {
  max-width: 110px;
  width: 100% !important;
  height: 110px !important;
}
.review-menu *{
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 12px;
color: #1C1C1CB2;

}
.review-menu ul{
  border: 1px solid #1C1C1C1A;
  -webkit-box-shadow: 0px 4px 10px 0px #0000000D;
          box-shadow: 0px 4px 10px 0px #0000000D;
  border-radius: 8px;
  padding: 5px 0;
}
.review-menu ul li {
  padding: 9px 24px 9px 11px;
}
.review-menu ul * {
  margin: 0;
}
.react-draggable-transform-overwrite {
  -webkit-transform: none !important;
          transform: none !important;
}

.status[data-status='Draft'] {
  border: 1px solid #FDDE62;
  background: #fdde621a;
  color: #FDDE62;
}
.status[data-status='In review'] {
  border: 1px solid #E29E3F;
  background: #e29e3f1a;
  color: #E29E3F;
}
.status[data-status='Waiting for approval'] {
  border: 1px solid #007FFF;
  background: #007fff1a;
  color: #007FFF;
}
.status[data-status='Approved'] {
  border: 1px solid #4598D0;
  background: #4598d033;
  color: #4598D0;
}
.status[data-status='Design to build'] {
  border: 1px solid #4F64AE;
  background: #4f64ae1a;
  color: #4F64AE;
}
.status[data-status='Design and build alignment'] {
  border: 1px solid #7A2C8B;
  background: #7a2c8b1a;
  color: #7A2C8B;
}
.status[data-status='Deployed'] {
  border: 1px solid #0CAD43;
  background: #0cad431a;
  color: #0CAD43;
}
.status[data-status='Rejected'] {
  border: 1px solid #FF0000;
  background: #ff00001a;
  color: #FF0000;
}
body .flatpickr-months .flatpickr-month,
body .flatpickr-weekdays,
.flatpickr-innerContainer span.flatpickr-weekday,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-day.selected, .flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{
  background: #4a7abc !important;
  color: #fff !important;
}
.flatpickr-day.selected, .flatpickr-day.startRange{
  background: #4a7abc !important;
  border-color: #4a7abc !important;
}
.flatpickr-calendar.arrowTop:after{
  border-bottom-color:  #4a7abc !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-time,
.flatpickr-day{
  border-radius: 0 !important;
}
.protocols {
  max-height: calc(96vh - 382px);
  overflow-y: scroll;
}
.protocols-grid {
  grid-template-columns: 1fr 0.5fr 80px !important;
}

.parameters {
  max-height: calc(100vh - 312px);
  overflow-y: scroll;
}

.parameters-grid {
  grid-template-columns: 1fr 1fr 1fr 80px !important;
}
.conformation-modal {
  pointer-events: none;
}
.conformation-modal .Toastify__toast-icon{
  display: none;
}

/* TL Draw Styling */

.tl-watermark_SEE-LICENSE{
  display: none !important;
}
.tl-background{
  background-color: #bbbec12e !important;
  background-image: radial-gradient(#dddddd 1px, transparent 0);
  background-size: 20px 20px;
  z-index: 1;
}

#tl-draw-pages-portal{
  z-index: 10;
}

.icon-svg {
  width: 20px;
  height: 20px;
  -webkit-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.tl-rich-text-wrapper *,
.tl-text-content__wrapper .tl-rich-text,
.tl-text-content__wrapper .tl-rich-text *,
.tl-arrow * , .tl-arrow-label * {
  font-family: inherit !important;
  min-width: auto !important;
}

.tl-text-wrapper[data-font='draw']{
  font-family: var(--tl-font-draw) !important;
}

.tl-text-wrapper[data-font='sans']{
  font-family: var(--tl-font-sans) !important;
}

.tl-text-wrapper[data-font='serif']{
  font-family: var(--tl-font-serif) !important;
}

.tl-text-wrapper[data-font='mono']{
  font-family: var(--tl-font-mono) !important;
}

.filter-ui ul p:nth-child(1) {
  color: #414042;
  font-size: 16px;
  font-weight: 600;
  padding: 14px;
  border-bottom: 1px solid #F3F3F5;
  margin-bottom: 16px;
}
.filter-ui ul {
  border-radius: 8px;
  padding: 0px;
}

.filter-ui .FilterSearch__SearchBlock-dijqrn-0 {
  margin: 16px 10px 8px !important;
  color: #414042;
}

.filter-ui ul div input {
  padding-right: 20px;
  border-radius: 8px;
  height: 40px;
  width: 100%;
}

.filter-ui ul li {
  padding: 0px 6px;
  margin-bottom: 8px;
}

.filter-ui ul li:last-child {
  margin-bottom: 10px;
}
.filter-ui .css-3dzjca-MuiPaper-root-MuiPopover-paper-MuiMenu-paper {
  padding-right: 0 !important;
  width: 260px;
  max-height: 300px;
  border-radius: 8px;
}

.filter-ui .css-kk1bwy-MuiButtonBase-root-MuiMenuItem-root:hover {
  background-color: transparent;
}

.filter-ui .MuiTypography-body1 {
  color: #333333;
  font-size: 13px;
  font-weight: 400;
}
.list-name {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.list-name:hover {
    color: #245575 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.ht_nestingCollapse,
.ht_nestingExpand {
  background-color: #ffffff !important;
  -webkit-box-shadow: 0 0 2px rgb(164 173 181) !important;
          box-shadow: 0 0 2px rgb(164 173 181) !important
}

.ht_nestingCollapse:hover,
.ht_nestingExpand:hover {
  background-color: #d2dfff !important;
  border-color: #4E69B2 !important;
}

.ht_nestingCollapse:before,
.ht_nestingExpand:before {
  color: #4E69B2 !important;
}

.ht_nestingCollapse,
.ht_nestingExpand,
.ht_nestingCollapse:before,
.ht_nestingExpand:before {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.issue-modal .MuiDialog-container .MuiPaper-root.MuiDialog-paper {
  max-width: 710px;
  border-radius: 12px;
}
.issue-modal .MuiDialog-container .MuiPaper-root.MuiDialog-paper .MuiBox-root:nth-child(1) {
  background: transparent;
  padding: 8px 20px;
  height: auto;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0px;
}

.issue-modal .MuiDialog-container .MuiPaper-root.MuiDialog-paper .MuiBox-root h4 svg {
  display: none;
}
.issue-modal .MuiDialog-container .MuiPaper-root.MuiDialog-paper .MuiBox-root h4 {
  color: #414042;
  font-size: 18px;
  font-weight: 600;
}
.issue-modal .MuiDialog-container .MuiPaper-root.MuiDialog-paper .MuiDialogContent-root .MuiStack-root {
  justify-content: end;
}
.issue-button.MuiButtonBase-root {
  color: #fff;
  background: #4E69B2;
  border-radius: 100px;
  padding: 12px 18px;
  border: 0;
  font-size: 14px;
  line-height: 1;
  height: auto;
}
.issue-button.MuiButtonBase-root:hover {
  background: #4a7abc;
}
/* .ht-root-wrapper > .ht-wrapper {
  overflow: visible !important;
}
.ht-root-wrapper > .ht-wrapper > .ht_master > .wtHolder {
  overflow: visible !important;
} */
.dialog-style .MuiDialog-paperScrollPaper{
  border-radius: 12px !important;
  padding: 0px;
}
.dialog-style .MuiDialog-paperScrollPaper > div:nth-child(1){
  padding: 10px 20px !important;
  border-bottom: 1px solid #cccccc;
  margin-bottom: 16px;
}
.dialog-style .MuiDialog-paperScrollPaper > div:nth-child(1):has(.MuiIconButton-root) {
  padding: 8px 8px 8px 20px !important;
}
.dialog-style .MuiDialog-paperScrollPaper > div:nth-child(1):has(.MuiIconButton-root) h4{
  padding: 0px !important;
  /* text-transform: lowercase; */
}
.dialog-style .MuiDialog-paperScrollPaper div h4::first-letter,
.dialog-style .MuiDialog-paperScrollPaper > div:nth-child(1):has(.MuiIconButton-root) h4::first-letter {
  text-transform: uppercase;
}
.dialog-style .MuiDialog-paperScrollPaper div h4{
  line-height: 1.5;
  color: #414042 !important;
  font-size: 18px;
  /* text-transform: lowercase; */
  font-weight: 600;
  margin: 0;
  padding: 4px 0px;
}
.dialog-style .MuiDialog-paperScrollPaper > div:nth-child(2){
  padding: 0px 20px 20px !important;
} 

/* popover design  */
.popover .MuiPopover-paper {
  border-radius: 8px;
  padding: 0px;
  max-width: 250px;
}
.popover.family-popover .MuiPopover-paper{
  max-width: 250px;
}
.popover h6 {
  padding: 16px 10px;
  margin: 0px;
  border-bottom: 1px solid rgba(224, 224, 224, 1);
  color: #414042;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}
.popover .MuiInputBase-root {
  background-color: #F3F3F5;
  margin: 16px 10px 10px 10px;
  color: #41404255;
  font-size: 13px;
  width: auto;
  border-radius: 8px;
}
.popover .MuiInputBase-root:not(.MuiInputBase-adornedStart) {
  margin: 0px 8px;
}
.popover .MuiBox-root {
  padding: 16px 10px;
}
.popover .MuiFormControl-root {
  width: 100%;
  margin: 0px;
}
.popover fieldset {
  border: none;
}
.popover .MuiFormGroup-root {
  padding: 0px 14px 6px 10px;
}
.popover label {
  margin-left: -8px;
}
.popover .MuiBox-root label {
  position: relative;
  -webkit-transform: none;
          transform: none;
  font-size: 14px;
  margin: 0 0 4px 12px;
}
.popover label span {
  color: #414042;
  font-size: 13px;
}
.popover .MuiInputBase-input {
  padding: 10px 14px;
  font-size: 13px;
  color: #414042;
  font-weight: 400;
}
.clear-button {
  font-size: 15px;
  color: rgb(78, 105, 178);
  opacity: 0.85;
  margin-left: 10px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 400;
  border: 0;
  background: transparent;
}
.clear-button:hover {
  color: rgb(78, 105, 178);
  opacity: 1;
}
.filter-icon {
  padding: 1px !important;
  border-radius: 4px !important;
  width: 20px !important;
  height: 22px !important;
  -webkit-transition: all 0.5 ease-in-out;
  transition: all 0.5 ease-in-out;
}
.filter-icon:hover {
  background: color-mix(in srgb, transparent, #181d1f 10%) !important;
}
.react-flow__canvas {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(224, 224, 224, 1);
}
.disable-col{
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgb(204, 204, 204);
  background-image: linear-gradient(45deg, rgb(136, 136, 136) 25%, rgb(102, 102, 102) 25%, rgb(102, 102, 102) 50%, rgb(136, 136, 136) 50%, rgb(136, 136, 136) 75%, rgb(102, 102, 102) 75%, rgb(102, 102, 102) 100%);
  top: 0;
  opacity: 25%;
  left: 0;
  background-size: 10px 10px;
  position: absolute;
  z-index: 10;
  pointer-events: none;
  border-radius: 8px;
}
.react-flow__canvas__helper_line {
  width: 100% ; 
  height: 100% ;
  position: absolute ;
  z-index: 10 ;
  pointer-events: none;
}

.font-draw {
  font-family: tldraw_draw, sans-serif !important;
}
.font-sans {
  font-family: tldraw_sans, sans-serif !important;
}
.font-serif {
  font-family: tldraw_serif, serif !important;
}
.font-mono {
  font-family: tldraw_mono, monospace !important;
}
.font-default {
  font-family: Inter, sans-serif !important;
}
.filter-badge {
  margin: 0px 14px 6px;
}
.filter-badge p {
  text-overflow: ellipsis;
  max-width: 204px;
  overflow: hidden;
}
.filter-badge > div > span > div{
  padding: 16px 0px !important;
}
.search-filter-input {
  background-color: #F3F3F5;
    margin: 16px 10px 10px 10px;
    color: #41404255;
    font-size: 13px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 0 !important;
}
.search-filter-input .MuiInputBase-input {
  padding: 10px 14px;
  font-size: 13px;
  color: #414042;
  font-weight: 400;
}
.search-filter-input fieldset {
  border: none;
}
.popover.filter-popover .MuiPopover-paper {
  max-width: 320px;
  overflow: visible;
}
.popover label span:hover  .MuiTouchRipple-root{
  background-color: #4e69b2;
  opacity: 0.1;
}
[id$="_text"],
[id$="_label_rect"] {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none; 
  pointer-events: auto; 
  cursor: pointer;
}

.view-control-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  scrollbar-width: none !important;
}

.view-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.view-content::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none !important;
}

.view-diagram,
.view-freedraw {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.popover.filter-popover .MuiPopover-paper {
  max-width: 320px;
  overflow: visible;
}
.separator {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out
}
.separator:hover {
  border-right: 2px solid #4e69b2 !important;
}
.fill-button:hover {
    background: #4a7abc;
}

