.table .add-in-table {
    table-layout: fixed;
}

.table .detail-sub-table td {
    text-align: left;
}

#main_nav_bar {
    margin-top: 15px;
    min-height: 80px;
    margin-bottom: -15px;
}

#main_container {
    padding-top: 100px;
}

div.wrap .navbar {
    min-height: 80px;
}
.table td, th, tr{
    white-space:nowrap;
    text-align:center;
    overflow: hidden;
    word-break:break-all;
    word-wrap:break-word;
    max-height: 100px;
    height: 3vh;
    font-size: 12px;
}
.table th {
    font-size: 120%;
}
.license-view {
        background: #F2F2F2;
        /*font-weight: bold;*/
        border-color:  #ddd;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 25px;
    }
    .btn{
        background-color: #00A6E2;
        color: #ffffff;
        border-color: #009eda;
        width: 150px;
    }
    .btn-ok{
        background-color: #00A6E2;
        color: #ffffff;
        border: 1px solid #009eda;
        width: 50px;
    }
    .row {
        background: #F2F2F2;
        /*font-weight: bold;*/
        border-color:  #ddd;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 25px;
    }
   
    .filters input{

    font-size: 12px;
    height: 25px;
    text-align:left;
    max-height: 25px;
    min-width: 40px;
    border-color:  #ddd;
    border: 1px solid #ddd;
    }
  .footer {
    height: 60px;
    /*background-color: #f5f5f5;*/
    border-top: 1px solid #ddd;
    padding-top: 20px;
    background-color: #222222;
    color: #dddddd;
}
.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: rgb(241, 241, 241); 
 }  
/*Tooltip*/
.test + .tooltip > .tooltip-inner {
      background-color: #00A6E2;
      color: #FFFFFF; 
      border: 1px #009eda;
      padding: 1px;
      font-size: 12px;
  }
  /* Tooltip on top */
  .test + .tooltip.top > .tooltip-arrow {
      border-top: 5px solid green;
  }
  /* Tooltip on bottom */
  .test + .tooltip.bottom > .tooltip-arrow {
      border-bottom: 5px solid red;
  }
  /* Tooltip on left */
  .test + .tooltip.left > .tooltip-arrow {
      border-left: 5px solid red;
  }
  /* Tooltip on right */
  .test + .tooltip.right > .tooltip-arrow {
      border-right: 5px solid black;
  }   
 label.required:after {
  content: " *"; 
  color: #a94442;
  }
  .icon-success {
    color: #5CB85C;
}
.glyphicon-check{
  color: #5CB85C;
}
.glyphicon-ban-circle{
  color: #d9534f;
}
.glyphicon-ok{
  color: #5CB85C;
}
.glyphicon-saved{
  color: #5CB85C;
}
/* Center the loader */

#loader {
  position: absolute;
  left: 50%;
  top: 30%;
  z-index: 1;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #f89d68;
  border-bottom: 16px solid #f89d68;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

#loader {
  display: none;
  text-align: center;
}
.container{

}
/******SPIN BEGIN*******/
.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/******SPIN ENDE*******/
/********MODAL DIALOG BEGIN**********/
.modal-dialog .modal-content {
  height: 0px;
  width: 0px;
  position: fixed;
  top: 20%;
   right: 50%;
  bottom: 50%;
  left: 50%;
}
/********MODAL DIALOG ENDE**********/
/********LICENSE FILTER BEGIN*******/
#filter_group{
  position: fixed;
  top: 0px; 
  left: calc(30% - 100px);
  width: 50%;
}

  .dropdown-submenu {
      position: relative;
  }

  .dropdown-submenu>.dropdown-menu {
      top: 0;
      left: 100%;
      margin-top: -6px;
      margin-left: -1px;
      -webkit-border-radius: 0 6px 6px 6px;
      -moz-border-radius: 0 6px 6px;
      border-radius: 0 6px 6px 6px;
  }

  .dropdown-submenu:hover>.dropdown-menu {
      display: block;
  }

  .dropdown-submenu>a:after {
      display: block;
      content: " ";
      float: right;
      width: 0;
      height: 0;
      border-color: transparent;
      border-style: solid;
      border-width: 5px 0 5px 5px;
      border-left-color: #ccc;
      margin-top: 5px;
      margin-right: -10px;
  }

  .dropdown-submenu:hover>a:after {
      border-left-color: #fff;
  }

  .dropdown-submenu.pull-left {
      float: none;
  }

  .dropdown-submenu.pull-left>.dropdown-menu {
      left: -100%;
      margin-left: 10px;
      -webkit-border-radius: 6px 0 6px 6px;
      -moz-border-radius: 6px 0 6px 6px;
      border-radius: 6px 0 6px 6px;
  }
/********LICENSE FILTER ENDE*******/

.navbar-header{
    position: absolute;
    height: 50px;
}

.table.table-bordered.table-condensed.table-hover.custom-hover-table tbody tr:hover {
    background-color: #a2e5ff;
}

.contact-no-usv-block {
    background: #f8f8f8;
    border-color: #e1e1e1;
    position: relative;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    padding: 20px 30px;
    clear: both;
    margin: 50px 0;
    width: 100%;
    float: left;
}

.academy-no-usv-block {
    background: #f8f8f8;
    border-color: #e1e1e1;
    position: relative;
    border-width: 1px;
    border-style: solid;
    overflow: hidden;
    padding: 20px 30px;
    clear: both;
    margin-top: 20px;
    width: 100%;
    float: left;
}

.contact-no-usv-text {
    margin-right: 300px;
    position: relative;
    z-index: 3;
    font-size: 150%;
    width: 65%;
}

.academy-no-usv-text {
    margin-right: 300px;
    position: relative;
    z-index: 3;
    font-size: 150%;
    width: 100%;
}

.contact-no-usv-button {
    display: block;
    float: right;
    border-color: #e1e1e1;
    background-color: #00A6E2;
    color: #ffffff;
    min-width: 150px;
}

.contact-no-usv-link {
    color: #ffffff;
    border-color: #009eda;
    background-color: #00A6E2;
    margin-top: -21px;

    font-size: 13px;
    right: 30px;
    top: 50%;
    position: absolute;
    z-index: 2;
    min-width: 139px;
    float: right;
    display: block;
    border-radius: 3px;
    padding: 10px 60px 10px 60px;
    text-decoration: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    line-height: 1.2em;
    font-weight: normal;
    text-align: center;
    max-width: 100%;
}

.contact-no-usv-link span {
    color: white;
}

.contact-info-block {
    margin-bottom: 20px;
}

.contact-info-details-block {
    display: inline-block;
    margin-top: 10px;
    margin-left: 40px;
}

.export-buttons {
    width: 200px;
    margin-top: 3px;
}

.export-cancel-button {
    margin-left: 10px;
    margin-top: 0;
}

.grid-small-select {
    height: 25px;
    display: block;
    width: 55px;
    padding: 3px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.grid-big-select.grid-small-select {
    width: 85px;
}

.grid-huge-select.grid-small-select {
    width: 125px;
    text-align:center;
}

@media(max-width:800px) {
    .export-cancel-button {
        margin-left: 0;
        margin-top: 3px;
    }
}

.em-sync-table-class {
    width: 100%;
    table-layout: fixed;
}

.box {
    align-self: center;
    border: 4px solid red;
    background-color: whitesmoke; color: black;
    margin-left: 2%; margin-top:50px;
    padding: 20px 10px;
    width: 96%;
    font-size: 14pt; text-align: center;
    hyphens: auto;
}
