@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&display=swap");
* select, * input, * textarea {
  font-family: "Inter", sans-serif; }

select, input, textarea {
  font-family: "Inter", sans-serif; }
  select *, input *, textarea * {
    font-family: "Inter", sans-serif; }

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box; }

.btn {
  font-weight: 600 !important; }

.ImageViewLayout {
  display: flex;
  width: 100%;
  height: 600px;
  padding: 2rem 0;
  column-gap: 1rem; }
  .ImageViewLayout .__ImageHolder {
    display: flex;
    align-items: center;
    width: 35%;
    height: 100%;
    flex-wrap: wrap;
    row-gap: 1rem;
    z-index: 10; }
    .ImageViewLayout .__ImageHolder .__ImageView {
      display: inline-block;
      width: 100%;
      height: calc(50% - 0.5rem);
      background: #000;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .ImageViewLayout .__ImageHolder .__ImageView img {
        border-radius: 10px;
        -webkit-border-radius: 10px;
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .ImageViewLayout .__Image_1 {
    position: relative;
    display: inline-block;
    width: 65%;
    height: 100%;
    background: #111;
    border-radius: 10px;
    -webkit-border-radius: 10px; }
    .ImageViewLayout .__Image_1 .__ImageOver {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
      .ImageViewLayout .__Image_1 .__ImageOver img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .ImageViewLayout .__Image_1 img {
      border-radius: 10px;
      -webkit-border-radius: 10px;
      width: 100%;
      height: 100%;
      object-fit: cover; }
      .ImageViewLayout .__Image_1 img.blur {
        opacity: 0.4;
        filter: blur(50px); }
    .ImageViewLayout .__Image_1 .__BackgroundFilter {
      position: absolute;
      z-index: 1;
      width: 100%;
      bottom: 0;
      height: 300px;
      background: #000;
      background: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 100%);
      border-radius: 0 0 10px 10px;
      -webkit-border-radius: 0 0 10px 10px; }
    .ImageViewLayout .__Image_1 .__TextView {
      position: absolute;
      bottom: 40px;
      z-index: 2;
      left: 40px;
      color: #fff; }
      .ImageViewLayout .__Image_1 .__TextView .__HerstellerTyp {
        font-size: 40px;
        font-weight: 600; }
      .ImageViewLayout .__Image_1 .__TextView .__HerstellerName {
        font-size: 30px;
        font-weight: 400; }
      .ImageViewLayout .__Image_1 .__TextView .__InfoLabels {
        display: flex;
        column-gap: 0.5rem;
        padding-top: 2rem; }
        .ImageViewLayout .__Image_1 .__TextView .__InfoLabels .__Label {
          font-weight: 500;
          display: inline-block;
          padding: 0.3rem 1rem;
          border-radius: 100px;
          -webkit-border-radius: 100px;
          backdrop-filter: blur(8px); }

.ViewItemLayout {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center; }
  .ViewItemLayout .__View {
    display: inline-block;
    width: 1080px;
    position: relative; }
    .ViewItemLayout .__View .__MenuItems {
      position: absolute;
      right: 0px;
      top: 30px;
      z-index: 20; }
      .ViewItemLayout .__View .__MenuItems .__ItemList {
        position: fixed; }
        .ViewItemLayout .__View .__MenuItems .__ItemList ul li {
          cursor: pointer;
          margin: 0.4rem 0;
          list-style: none;
          padding-left: 1rem;
          border-left: 4px solid rgba(41, 66, 253, 0.1);
          color: rgba(255, 255, 255, 0.4);
          font-weight: 400; }
          .ViewItemLayout .__View .__MenuItems .__ItemList ul li.active, .ViewItemLayout .__View .__MenuItems .__ItemList ul li:hover {
            font-weight: 600;
            color: #fff;
            border-left: 4px solid #2942fd; }
    .ViewItemLayout .__View .__ContentLayout {
      display: inline-block;
      width: 100%; }
      .ViewItemLayout .__View .__ContentLayout .__Daten {
        position: relative;
        z-index: 10;
        display: inline-block;
        width: 100%;
        background: #171822;
        border-radius: 10px;
        -webkit-border-radius: 10px; }
        .ViewItemLayout .__View .__ContentLayout .__Daten .__Items {
          display: grid;
          width: 100%;
          grid-template-columns: repeat(2, 1fr);
          grid-gap: 0.7rem;
          padding: 1.5rem; }
          .ViewItemLayout .__View .__ContentLayout .__Daten .__Items .__Item {
            display: flex;
            width: 100%;
            font-size: 16px; }
            .ViewItemLayout .__View .__ContentLayout .__Daten .__Items .__Item .__Value {
              display: inline-block;
              width: 50%;
              color: #fff; }
            .ViewItemLayout .__View .__ContentLayout .__Daten .__Items .__Item .__Name {
              display: inline-block;
              width: 50%;
              color: rgba(255, 255, 255, 0.6);
              font-weight: 600; }
        .ViewItemLayout .__View .__ContentLayout .__Daten .__Title {
          display: inline-block;
          width: 100%;
          padding: 1rem 1.5rem;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          color: #fff;
          font-weight: 600;
          font-size: 24px; }
      .ViewItemLayout .__View .__ContentLayout .__Restauration {
        display: inline-block;
        width: 100%;
        padding-top: 0rem; }
        .ViewItemLayout .__View .__ContentLayout .__Restauration .__Title {
          color: #fff;
          display: inline-block;
          width: 100%;
          font-weight: 600;
          font-size: 24px; }
      .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 1rem;
        background: #fff; }
        .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item {
          padding: 1.5rem 0;
          display: inline-block;
          text-align: center; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item:nth-child(1) {
            background: #fff;
            border: 2px solid #EAF8EA;
            color: #33b934; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item:nth-child(2) {
            background: #fff;
            border: 2px solid #DBE8FF;
            color: #143eea; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item:nth-child(3) {
            background: #fff;
            border: 2px solid #EEEAFF;
            color: #4425c2; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item:nth-child(4) {
            background: #fff;
            border: 2px solid #FFF8E1;
            color: #FF6D00; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Value {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 46px;
            width: 100%;
            padding-top: 0.2rem;
            font-weight: 600;
            font-size: 30px; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Text {
            color: #666;
            display: inline-block;
            width: 100%;
            text-align: center;
            padding-top: 1rem;
            font-weight: 300;
            font-size: 16px; }
          .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon {
            color: #666;
            display: inline-block;
            position: relative; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon.Yellow i {
              color: #FF6D00; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon.Violet i {
              color: #4425c2; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon.Blue i {
              color: #143eea; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon.Green i {
              color: #33b934; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon .__Stack {
              position: absolute;
              top: 0; }
            .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon i {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 200px;
              height: 60px;
              font-size: 60px; }
              .ViewItemLayout .__View .__ContentLayout .__ShortInfoItems .__Item .__Icon i.blur {
                filter: blur(20px); }
      .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView {
        display: flex;
        width: 100%;
        column-gap: 3rem; }
        .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView {
          display: inline-block;
          width: 40%; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView .__PriceLabel {
            display: inline-block;
            font-weight: 300;
            color: #666; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView .__Price {
            display: inline-block;
            width: 100%;
            padding-top: 2rem;
            font-weight: 600;
            font-size: 30px; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView .__Location {
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            display: inline-block;
            width: 100%;
            padding-top: 1rem; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView .__SubTitle {
            display: inline-block;
            width: 100%;
            font-weight: 300;
            font-size: 20px; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__InfoView .__Title {
            display: inline-block;
            width: 100%;
            font-weight: 600;
            font-size: 30px; }
        .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__PhotoView {
          display: inline-block;
          width: 60%;
          height: 400px;
          background: #000;
          overflow: hidden;
          box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
          -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
          border-radius: 6px;
          -webkit-border-radius: 6px; }
          .ViewItemLayout .__View .__ContentLayout .__InfoPhotoView .__PhotoView img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
  .ViewItemLayout .__HeaderLayout {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(40px);
    display: inline-block;
    width: 100%;
    padding: 1rem 0; }
    .ViewItemLayout .__HeaderLayout .__Logo {
      display: flex;
      column-gap: 1rem;
      align-items: center;
      justify-content: center; }
      .ViewItemLayout .__HeaderLayout .__Logo .__Text {
        display: inline-block;
        color: #fff;
        font-size: 18px;
        font-weight: 600; }

.InfoContainerItems {
  display: grid;
  grid-template-columns: repeat(4, 1fr); }
  .InfoContainerItems .__Item {
    padding-left: 1.5rem;
    border-right: 1px solid #eee;
    display: inline-block;
    width: 100%; }
    .InfoContainerItems .__Item:last-child {
      border-right: 0; }
    .InfoContainerItems .__Item .__Value {
      display: inline-block;
      width: 100%;
      padding-top: 1rem;
      font-size: 24px; }
    .InfoContainerItems .__Item .__Title {
      display: flex;
      align-items: center;
      column-gap: 0.5rem;
      width: 100%; }
      .InfoContainerItems .__Item .__Title .__Name {
        font-weight: 600;
        font-size: 16px; }
      .InfoContainerItems .__Item .__Title .__Point {
        display: inline-block;
        width: 16px;
        height: 16px;
        background: #000;
        border-radius: 100px;
        -webkit-border-radius: 100px; }
        .InfoContainerItems .__Item .__Title .__Point.Blue {
          background: #143eea; }
        .InfoContainerItems .__Item .__Title .__Point.Yellow {
          background: #FF6D00; }
        .InfoContainerItems .__Item .__Title .__Point.Green {
          background: #33b934; }
        .InfoContainerItems .__Item .__Title .__Point.Red {
          background: #d72c30; }

.GridViewItems {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem; }
  .GridViewItems .__Item {
    color: #000;
    display: inline-block;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    background: rgba(30, 31, 44, 0.5) !important;
    box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden; }
    .GridViewItems .__Item:hover .__ImageView img.blur {
      filter: blur(50px); }
    .GridViewItems .__Item .__TextView {
      display: inline-block;
      width: 100%;
      padding: 1rem; }
      .GridViewItems .__Item .__TextView a {
        text-decoration: none; }
      .GridViewItems .__Item .__TextView .__Buttons {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 1rem;
        width: 100%;
        padding-top: 1rem;
        margin-top: 0.5rem; }
        .GridViewItems .__Item .__TextView .__Buttons .btn {
          backdrop-filter: blur(10px);
          background: rgba(255, 255, 255, 0.05) !important;
          margin: 0;
          width: 100%; }
        .GridViewItems .__Item .__TextView .__Buttons .__ButtonItem {
          cursor: pointer;
          opacity: 0.5;
          text-decoration: none;
          display: flex;
          flex-direction: column;
          justify-content: center;
          width: 100%;
          align-items: center;
          text-align: center;
          font-size: 11px;
          color: #fff; }
          .GridViewItems .__Item .__TextView .__Buttons .__ButtonItem:hover {
            opacity: 1; }
          .GridViewItems .__Item .__TextView .__Buttons .__ButtonItem i {
            display: inline-block;
            margin-bottom: 0.2rem;
            font-size: 24px; }
      .GridViewItems .__Item .__TextView .__TitleBlock {
        display: flex; }
        .GridViewItems .__Item .__TextView .__TitleBlock .__TitleSub {
          display: inline-block;
          width: 100%;
          min-height: 20px;
          font-weight: 300;
          font-size: 18px; }
        .GridViewItems .__Item .__TextView .__TitleBlock .__Title {
          display: inline-block;
          width: 100%;
          font-weight: 600;
          font-size: 14px; }
    .GridViewItems .__Item .__ImageView {
      position: relative;
      display: inline-block;
      width: 100%;
      height: 220px; }
      .GridViewItems .__Item .__ImageView .__KaufDatum {
        z-index: 2;
        position: absolute;
        top: 14px;
        right: 14px; }
        .GridViewItems .__Item .__ImageView .__KaufDatum .BadgeLabel {
          background: rgba(0, 0, 0, 0.2);
          backdrop-filter: blur(10px);
          color: #fff;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          padding: 0.1rem 0.6rem;
          font-weight: 600;
          font-size: 11px;
          display: inline-block; }
      .GridViewItems .__Item .__ImageView .__ImageLabel {
        position: absolute;
        left: 0;
        top: 0;
        z-index: 10; }
      .GridViewItems .__Item .__ImageView .__Img {
        z-index: 1;
        position: absolute;
        width: 100%;
        height: 100%; }
        .GridViewItems .__Item .__ImageView .__Img img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 10px 10px 0 0;
          -webkit-border-radius: 10px 10px 0 0; }
      .GridViewItems .__Item .__ImageView img.blur {
        filter: blur(40px);
        width: 100%;
        height: 100%;
        object-fit: cover; }

body {
  font-size: 14px;
  font-family: "Inter", sans-serif !important;
  background: #f3f4f8;
  overflow: auto;
  padding-top: 130px; }
  body.BackgroundTop {
    background: #101018 url("../../@assets/img/bg_top.png") top -100px center no-repeat !important; }
  body.Black {
    background: #101018; }
    body.Black .HeaderBetaLayout .__UserContent .__Profile {
      background: #171822; }
    body.Black .Nummernschild {
      color: #000; }
    body.Black .ResturantionView .__ViewItem .__Element {
      background: transparent; }
    body.Black .ResturantionView .__ViewItem {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    body.Black .GalleryItems .__Item .__ImageView {
      background: #171822; }
    body.Black .ResturantionView .__ViewItem .__Info {
      background: #171822;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
      top: 130px; }
    body.Black .ResturantionView {
      background: #171822; }
    body.Black .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box::after {
      border-bottom-color: #171822; }
    body.Black .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__LinkItem {
      color: #fff; }
      body.Black .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__LinkItem:hover {
        background: #171822; }
    body.Black .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box {
      background: #171822;
      color: #fff;
      filter: drop-shadow(0 10px 5px rgba(255, 255, 255, 0.01)); }
      body.Black .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__Title {
        display: none; }
    body.Black .DeleteModal .__View .__Box .__Button .btn--white, body.Black .WindowAlertModal .__View .__Box .__Button .btn--white,
    body.Black .Modal .__View .__Box .__Button .btn--white {
      color: #000; }
    body.Black .ProfileImageView {
      background: #171822; }
    body.Black .GreenInfo {
      background: rgba(100, 207, 144, 0.1);
      color: #64cf90; }
    body.Black .RedInfo {
      background: rgba(230, 60, 61, 0.1);
      color: #e63c3d; }
    body.Black .BlueInfo {
      background: rgba(76, 217, 237, 0.1);
      color: #4cd9ed; }
    body.Black .VioletInfo {
      background: rgba(185, 65, 255, 0.1);
      color: #B941FF; }
    body.Black .form-check-input.Black {
      background-color: #171822; }
    body.Black table.TableView {
      background: #171822 !important; }
    body.Black table.TableView tbody tr:hover td:first-child {
      background: #281c39 !important;
      border-left: 2px solid rgba(185, 65, 255, 0.9) !important; }
    body.Black table.TableView tbody tr:hover td:nth-child(2) {
      background: #111 !important;
      background: linear-gradient(90deg, #281c39 0%, rgba(0, 200, 83, 0) 100%) !important; }
    body.Black table.TableView tbody tr:hover td {
      background: transparent !important; }
    body.Black table.TableViewMini tbody tr td, body.Black table.TableViewMini tbody tr td:first-child, body.Black table.TableViewMini tbody tr td:nth-child(2) {
      background: transparent !important; }
    body.Black table.TableView tbody tr td {
      color: #fff;
      border-color: #101018 !important; }
      body.Black table.TableView tbody tr td a {
        color: #fff; }
      body.Black table.TableView tbody tr td .form-control {
        background: #171822 !important;
        border: 1px solid #171822; }
    body.Black table.TableView thead tr td, body.Black table.TableView thead tr th {
      background: #171822;
      color: #9596ac; }
    body.Black .__MainTitle .__Search .input-icon-addon {
      color: #fff; }
    body.Black .__MainTitle .__Search .form-control-rounded {
      background: #171822 !important;
      border: 0;
      color: #fff; }
    body.Black .__MainTitle .__Info {
      color: #fff; }
    body.Black .HeaderBetaLayout {
      background: rgba(16, 16, 24, 0.6) !important;
      box-shadow: 0 0 0 0;
      -webkit-box-shadow: 0 0 0 0;
      backdrop-filter: blur(20px); }
    body.Black .btn--white {
      background: transparent !important;
      color: rgba(255, 255, 255, 0.6); }
    body.Black .GridViewItems .__Item .__TextView .__Buttons {
      border-color: rgba(255, 255, 255, 0.1) !important; }
    body.Black .GridViewItems .__Item {
      background: #171822;
      /* Created with https://www.css-gradient.com */
      background: #FFFFFF00;
      background: -webkit-linear-gradient(top right, #FFFFFF00, #171822);
      background: -moz-linear-gradient(top right, #FFFFFF00, #171822);
      background: linear-gradient(to bottom left, #FFFFFF00, #171822);
      color: #fff; }
    body.Black table.TableView {
      background: #161616; }
    body.Black .HeaderBetaLayout {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    body.Black .ContentBoxLayout {
      overflow: hidden; }
    body.Black .ContentBoxLayout .__ContentView.Gray {
      background: #1c1d28; }
    body.Black .ContentBoxLayout .__ContentView {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      color: #fff; }
    body.Black .WhiteInfo {
      background: transparent;
      color: #fff; }
      body.Black .WhiteInfo:hover {
        background: #222e3e; }
    body.Black .InfoContainerItems .__Item {
      border-color: rgba(255, 255, 255, 0.1) !important; }
    body.Black .ContentBoxLayout .__TitleView .__Name {
      color: #fff; }
    body.Black .ContentBoxLayout {
      background: #171822; }
  body.NoPadding {
    padding: 0 !important; }

.TableLayout {
  display: inline-block;
  width: 100%;
  padding: 0rem; }

.sortable th.indicator-left::after {
  content: ''; }

.sortable th.indicator-left::before {
  margin-right: 3px;
  content: 'Ôû©'; }

.ModellItem {
  display: flex;
  column-gap: 1rem;
  align-items: center; }

.TableSearchView {
  display: inline-block;
  width: 100%;
  background: #171822;
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .TableSearchView__Results {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 1rem; }
  .TableSearchView__Search {
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%; }
    .TableSearchView__Search input {
      background: #171822 !important;
      color: #fff !important;
      border-radius: 10px !important;
      -webkit-border-radius: 10px !important;
      border: 0;
      width: 100% !important;
      padding: 0.7rem 1rem !important; }
  .TableSearchView__Table {
    display: inline-block;
    width: 100%; }

.TabSwitch {
  display: flex;
  width: 100%;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  background: #f9f9f9;
  padding: 0.5rem;
  column-gap: 0.5rem; }
  .TabSwitch .__Item {
    text-align: center;
    font-weight: 600;
    padding: 0.3rem 0;
    width: 100%;
    display: inline-block;
    border-radius: 100px;
    -webkit-border-radius: 100px; }
    .TabSwitch .__Item.Active, .TabSwitch .__Item:hover {
      cursor: pointer;
      background: #fff;
      box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1); }

input[type=text]:read-only {
  background: rgba(0, 0, 0, 0.05); }

.UploadFilesWidget {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  background: #171822;
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .UploadFilesWidget.Mac {
    background: transparent;
    margin-bottom: 0; }
    .UploadFilesWidget.Mac .__Title {
      border-bottom: 0 !important; }
  .UploadFilesWidget.White {
    background: #fff;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.05); }
    .UploadFilesWidget.White .__Title {
      color: #000; }
    .UploadFilesWidget.White .__Files {
      padding: 0 1rem; }
  .UploadFilesWidget.Disable {
    display: none; }
  .UploadFilesWidget .__Files {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05); }
  .UploadFilesWidget .__Title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 500;
    font-size: 14px;
    color: #fff; }

.UploadModal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  border: 3px dashed #fff;
  color: #fff;
  padding: 2rem 0;
  font-weight: 600;
  font-size: 32px; }
  .UploadModal.Mac {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    margin-bottom: 0; }
  .UploadModal.Black {
    color: #000;
    border: 3px dashed #ccc; }
  .UploadModal.Disable {
    display: none; }
  .UploadModal.No {
    display: inherit;
    border: inherit;
    padding: 0; }

.DateienStats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem; }
  .DateienStats .__Item {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #666;
    height: 120px; }
    .DateienStats .__Item.Blue {
      color: #6ba5ff;
      background: linear-gradient(10deg, #edf5ff 0%, #e0ebff 100%); }
    .DateienStats .__Item.Red {
      color: #e75da9;
      background: linear-gradient(10deg, #ffe8f5 0%, #ffd8ee 100%); }
    .DateienStats .__Item.Orange {
      color: #f8b823;
      background: linear-gradient(10deg, #fff5e6 0%, #ffedd2 100%); }
    .DateienStats .__Item.Violet {
      color: #7e6ae9;
      background: linear-gradient(10deg, #e1e0ff 0%, #ebebff 100%); }
    .DateienStats .__Item img {
      width: 42px; }
    .DateienStats .__Item span {
      display: inline-block; }
      .DateienStats .__Item span:nth-child(2) {
        font-weight: 600; }

.SummenBildungChart {
  display: inline-block;
  width: 100%; }

table.TableClean {
  width: 100%;
  border-collapse: collapse; }
  table.TableClean.EvenBackground tbody tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.05) !important; }
  table.TableClean tbody tr td, table.TableClean tbody tr th {
    padding: 0.5rem 1rem;
    border-top: 1px solid #eee; }
    table.TableClean tbody tr td .form-check-input, table.TableClean tbody tr th .form-check-input {
      background-color: #fff; }
      table.TableClean tbody tr td .form-check-input:checked, table.TableClean tbody tr th .form-check-input:checked {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23666666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e"); }
  table.TableClean thead tr td, table.TableClean thead tr th {
    position: relative;
    color: #666;
    padding: 0.5rem 1rem;
    font-size: 11px; }
    table.TableClean thead tr td.dir-u::before, table.TableClean thead tr th.dir-u::before {
      content: "\f106";
      font-family: "Line Awesome Free";
      right: 0;
      position: absolute; }
    table.TableClean thead tr td.dir-d::before, table.TableClean thead tr th.dir-d::before {
      content: "\f107";
      font-family: "Line Awesome Free";
      right: 0;
      position: absolute; }

.TableLayoutBeta {
  display: inline-block;
  width: 100%;
  background: #f9f9f9;
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .TableLayoutBeta.BackgroundRed {
    background: rgba(241, 213, 220, 0.3); }
    .TableLayoutBeta.BackgroundRed .GreenInfo {
      background: #ff4c79;
      color: #fff; }
    .TableLayoutBeta.BackgroundRed .__Title {
      border-color: rgba(241, 213, 220, 0.5) !important; }
    .TableLayoutBeta.BackgroundRed tbody tr td {
      border-color: rgba(241, 213, 220, 0.5) !important; }
    .TableLayoutBeta.BackgroundRed thead tr th {
      color: #ff4c79;
      border-color: rgba(241, 213, 220, 0.5) !important; }
    .TableLayoutBeta.BackgroundRed select {
      border-color: rgba(255, 76, 121, 0.2) !important; }
    .TableLayoutBeta.BackgroundRed input {
      border-color: rgba(255, 76, 121, 0.2) !important; }
      .TableLayoutBeta.BackgroundRed input:disabled {
        background: #f1d5dc !important;
        color: #ff4c79 !important;
        border-color: #ff4c79 !important; }
  .TableLayoutBeta.BackgroundOrange {
    background: rgba(240, 229, 217, 0.3); }
    .TableLayoutBeta.BackgroundOrange .GreenInfo {
      background: #f6b065;
      color: #fff; }
    .TableLayoutBeta.BackgroundOrange .__Title {
      border-color: rgba(240, 229, 217, 0.8) !important; }
    .TableLayoutBeta.BackgroundOrange tbody tr td {
      border-color: rgba(240, 229, 217, 0.8) !important; }
    .TableLayoutBeta.BackgroundOrange thead tr th {
      color: #f6b065; }
    .TableLayoutBeta.BackgroundOrange select {
      border-color: rgba(246, 176, 101, 0.2) !important; }
    .TableLayoutBeta.BackgroundOrange input {
      border-color: rgba(246, 176, 101, 0.2) !important; }
      .TableLayoutBeta.BackgroundOrange input:disabled {
        background: #f0e5d9 !important;
        color: #f6b065 !important;
        border-color: #f6b065 !important; }
  .TableLayoutBeta.BackgroundBlue {
    background: rgba(206, 221, 242, 0.3); }
    .TableLayoutBeta.BackgroundBlue .GreenInfo {
      background: #2e8cff;
      color: #fff; }
    .TableLayoutBeta.BackgroundBlue .__Title {
      border-color: rgba(206, 221, 242, 0.8) !important; }
    .TableLayoutBeta.BackgroundBlue tbody tr td {
      border-color: rgba(206, 221, 242, 0.8) !important; }
    .TableLayoutBeta.BackgroundBlue thead tr th {
      color: #2e8cff; }
    .TableLayoutBeta.BackgroundBlue select {
      border-color: rgba(46, 140, 255, 0.2) !important; }
    .TableLayoutBeta.BackgroundBlue input {
      border-color: rgba(46, 140, 255, 0.2) !important; }
      .TableLayoutBeta.BackgroundBlue input:disabled {
        background: #ceddf2 !important;
        color: #2e8cff !important;
        border-color: #2e8cff !important; }
  .TableLayoutBeta.__Top {
    margin-top: 1rem; }
  .TableLayoutBeta .__TableContent {
    display: inline-block;
    width: 100%; }
  .TableLayoutBeta .__Title {
    display: inline-block;
    width: 100%;
    font-weight: 600; }

.TabLayout {
  display: flex;
  align-items: center;
  column-gap: 0.5rem; }
  .TabLayout .TabItem {
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
    -webkit-border-radius: 100px; }
    .TabLayout .TabItem:hover, .TabLayout .TabItem.active {
      background: #2942fd; }

.ChartLayoutBlur {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  min-height: 300px;
  display: flex;
  background: rgba(23, 24, 34, 0.5); }
  .ChartLayoutBlur .__Left {
    display: inline-block;
    width: calc(100% - 260px);
    padding: 2rem 1rem 0; }
  .ChartLayoutBlur .__Right {
    display: inline-block;
    width: 260px;
    padding: 1rem; }

.__MenuItemsListener {
  position: absolute;
  right: 0px;
  top: 40px; }
  .__MenuItemsListener .__Items {
    position: fixed;
    z-index: 100;
    height: calc(100% - 170px);
    width: 300px;
    overflow: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent; }
    .__MenuItemsListener .__Items:hover {
      overflow: auto; }
    .__MenuItemsListener .__Items .__Links {
      display: inline-block;
      width: 100%;
      padding-left: 1.5rem;
      padding-top: 1rem;
      padding-bottom: 1rem; }
      .__MenuItemsListener .__Items .__Links .__LinkItem {
        display: inline-block;
        width: 100%;
        font-size: 11px;
        font-weight: 600;
        color: #fff; }
      .__MenuItemsListener .__Items .__Links .__LinksTitle {
        display: inline-block;
        font-size: 11px;
        font-weight: 600; }
    .__MenuItemsListener .__Items ul li {
      cursor: pointer;
      margin: 0.4rem 0;
      list-style: none;
      padding-left: 1rem;
      border-left: 4px solid rgba(41, 66, 253, 0.1);
      color: rgba(255, 255, 255, 0.4);
      font-weight: 400; }
      .__MenuItemsListener .__Items ul li.active, .__MenuItemsListener .__Items ul li:hover {
        font-weight: 600;
        color: #fff;
        border-left: 4px solid #2942fd; }

.GalleryListItems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  background: #171822;
  padding: 1rem;
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .GalleryListItems.White {
    background: transparent;
    padding: 0rem; }
    @media screen and (min-width: 1500px) {
      .GalleryListItems.White {
        grid-template-columns: repeat(4, 1fr); } }
    @media screen and (min-width: 1800px) {
      .GalleryListItems.White {
        grid-template-columns: repeat(5, 1fr); } }
    @media screen and (min-width: 2100px) {
      .GalleryListItems.White {
        grid-template-columns: repeat(6, 1fr); } }
    @media screen and (min-width: 2400px) {
      .GalleryListItems.White {
        grid-template-columns: repeat(7, 1fr); } }
    .GalleryListItems.White .__Image {
      overflow: hidden;
      border-radius: 8px;
      -webkit-border-radius: 8px; }
      .GalleryListItems.White .__Image:hover {
        filter: saturate(0.6);
        transform: unset; }
      .GalleryListItems.White .__Image .__Buttons {
        position: absolute;
        right: 0.5rem;
        top: 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem; }
        .GalleryListItems.White .__Image .__Buttons .__ButtonItem {
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(0, 0, 0, 0.6);
          width: 40px;
          height: 40px;
          border-radius: 8px;
          -webkit-border-radius: 8px; }
          .GalleryListItems.White .__Image .__Buttons .__ButtonItem i {
            color: #fff;
            font-size: 24px; }
      .GalleryListItems.White .__Image .__Title {
        padding: 1rem;
        color: #fff;
        background: linear-gradient(0deg, black 0%, rgba(255, 255, 255, 0) 100%);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0; }
        .GalleryListItems.White .__Image .__Title span {
          display: flex;
          width: 100%; }
          .GalleryListItems.White .__Image .__Title span:nth-child(1) {
            font-weight: 600;
            font-size: 16px; }
      .GalleryListItems.White .__Image img {
        height: 340px !important; }
  .GalleryListItems .__Image {
    display: inline-block;
    width: 100%;
    position: relative; }
    .GalleryListItems .__Image.ResizeMode {
      width: 30px;
      height: 30px; }
      .GalleryListItems .__Image.ResizeMode img {
        height: 30px; }
      .GalleryListItems .__Image.ResizeMode .__HashTag {
        display: none; }
      .GalleryListItems .__Image.ResizeMode .__Label {
        display: none; }
    .GalleryListItems .__Image:hover {
      filter: saturate(1);
      transform: scale(1.05) rotate(1deg); }
    .GalleryListItems .__Image .__HashTag {
      position: absolute;
      bottom: 10px;
      left: 10px; }
      .GalleryListItems .__Image .__HashTag .VioletInfo {
        background: #2942fd;
        color: #fff;
        font-weight: 600; }
    .GalleryListItems .__Image .__Label {
      position: absolute;
      right: 10px;
      top: 10px; }
      .GalleryListItems .__Image .__Label .__LabelItems {
        display: flex;
        column-gap: 0.2rem; }
      .GalleryListItems .__Image .__Label .__Badge {
        font-size: 11px;
        font-weight: 500;
        color: #fff;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 100px;
        -webkit-border-radius: 100px;
        padding: 0.2rem 0.6rem; }
    .GalleryListItems .__Image img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      cursor: pointer; }

.SummenbildungView {
  display: inline-block;
  width: 100%;
  padding: 0 1rem; }
  .SummenbildungView__Profit {
    display: inline-block;
    width: 100%;
    background: #fff;
    color: #64cf90;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    border: 1px solid rgba(100, 207, 144, 0.3);
    margin-top: 2rem; }
    .SummenbildungView__Profit__Content {
      display: inline-block;
      width: 100%;
      padding: 1rem 1.5rem;
      font-size: 20px;
      font-weight: 500; }
    .SummenbildungView__Profit__Title {
      display: inline-block;
      width: 100%;
      padding: 0.5rem 1.5rem;
      font-size: 16px;
      border-bottom: 1px solid rgba(100, 207, 144, 0.3); }
  .SummenbildungView__Item {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 1rem; }
    .SummenbildungView__Item.TopMargin {
      margin-top: 0.7rem; }
    .SummenbildungView__Item.BackgroundGreen {
      background: #dff2df;
      padding: 0.5rem 1rem !important;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .SummenbildungView__Item.BackgroundGreen span b {
        color: #12c309; }
    .SummenbildungView__Item.BackgroundRed {
      background: #fbf2f5;
      padding: 0.5rem 1rem !important;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .SummenbildungView__Item.BackgroundRed span b {
        color: #ff4c79; }
    .SummenbildungView__Item.BackgroundYellow {
      background: #fbf7f4;
      padding: 0.5rem 1rem !important;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .SummenbildungView__Item.BackgroundYellow span b {
        color: #f6b065; }
    .SummenbildungView__Item.BackgroundBlue {
      background: rgba(206, 221, 242, 0.3);
      padding: 0.5rem 1rem !important;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .SummenbildungView__Item.BackgroundBlue span b {
        color: #2e8cff; }
    .SummenbildungView__Item table {
      width: 100%;
      border-collapse: collapse; }
      .SummenbildungView__Item table thead tr td, .SummenbildungView__Item table tbody tr td {
        font-size: 11px; }
    .SummenbildungView__Item span {
      width: 100%;
      display: inline-block; }
      .SummenbildungView__Item span:nth-child(1) {
        font-size: 11px; }
        .SummenbildungView__Item span:nth-child(1) b {
          font-weight: 500;
          font-size: 14px; }
      .SummenbildungView__Item span:nth-child(2) {
        padding-top: 0.5rem;
        font-size: 20px; }
  .SummenbildungView__Title {
    display: inline-block;
    width: 100%;
    font-size: 20px;
    font-weight: 600; }

.Container_Tabelle {
  display: none;
  width: 100%; }
  .Container_Tabelle .__TabelleLayout {
    display: inline-block;
    width: 100%;
    padding-top: 1rem; }

.SmallTitle {
  display: inline-block;
  padding-top: 1rem;
  width: 100%;
  font-weight: 600;
  font-size: 11px; }

.UploadProgress {
  display: flex;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  width: 100%;
  height: 24px;
  background: #101018;
  padding: 0.1rem;
  transition: all 0.2s ease;
  overflow: hidden; }
  .UploadProgress.White {
    background: #fff; }
  .UploadProgress.White {
    background: #eee; }
  .UploadProgress span {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: #1da1f2;
    box-shadow: 0 2px 4px 2px rgba(29, 161, 242, 0.2);
    -webkit-box-shadow: 0 2px 4px 2px rgba(29, 161, 242, 0.2);
    border-radius: 100px;
    -webkit-border-radius: 100px; }

.Container_Summenbildung {
  display: inline-block;
  width: 100%; }

input.Blue {
  background: #2942fd;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  width: 100%;
  border: 0;
  font-weight: 600;
  font-size: 16px;
  padding: 0.5rem 1rem; }

.__FilterBarLayout {
  display: flex;
  column-gap: 1rem;
  width: 100%;
  border-bottom: 1px solid #e2e2e2;
  padding: 1rem; }
  .__FilterBarLayout input[type=checkbox] {
    background-color: #fff; }
    .__FilterBarLayout input[type=checkbox]:checked {
      border: 1px solid #651FFF !important;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3e%3cpath fill='none' stroke='%23651FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8.5l2.5 2.5l5.5 -5.5'/%3e%3c/svg%3e"); }

.AnbauteileSearchView {
  display: flex;
  width: 100%;
  column-gap: 3rem; }
  .AnbauteileSearchView .__Search {
    width: 250px;
    position: sticky;
    top: 160px;
    align-self: flex-start; }
    .AnbauteileSearchView .__Search .__SearchFilters {
      display: inline-block;
      width: 100%;
      padding-top: 1rem; }
    .AnbauteileSearchView .__Search .__SearchInput {
      display: inline-block;
      width: 100%;
      padding-top: 1rem; }
    .AnbauteileSearchView .__Search .__SearchTitle {
      display: inline-block;
      width: 100%;
      color: #fff;
      font-size: 30px;
      font-weight: 600; }
    .AnbauteileSearchView .__Search .__SearchSubmit {
      display: inline-block;
      width: 100%;
      padding-top: 1rem; }
  .AnbauteileSearchView .__SearchItems {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: max-content;
    grid-gap: 1rem; }
    .AnbauteileSearchView .__SearchItems .__ItemBlock {
      display: flex;
      column-gap: 1.5rem;
      width: 100%;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      background: rgba(255, 255, 255, 0.05);
      background: linear-gradient(90deg, #171822 0%, rgba(255, 255, 255, 0) 100%);
      padding: 0.5rem;
      color: #fff; }
      .AnbauteileSearchView .__SearchItems .__ItemBlock .__Edit {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px; }
      .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView {
        flex: 1; }
        .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__InfoItems {
          display: grid;
          width: 100%;
          height: 100%;
          grid-template-columns: repeat(6, 1fr);
          grid-gap: 1rem;
          justify-content: center;
          align-items: center; }
          .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__InfoItems .__InfoItemBlock {
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center; }
            .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__InfoItems .__InfoItemBlock span {
              display: inline-block;
              text-align: center;
              width: 100%; }
              .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__InfoItems .__InfoItemBlock span:nth-child(1) {
                font-size: 20px; }
              .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__InfoItems .__InfoItemBlock span:nth-child(2) {
                padding-top: 0.5rem;
                color: #999;
                font-size: 11px;
                font-weight: 600; }
        .AnbauteileSearchView .__SearchItems .__ItemBlock .__InfoView .__KistenNummer {
          display: inline-block;
          font-weight: 600;
          font-size: 20px; }
      .AnbauteileSearchView .__SearchItems .__ItemBlock .__ImageView {
        margin: 0;
        display: inline-block;
        width: 100px;
        height: 100px;
        background: #111;
        border-radius: 6px;
        -webkit-border-radius: 6px; }
        .AnbauteileSearchView .__SearchItems .__ItemBlock .__ImageView img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 6px;
          -webkit-border-radius: 6px; }

.EditContentLayout {
  display: flex;
  width: 100%;
  height: 60vh; }
  .EditContentLayout.__Tabelle .__Left {
    width: 15% !important; }
  .EditContentLayout.__Tabelle .__Right {
    width: 50% !important; }
  .EditContentLayout.__Tabelle .__Calculator {
    width: 35% !important; }
  .EditContentLayout.__Big {
    transition: all 0.2s ease-in-out; }
    .EditContentLayout.__Big .__Left {
      width: 15%; }
    .EditContentLayout.__Big .__Right {
      width: 73%;
      padding: 0px; }
      .EditContentLayout.__Big .__Right .TableInView {
        padding: 1.5rem;
        display: inline-block;
        width: 100%; }
    .EditContentLayout.__Big .__Calculator {
      width: 12%;
      border-left: 1px solid #eee;
      display: inline-block;
      padding: 1rem;
      height: 100%;
      overflow: auto;
      scrollbar-width: thin; }
  .EditContentLayout.__NormalView .__Left {
    width: 300px; }
  .EditContentLayout.__NormalView .__Right {
    flex: 1; }
  .EditContentLayout .__Left {
    height: 100%;
    padding: 1.5rem;
    display: inline-block;
    overflow: auto;
    scrollbar-width: thin;
    width: 40%;
    background: #f9f9f9; }
    .EditContentLayout .__Left .__Form {
      display: inline-block;
      width: 100%;
      margin-top: 1rem;
      background: #fff;
      box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
      -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      -webkit-border-radius: 6px; }
      .EditContentLayout .__Left .__Form.BackgroundOrange {
        background: #f0e5d9;
        background: linear-gradient(160deg, rgba(240, 229, 217, 0.5) 0%, white 100%); }
        .EditContentLayout .__Left .__Form.BackgroundOrange .__Form__Title {
          color: #f6b065 !important;
          background: transparent; }
      .EditContentLayout .__Left .__Form.BackgroundYellow {
        background: #eee7d1;
        background: linear-gradient(160deg, rgba(238, 231, 209, 0.5) 0%, white 100%); }
        .EditContentLayout .__Left .__Form.BackgroundYellow .__Form__Title {
          color: #eab934 !important;
          background: transparent; }
      .EditContentLayout .__Left .__Form.NoMargin {
        margin: 0 !important; }
      .EditContentLayout .__Left .__Form__Search {
        display: inline-block;
        width: 100%; }
      .EditContentLayout .__Left .__Form__Elements {
        display: inline-block;
        width: 100%; }
        .EditContentLayout .__Left .__Form__Elements .InputItems {
          padding: 0;
          display: grid !important;
          grid-template-columns: repeat(1, 1fr) !important;
          grid-gap: 0rem;
          column-gap: 0rem;
          row-gap: 0rem; }
          .EditContentLayout .__Left .__Form__Elements .InputItems .__Item {
            padding: 1rem;
            border-bottom: 1px solid #eee !important; }
      .EditContentLayout .__Left .__Form__Title {
        border-radius: 6px 6px 0 0;
        -webkit-border-radius: 6px 6px 0 0;
        background: #fff;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1rem;
        font-weight: 600; }
    .EditContentLayout .__Left .__Photo {
      overflow: hidden;
      display: inline-block;
      width: 100%;
      min-height: 300px;
      background: #fff;
      box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
      -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
      border-radius: 6px;
      -webkit-border-radius: 6px; }
      .EditContentLayout .__Left .__Photo__Title {
        border-bottom: 1px solid #eee;
        display: inline-block;
        width: 100%;
        padding: 1rem;
        font-weight: 600; }
      .EditContentLayout .__Left .__Photo__View {
        display: inline-block;
        width: 100%; }
      .EditContentLayout .__Left .__Photo__Upload {
        display: inline-block;
        width: 100%;
        border-top: 1px solid #eee;
        padding: 1rem; }
  .EditContentLayout .__Right {
    scrollbar-width: thin;
    display: inline-block;
    width: 60%;
    padding: 1.5rem;
    height: 100%;
    overflow: auto; }
    .EditContentLayout .__Right.NoPad {
      padding: 0 !important; }
    .EditContentLayout .__Right .HiddenFormElements {
      display: inline-block;
      width: 1px;
      height: 1px;
      overflow: hidden; }
    .EditContentLayout .__Right .PhotoListenerHolder {
      display: inline-block;
      width: 100%;
      padding: 1rem;
      background: #f9f9f9;
      border-radius: 0 0 10px 10px;
      -webkit-border-radius: 0 0 10px 10px; }
    .EditContentLayout .__Right .PhotoListener {
      margin-top: 1rem;
      display: inline-block;
      background: #f9f9f9;
      width: 100%;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0; }
      .EditContentLayout .__Right .PhotoListener .UploadButton {
        display: inline-block;
        background: #1ac636;
        color: #fff;
        cursor: pointer;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        padding: 0.2rem 1rem;
        font-weight: 600; }
      .EditContentLayout .__Right .PhotoListener__Description {
        display: inline-block;
        width: 100%;
        padding: 1rem;
        font-weight: 300; }
      .EditContentLayout .__Right .PhotoListener__Title {
        padding: 0.7rem 1rem;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%; }
        .EditContentLayout .__Right .PhotoListener__Title__Name {
          font-weight: 600;
          font-size: 18px; }
    .EditContentLayout .__Right .PDFDocumentUploaded {
      display: inline-block;
      width: 100%;
      padding-top: 1rem; }
      .EditContentLayout .__Right .PDFDocumentUploaded .arrow_box {
        font-weight: 600;
        position: relative;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        padding: 1rem; }
      .EditContentLayout .__Right .PDFDocumentUploaded .arrow_box:after, .EditContentLayout .__Right .PDFDocumentUploaded .arrow_box:before {
        bottom: 100%;
        left: 10%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none; }
      .EditContentLayout .__Right .PDFDocumentUploaded .arrow_box:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 8px;
        margin-left: -8px; }
      .EditContentLayout .__Right .PDFDocumentUploaded .arrow_box:before {
        border-color: rgba(226, 226, 226, 0);
        border-bottom-color: #e2e2e2;
        border-width: 9px;
        margin-left: -9px; }
    .EditContentLayout .__Right .PDFDocumentUpload {
      display: flex;
      align-items: center;
      width: 100%;
      background: #FFEBEE;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      padding: 1rem; }
      .EditContentLayout .__Right .PDFDocumentUpload__Right {
        display: flex;
        justify-content: flex-end;
        width: 30%; }
        .EditContentLayout .__Right .PDFDocumentUpload__Right .UploadButton {
          cursor: pointer;
          display: inline-block;
          padding: 0.5rem 1rem;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          background: #FF1744;
          color: #fff;
          font-weight: 600; }
          .EditContentLayout .__Right .PDFDocumentUpload__Right .UploadButton:hover {
            filter: saturate(1.2); }
      .EditContentLayout .__Right .PDFDocumentUpload__Left {
        display: inline-block;
        width: 70%; }
        .EditContentLayout .__Right .PDFDocumentUpload__Left__Description {
          display: inline-block;
          width: 100%; }
        .EditContentLayout .__Right .PDFDocumentUpload__Left__Title {
          display: inline-block;
          width: 100%;
          color: #FF1744;
          font-size: 16px;
          font-weight: 600; }

table.TableViewMini {
  width: 100%;
  border: 0; }
  table.TableViewMini tbody tr td, table.TableViewMini thead tr td {
    border: 0 !important;
    padding: 0.1rem 0 !important; }
    table.TableViewMini tbody tr td:hover, table.TableViewMini thead tr td:hover {
      background: transparent !important;
      background-color: transparent !important; }
table.TableView {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  background: #fff;
  width: 100%; }
  table.TableView.BiggerSplitBorder tbody tr:last-child td {
    border: 0 !important; }
  table.TableView.BiggerSplitBorder tbody tr td {
    border-bottom: 10px solid #101018; }
  table.TableView tbody.NoHover tr:hover td {
    background: inherit; }
  table.TableView tbody tr:hover td {
    background: #f9f9f9; }
  table.TableView tbody tr td {
    padding: 1rem;
    border-top: 1px solid #eee; }
  table.TableView thead tr td, table.TableView thead tr th {
    position: sticky;
    top: 130px;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0.6rem 1rem;
    font-weight: 600; }
    table.TableView thead tr td.dir-u::before, table.TableView thead tr th.dir-u::before {
      content: "\f106";
      font-family: "Line Awesome Free";
      right: 0;
      position: absolute; }
    table.TableView thead tr td.dir-d::before, table.TableView thead tr th.dir-d::before {
      content: "\f107";
      font-family: "Line Awesome Free";
      right: 0;
      position: absolute; }
    table.TableView thead tr td:first-child, table.TableView thead tr th:first-child {
      border-radius: 10px 0 0 0;
      -webkit-border-radius: 10px 0 0 0; }
    table.TableView thead tr td:last-child, table.TableView thead tr th:last-child {
      border-radius: 0 10px 0 0;
      -webkit-border-radius: 0 10px 0 0; }

.PageController {
  display: flex;
  display: none;
  column-gap: 0.5rem;
  padding-bottom: 1rem; }
  .PageController .__Item {
    display: inline-block;
    color: #000;
    font-weight: 600;
    font-size: 11px; }
    .PageController .__Item a {
      color: #000; }

.__ContactButtons {
  display: flex;
  width: 100%;
  justify-content: center;
  column-gap: 0.3rem; }

.__MainTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 2rem; }
  .__MainTitle .__Line {
    display: inline-block;
    width: 30px;
    height: 10px;
    background: #2b65f8;
    border-radius: 100px;
    -webkit-border-radius: 100px; }
  .__MainTitle .__Search {
    display: inline-block;
    text-align: right;
    flex: 5; }
  .__MainTitle .__Info {
    flex: 3;
    display: inline-block;
    font-weight: 600;
    font-size: 24px; }

.FilterTable {
  display: flex;
  width: 100%; }
  .FilterTable .Filters {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
    cursor: pointer;
    color: #fff;
    width: 150px;
    padding: 0 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .FilterTable .Filters .__List {
      position: absolute;
      display: none;
      left: 1rem;
      top: 50px;
      z-index: 20; }
      .FilterTable .Filters .__List .arrow_box {
        position: relative;
        background: #101018;
        width: 250px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        display: inline-block; }
        .FilterTable .Filters .__List .arrow_box .__Item {
          display: flex;
          column-gap: 1rem;
          padding: 0.5rem 1rem;
          color: #fff; }
      .FilterTable .Filters .__List .arrow_box:after {
        bottom: 100%;
        left: 10%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(16, 16, 24, 0);
        border-bottom-color: #101018;
        border-width: 8px;
        margin-left: -8px; }
  .FilterTable .__Search {
    display: inline-block;
    width: calc(100% - 150px); }

.VergleichenLayout {
  display: inline-block;
  width: 100%;
  background: #171822;
  overflow: hidden;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .VergleichenLayout .__Items {
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
    .VergleichenLayout .__Items.__SetGridItems2 {
      grid-template-columns: repeat(3, 1fr); }
    .VergleichenLayout .__Items.__SetGridItems3 {
      grid-template-columns: repeat(4, 1fr); }
    .VergleichenLayout .__Items.__SetGridItems4 {
      grid-template-columns: repeat(5, 1fr); }
    .VergleichenLayout .__Items.__SetGridItems5 {
      grid-template-columns: repeat(6, 1fr); }
    .VergleichenLayout .__Items .__Item {
      position: relative;
      display: flex;
      flex-direction: column;
      width: 100%;
      border-right: 1px solid rgba(255, 255, 255, 0.05); }
      .VergleichenLayout .__Items .__Item:hover {
        background: #1f202d; }
      .VergleichenLayout .__Items .__Item .__Number {
        position: absolute;
        left: -20px;
        top: 10px; }
        .VergleichenLayout .__Items .__Item .__Number .__NumberInt {
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 700;
          font-size: 20px;
          color: #fff;
          width: 40px;
          height: 40px;
          border: 4px solid #fff;
          border-radius: 100px;
          -webkit-border-radius: 100px;
          box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
          -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
          background: linear-gradient(179.1deg, #81cc68 98.3%, #2baa60 2.3%); }
      .VergleichenLayout .__Items .__Item .__ImageView {
        display: inline-block;
        width: 100%;
        height: 200px;
        background: #f9f9f9;
        overflow: hidden; }
        .VergleichenLayout .__Items .__Item .__ImageView.__NoBackground {
          background: transparent; }
        .VergleichenLayout .__Items .__Item .__ImageView img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
      .VergleichenLayout .__Items .__Item:last-child {
        border-right: 0; }
      .VergleichenLayout .__Items .__Item .__ItemsTags {
        display: grid;
        color: #fff;
        grid-template-columns: repeat(1, 1fr);
        width: 100%; }
        .VergleichenLayout .__Items .__Item .__ItemsTags .__ItemTag {
          width: 100%;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          display: inline-block;
          padding: 0.5rem 1.5rem; }
          .VergleichenLayout .__Items .__Item .__ItemsTags .__ItemTag:last-child {
            border-bottom: 0; }
      .VergleichenLayout .__Items .__Item .__TitleTag {
        color: #fff;
        display: inline-block;
        width: 100%;
        padding: 0 1.5rem 1rem;
        font-weight: 300;
        font-size: 16px; }
      .VergleichenLayout .__Items .__Item .__Title {
        color: #fff;
        display: inline-block;
        width: 100%;
        padding: 1rem 1.5rem 0.5rem;
        font-weight: 600;
        font-size: 18px; }

.ui-sortable-placeholder {
  border: 1px solid #2b65f8;
  background: rgba(43, 101, 248, 0.05);
  visibility: visible !important; }

.ImageContainerView {
  display: inline-block;
  width: 100%;
  min-height: 250px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  overflow: hidden; }
  .ImageContainerView .__TextView {
    width: 100%;
    padding: 1rem; }
  .ImageContainerView .__ImageView {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden; }
    .ImageContainerView .__ImageView .__Nummerschild {
      position: absolute;
      right: 10px;
      top: 10px; }
    .ImageContainerView .__ImageView img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

.showOptions {
  display: none; }

.form-imagecheck-figure img {
  width: 100%;
  height: 90px !important;
  object-fit: cover !important; }

.StepLayout {
  display: flex;
  width: 100%;
  padding: 1rem 0;
  background: #f9f9f9;
  border-bottom: 1px solid #eee; }

#container tspan {
  color: #1a3af8 !important; }
#container * {
  font-family: Inter, sans-serif; }

.ResturantionView {
  display: inline-block;
  width: 100%;
  margin-top: 2rem;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  -webkit-border-radius: 10px; }
  .ResturantionView .__ViewItem {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #eee;
    flex-direction: column; }
    .ResturantionView .__ViewItem .__Info {
      position: sticky;
      top: 65px;
      z-index: 10;
      background: #fff;
      border-radius: 10px 10px 0 0;
      -webkit-border-radius: 10px 10px 0 0;
      display: inline-block;
      width: 100%;
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
      font-weight: 600;
      font-size: 20px; }
    .ResturantionView .__ViewItem .__Element {
      background: #fff;
      border-radius: 0 10px 0 0;
      -webkit-border-radius: 0 10px 0 0;
      display: inline-block;
      width: 100%;
      padding: 2rem 2rem 2rem; }

.form-imagecheck {
  width: 100% !important;
  height: 100% !important; }

.GalleryItems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1rem; }
  .GalleryItems .__Item {
    display: inline-block;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    overflow: hidden; }
    .GalleryItems .__Item .__ImageView {
      position: relative;
      overflow: hidden;
      transition: all 0.2s ease;
      width: 100%;
      height: 100%;
      background: #f3f4f8;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .GalleryItems .__Item .__ImageView .__PlayButton {
        left: 0;
        top: 0;
        position: absolute;
        width: 100%;
        height: 100%; }
        .GalleryItems .__Item .__ImageView .__PlayButton .__Inner {
          display: flex;
          width: 100%;
          height: 100%;
          align-items: center;
          justify-content: center; }
          .GalleryItems .__Item .__ImageView .__PlayButton .__Inner img {
            object-fit: contain !important;
            width: 70px !important;
            height: 40px; }
      .GalleryItems .__Item .__ImageView:hover {
        cursor: pointer; }
        .GalleryItems .__Item .__ImageView:hover img {
          filter: grayscale(0.5); }
      .GalleryItems .__Item .__ImageView img {
        transition: all 0.2s ease;
        width: 100%;
        height: 100%;
        object-fit: cover; }

table.SmartDark {
  border-collapse: collapse;
  width: 100%; }
  table.SmartDark thead tr {
    position: sticky;
    top: 0; }
    table.SmartDark thead tr td {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      background: #08090d;
      color: #fff;
      padding: 0.5rem 1rem;
      font-weight: 600; }
  table.SmartDark tbody tr:hover td {
    background: #000; }
  table.SmartDark tbody tr td {
    color: #fff;
    padding: 0.6rem 1rem; }
    table.SmartDark tbody tr td a {
      color: #fff;
      font-weight: 600; }
table.Smart {
  border-collapse: collapse; }
  table.Smart.Gray thead tr {
    position: sticky;
    top: 0; }
    table.Smart.Gray thead tr td, table.Smart.Gray thead tr th {
      border-bottom: 1px solid #eee;
      background: #f2f2f2;
      padding: 0.5rem 1rem !important;
      font-weight: 600; }
  table.Smart tbody tr:hover td {
    background: #f9f9f9; }
  table.Smart tbody tr td {
    padding: 0.5rem 1rem; }
  table.Smart thead tr {
    position: sticky;
    top: 0; }
    table.Smart thead tr td {
      border-bottom: 1px solid #eee;
      background: #fff;
      padding: 0.5rem 1rem;
      font-weight: 600; }

.DateiControllerLayout {
  display: flex;
  width: 100%;
  height: 550px; }
  .DateiControllerLayout .__CategoryList {
    background: #f2f2f2;
    width: 300px;
    height: 100%;
    overflow: auto;
    scrollbar-width: thin;
    display: inline-block;
    padding: 1rem; }
    .DateiControllerLayout .__CategoryList ul {
      margin: 0;
      padding: 0; }
      .DateiControllerLayout .__CategoryList ul li {
        margin: 0.1rem 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 1rem;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        font-weight: 600; }
        .DateiControllerLayout .__CategoryList ul li.seletedFolderItem {
          background: #2e8cff;
          color: #fff; }
          .DateiControllerLayout .__CategoryList ul li.seletedFolderItem .GrayInfo {
            background: #2e8cff;
            color: #fff; }
          .DateiControllerLayout .__CategoryList ul li.seletedFolderItem:hover {
            background: #2e8cff;
            color: #fff; }
            .DateiControllerLayout .__CategoryList ul li.seletedFolderItem:hover .GrayInfo {
              background: #2e8cff;
              color: #fff; }
        .DateiControllerLayout .__CategoryList ul li:hover {
          background: #e2e2e2; }
          .DateiControllerLayout .__CategoryList ul li:hover .GrayInfo {
            background: #e2e2e2; }
    .DateiControllerLayout .__CategoryList .__ListTitle {
      padding: 1rem;
      display: inline-block;
      width: 100%;
      font-weight: 300;
      font-size: 14px; }
  .DateiControllerLayout .__FileList {
    height: 100%;
    scrollbar-width: thin;
    overflow: auto;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column; }
    .DateiControllerLayout .__FileList .UploadModal {
      text-align: center; }

.Nummernschild {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/nummernschild.png?1") center no-repeat;
  background-size: contain;
  padding-left: 0.6rem;
  font-weight: 600;
  font-size: 12px;
  width: 100px;
  height: 30px;
  color: #000 !important; }

.ShareItems {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  padding: 1rem;
  grid-gap: 0.5rem; }
  .ShareItems .__Item {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    width: 100%;
    padding: 0.7rem 1rem;
    display: flex;
    align-items: center;
    column-gap: 1rem;
    font-weight: 600;
    font-size: 16px; }
    .ShareItems .__Item .__Icon {
      width: 32px; }
    .ShareItems .__Item .__Name {
      width: calc(100% - 32px - 1rem); }
    .ShareItems .__Item:hover {
      background: #f9f9f9;
      cursor: pointer; }

.LoginLayoutView {
  display: flex;
  width: 100%;
  height: 100vh;
  background: url("../../@assets/img/bg.png?300") center no-repeat;
  background-size: auto 100%; }
  .LoginLayoutView__Mask {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 450px;
    height: 100%;
    padding: 0 4rem; }
    .LoginLayoutView__Mask span {
      display: inline-block;
      width: 100%;
      text-align: center; }
      .LoginLayoutView__Mask span:nth-child(3) {
        padding-top: 0.5rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 100;
        font-size: 20px; }
      .LoginLayoutView__Mask span:nth-child(2) {
        padding-top: 0.5rem;
        color: #fff;
        font-size: 18px;
        font-weight: 600; }
    .LoginLayoutView__Mask__Logo {
      display: inline-block;
      width: 100%; }
    .LoginLayoutView__Mask__Login {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;
      padding-top: 2rem; }
      .LoginLayoutView__Mask__Login input {
        backdrop-filter: blur(10px);
        background: #111 !important;
        border: 0;
        color: #fff !important;
        font-size: 18px; }

.__SearchViewOut {
  position: absolute;
  display: none;
  top: 50px;
  z-index: 20; }
  .__SearchViewOut .arrow_box {
    padding: 0.5rem;
    position: relative;
    background: #fff;
    color: #000;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    width: 400px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    min-height: 50px; }
    .__SearchViewOut .arrow_box .__Content {
      display: inline-block;
      width: 100%; }
      .__SearchViewOut .arrow_box .__Content .__Load {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem 0; }
    .__SearchViewOut .arrow_box .__Title {
      margin-bottom: 0.5rem;
      color: rgba(0, 0, 0, 0.5) !important;
      display: inline-block;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-weight: 300;
      font-size: 11px;
      padding: 0 1rem 0.5rem; }
    .__SearchViewOut .arrow_box .__LinkItem {
      display: inline-block;
      padding: 0.6rem 1rem;
      width: 100%;
      color: #000;
      border-radius: 10px;
      -webkit-border-radius: 10px; }
      .__SearchViewOut .arrow_box .__LinkItem:hover {
        background: #f9f9f9;
        cursor: pointer;
        background: #f2f2f2;
        color: #000; }
  .__SearchViewOut .arrow_box:after {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px; }

.HeaderBetaLayout {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  position: fixed;
  top: 0;
  height: 130px;
  background: #1a3af8;
  z-index: 100;
  box-shadow: 0 0px 10px 2px rgba(26, 58, 248, 0.2);
  -webkit-box-shadow: 0 0px 10px 2px rgba(26, 58, 248, 0.2); }
  .HeaderBetaLayout .__BaseLinks {
    height: 65px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center; }
  .HeaderBetaLayout .__InnerView {
    height: 65px;
    display: flex;
    justify-content: space-between;
    width: 980px; }
    .HeaderBetaLayout .__InnerView.Big {
      width: 1800px; }
    .HeaderBetaLayout .__InnerView.Big2 {
      width: 2200px; }
  .HeaderBetaLayout .__LogoBeta {
    flex: 4;
    display: flex;
    justify-content: center;
    align-items: center; }
    .HeaderBetaLayout .__LogoBeta .__Logo {
      cursor: pointer;
      display: flex;
      column-gap: 1rem;
      align-items: center;
      color: #fff;
      font-weight: 600;
      font-size: 18px; }
  .HeaderBetaLayout .__LinkContent {
    flex: 4;
    display: flex;
    column-gap: 0.5rem;
    justify-content: center;
    align-items: center; }
    .HeaderBetaLayout .__LinkContent a {
      text-decoration: none; }
    .HeaderBetaLayout .__LinkContent .__Item {
      position: relative;
      color: #fff;
      display: flex;
      align-items: center;
      column-gap: 0.5rem;
      background: transparent;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      padding: 0.6rem 0.8rem;
      font-weight: 600;
      font-size: 14px;
      position: relative; }
      .HeaderBetaLayout .__LinkContent .__Item a {
        text-decoration: none; }
      .HeaderBetaLayout .__LinkContent .__Item.active {
        background: #2942fd;
        color: #fff; }
        .HeaderBetaLayout .__LinkContent .__Item.active::after {
          position: absolute;
          bottom: -7px;
          left: 0;
          width: 100%;
          content: " "; }
      .HeaderBetaLayout .__LinkContent .__Item:hover {
        cursor: pointer;
        color: #fff;
        background: #171822; }
      .HeaderBetaLayout .__LinkContent .__Item i {
        font-size: 24px; }
      .HeaderBetaLayout .__LinkContent .__Item .__SubItems {
        display: none;
        position: absolute;
        top: 60px;
        left: calc(50% -  125px); }
        .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box {
          padding: 0.5rem;
          position: relative;
          background: #fff;
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
          width: 250px;
          border-radius: 10px;
          -webkit-border-radius: 10px;
          min-height: 50px; }
          .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__Title {
            margin-bottom: 0.5rem;
            color: #000 !important;
            display: inline-block;
            width: 100%;
            border-bottom: 1px solid #eee;
            font-weight: 300;
            font-size: 11px;
            padding: 0 1rem 0.5rem; }
          .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__LinkItem {
            display: inline-block;
            padding: 0.6rem 1rem;
            width: 100%;
            color: #000;
            border-radius: 10px;
            -webkit-border-radius: 10px; }
            .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box .__LinkItem:hover {
              background: #f9f9f9;
              color: #2b65f8; }
        .HeaderBetaLayout .__LinkContent .__Item .__SubItems .arrow_box:after {
          bottom: 100%;
          left: 50%;
          border: solid transparent;
          content: "";
          height: 0;
          width: 0;
          position: absolute;
          pointer-events: none;
          border-color: rgba(255, 255, 255, 0);
          border-bottom-color: #fff;
          border-width: 8px;
          margin-left: -8px; }
  .HeaderBetaLayout .__UserContent {
    cursor: pointer;
    position: relative;
    display: flex;
    flex: 2;
    justify-content: flex-end;
    align-items: center;
    column-gap: 1rem;
    color: #fff; }
    .HeaderBetaLayout .__UserContent .__MenuView {
      position: absolute;
      display: none;
      right: 0px;
      top: 70px;
      z-index: 20; }
      .HeaderBetaLayout .__UserContent .__MenuView .arrow_box {
        padding: 0.5rem;
        position: relative;
        background: #fff;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
        width: 250px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        min-height: 50px; }
        .HeaderBetaLayout .__UserContent .__MenuView .arrow_box .__LinkItemTitle {
          display: inline-block;
          width: 100%;
          color: #666;
          font-size: 11px;
          padding: 0.1rem 0.8rem; }
        .HeaderBetaLayout .__UserContent .__MenuView .arrow_box .__LinkItem {
          font-weight: 600;
          display: inline-block;
          padding: 0.6rem 1rem;
          width: 100%;
          color: #000;
          border-radius: 10px;
          -webkit-border-radius: 10px; }
          .HeaderBetaLayout .__UserContent .__MenuView .arrow_box .__LinkItem:hover {
            background: #f9f9f9;
            color: #2b65f8; }
      .HeaderBetaLayout .__UserContent .__MenuView .arrow_box:after {
        bottom: 100%;
        left: 82%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 8px;
        margin-left: -8px; }
    .HeaderBetaLayout .__UserContent:hover {
      color: #fff; }
    .HeaderBetaLayout .__UserContent .__Menu {
      display: inline-block; }
    .HeaderBetaLayout .__UserContent .__Profile {
      display: inline-block;
      width: 35px;
      height: 35px;
      background: #f9f9f9;
      border-radius: 100px;
      -webkit-border-radius: 100px;
      overflow: hidden; }
      .HeaderBetaLayout .__UserContent .__Profile img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
  .HeaderBetaLayout .__LogoContent {
    position: relative;
    padding-right: 1rem;
    flex: 2;
    display: flex;
    align-items: center;
    align-content: center;
    column-gap: 1rem; }
    .HeaderBetaLayout .__LogoContent .__SearchView {
      position: absolute;
      display: none;
      top: 70px;
      z-index: 20; }
      .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box {
        padding: 0.5rem;
        position: relative;
        background: #101018;
        color: #fff;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
        width: 400px;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        min-height: 50px; }
        .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box .__Content {
          display: inline-block;
          width: 100%; }
          .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box .__Content .__Load {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 2rem 0; }
        .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box .__Title {
          margin-bottom: 0.5rem;
          color: rgba(255, 255, 255, 0.5) !important;
          display: inline-block;
          width: 100%;
          border-bottom: 1px solid rgba(255, 255, 255, 0.05);
          font-weight: 300;
          font-size: 11px;
          padding: 0 1rem 0.5rem; }
        .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box .__LinkItem {
          display: inline-block;
          padding: 0.6rem 1rem;
          width: 100%;
          color: #fff;
          border-radius: 10px;
          -webkit-border-radius: 10px; }
          .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box .__LinkItem:hover {
            background: #f9f9f9;
            cursor: pointer;
            background: linear-gradient(90deg, #281c39 0%, rgba(0, 200, 83, 0) 100%);
            color: #B941FF; }
      .HeaderBetaLayout .__LogoContent .__SearchView .arrow_box:after {
        bottom: 100%;
        left: 20%;
        border: solid transparent;
        content: "";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #101018;
        border-width: 8px;
        margin-left: -8px; }
    .HeaderBetaLayout .__LogoContent img {
      width: 35px !important;
      vertical-align: middle !important; }
    .HeaderBetaLayout .__LogoContent .__Search {
      display: inline-block;
      width: calc(100% - 40px - 1rem);
      background: #171822;
      border-radius: 100px;
      -webkit-border-radius: 100px; }
      .HeaderBetaLayout .__LogoContent .__Search .input-icon-addon {
        color: #fff !important; }
      .HeaderBetaLayout .__LogoContent .__Search input {
        background: transparent !important;
        color: #fff; }
        .HeaderBetaLayout .__LogoContent .__Search input::placeholder {
          color: white; }
    .HeaderBetaLayout .__LogoContent .__Logo {
      display: inline-block; }
    .HeaderBetaLayout .__LogoContent .__TextView {
      display: inline-block;
      border-left: 1px solid #e2e2e2;
      margin-left: 20px;
      padding-left: 20px;
      font-weight: 600;
      font-size: 18px; }

.__SearchBarLayout {
  display: inline-block;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #e2e2e2; }
  .__SearchBarLayout input {
    width: 100%;
    border: 0;
    padding: 0.8rem 1.5rem;
    font-weight: 300;
    font-size: 16px; }

.SpeechTextArea {
  position: relative;
  width: 100%; }
  .SpeechTextArea .__Mic {
    position: absolute;
    right: 10px;
    top: 10px; }

.PDFCountItem {
  display: flex;
  align-items: center;
  height: 30px;
  border: 1px solid rgba(230, 60, 61, 0.1);
  color: #e63c3d;
  background: rgba(230, 60, 61, 0.1);
  border-radius: 4px;
  -webkit-border-radius: 4px; }
  .PDFCountItem.Blue {
    background: #ceddf2 !important;
    color: #2e8cff !important;
    border-color: #2e8cff !important; }
  .PDFCountItem span:nth-child(2) {
    width: 40px;
    text-align: center;
    font-weight: 600; }
  .PDFCountItem span:nth-child(1) {
    padding: 0 0.3rem;
    border-right: 1px solid rgba(230, 60, 61, 0.1); }

.SpeechView {
  position: fixed;
  right: 20px;
  bottom: 20px; }
  .SpeechView .__Icon {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    background: #181627; }
    .SpeechView .__Icon.Live {
      background: red; }

.LayoutView {
  display: flex;
  width: 100%;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-size: cover; }
  .LayoutView.BackgroundTop {
    background: url("../../@assets/img/bg_top.png") top -300px center no-repeat; }
  .LayoutView .__View {
    display: flex;
    width: 100%; }
    .LayoutView .__View .ContentLayout {
      display: inline-block;
      width: 100%;
      scrollbar-color: rgba(0, 0, 0, 0.01) #fff;
      scrollbar-width: thin; }
      .LayoutView .__View .ContentLayout .__TitleBar {
        background: #fff;
        position: sticky;
        top: 0;
        z-index: 100;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #e2e2e2; }
        .LayoutView .__View .ContentLayout .__TitleBar .__User {
          display: inline-block;
          padding-right: 1.5rem; }
          .LayoutView .__View .ContentLayout .__TitleBar .__User .__Profile {
            display: flex;
            height: 65px;
            align-content: center;
            column-gap: 1rem;
            align-items: center; }
            .LayoutView .__View .ContentLayout .__TitleBar .__User .__Profile .__Icon {
              display: inline-block;
              width: 40px;
              height: 40px;
              background: #f2f2f2;
              border-radius: 100px;
              -webkit-border-radius: 100px;
              overflow: hidden; }
              .LayoutView .__View .ContentLayout .__TitleBar .__User .__Profile .__Icon img {
                width: 100%;
                height: 100%;
                object-fit: cover; }
            .LayoutView .__View .ContentLayout .__TitleBar .__User .__Profile .__TextView {
              display: inline-block;
              font-weight: 600; }
        .LayoutView .__View .ContentLayout .__TitleBar .__Title {
          display: inline-block;
          padding: 1rem 1.5rem;
          font-weight: 600;
          font-size: 20px; }
      .LayoutView .__View .ContentLayout .__PageView {
        display: flex;
        justify-content: center;
        width: 100%; }
        .LayoutView .__View .ContentLayout .__PageView .__InnerView {
          position: relative;
          display: inline-block;
          width: 980px;
          padding: 1rem 0 2rem 0; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView .__MenuItemsList {
            position: absolute;
            right: 0px;
            top: 20px; }
            .LayoutView .__View .ContentLayout .__PageView .__InnerView .__MenuItemsList .__List {
              position: fixed; }
              .LayoutView .__View .ContentLayout .__PageView .__InnerView .__MenuItemsList .__List ul li {
                cursor: pointer;
                margin: 0.4rem 0;
                list-style: none;
                padding-left: 1rem;
                border-left: 4px solid rgba(41, 66, 253, 0.1);
                color: rgba(255, 255, 255, 0.4);
                font-weight: 400; }
                .LayoutView .__View .ContentLayout .__PageView .__InnerView .__MenuItemsList .__List ul li.active, .LayoutView .__View .ContentLayout .__PageView .__InnerView .__MenuItemsList .__List ul li:hover {
                  font-weight: 600;
                  color: #fff;
                  border-left: 4px solid #2942fd; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView.Small-1 {
            width: 600px; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView.Top {
            padding-top: 2rem; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView.Big-2 {
            width: 2200px; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView.Big-1 {
            width: 1800px; }
          .LayoutView .__View .ContentLayout .__PageView .__InnerView .HeaderTitleBar {
            display: flex;
            padding: 0 0 2rem 0;
            width: 100%;
            justify-content: space-between;
            align-items: center; }
            .LayoutView .__View .ContentLayout .__PageView .__InnerView .HeaderTitleBar .__Button {
              display: flex;
              column-gap: 1rem;
              align-items: center; }
            .LayoutView .__View .ContentLayout .__PageView .__InnerView .HeaderTitleBar .__Title {
              color: #666;
              font-weight: 300; }
              .LayoutView .__View .ContentLayout .__PageView .__InnerView .HeaderTitleBar .__Title b {
                color: #000;
                font-size: 18px; }

.ContentBoxLayout {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  background: transparent !important; }
  .ContentBoxLayout.__Top1 {
    margin-top: 1rem; }
  .ContentBoxLayout .__ContentView {
    border: 0 !important;
    display: inline-block;
    width: 100%;
    padding: 0rem; }
    .ContentBoxLayout .__ContentView.ChartContainer {
      display: flex;
      padding: 0rem;
      width: 100%; }
      .ContentBoxLayout .__ContentView.ChartContainer .__Items {
        width: 30%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        padding: 1rem;
        grid-gap: 1rem; }
        .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item {
          display: flex;
          width: 100%;
          background: #f9f9f9;
          border-radius: 10px;
          -webkit-border-radius: 10px; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item .__TextView {
            display: flex;
            align-items: center;
            align-content: center;
            width: calc(100% - 100px);
            height: 100%;
            flex-wrap: wrap; }
            .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item .__TextView .__Number {
              display: inline-block;
              font-weight: 600;
              font-size: 20px; }
            .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item .__TextView .__Tag {
              display: inline-block;
              width: 100%;
              font-weight: 600; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item .__Icon {
            display: flex;
            height: 100%;
            align-items: center;
            justify-content: center;
            width: 100px; }
            .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item .__Icon i {
              font-size: 42px; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item.__Blue {
            background: #dbe8ff;
            background: linear-gradient(90deg, #dbe8ff 0%, rgba(255, 255, 255, 0) 100%);
            color: #143eea; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item.__Yellow {
            background: #FFF8E1;
            background: linear-gradient(90deg, #fff8e1 0%, rgba(255, 255, 255, 0) 100%);
            color: #FF6D00; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item.__Red {
            background: #fcdfe0;
            background: linear-gradient(90deg, #fcdfe0 0%, rgba(255, 255, 255, 0) 100%);
            color: #d72c30; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item.__Violet {
            background: #eeeaff;
            background: linear-gradient(90deg, #eeeaff 0%, rgba(255, 255, 255, 0) 100%);
            color: #4425c2; }
          .ContentBoxLayout .__ContentView.ChartContainer .__Items .__Item.__Green {
            color: #33b934;
            background: #eaf8ea;
            background: linear-gradient(90deg, #eaf8ea 0%, rgba(255, 255, 255, 0) 100%); }
      .ContentBoxLayout .__ContentView.ChartContainer .__Chart {
        display: inline-block;
        width: 100%;
        min-height: 500px; }
    .ContentBoxLayout .__ContentView.Gray {
      background: rgba(240, 241, 245, 0.5); }
  .ContentBoxLayout .__TitleView {
    display: flex;
    padding: 2rem 0;
    width: 100%;
    justify-content: space-between;
    align-items: center; }
    .ContentBoxLayout .__TitleView .__Name {
      display: inline-block;
      font-size: 20px;
      font-weight: 600; }

.Dashboard-GridView {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  width: 100%;
  padding: 2.5rem 2.5rem 0; }

.Dashboard {
  display: inline-block;
  width: 100%;
  padding: 2.5rem; }
  .Dashboard .__Items {
    display: inline-block;
    width: 100%; }
    .Dashboard .__Items.__Top {
      padding-top: 1.5rem; }
    .Dashboard .__Items .__ItemList {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 1.5rem; }
      .Dashboard .__Items .__ItemList .__Item {
        overflow: hidden;
        transition: all 0.2s ease;
        display: inline-block;
        background: #fff;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.02);
        -webkit-box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.02); }
        .Dashboard .__Items .__ItemList .__Item .__Model {
          display: inline-block;
          padding: 0 1rem 1rem;
          font-size: 16px;
          font-weight: 200; }
        .Dashboard .__Items .__ItemList .__Item .__Title {
          display: inline-block;
          width: 100%;
          padding: 0.5rem 1rem;
          font-size: 18px; }
        .Dashboard .__Items .__ItemList .__Item .__ImageView {
          display: inline-block;
          width: 100%;
          height: 200px;
          background: #ccc;
          overflow: hidden; }
          .Dashboard .__Items .__ItemList .__Item .__ImageView img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .Dashboard .__Items .__ItemList .__Item:hover {
          box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
          -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1); }
          .Dashboard .__Items .__ItemList .__Item:hover .__ImageView img {
            filter: saturate(1.6); }
    .Dashboard .__Items .__Title {
      padding-bottom: 1.5rem;
      display: inline-block;
      width: 100%;
      font-weight: 600;
      font-size: 24px; }

.__NoResults {
  display: flex;
  align-items: center;
  column-gap: 1rem; }
  .__NoResults span {
    display: inline-block; }
    .__NoResults span:nth-child(2) {
      font-weight: 600;
      font-size: 16px; }
    .__NoResults span img {
      width: 124px; }

.__UploadFilesHolderLayout {
  display: none;
  width: 100%;
  padding: 0.5rem 0.5rem;
  border-top: 1px solid #eee;
  background: #f9f9f9;
  float: left; }

table.WhiteTable {
  background: #fff;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.05);
  border-collapse: collapse;
  width: 100%; }
  table.WhiteTable tbody tr td {
    padding: 0.5rem 1rem; }
  table.WhiteTable thead tr td {
    font-weight: 600;
    padding: 0.5rem 1rem; }

.BlockTitleView {
  display: inline-block;
  width: 100%;
  padding-bottom: 1rem;
  font-weight: 600; }

.__BlockItems {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
  width: 100%;
  float: left; }
  .__BlockItems .__UploadItem {
    display: inline-block;
    width: 1px;
    height: 1px;
    overflow: hidden; }
  .__BlockItems .__Item {
    display: inline-block;
    width: 100%;
    background: #fff;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #eee; }
    .__BlockItems .__Item .__Content {
      display: inline-block;
      width: 100%;
      padding: 1rem;
      background: transparent !important;
      height: inherit !important;
      max-height: inherit !important; }
    .__BlockItems .__Item .__Title {
      display: inline-block;
      width: 100%;
      padding: 0.6rem 1rem;
      font-weight: 600; }
      .__BlockItems .__Item .__Title .__Name {
        display: flex;
        align-items: center;
        column-gap: 0.5rem; }

.InputItems {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.8rem;
  padding: 1.5rem; }
  .InputItems .__ItemList {
    display: inline-block;
    width: 100%;
    background: #f9f9f9;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    padding: 0.5rem;
    max-height: 200px;
    overflow: auto;
    scrollbar-width: thin; }
  .InputItems.Border {
    border-top: 1px solid #e2e2e2; }
  .InputItems .__Item {
    display: inline-block;
    width: 100%; }
    .InputItems .__Item.Disabled {
      display: none; }
    .InputItems .__Item.__TitleText {
      display: inline-block;
      padding-bottom: 1rem;
      font-weight: 600;
      font-size: 18px; }
    .InputItems .__Item .__InputView {
      display: inline-block;
      width: 100%; }
      .InputItems .__Item .__InputView textarea {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        height: 100px;
        padding: 0.4rem;
        border: 1px solid #e2e2e2;
        border-radius: 6px;
        -webkit-border-radius: 6px; }
      .InputItems .__Item .__InputView.__Flex {
        display: flex;
        column-gap: 0.5rem;
        align-items: center;
        align-content: center; }
      .InputItems .__Item .__InputView .PostCity {
        display: flex;
        column-gap: 1rem; }
        .InputItems .__Item .__InputView .PostCity input:nth-child(1) {
          width: 30%; }
      .InputItems .__Item .__InputView input[type=text] {
        width: 100%; }
    .InputItems .__Item .__TextViewString {
      display: inline-block;
      width: 100%;
      padding-bottom: 0.5rem;
      font-weight: 600;
      font-size: 14px; }

.ImageViewUploaded {
  display: inline-block;
  width: 100%;
  height: 200px;
  border: 1px solid #e2e2e2;
  padding: 1rem;
  border-radius: 4px;
  -webkit-border-radius: 4px; }
  .ImageViewUploaded img {
    width: 100%;
    height: 100%;
    object-fit: contain; }

.__PassendeModelle {
  display: flex;
  column-gap: 0.2rem; }
  .__PassendeModelle span {
    cursor: pointer; }

.form-select {
  font-family: 'Inter'; }

.__LayoutView {
  display: inline-block;
  width: 100%;
  padding-bottom: 1rem; }
  .__LayoutView .__FieldItem {
    column-gap: 1rem;
    display: flex;
    width: 100%;
    padding: 0.5rem 2rem; }
    .__LayoutView .__FieldItem span {
      display: inline-block; }
      .__LayoutView .__FieldItem span:nth-child(1) {
        width: 160px;
        font-weight: 600; }
  .__LayoutView .__BlockItem {
    display: inline-block;
    width: 100%;
    padding: 0 2rem 1rem; }
    .__LayoutView .__BlockItem .__Content {
      display: inline-block;
      width: 100%;
      font-size: 18px;
      font-weight: 300; }
    .__LayoutView .__BlockItem .__Title {
      padding: 0 !important;
      border: 0 !important;
      display: inline-block;
      width: 100%;
      font-weight: 600;
      font-size: 11px; }
  .__LayoutView .__TitleView {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem; }
    .__LayoutView .__TitleView span {
      display: inline-block;
      width: 100%; }
      .__LayoutView .__TitleView span:nth-child(2) {
        padding-top: 0.1rem;
        font-weight: 100;
        font-size: 18px; }
      .__LayoutView .__TitleView span:nth-child(1) {
        font-weight: 600;
        font-size: 24px; }
  .__LayoutView .__ImageView {
    display: inline-block;
    width: 100%;
    height: 400px;
    background: #f9f9f9; }
    .__LayoutView .__ImageView img {
      width: 100%;
      height: 100%; }

input, textarea {
  font-family: 'Inter' !important; }
  input:disabled, textarea:disabled {
    background: #f2f2f2 !important;
    font-weight: 600;
    color: #666 !important;
    border: 1px solid #e2e2e2; }

span.Light {
  font-weight: 300; }

.FileManager {
  display: flex;
  width: 100%;
  height: 100%; }
  .FileManager .__Menu {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    width: 300px;
    display: flex;
    flex-direction: column; }
    .FileManager .__Menu .__CategoryItemList {
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      align-content: flex-start;
      width: 100%;
      flex: 1;
      grid-gap: 0.2rem;
      padding: 1rem 1rem; }
      .FileManager .__Menu .__CategoryItemList:hover {
        overflow: auto;
        overflow-x: hidden; }
      .FileManager .__Menu .__CategoryItemList .__Item {
        cursor: pointer;
        transition: all 0.2s ease;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        padding: 0.5rem 1rem;
        display: flex;
        column-gap: 1rem;
        align-items: center;
        color: #000;
        font-weight: 600; }
        .FileManager .__Menu .__CategoryItemList .__Item.seletedFolderItem {
          color: #fff;
          background: #2e8cff !important; }
          .FileManager .__Menu .__CategoryItemList .__Item.seletedFolderItem .VioletInfo {
            color: #fff !important;
            background: #2e8cff !important; }
        .FileManager .__Menu .__CategoryItemList .__Item .VioletInfo {
          font-weight: 600;
          background: transparent;
          color: #999;
          border-radius: 4px;
          -webkit-border-radius: 4px; }
        .FileManager .__Menu .__CategoryItemList .__Item:hover {
          background: rgba(0, 0, 0, 0.05); }
        .FileManager .__Menu .__CategoryItemList .__Item span {
          flex: 1; }
      .FileManager .__Menu .__CategoryItemList .__ListTitle {
        padding-bottom: 0.5rem;
        display: inline-block;
        width: 100%;
        font-weight: 500;
        font-size: 13px;
        color: rgba(0, 0, 0, 0.4); }
    .FileManager .__Menu .__CloseBar {
      display: flex;
      column-gap: 0.5rem;
      padding: 1rem; }
      .FileManager .__Menu .__CloseBar .__CloseItem {
        cursor: pointer;
        display: inline-block;
        width: 14px;
        height: 14px;
        border-radius: 100px;
        -webkit-border-radius: 100px;
        background: #fff; }
        .FileManager .__Menu .__CloseBar .__CloseItem.Red {
          background: #ec6a5e; }
        .FileManager .__Menu .__CloseBar .__CloseItem.Yellow {
          background: #f4bf4f; }
        .FileManager .__Menu .__CloseBar .__CloseItem.Green {
          background: #61c554; }
  .FileManager .__ContentView {
    flex: 1;
    background: #f0f0f0;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column; }
    .FileManager .__ContentView .__ContentView {
      flex: 1;
      width: 100%; }
    .FileManager .__ContentView .__ItemLists {
      flex: 1;
      overflow: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(0, 0, 0, 0.2) transparent; }
    .FileManager .__ContentView .__TitleBar {
      align-items: center;
      display: flex;
      justify-content: space-between;
      width: 100%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 1rem; }
      .FileManager .__ContentView .__TitleBar .__Search {
        position: relative; }
        .FileManager .__ContentView .__TitleBar .__Search .__SearchIcon {
          position: absolute;
          right: 8px;
          top: 7px; }
          .FileManager .__ContentView .__TitleBar .__Search .__SearchIcon i {
            font-size: 18px;
            color: rgba(0, 0, 0, 0.5); }
      .FileManager .__ContentView .__TitleBar input[type=text] {
        padding: 0.4rem 1rem;
        background: rgba(0, 0, 0, 0.1);
        background: linear-gradient(90deg, rgba(216, 216, 216, 0.6) 0%, #f0f0f0 100%);
        border: 0 !important;
        color: #000;
        outline: none;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        backdrop-filter: blur(10px); }
      .FileManager .__ContentView .__TitleBar .__TitleTextView {
        display: inline-block;
        font-weight: 600;
        font-size: 16px;
        color: #000; }

.Modal {
  display: none;
  left: 0;
  top: 0;
  position: fixed;
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  z-index: 100000;
  background: rgba(0, 0, 0, 0.5); }
  .Modal .__View {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%; }
    .Modal .__View .__Box {
      overflow: hidden;
      max-height: 80vh;
      width: 400px;
      display: inline-block;
      background: #fff;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1); }
      .Modal .__View .__Box.macOS {
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(15px);
        background: rgba(0, 0, 0, 0.5);
        height: 80vh; }
      .Modal .__View .__Box .__Loading {
        display: inline-block;
        padding: 2rem;
        width: 100%;
        text-align: center; }
      .Modal .__View .__Box .__Content {
        float: left;
        display: inline-block;
        width: 100%;
        background: #fff;
        max-height: 60vh;
        overflow: auto;
        scrollbar-width: thin; }
        .Modal .__View .__Box .__Content.Center {
          text-align: center; }
        .Modal .__View .__Box .__Content.Padding {
          padding: 1rem; }
        .Modal .__View .__Box .__Content.Heighter {
          max-height: 70vh;
          background: transparent; }
      .Modal .__View .__Box .__Button {
        display: flex;
        column-gap: 0.5rem;
        justify-content: flex-end;
        width: 100%;
        padding: 0.6rem;
        border-top: 1px solid #eee; }
        .Modal .__View .__Box .__Button .btn {
          margin: 0; }
      .Modal .__View .__Box .__Title {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        padding: 0.6rem 0.6rem 0.6rem 1rem;
        border-bottom: 1px solid #eee; }
        .Modal .__View .__Box .__Title.Black {
          background-color: #111;
          color: #fff;
          border-bottom: 1px solid #222; }
        .Modal .__View .__Box .__Title .__Close {
          display: inline-block; }
          .Modal .__View .__Box .__Title .__Close .Button {
            cursor: pointer;
            font-size: 18px;
            display: inline-block;
            padding: 0.2rem 0.4rem;
            border-radius: 6px;
            -webkit-border-radius: 6px; }
            .Modal .__View .__Box .__Title .__Close .Button i {
              font-size: 18px; }
            .Modal .__View .__Box .__Title .__Close .Button:hover {
              background: #f9f9f9; }
        .Modal .__View .__Box .__Title .__TextView {
          display: inline-block;
          font-weight: 600;
          font-size: 16px; }

.DeleteModal, .WindowAlertModal {
  display: none;
  left: 0;
  top: 0;
  position: fixed;
  backdrop-filter: blur(2px);
  width: 100%;
  height: 100%;
  z-index: 1000000;
  background: rgba(0, 0, 0, 0.5); }
  .DeleteModal .__View, .WindowAlertModal .__View {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%; }
    .DeleteModal .__View .__Box, .WindowAlertModal .__View .__Box {
      display: inline-block;
      background: #fff;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
      -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
      width: 300px; }
      .DeleteModal .__View .__Box .__Button, .WindowAlertModal .__View .__Box .__Button {
        display: inline-block;
        width: 100%;
        padding: 0.5rem 1rem 1rem 1rem;
        text-align: center; }
      .DeleteModal .__View .__Box .__Content, .WindowAlertModal .__View .__Box .__Content {
        display: inline-block;
        width: 100%;
        padding: 1rem 2rem;
        text-align: center; }
      .DeleteModal .__View .__Box .__Title, .WindowAlertModal .__View .__Box .__Title {
        font-weight: 600;
        font-size: 16px;
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 0.6rem 0;
        border-bottom: 1px solid #e2e2e2; }

.MenuLayout {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  left: 0;
  z-index: 100;
  top: 0;
  width: 260px;
  height: 100%;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  display: flex;
  justify-content: space-between;
  flex-direction: column; }
  .MenuLayout .__Blur {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: #181818;
    border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px;
    backdrop-filter: blur(30px); }
  .MenuLayout .__Menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    border-radius: 10px 0 0 10px;
    -webkit-border-radius: 10px 0 0 10px; }
  .MenuLayout:hover {
    overflow: auto;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent; }
  .MenuLayout a {
    text-decoration: none; }
    .MenuLayout a:hover {
      text-decoration: none; }
  .MenuLayout .__SearchBar {
    transition: all 0.2s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 0 2rem; }
    .MenuLayout .__SearchBar:hover .__Icon i {
      color: #2942fd; }
    .MenuLayout .__SearchBar:hover input {
      border: 1px solid #2942fd; }
    .MenuLayout .__SearchBar .__Icon {
      position: absolute;
      left: 46px;
      top: 12px; }
      .MenuLayout .__SearchBar .__Icon i {
        font-size: 20px;
        color: #000; }
    .MenuLayout .__SearchBar input {
      transition: all 0.2s ease;
      outline: none;
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.1);
      background: transparent;
      border-radius: 6px;
      -webkit-border-radius: 6px;
      padding: 0.6rem 1rem 0.6rem 3rem;
      color: #000;
      font-size: 16px;
      font-weight: 200; }
  .MenuLayout .__MenuItems {
    display: inline-block;
    padding: 1rem 1.2rem 1rem;
    width: 100%; }
    .MenuLayout .__MenuItems .__LogoItem {
      display: flex;
      padding: 1rem 1rem 2rem 1rem;
      color: #fff;
      column-gap: 1rem;
      align-items: center;
      font-weight: 700;
      font-size: 18px; }
    .MenuLayout .__MenuItems .__Item {
      color: #fff;
      width: 100%;
      display: flex;
      column-gap: 1rem;
      align-items: center;
      padding: 0.7rem 1rem;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      opacity: 0.8; }
      .MenuLayout .__MenuItems .__Item.__No {
        opacity: 0.1; }
      .MenuLayout .__MenuItems .__Item.__MenuTitle {
        color: rgba(255, 255, 255, 0.6);
        font-size: 11px;
        font-weight: 300; }
        .MenuLayout .__MenuItems .__Item.__MenuTitle:hover {
          color: #fff;
          background: transparent; }
      .MenuLayout .__MenuItems .__Item:hover {
        color: #fff;
        cursor: pointer; }
      .MenuLayout .__MenuItems .__Item span {
        display: inline-block; }
        .MenuLayout .__MenuItems .__Item span i {
          font-size: 24px; }
        .MenuLayout .__MenuItems .__Item span:nth-child(2) {
          font-weight: 600;
          font-size: 14px; }
      .MenuLayout .__MenuItems .__Item:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.02); }
  .MenuLayout .__Logo {
    display: inline-block;
    width: 100%;
    padding: 1.5rem 2rem 2rem; }
    .MenuLayout .__Logo img {
      max-width: 80%; }

.SearchBuilder {
  display: grid;
  grid-template-columns: auto auto auto auto auto 90px;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  padding: 1rem;
  column-gap: 1rem; }
  .SearchBuilder.Flexed {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 1rem; }
  .SearchBuilder .__SearchItem {
    display: flex;
    flex-direction: column;
    row-gap: 0.5rem; }
    .SearchBuilder .__SearchItem .btn {
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .SearchBuilder .__SearchItem input[type=text].form-control {
      height: 40px; }
    .SearchBuilder .__SearchItem span:nth-child(1) {
      font-weight: 600; }

.PDFUploader {
  display: flex;
  width: 100%;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  min-height: 300px;
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px; }
  .PDFUploader .__StepTwo {
    flex: 1; }
  .PDFUploader .__Upload {
    gap: 0.8rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    border-right: 1px solid #e8e8e8; }
    .PDFUploader .__Upload b {
      font-weight: 600;
      font-size: 30px; }
    .PDFUploader .__Upload span {
      font-weight: 300;
      font-size: 20px; }
    .PDFUploader .__Upload input[type=file] {
      width: 80%; }

.KistenInfo {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center; }
  .KistenInfo span:nth-child(1), .KistenInfo span:nth-child(3) {
    flex: 1;
    display: flex; }
  .KistenInfo span:nth-child(3) {
    justify-content: flex-end; }
  .KistenInfo span:nth-child(2) {
    flex: 2;
    justify-content: center;
    text-align: center; }

.ProfileCreator {
  display: flex;
  align-items: center;
  column-gap: 0.6rem; }

.ContactInfo {
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  border-radius: 6px;
  -webkit-border-radius: 6px; }
  .ContactInfo .ContactTopBottom {
    display: flex;
    border-top: 1px solid #e2e2e2;
    padding: 0.6rem 1rem;
    text-align: center;
    align-items: center;
    justify-content: center; }
    .ContactInfo .ContactTopBottom.Left {
      text-align: left;
      justify-content: flex-start;
      align-items: flex-start;
      flex-direction: column; }
    .ContactInfo .ContactTopBottom.NoPadding {
      padding: 0; }
  .ContactInfo .ContactInfoTop {
    display: flex;
    column-gap: 1rem;
    align-items: center;
    padding: 1rem; }
    .ContactInfo .ContactInfoTop .__Info b {
      font-size: 14px; }

.GridButtons {
  display: grid;
  border-collapse: collapse;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14);
  background: #fff;
  grid-template-columns: repeat(2, 1fr); }
  .GridButtons .__Item {
    cursor: pointer;
    border-collapse: collapse;
    width: 100px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    .GridButtons .__Item:hover {
      color: #143eea; }
    .GridButtons .__Item:nth-child(1) {
      border-right: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2; }
    .GridButtons .__Item:nth-child(2) {
      border-bottom: 1px solid #e2e2e2; }
    .GridButtons .__Item:nth-child(3) {
      border-right: 1px solid #e2e2e2;
      border-bottom: 1px solid #e2e2e2; }
    .GridButtons .__Item:nth-child(4) {
      border-bottom: 1px solid #e2e2e2; }
    .GridButtons .__Item span {
      font-weight: 600;
      font-size: 12px; }
    .GridButtons .__Item i {
      font-size: 32px; }

.ProfileHover {
  display: inline-block;
  position: relative; }
  .ProfileHover.Big1 .__Photo {
    left: 100px; }
  .ProfileHover.Big .__Photo {
    left: 160px; }
  .ProfileHover:hover .__Photo {
    display: inline-block; }
  .ProfileHover .__Photo {
    position: absolute;
    z-index: 100;
    left: 60px;
    top: 0;
    display: none; }
    .ProfileHover .__Photo .arrow_box {
      position: relative;
      background: #fff;
      display: flex;
      width: 300px;
      height: 300px;
      border-radius: 10px;
      -webkit-border-radius: 10px;
      padding: 0.2rem; }
      .ProfileHover .__Photo .arrow_box .__ImageInset {
        display: inline-block;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        overflow: hidden; }
        .ProfileHover .__Photo .arrow_box .__ImageInset img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .ProfileHover .__Photo .arrow_box:after {
      right: 100%;
      top: 4%;
      border: solid transparent;
      content: "";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-color: rgba(255, 255, 255, 0);
      border-right-color: #fff;
      border-width: 8px;
      margin-top: -8px; }

.ProfileImageView {
  display: inline-block;
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  overflow: hidden;
  background: #f5f5f5; }
  .ProfileImageView.Big1 {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    -webkit-border-radius: 10px; }
  .ProfileImageView.Big {
    width: 160px;
    height: 160px;
    border-radius: 10px;
    -webkit-border-radius: 10px; }
  .ProfileImageView img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.LoginLayout {
  background: #f2f2f2;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  align-items: center; }
  .LoginLayout .__View {
    display: inline-block;
    width: 750px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.05);
    background: #fff url("../img/login_bg.png") right;
    background-size: cover; }
    .LoginLayout .__View .__LoginView {
      display: flex;
      align-content: center;
      align-items: center;
      flex-wrap: wrap;
      width: 70%;
      height: 500px;
      padding: 0rem 5rem; }
      .LoginLayout .__View .__LoginView .__Logo {
        display: inline-block;
        width: 100%;
        padding-bottom: 1rem; }
      .LoginLayout .__View .__LoginView .__Form {
        display: inline-block;
        width: 80%; }
        .LoginLayout .__View .__LoginView .__Form .form-floating {
          margin-top: 1rem; }
          .LoginLayout .__View .__LoginView .__Form .form-floating.__button {
            padding-top: 1rem; }
          .LoginLayout .__View .__LoginView .__Form .form-floating.__flex {
            display: flex;
            align-content: center;
            align-items: center;
            column-gap: 0.4rem; }
            .LoginLayout .__View .__LoginView .__Form .form-floating.__flex b {
              font-size: 11px; }
        .LoginLayout .__View .__LoginView .__Form .__Title {
          display: inline-block;
          width: 100%;
          padding-bottom: 1rem;
          font-weight: 600;
          font-size: 24px; }

scrollbar, [scrollbar], [data-scrollbar] {
  display: block;
  position: relative;
  overflow: scroll; }

scrollbar .scroll-content, [scrollbar] .scroll-content, [data-scrollbar] .scroll-content {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: transform; }

scrollbar.scrolling .scroll-content, [scrollbar].scrolling .scroll-content, [data-scrollbar].scrolling .scroll-content {
  pointer-events: none; }

scrollbar.scrolling .scroll-content .scroll-content, [scrollbar].scrolling .scroll-content .scroll-content, [data-scrollbar].scrolling .scroll-content .scroll-content {
  pointer-events: auto; }

scrollbar .scrollbar-track, [scrollbar] .scrollbar-track, [data-scrollbar] .scrollbar-track {
  position: absolute;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity .5s 1s ease-out,background .5s ease-out;
  transition: opacity .5s 1s ease-out,background .5s ease-out;
  background: 0 0; }

scrollbar .scrollbar-track.show, [scrollbar] .scrollbar-track.show, [data-scrollbar] .scrollbar-track.show, scrollbar .scrollbar-track:hover, [scrollbar] .scrollbar-track:hover, [data-scrollbar] .scrollbar-track:hover {
  opacity: 1;
  -webkit-transition-delay: 0s;
  transition-delay: 0s; }

scrollbar .scrollbar-track:hover, [scrollbar] .scrollbar-track:hover, [data-scrollbar] .scrollbar-track:hover {
  background: rgba(222, 222, 222, 0.75); }

scrollbar .scrollbar-track-x, [scrollbar] .scrollbar-track-x, [data-scrollbar] .scrollbar-track-x {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px; }

scrollbar .scrollbar-track-y, [scrollbar] .scrollbar-track-y, [data-scrollbar] .scrollbar-track-y {
  top: 0;
  right: 0;
  width: 8px;
  height: 100%; }

scrollbar .scrollbar-thumb, [scrollbar] .scrollbar-thumb, [data-scrollbar] .scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px; }

.btn--block {
  display: block; }

.btn--block + .btn--block {
  margin-left: 0; }

.btn {
  display: inline-block;
  position: relative;
  margin: 0px 0;
  padding: 10px 31px 11px;
  cursor: pointer;
  outline: 0;
  border: none;
  border-radius: 22px;
  background: transparent;
  transition: background .2s,color .2s;
  text-align: center;
  text-decoration: none;
  font: 1.286em/1.1667 'Inter',sans-serif;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.btn:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 22px;
  transition: border 0.1s ease-in-out; }

.btn + .btn {
  margin-left: 7px; }

.btn .b-link {
  border-radius: inherit; }

.btn.tooltip-no-js-wrap:hover > .tooltip {
  display: none !important; }

.btn:disabled > .tooltip, .btn.disabled > .tooltip {
  display: block; }

.btn--static .b-link {
  top: -1000px;
  right: -1000px;
  bottom: -1000px;
  left: -1000px; }

.btn--xsm {
  padding: 3px 15px 4px;
  border-radius: 12px;
  font-size: .929em;
  line-height: 1.308; }

.btn--xsm:before {
  border-radius: 11px; }

.btn--sm {
  padding: 7px 18px 6px;
  border-radius: 16px;
  font-size: 1em;
  line-height: 1.3572; }

.btn--sm:before {
  border-radius: 16px; }

.btn, .btn:hover {
  color: #fff; }

.btn > .icon-svg, .btn > .icon:hover, .btn > .icon-svg:hover {
  color: inherit; }

.btn--red {
  background: #f02139; }

.btn--red:hover, .btn--red:focus {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--red:active, .btn--red.active {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--orange {
  background: #ff8200; }

.btn--orange:hover, .btn--orange:focus {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--orange:active, .btn--orange.active {
  background: #f02139 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dorange {
  background: #ef5322; }

.btn--dorange:hover, .btn--dorange:focus {
  background: #ef5322 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dorange:active, .btn--dorange.active {
  background: #ef5322 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--yellow {
  background: #fec309; }

.btn--yellow:hover, .btn--yellow:focus {
  background: #fec309 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--yellow:active, .btn--yellow.active {
  background: #fec309 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--greywhite {
  color: #000;
  background: #f9f9f9; }

.btn--greywhite:hover, .btn--greywhite:focus {
  color: #000;
  background: #fff linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--greywhite:active, .btn--greywhite.active {
  color: #000;
  background: #fff linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--grey {
  background: #738499; }

.btn--grey:hover, .btn--grey:focus {
  background: #738499 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--grey:active, .btn--grey.active {
  background: #738499 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--grass {
  background: #86c313; }

.btn--grass:hover, .btn--grass:focus {
  background: #86c313 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--grass:active, .btn--grass.active {
  background: #86c313 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--lime {
  background: #29cf29; }

.btn--lime:hover, .btn--lime:focus {
  background: #29cf29 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--lime:active, .btn--lime.active {
  background: #29cf29 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--green {
  background: #1ac636; }

.btn--green:hover, .btn--green:focus {
  background: #1ac636 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--green:active, .btn--green.active {
  background: #1ac636 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--aqua {
  background: #00caa8; }

.btn--aqua:hover, .btn--aqua:focus {
  background: #00caa8 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--aqua:active, .btn--aqua.active {
  background: #00caa8 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--sky {
  background: #28c4f6; }

.btn--sky:hover, .btn--sky:focus {
  background: #28c4f6 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--sky:active, .btn--sky.active {
  background: #28c4f6 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dsky {
  background: #1eb2fc; }

.btn--dsky:hover, .btn--dsky:focus {
  background: #1eb2fc linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dsky:active, .btn--dsky.active {
  background: #1eb2fc linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--lblue {
  background: #2b8cfc; }

.btn--lblue:hover, .btn--lblue:focus {
  background: #2b8cfc linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--lblue:active, .btn--lblue.active {
  background: #2b8cfc linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--blue {
  background: #2b65f8; }

.btn--blue:hover, .btn--blue:focus {
  background: #2b65f8 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--blue:active, .btn--blue.active, .btn--blue.loading {
  background: #2b65f8 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--dgrey {
  background: #9aa9c5; }

.btn--dgrey:hover, .btn--dgrey:focus {
  background: #9aa9c5 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--dgrey:active, .btn--dgrey.active {
  background: #9aa9c5 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--pink {
  background: #f55280; }

.btn--pink:hover, .btn--pink:focus {
  background: #f55280 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--pink:active, .btn--pink.active {
  background: #f55280 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--laguna {
  background: #2f75c1; }

.btn--laguna:hover, .btn--laguna:focus {
  background: #2f75c1 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--laguna:active, .btn--laguna.active {
  background: #2f75c1 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--vdgrey {
  background: #333844; }

.btn--vdgrey:hover, .btn--vdgrey:focus {
  background: #333844 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--vdgrey:active, .btn--vdgrey.active {
  background: #333844 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--aqua-blue {
  background: #08b5fd; }

.btn--aqua-blue:focus, .btn--aqua-blue:hover {
  background: #069fde; }

.btn--aqua-blue:active, .btn--aqua-blue.active {
  background: #0487bd; }

.btn--facebook {
  background: #3464d4; }

.btn--facebook:hover, .btn--facebook:focus {
  background: #3464d4 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--facebook:active, .btn--facebook.active {
  background: #3464d4 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--twitter {
  background: #1cacff; }

.btn--twitter:hover, .btn--twitter:focus {
  background: #1cacff linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--twitter:active, .btn--twitter.active {
  background: #1cacff linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--google {
  background: #dd4b39; }

.btn--google:hover, .btn--google:focus {
  background: #dd4b39 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--google:active, .btn--google.active {
  background: #dd4b39 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--instagram {
  background: #3674a9; }

.btn--instagram:hover, .btn--instagram:focus {
  background: #3674a9 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--instagram:active, .btn--instagram.active {
  background: #3674a9 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--linkedin {
  background: #006799; }

.btn--linkedin:hover, .btn--linkedin:focus {
  background: #006799 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--linkedin:active, .btn--linkedin.active {
  background: #006799 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--vk {
  background: #2c70b4; }

.btn--vk:hover, .btn--vk:focus {
  background: #2c70b4 linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--vk:active, .btn--vk.active {
  background: #2c70b4 linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--odnoklassniki {
  background: #f7882b; }

.btn--odnoklassniki:hover, .btn--odnoklassniki:focus {
  background: #f7882b linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--odnoklassniki:active, .btn--odnoklassniki.active {
  background: #f7882b linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--yandex {
  background: #ee3a2e; }

.btn--yandex:hover, .btn--yandex:focus {
  background: #ee3a2e linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }

.btn--yandex:active, .btn--yandex.active {
  background: #ee3a2e linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); }

.btn--transparent {
  background: rgba(0, 0, 0, 0.5); }

.btn--transparent > .ico, .btn--transparent > .icon-svg {
  opacity: 0.8; }

.btn--transparent:hover, .btn--transparent:focus {
  background: rgba(0, 0, 0, 0.7); }

.btn--transparent:hover > .ico, .btn--transparent:focus > .ico, .btn--transparent.active > .ico, .btn--transparent:hover > .icon-svg, .btn--transparent:focus > .icon-svg, .btn--transparent.active > .icon-svg {
  opacity: 1; }

.btn--transparent:active {
  background: rgba(0, 0, 0, 0.9); }

.btn--glass:before {
  content: '';
  border: 2px solid rgba(255, 255, 255, 0.3); }

.btn--glass:hover:before {
  border-color: #fff; }

.btn--glass:active:before, .btn--glass.active:before {
  border-color: rgba(255, 255, 255, 0.3); }

.btn--white {
  background: #fff;
  color: #4d4d4d; }

.btn--white:before {
  content: '';
  border: 1px solid rgba(0, 0, 0, 0.1); }

.btn--white:hover, .btn--white:focus {
  color: #2b65f8; }

.btn--white:hover:before, .btn--white:focus:before {
  border-width: 2px;
  border-color: #2b65f8; }

.btn--white:active, .btn--white.active, .btn--white.loading {
  color: #2058c6; }

.btn--white:active:before, .btn--white.active:before, .btn--white.loading:before {
  border-width: 2px;
  border-color: #2058c6; }

.btn--gold {
  background: #fff;
  color: #4d4d4d; }

.btn--gold:before {
  content: '';
  border: 1px solid rgba(0, 0, 0, 0.1); }

.btn--gold:hover:before, .btn--gold:focus:before {
  border-width: 2px;
  border-color: #fec309; }

.btn--gold:active, .btn--gold.active, .btn--gold.loading {
  background: #fec309; }

.btn--gold:active:before, .btn--gold.active:before, .btn--gold.loading:before {
  border: none; }

.btn--gold.active:hover {
  background: #e4af08; }

.btn-normal {
  border-radius: 6px !important;
  -webkit-border-radius: 6px !important; }
  .btn-normal:before {
    border-radius: 6px !important;
    -webkit-border-radius: 6px !important; }

.RedInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #fcdfe0;
  color: #d72c30;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px; }
  .RedInfo.MarginLeft {
    margin-left: 5px; }

.VioletInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #eeeaff;
  color: #4425c2;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px; }
  .VioletInfo.Mini_1 {
    padding: 1px 8px 1px 4px;
    margin-left: 0.3rem;
    font-size: 11px;
    border-radius: 100px;
    -webkit-border-radius: 100px; }
  .VioletInfo.Mini {
    padding: 1px 3px;
    margin-left: 0.3rem;
    font-size: 11px;
    border-radius: 100px;
    -webkit-border-radius: 100px; }
  .VioletInfo.MarginLeft {
    margin-left: 5px; }

.WhiteInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #fff;
  transition: all 0.2s ease;
  color: #555;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px; }
  .WhiteInfo.MarginLeft {
    margin-left: 5px; }
  .WhiteInfo:hover {
    background: #f9f9f9; }

.GrayInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #f9f9f9;
  color: #555;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px; }
  .GrayInfo.MarginLeft {
    margin-left: 5px; }

.BlueInfo.Round,
.GreenInfo.Round,
.BlueInfo.Round,
.GrayInfo.Round,
.VioletInfo.Round,
.WhiteInfo.Round {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 100px;
  -webkit-border-radius: 100px; }

.BlueInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #dbe8ff;
  color: #143eea;
  cursor: pointer;
  font-weight: 500;
  font-size: 12px; }
  .BlueInfo.MarginLeft {
    margin-left: 5px; }

.GreenInfo {
  display: inline-block;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 3px 6px;
  background: #eaf8ea;
  color: #33b934;
  font-weight: 500;
  cursor: pointer;
  font-size: 12px; }
  .GreenInfo.MarginLeft {
    margin-left: 5px; }

[data-balloon] {
  position: relative; }

[data-balloon]::before {
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease-out;
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(data-balloon);
  font-size: 12px;
  padding: .5em 1em;
  position: absolute;
  white-space: nowrap;
  z-index: 10; }

[data-balloon]::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(0)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease-out;
  content: '';
  position: absolute;
  z-index: 10; }

[data-balloon]:hover::before, [data-balloon]:hover::after {
  opacity: 1;
  pointer-events: auto; }

[data-balloon][data-balloon-pos="up"]::before {
  bottom: 100%;
  left: 50%;
  margin-bottom: 11px;
  transform: translate3d(-50%, 10px, 0);
  transform-origin: top; }

[data-balloon][data-balloon-pos="up"]::after {
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  transform: translate3d(-50%, 10px, 0);
  transform-origin: top; }

[data-balloon][data-balloon-pos="up"]:hover::before {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos="up"]:hover::after {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='down']::before {
  left: 50%;
  margin-top: 11px;
  top: 100%;
  transform: translate3d(-50%, -10px, 0); }

[data-balloon][data-balloon-pos='down']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="36px" height="12px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(180 18 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 18px;
  height: 6px;
  left: 50%;
  margin-top: 5px;
  top: 100%;
  transform: translate3d(-50%, -10px, 0); }

[data-balloon][data-balloon-pos='down']:hover::before {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='down']:hover::after {
  transform: translate3d(-50%, 0, 0); }

[data-balloon][data-balloon-pos='left']::before {
  margin-right: 11px;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0); }

[data-balloon][data-balloon-pos='left']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(-90 18 18)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  margin-right: 5px;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0); }

[data-balloon][data-balloon-pos='left']:hover::before {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='left']:hover::after {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='right']::before {
  left: 100%;
  margin-left: 11px;
  top: 50%;
  transform: translate3d(-10px, -50%, 0); }

[data-balloon][data-balloon-pos='right']::after {
  background: no-repeat url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12px" height="36px"><path fill="rgba(17, 17, 17, 0.9)" transform="rotate(90 6 6)" d="M2.658,0.000 C-13.615,0.000 50.938,0.000 34.662,0.000 C28.662,0.000 23.035,12.002 18.660,12.002 C14.285,12.002 8.594,0.000 2.658,0.000 Z"/></svg>');
  background-size: 100% auto;
  width: 6px;
  height: 18px;
  left: 100%;
  margin-left: 5px;
  top: 50%;
  transform: translate3d(-10px, -50%, 0); }

[data-balloon][data-balloon-pos='right']:hover::before {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-pos='right']:hover::after {
  transform: translate3d(0, -50%, 0); }

[data-balloon][data-balloon-length='small']::before {
  white-space: normal;
  width: 80px; }

[data-balloon][data-balloon-length='medium']::before {
  white-space: normal;
  width: 150px; }

[data-balloon][data-balloon-length='large']::before {
  white-space: normal;
  width: 260px; }

[data-balloon][data-balloon-length='xlarge']::before {
  white-space: normal;
  width: 380px; }

@media screen and (max-width: 768px) {
  [data-balloon][data-balloon-length='xlarge']::before {
    white-space: normal;
    width: 90vw; } }
[data-balloon][data-balloon-length='fit']::before {
  white-space: normal;
  width: 100%; }

/*!
	By Andr├® Rinas, www.andrerinas.de
	Documentation, www.simplelightbox.de
	Available for use under the MIT License
	Version 2.11.0
*/
.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  display: none;
  z-index: 1035; }

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  left: 0;
  top: 0;
  position: fixed; }

.sl-wrapper * {
  box-sizing: border-box; }

.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer; }

.sl-wrapper button:hover {
  opacity: 0.7; }

.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
  font-size: 3rem; }

.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 10060;
  color: #000;
  font-size: 1rem; }

.sl-wrapper .sl-navigation {
  width: 100%;
  display: none; }

.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  color: #fff;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #fff; }

.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  color: #fff;
  font-size: 2rem; }

.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  color: #fff;
  font-size: 2rem; }

@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px; }

  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem; }

  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem; } }
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px; }

  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem; }

  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem; } }
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr; }

.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000; }

.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto; }

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none; } }
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none; } }
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none; }

@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none; } }
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none; } }
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0; }

.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0; }

.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto; }

.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #000;
  z-index: 1060; }

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite; }

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms; }

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
.ChartLayoutTitle {
  display: inline-block;
  width: 100%;
  color: #fff;
  padding-top: 1rem;
  padding-bottom: 2rem;
  font-weight: 500;
  font-size: 24px; }

.ChartLayout {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 500px; }
  .ChartLayout__Chart {
    position: absolute;
    left: -50px;
    width: 1080px; }

.StatsLayout {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem; }
  .StatsLayout__Item {
    backdrop-filter: blur(100px);
    display: inline-block;
    width: 100%;
    color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px; }
    .StatsLayout__Item .__Calc {
      display: flex;
      padding: 0 1rem 1rem;
      flex-direction: column;
      width: 100%; }
      .StatsLayout__Item .__Calc span {
        display: flex;
        column-gap: 1rem; }
    .StatsLayout__Item__Content {
      display: inline-block;
      width: 100%;
      padding: 0.5rem 1rem;
      text-shadow: 0 2px rgba(0, 0, 0, 0.1);
      font-weight: 600;
      font-size: 26px; }
    .StatsLayout__Item__Title {
      display: inline-block;
      width: 100%;
      padding: 1rem 1rem 0 1rem;
      text-shadow: 0 2px rgba(0, 0, 0, 0.1);
      font-weight: 300;
      font-size: 16px; }
    .StatsLayout__Item.Violet {
      background: linear-gradient(160deg, rgba(117, 70, 209, 0.2) 0%, rgba(99, 78, 215, 0) 50%);
      background: rgba(117, 70, 209, 0.05);
      color: #B48EFF;
      background-size: 150% 150%;
      animation: VioletAnimation 5s ease infinite; }
    .StatsLayout__Item.Blue {
      background: linear-gradient(160deg, rgba(21, 151, 223, 0.2) 0%, rgba(50, 89, 202, 0) 50%);
      background: rgba(21, 151, 223, 0.05);
      color: #1597df;
      background-size: 150% 150%;
      animation: VioletAnimation 5s ease infinite; }
    .StatsLayout__Item.Green {
      background: linear-gradient(160deg, rgba(0, 230, 118, 0.2) 0%, rgba(0, 200, 83, 0) 50%);
      background: rgba(0, 230, 118, 0.05);
      color: #00e676;
      background-size: 150% 150%;
      animation: VioletAnimation 5s ease infinite; }
    .StatsLayout__Item.Red {
      background: linear-gradient(160deg, rgba(231, 75, 111, 0.2) 0%, rgba(231, 90, 71, 0) 80%);
      background: rgba(231, 75, 111, 0.05);
      color: #e74b6f;
      background-size: 150% 150%; }

/**
  * @copyright itQuelle.de
 */
.itQuellePhotoViewer {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  z-index: 100000;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px); }

.itQuellePhotoViewer .__View {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  align-content: center; }

.itQuellePhotoViewer .__View .__Center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: calc(100% - 160px); }

.itQuellePhotoViewer .__View .__Center img {
  max-width: 90%;
  max-height: 100% !important;
  object-fit: contain; }

.itQuellePhotoViewer .__View .__Right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 80px;
  text-align: right;
  color: #fff; }

.itQuellePhotoViewer .__View .__Right:hover {
  cursor: pointer;
  background: #000;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%); }

.itQuellePhotoViewer .__View .__Left {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 80px;
  color: #fff; }

.itQuellePhotoViewer .__View .__Left:hover {
  cursor: pointer;
  background: #000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(255, 255, 255, 0) 100%); }

.itQuellePhotoViewer .__LeftIcon {
  position: relative;
  /* top: 3pt; Uncomment this to lower the icons as requested in comments*/
  content: "";
  display: inline-block;
  /* By using an em scale, the arrows will size with the font */
  width: 1em;
  height: 1em;
  border-left: 0.1em solid white;
  border-top: 0.1em solid white;
  transform: rotate(-45deg);
  margin-right: 0.5em; }

.itQuellePhotoViewer .__RightIcon {
  /* top: 3pt; Uncomment this to lower the icons as requested in comments*/
  content: "";
  display: inline-block;
  /* By using an em scale, the arrows will size with the font */
  width: 1em;
  height: 1em;
  border-right: 0.1em solid white;
  border-top: 0.1em solid white;
  transform: rotate(45deg); }

.itQuellePhotoViewer .__CloseButton {
  position: absolute;
  z-index: 10;
  right: 0.5rem;
  top: 0.5rem;
  color: #fff;
  padding: 1rem; }

.itQuellePhotoViewer .__CloseButton .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  font-size: 0;
  border-radius: 6px;
  transition: all 0.2s ease; }

.itQuellePhotoViewer .__CloseButton .close:hover {
  background: #000; }

.itQuellePhotoViewer .__CloseButton .close:before,
.itQuellePhotoViewer .__CloseButton .close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  background-color: #F0F0F0;
  transform: rotate(45deg) translate(-50%, -50%);
  transform-origin: top left;
  transition: all 420ms;
  content: ''; }

.itQuellePhotoViewer .__CloseButton .close:after {
  transform: rotate(-45deg) translate(-50%, -50%); }

.itQuellePhotoViewer .__CloseButton .close:hover:before,
.itQuellePhotoViewer .__CloseButton .close:hover:after {
  background-color: #fff; }

/*# sourceMappingURL=itquellePhotoViewer.css.map */

/*# sourceMappingURL=style.css.map */
