

@font-face {
    font-family: "SourceSansProRegular";
    src: url("../fonts/SourceSansPro-Regular.otf");
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: "SourceSansProLight";
    src: url("../fonts/SourceSansPro-Light.otf");
}

@font-face {
    font-family: "SourceSansProBold";
    src: url("../fonts/SourceSansPro-Bold.otf");
}

@font-face {
  font-family: "SourceSansSemiBold";
  src: url("../fonts/SourceSansPro-Semibold.otf");
}

@font-face {
    font-family: "SourceSansProBoldIt";
    src: url("../fonts/SourceSansPro-BoldIt.otf");
}

@font-face {
  font-family: "DINRegular";
  src: url("../fonts/DIN-Regular.otf");
}


li {
    font-family: SourceSansProRegular;
    font-size: 14pt;
}

body {
    margin-left: 2px;
    margin-right: 5px;
}

.sidebar {
    grid-area: sidebar;
}

.content {
    grid-area: content;
    margin-left: 1px;
}

.header {
    grid-area: header;
}

.topBar {
  width:101%;
  grid-area: topBar;
  background-color: #151515;
  padding-left: 7px;
}




.wrapper {
    display: grid;
    grid-gap: 0px;
    grid-template-rows: 40px 50px 1fr;
    grid-template-columns: 140pt 1fr;
    grid-auto-flow: column;

    min-height: 100vh;

    grid-template-areas:
      "topBar topBar topBar topBar"
      "sidebar header header header"
      "sidebar content content content";
    background-color: #fff;
    color: #444;
}

.wrapperLogin {
  display: grid;
  grid-gap: 0px;
  grid-template-rows: 40px  1fr;
  grid-template-columns: 140pt 1fr;
  grid-auto-flow: column;

  min-height: 100vh;

  grid-template-areas:
    "topBar topBar topBar topBar"
    "sidebar content content content";
  background-color: #fff;
  color: #444;
}

.box {
  border: 0;
  background-color: #3A3A3A;
  color: #fff;
  padding: 0px;
  font-size: 150%;
}


.header,
.footer {
    background-color: #EDEDED;
}

.header {
    border: none;
    border-bottom: 2px solid #D9DEE4;

}

.footer {
    border: none;
    border-top: 1px solid #D9DEE4;

}

.content {
    background-color: white;
}



h1.eightyText {
    font-family: SourceSansProBold;
    padding-top: 15px;
    padding-left: 15px;
    color: white;
}

label, .smallLabel {
    font-family: SourceSansProBoldIt;
    color: #555555;
    font-size: 9pt;
    padding: 0;
    margin:0;
    margin-top: 5px;
    margin-left: 2px;
}

.smallLabel {
    padding-top: 0px;
}

input.form-control, .valText {
    font-family: SourceSansProRegular;
    font-size: 14px;
    color: black !important;
    margin: 0px;
    padding: 3px;
    font-weight: normal;
    border-color: #cecece;

}

textarea.form-control {
    font-family: SourceSansProRegular;
    font-size: 14px;
    color: black !important;
    padding: 1px;
}

input[type=text]:focus, textarea:focus {
    box-shadow: 0 0 5px rgb(31, 77, 91);
    border: 1px solid rgb(237, 244, 255);
}

.nav-tabs {
    background-color: #EEEEEE;

}

.tab-content {
    background-color: #FFF; !important;
    color: #000000;
    padding: 5px
}

li > a.nav-link.active {
  font-family: "SourceSansSemiBold";
  color: #555555;
  font-size: 12pt;
  background-color: #FFF !important;
  color: #555555 !important;
}

li > a.nav-link {
  font-family: "SourceSansSemiBold";
  color: #555555;
  font-size: 12pt;
}

li.nav-item {
  font-family: "SourceSansSemiBold";
  color: #555555;
  font-size: 12pt;
}


.tabulator {
    font-family: SourceSansProRegular;
    color: #74879B;
}


.dropdown-item {
    font-family: SourceSansProRegular;
    color: #014c8c;
    font-size: 18px;
}

.vspacer {
    margin-top: 0pt;
}






.transition, .autocomplete, .showAll-transition, .autocomplete ul, .autocomplete ul li a{
  transition:all 0.3s ease-out;
  -moz-transition:all 0.3s ease-out;
  -webkit-transition:all 0.3s ease-out;
  -o-transition:all 0.3s ease-out;
}

.autocomplete-input {
  position: relative;
  font-family: SourceSansProRegular;
  font-size: 12pt;
  height: 25px;
}

.autocomplete-list {
  height: 120pt;
  border: 1px solid #999;
  background: #fff;
  cursor: default;
  overflow: auto;
}


.autocomplete ul {
  margin-left: -25pt;
  border: none;
}

.autocomplete ul:before{
  content: "";
  display: block;
  position: absolute;
  height: 0;
  width: 0;
  border: 0;
  border-bottom: 0;
  left: 46%;
  top: -20px
}

.autocomplete ul li {
  font-family: SourceSansProRegular;
  font-size: 12pt;
  padding: 5px 5px;
  white-space: nowrap;
  overflow: hidden;
}


.autocomplete ul li.highlighted {
  background: #f8f8f8
}

.data-list-item {
  border:none;
}



.hint {
  margin-top: 20pt;
  font-family:SourceSansProRegular;
  font-size:14pt;
  padding-top: 0;
  padding-left:10pt;
  padding-bottom: 10pt;
}

body{
  min-width:1400px; /* suppose you want minimun width of 1000px */
  width: auto !important;  /* Firefox will set width as auto */
  width:1400px;             /* As IE ignores !important it will set width as 1000px; */
}


/************************Buttons*****************/
:root {
  --text-color: #555555;
}

button.btn.btn-outline-primary.btn-sm {
  font-family: SourceSansProRegular;
  font-weight: normal;
  font-size: 15px;
  color: #fff;;
  border-color: #95A5A6;
  padding: 4px;
  border-radius: 1pt;
  min-width: 60px;
  background-color: #809091;
}

button.btn.btn-outline-primary.btn-sm:hover {
  color: #fff;
  background-color: #E74C3C;
  border-color: #E74C3C;
}


.btn-secondary {
  font-family: SourceSansProRegular;
  color: #555555;
  font-size: 15px;
}



.card-header {
  font-family: SourceSansSemiBold;
  color: #555555;
  font-size: 12pt;
  padding-left: 15pt;
  padding-top: 3pt;
  height: 30pt;
  background-color: #EEEEEE;
}

.card-block {
  margin-top: -10pt;
  border-bottom: 1px solid lightgray;
}

.card-block:last-child {
  border-bottom: 0px;
}


/* *********Dialoge************* */

.dialog-headertext {
  font-family: SourceSansProBold;
  font-size: 14pt;
  padding-right: 20pt;
  margin-top: 13px;
  color: #555555;
}

.dialog-rm {
  margin-right: 10px;
  vertical-align: middle
}


.dialog-header-red {
  font-family: "SourceSansProBold";
  font-size: 18px;
  line-height: 30px;
  color: white;
  background-color: rgba(212, 77, 71, 0.91);
}

.dialog-padding {
  padding: 10px;
}



.dialog-body-light {
  background-color: #f9f9f9;
}




