simbiose-app :not(.s-ignore *) {
  all: initial;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1d2327;
  box-sizing: border-box;
}

simbiose-app {
  box-sizing: border-box;
}

simbiose-app.s-app h1,
simbiose-app.s-app h2,
simbiose-app.s-app h3,
simbiose-app.s-app h4,
simbiose-app.s-app h5,
simbiose-app.s-app h6 {
  display: block;
  font-weight: 700;
  color: #1d2327;
}

simbiose-app.s-app b,
simbiose-app.s-app strong {
  font-weight: 600;
  color: #1d2327;
  font-size: inherit;
}

simbiose-app.s-app i {
  font-style: italic;
}

simbiose-app.s-app div,
simbiose-app.s-app p,
simbiose-app.s-app section {
  display: block;
  width: 100%;
}

simbiose-app.s-app>div {
  width: 100%
}

simbiose-app.s-app .s-chip {
  background: whitesmoke;
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
  width: auto;
  display: inline-block;
}

simbiose-app.s-app .s-chip.chip-flex {
  color: white;
  display: flex;
  align-items: center;
  width: auto;
  max-width: 700px;
  margin: 10px auto;
}

simbiose-app.s-app h2 {
  font-size: 1.6em;
}

simbiose-app.s-app .s-modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0;

}

.s-modal-overlap,
simbiose-app.s-app .s-modal-overlap {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999999;
  background-color: rgba(0, 0, 0, .4);
  inset: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(1px);
}

.s-modal {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  min-height: 45%;
  background: white;
  flex-direction: column;
  border-radius: 5px;
  box-shadow: 1px 1px 8px #00000054;
  border: 5px #dbdbdb0a inset;
  position: relative;
}

.s-modal-bottom {
  position: absolute;
  bottom: 0;
  background-color: whitesmoke;
}

.sp-1 {
  padding: 10px;
}

simbiose-app.s-app .s-btn {
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  margin-right: 4px;
  box-shadow: 1px 1px 8px #00000054;
  color: white;
  cursor: pointer;
  display: inline-block;
}

simbiose-app.s-app .s-btn:active {
  box-shadow: unset;
  transform: scale(0.9);
}

simbiose-app.s-app .bg-blue {
  background-color: #2271b1;
}

simbiose-app.s-app .bg-purple {
  background-color: #8f8fe0;
}

simbiose-app.s-app .bg-black {
  background-color: #4e4a4a;
}

simbiose-app.s-app .bg-yellow {
  background: #dfe214;
}

simbiose-app.s-app .s-actions {
  text-align: center;
  margin: 10px 0;
}

simbiose-app.s-app .s-svg-container {
  height: 30px;
  width: 30px;
  margin-right: 18px;
}

simbiose-app.s-app .s-svg-container>svg {
  width: 100%;
  height: 100%;
}

simbiose-app.s-app .s-alert {
  color: #212121;
  background-color: #8fe0a8;
  border-radius: 5px;
  padding: 10px;
  font-size: 20px;
  box-shadow: 1px 1px 8px #00000054;
  margin: 10px 0;
  width: auto;
  text-align: center;
}

simbiose-app :disabled,
simbiose-app.s-app .disabled {
  border: 0 !important;
  box-shadow: unset !important;
  opacity: 0.3 !important;
  cursor: not-allowed !important;

}

simbiose-app.s-app .mr-1 {
  margin-right: 5px;
}

/** === LOADERS === **/

/** Loader 1 **/
.s-loader,
simbiose-app.s-app .s-loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
}

.s-loader:before,
simbiose-app.s-app .s-loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.s-circular,
simbiose-app.s-app .s-circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.s-path,
simbiose-app.s-app .s-path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {

  100%,
  0% {
    stroke: #d62d20;
  }

  40% {
    stroke: #0057e7;
  }

  66% {
    stroke: #008744;
  }

  80%,
  90% {
    stroke: #ffa700;
  }
}

@keyframes color {

  100%,
  0% {
    stroke: #d62d20;
  }

  40% {
    stroke: #0057e7;
  }

  66% {
    stroke: #008744;
  }

  80%,
  90% {
    stroke: #ffa700;
  }
}

@keyframes show_notification_translate {

  to {
    right: 5vw;
  }
}

.s-notification {
  all: initial;

  padding: 20px;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0;
  border: 0;
  box-shadow: 1px 1px 18px #948e8e;
  font-size: 30px;
  color: white !important;
  font-weight: 600;
  position: absolute;
  top: 10vh;
  right: -30vw;
  animation: show_notification_translate .4s 1 forwards;
}

.s-notification.err {
  background-color: rgb(230, 80, 80) !important;
}

simbiose-app .s-modal-content {
  margin-top: 25px;
  padding: 10px;
  border-radius: 2px;
  width: 100% !important;
}

simbiose-app .s-circle {
  border-radius: 50%;
}

simbiose-app .s-avatar {
  height: 30px;
  width: 30px;
}

simbiose-app .s-mr-1 {
  margin-right: 10px !important;
}

simbiose-app.s-app .s-card-info {
  background-color: var(--good-news-text-color) !important;
  color: var(--good-news-primary) !important;
  padding: 10px;
  border-radius: 2px !important;
  display: flex !important;
  align-items: center;
  width: 100%;
  box-shadow: 0px 3px 18px #606060;
  z-index: 9999 !important;
}

simbiose-app.s-app .s-notepad {
  /* all: inherit; */
  position: relative;
  padding: 0 10px;
  margin-top: 3px;
}

simbiose-app.s-app .s-notepad-overlap {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--good-news-text-color) !important;
  color: var(--good-news-primary) !important;
  top: 0;
  opacity: 0.06;
  left: 0;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

simbiose-app.s-modal-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 40vh;
  z-index: 9999;
  padding: 10px 20px;
  display: none;
  transform: translateY(100vh);
  overflow-y: auto;
  box-shadow: 0 -1px 4px var(--good-news-primary);
}

simbiose-app.modal-expanded {
  top: 0 !important;
  width: 100% !important;
  height: 100vh !important;
}

simbiose-app.s-modal-bottom,
simbiose-app.s-modal-bottom *:not(.s-ignore) {
  color: var(--good-news-text-color) !important;
  background-color: var(--good-news-primary) !important;
}

simbiose-app.s-modal-bottom .modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  content: "\f158";
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-family: dashicons;
  font-size: 32px;
}

.s-modal-bottom .modal-close::before {
  inset: 0 auto;
}

simbiose-app.s-modal-bottom .invert *,
simbiose-app.s-modal-bottom .invert_bg {
  background-color: var(--good-news-secondary) !important;
  color: var(--good-news-primary) !important;
}

@keyframes move-to-top {

  to {
    transform: translateY(0);
  }
}

@keyframes move-to-bottom {
  to {
    transform: translateY(100vh);
  }

}

.s-move-to-top {
  animation: move-to-top .2s .2s forwards ease-in;
}

.s-move-to-bottom {
  animation: move-to-bottom .2s .2s forwards ease-in;
}

@keyframes s-toast {

  from {
    opacity: 1;

  }

  to {
    opacity: 1;
    background-color: navajowhite;
  }
}


.s-toast {
  animation: s-toast .3s 0s 8 ease-in-out;
}

simbiose-app.s-app .box {
  border: none;
  font-size: 22px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 1px 1px 8px #dfd6d6;
  margin-right: 5px;
  font-weight: bold;
}

simbiose-app.s-app .s-flex {
  display: flex;
}

simbiose-app.s-app .align-center {
  align-items: center;
}

simbiose-app.s-app .mb-1 {
  margin-bottom: 10px;
}

simbiose-app.s-app .compare-panel div:nth-child(1) {
  width: 65%;
  border-right: 2px solid;
}

simbiose-app.s-app .compare-panel div:nth-child(2) {
  width: 35%;
}

simbiose-app.s-app .compare-panel h4 {
  box-shadow: 1px 1px 8px #dfd6d6;
  padding: 10px;
  font-size: 16px;
}

simbiose-app.s-app .radius-top-left {
  border-top-left-radius: 12px;
}

simbiose-app.s-app .radius-top-right {
  border-top-right-radius: 12px;
}

simbiose-app.s-app .radius-bottom-right {
  border-bottom-right-radius: 12px;
}

simbiose-app.s-app .s-card-panel {
  border: none;
  padding: 17px;
  background-color: whitesmoke !important;
  box-shadow: 1px 1px 9px #ccc6c6;
  border-radius: 12px;
}

simbiose-app.s-app .s-card-panel *:not(.s-btn, .s-ignore) {
  background-color: whitesmoke !important;

}

simbiose-app.s-app .full-box {
  width: 100% !important;
  height: 100% !important;
}

simbiose-app.s-app .full-width {
  width: 100% !important;
  height: max-content;
  margin: 10px 0;
}

simbiose-app.s-app .full-width:first-child {
  margin-top: 0;
}

simbiose-app.s-app .part-box-horizontal {
  width: 60%;
}

simbiose-app.s-app .ml-2 {
  margin-left: 20px;
}


simbiose-app.s-app .mini-circle {
  height: 15px;
  width: 15px;
  margin: 0 5px;
  display: inline-block;
  background-color: black;
  border-radius: 50%;
}

simbiose-app .divider {
  border: 1px solid whitesmoke;
  margin: 5px 0;
}

simbiose-app.s-app .s-modal-content a>h3 {
  color: #2271b1 !important;
  cursor: pointer;
  padding: 0 5px;
}



simbiose-app.s-app .s-modal-content a>h3:hover {
  border: 1px solid !important;
  background-color: #2271b12b !important;
}

simbiose-app .s-shadow {
  box-shadow: 1px 1px 9px #ccc6c6;
}

simbiose-app .px-1 {
  padding: 0 10px;
}

simbiose-app .py-1 {
  padding: 10px 0;
}

simbiose-app .dashicons {
  font-family: 'dashicons';
  font-size: 27px;
}

simbiose-app.s-app .dashicons:hover {
  background-color: rgba(0, 0, 0, .2) !important;
}

simbiose-app .dashicons:active {
  transform: scale(0.9);
}

simbiose-app .expand {
  position: absolute;
  right: 78px;
  top: 10px;
  cursor: pointer;
  padding: 10px;
}

simbiose-app .livenow {
  width: 30px;
  padding: 10px 40px 12px 40px;
  margin: 0 auto;
  display: inline-block;
}

simbiose-app .livenow>div {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  position: absolute;
  margin: 0 auto;
  border: 3px solid rgba(255, 0, 0, 0.6);
  -webkit-animation: s-live 1.4s infinite ease-in-out;
  animation: s-live 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

simbiose-app .livenow>div:nth-child(1) {
  background-color: rgba(255, 255, 255, 0.3);
  background-color: white;
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

simbiose-app .livenow>div:nth-child(2) {
  -webkit-animation-delay: 0.16s;
  animation-delay: 0.16s;
}

simbiose-app .livenow>div:nth-child(3) {
  -webkit-animation-delay: 0.42s;
  animation-delay: 0.42s;
  border: 3px solid rgba(255, 255, 255, 0.5);
}

simbiose-app .livenow>div:nth-child(4) {
  border: 3px solid white;
  -webkit-animation-delay: -0.42s;
  animation-delay: -0.42s;
}

simbiose-app .p-0 {
  padding: 0 !important;
}

@-webkit-keyframes s-live {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0.6);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes s-live {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

simbiose-app .s-modal-container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

simbiose-app .s-modal-container .modal-content {
  width: 100%;
  height: 100%;
}