@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('font-awesome/css/all.min.css');

/* ============================================================
         APP.CSS NUR FÜR WIEDERVERWENDBARE KLASSEN!!!
   ============================================================ */

/*#region Font + Colors*/

@font-face {
  font-family: 'Montserrat';
  src: url(../Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Montserrat-Regular';
  src: url(../Montserrat/static/Montserrat-Regular.ttf);
}

@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url(../Montserrat/static/Montserrat-SemiBold.ttf);
}

@font-face {
  font-family: 'Montserrat-Bold';
  src: url(../Montserrat/static/Montserrat-Bold.ttf);
}

@font-face {
  font-family: 'Montserrat-Medium';
  src: url(../Montserrat/static/Montserrat-Medium.ttf);
}

@font-face {
  font-family: 'Montserrat-Light';
  src: url(../Montserrat/static/Montserrat-Light.ttf);
}

@font-face {
  font-family: 'FontAwesome';
  src: url(font-awesome/webfonts/fa-solid-900.woff2);
}

@font-face {
  font-family: 'FontAwesome-regular';
  src: url(font-awesome/webfonts/fa-regular-400.woff2);
}

@font-face {
  font-family: 'Open Sans';
}
/*#endregion*/

/*-----------------------------------------*/
/*#region softtec colors and Fonts*/
:root {
  --softtec-dark-blue: #00305e;
  --softtec-medium-blue1: #4c6e8e;
  --softtec-medium-blue2: #7b94ab;
  --softtec-medium-blue3: #d9e2e8;
  --softtec-light-blue1: #e5ebef;
  --softtec-light-blue2: #f2f5f7;
  --softtec-grey: #cfcfcf;
  --softtec-red: red;
  --softtec-green: #719772;
  --softtec-light-green: #71977280;
  --softtec-light-orange: #f59a2380;
  --softtec-light-red: #cd695d80;
  --softtec-white: #ffffff;
  --softtec-transparent-dark-blue: #4c6e8efc;
  --softtec-transparent-medium-blue: #4c6e8e99;
  --softtec-transparent-medium-blue1: #4c6e8e80;
  --softtec-light-blue-shadow: #a5b7c6;
  --softtec-field-border-color: #dbe2e8;
  --softtec-switch-red: #cd695d;
  --softtec-switch-light-green: #a5bda5;
  --softtec-disabled: #cdcdcd;
  --dashboard-checkin-bg: #cbddd2;
  --dashboard-checkin-color: #4e6e4f;
  --dashboard-checkin-hover-color: #dbe9e2;
  --dashboard-checkout-bg: #efcdc2;
  --dashboard-checkout-color: #a96255;
  --dashboard-checkout-hover-color: #f3dcd6;
  --dashboard-stayover-bg: #f7e6cd;
  --dashboard-stayover-color: #9c7133;
  --dashboard-stayover-hover-color: #faeedb;
  --font-regular: Montserrat-Regular, Helvetica, Arial, sans-serif;
  --font-medium: Montserrat-Medium, Montserrat-Regular, Helvetica, Arial, sans-serif;
  --font-semibold: Montserrat-SemiBold, Montserrat-Regular, Helvetica, Arial, sans-serif;
  --font-bold: Montserrat-Bold, Montserrat-Regular, Helvetica, Arial, sans-serif;
  --font-size-8: 8px;
  --font-size-10: 10px;
  --font-size-11: 11px;
  --font-size-12: 12px;
  --font-size-13: 13px;
  --font-size-14: 14px;
  --font-size-15: 15px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-30: 30px;
  --font-size-40: 40px;
}
/*#endregion*/

/*General*/
/*Font*/
html {
  font-size: 0.625rem;
  overflow: hidden;
}

html, body {
  font-family: 'Montserrat-Regular';
}

body {
  line-height: 1.4;
}

button, .btn, input, p, a, textarea, label, span, table, tr, td, th, thead, tbody, b, ol, li, ul, select, .form-control, div, .nav-item {
  font-family: 'Montserrat-Regular';
  font-size: var(--font-size-12) !important;
}

.font-size-2 {
  font-size: var(--font-size-20) !important;
}

.font-size-3 {
  font-size: var(--font-size-30) !important;
}

.font-size-11 {
  font-size: var(--font-size-11) !important;
}

.font-size-14 {
  font-size: var(--font-size-14) !important;
}

.font-size-15 {
  font-size: var(--font-size-15) !important;
}

.font-size-40 {
  font-size: var(--font-size-40) !important;
}

.font-bold {
  font-family: var(--font-bold);
}

.font-medium {
  font-family: var(--font-medium);
}

select:hover {
  box-shadow: 0 0 2px 2px var( --softtec-light-blue-shadow) !important;
}

select:focus {
  box-shadow: 0 0 2px 2px var( --softtec-light-blue-shadow) !important;
}

select:disabled {
  background-color: var(--softtec-disabled) !important;
  opacity: 0.6 !important;
}

select:hover:disabled {
  box-shadow: none !important;
  cursor: not-allowed;
}

.oi {
  font-family: Icons !important;
  font-size: 1rem !important;
  line-height: inherit;
}

.fa-solid.nav-item-icon, .fa-regular.nav-item-icon {
  width: 3rem !important;
  font-size: 2rem !important;
  position: relative;
}


.fa-solid {
  font-family: 'FontAwesome' !important;
}

.fa-regular {
  font-family: 'FontAwesome-regular' !important;
}

.table-header .uppercase span, .card-header {
  font-size: 1.4rem;
}

a, .btn-link {
  color: var(--softtec-dark-blue);
}

/*Gap*/
.gap-05 {
  gap: 0.5rem !important;
}

.gap-08 {
  gap: .8rem;
}

.gap-1 {
  gap: 1rem !important;
}

.gap-15 {
  gap: 1.5rem !important;
}

.gap-2 {
  gap: 2rem !important;
}

.gap-3 {
  gap: 3rem !important;
}

.gap-0 {
  gap: 0 !important
}

/*-------------------------------------------------*/


/*Hover Classes*/
.hover:hover {
  cursor: pointer !important;
}

.hover-bold:hover {
  font-weight: bold !important;
  cursor: pointer !important;
}

.scrollable {
  overflow: auto !important;
}

.medium-blue1-bg.hover:hover {
  background-color: var(--softtec-dark-blue) !important;
}

.dark-blue-hover:hover {
  color: var(--softtec-dark-blue);
  cursor: pointer;
}

.hover-mblue2:hover {
  color: #7b94ab !important;
  cursor: pointer;
}

.hover-dblue:hover {
  cursor: pointer;
  color: #00305e !important;
}

/*-------------------------*/
/*align and justify*/

.d-flex-center {
  display: flex !important;
  align-items: center;
}

.align-content-baseline {
  align-content: baseline !important;
}

.justify-space-between {
  justify-content: space-between !important;
}

.justify-space-around {
  justify-content: space-around !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-start {
  justify-content: start !important;
}

justify-content-end {
  justify-content: flex-end !important;
}

.align-items-start {
  align-items: start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: end !important;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
    flex-grow: 1 !important;
}

.flex-1 {
  flex: 1;
}

/*/Border/*/
.border-darkblue {
  border: 1px solid var(--softtec-dark-blue) !important;
}

.border-right-lightblue {
  border-right: 2px solid var(--softtec-light-blue2) !important;
}

.border-left-lightblue {
  border-left: 2px solid var(--softtec-light-blue2) !important;
}

.border-left-mediumblue {
  border-left: 1px solid var(--softtec-medium-blue1) !important;
}

.border-top-bottom {
  border-top: 1px solid var(--softtec-dark-blue) !important;
  border-bottom: 1px solid var(--softtec-dark-blue) !important;
}

.no-border {
  border: 0 !important;
}

/*border radius*/
.border-radius {
  border-radius: 8px !important;
}

.border-radius-10 {
  border-radius: 1rem;
}

.no-border-radius {
  border-radius: 0 !important;
}
/*Box shadow*/
/*TODO werden derzeit nicht verwendet, es gibt überall verschiedene shadows, evtl Vereinheitlichung? */
.box-shadow {
  box-shadow: 0 0 2px 2px var(--softtec-light-blue2) !important;
}

.box-shadow-1 {
  box-shadow: 0 0 1px 1px var(--softtec-light-blue2) !important;
}

/*---------------------*/
/*line-height*/
.line-h-10 {
  line-height: 1rem;
}

.line-h-20 {
  line-height: 2rem;
}

.lh-normal {
  line-height: normal !important;
}
/*-------------------*/
/*text alignment*/
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

/*TEXT STYLES*/

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 700 !important;
}

.underline {
  text-decoration: underline;
}

/*-------------------*/
/*Text size*/
.text-smaller {
  font-size: smaller !important;
}

/*-------------------*/
/*TEXT COLORS*/
.white-text {
  color: var(--softtec-white) !important;
}

.dark-blue {
  color: var(--softtec-dark-blue) !important;
}

.medium-blue1 {
  color: var(--softtec-medium-blue1) !important;
}

.medium-blue2 {
  color: var(--softtec-medium-blue2) !important;
}

.medium-blue3 {
  color: var(--softtec-medium-blue3) !important;
}

.light-blue1 {
  color: var(--softtec-light-blue1) !important;
}

.light-blue2 {
  color: var(--softtec-light-blue2) !important;
}

.grey {
  color: var(--softtec-grey) !important;
}

.green {
  color: var(--softtec-green) !important;
}

.red {
  color: var(--softtec-switch-red) !important;
}

/*--------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  color: var(--softtec-dark-blue) !important;
}
  /*--------------------------------------*/
  /*Selection color + bg-color*/

::selection {
  background: var( --softtec-medium-blue2) !important;
  -webkit-tap-highlight-color: var( --softtec-medium-blue2) !important;
  color: var(--softtec-white) !important;
}

/*-------------------*/
/*/Background color/*/

.dark-blue-bg {
  background-color: var(--softtec-dark-blue) !important;
}

.medium-blue1-bg {
  background-color: var(--softtec-medium-blue1) !important;
}

.medium-blue2-bg {
  background-color: var(--softtec-medium-blue2) !important;
}

.medium-blue3-bg {
  background-color: var(--softtec-medium-blue3) !important;
}

.light-blue1-bg{
  background-color: var(--softtec-light-blue1) !important;
}

  .light-blue2-bg, .light-blue2-bg .form-control, .light-blue2-bg .form-control.ant-input-number {
    background-color: var(--softtec-light-blue2) !important;
  }

.grey-bg {
  background-color: var(--softtec-grey) !important;
}

.white-bg {
  background-color: var(--softtec-white) !important;
}

.green-bg {
  background-color: var(--softtec-green) !important;
}

.red-bg {
  background-color: var(--softtec-switch-red) !important;
}

.transparent-bg {
  background-color: transparent !important;
}

/*---------------------------*/
/*Text ellipsis when too long*/

.text-ellipsis, .form-control, .st-checkbox, .st-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.popup-container .st-label {
  overflow: unset;
  white-space: unset;
  text-overflow: unset;
}

.text-break {
  white-space: break-spaces !important;
  word-break: break-all !important;
  word-wrap: break-word !important;
}

.text-wrap {
  white-space: normal !important;
}

.white-space {
  white-space: pre-line;
}

.word-break {
  word-break: break-word;
}

.spaces-break {
  white-space: break-spaces !important;
}

.break-all {
  word-break: break-all;
}

.no-wrap {
  white-space: nowrap;
}

/*-------------------------------------------------------------------------------------*/

.visible-hidden {
  visibility: hidden;
}

.hidden {
  display: none;
}

.none {
  display: none !important;
}

/*------------------------------------------------------*/


.input-icon-left:disabled, .input-icon-right:disabled {
  color: #cfcfcf;
  opacity: .65;
  background: transparent !important;
}

.input-icon-right {
  right: 0.5rem;
  left: unset;
}

/*-------------------*/


/*Boxes with border Raduis 8 */
.mediumblue1-box {
  background-color: var(--softtec-medium-blue1);
  border-radius: 8px;
  padding: 1rem;
}

.mediumblue2-box {
  background-color: var(--softtec-medium-blue2);
  border-radius: 8px;
  padding: 1rem;
}

.lightblue1-box {
  background-color: var(--softtec-light-blue1);
  border-radius: 8px;
  padding: 1rem;
}

.lightblue2-box {
  background-color: var(--softtec-light-blue2);
  border-radius: 8px;
  padding: 1rem;
}

.grey-box {
  background-color: var(--softtec-grey);
  border-radius: 8px;
  padding: 1rem;
}

/*#region PADDING STYLES*/
.padding-around {
  padding: 2rem !important;
}

.padding-around-5 {
  padding: .5rem !important;
}

.padding-around-10 {
  padding: 1rem !important;
}

.padding-x {
  padding: 0 2rem !important;
}

.padding-x-10 {
  padding: 0 1rem !important;
}

.padding-x-5 {
  padding: 0 .5rem !important;
}

.padding-y {
  padding: 2rem 0 !important;
}

.padding-y-10 {
  padding: 1rem 0 !important;
}

.padding-y-2 {
  padding: 2px 0 !important;
}

.padding-left {
  padding-left: 2rem !important;
}

.padding-left-10 {
  padding-left: 1rem !important;
}

.padding-left-15{
  padding-left: 1.5rem !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.padding-right {
  padding-right: 2rem !important;
}

.padding-right-5 {
  padding-right: .5rem !important;
}

.padding-right-10 {
  padding-right: 1rem !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

.padding-top {
  padding-top: 2rem !important;
}

.padding-top-10 {
  padding-top: 1rem !important;
}

.padding-bottom {
  padding-bottom: 2rem !important;
}

.padding-bottom-10 {
  padding-bottom: 1rem !important;
}

.padding-bottom-40 {
  padding-bottom: 4rem !important;
}

.padding-bottom-5 {
  padding-bottom: .5rem !important;
}

.pr-0 {
  padding-right: 0 !important;
}

/*#endregion*/

/*#region MARGIN STYLES*/
.margin-around {
  margin: 2rem !important;
}

.margin-around-10 {
  margin: 1rem !important;
}

.margin-around-5 {
  margin: .5rem !important;
}

.margin-x {
  margin: 0 2rem !important;
}

.margin-x-10 {
  margin: 0 1rem !important;
}

.margin-x-5 {
  margin: 0 .5rem !important;
}

.margin-x-2 {
  margin: 0 .2rem !important;
}

.margin-y-10 {
  margin: 1rem 0 !important;
}

.margin-left-auto {
  margin-left: auto !important;
}

.margin-right-bottom {
  margin: 0 2rem 2rem 0 !important;
}

.margin-left {
  margin-left: 2rem !important;
}

.margin-left-10 {
  margin-left: 1rem !important;
}

.margin-left-5 {
  margin-left: .5rem !important;
}

.margin-right-auto {
  margin-right: auto !important;
}

.margin-right {
  margin-right: 2rem !important;
}

.margin-right-5 {
  margin-right: .5rem !important;
}

.margin-right-10 {
  margin-right: 1rem !important;
}

.margin-top-auto {
  margin-top: auto !important;
}

.margin-top {
  margin-top: 2rem !important;
}

.margin-top-10 {
  margin-top: 1rem !important;
}

.margin-top-5 {
  margin-top: 0.5rem !important;
}

.margin-right {
  margin-right: 2rem !important;
}

.margin-bottom {
  margin-bottom: 2rem !important;
}

.margin-bottom-10 {
  margin-bottom: 1rem !important;
}

.margin-left-40 {
  margin-left: 4rem;
}

.margin-right-40 {
  margin-right: 4rem;
}

p {
  margin-bottom: 1rem;
}
/*#endregion*/

/*#region  WIDTH / HEIGHT STYLES */
.w-fit-content {
  width: fit-content !important;
  min-width: 30px !important;
}

.w-fit {
  width: fit-content !important;
}

.w-33 {
  width: 33% !important;
}

.max-min-w-fit-content {
  max-width: fit-content;
  min-width: fit-content;
}

.min-width-fit {
  min-width: fit-content !important;
}

.w-20p {
  width: 20px !important;
}

.max-min-w-170p {
  max-width: 170px !important;
  min-width: 170px !important;
}

.w-unset {
  width: unset !important;
}

.h-15p {
  height: 15px !important;
}

.h-30p {
  height: 30px !important;
}

.h-3rem {
  height: 3rem;
}

.h-7r {
  height: 7rem !important;
}

.mh-7r {
  min-height: 7rem !important;
}

.mh-43r {
  min-height: 4.3rem !important;
}

.h-700p {
  height: 700px !important;
}

.min-h-30p {
  min-height: 30px !important;
}

.m-w-50r {
  min-width: 50rem !important;
}

.h-fit {
  height: fit-content !important;
}

.h-unset {
  height: unset;
}

.min-h-fit {
  min-height: fit-content !important;
}

.w-70 {
  width: 70%;
}

.w-100 {
  width: 100%;
}

.w-200 {
  width: 20rem;
}

.hw-25 {
  height: 25px !important;
  width: 25px !important;
}

  /*----------------------------------------------*/
