/*html, body {
  height: 100vh;
  font-family: 'Montserrat', sans-serif;
}*/

html {
  position: relative;
  min-height: 100%;
  font-family: 'Montserrat', sans-serif;
}
body {
  margin-bottom: 60px; /* Margin bottom by footer height */
  font-family: 'Montserrat', sans-serif;
  background-color: #f5f5f5 !important;
}

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	/*.navbar .nav-item:hover .nav-link{}*/
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.main.vertical-center {
  margin-bottom: 0; /* Remove the default bottom margin of .main */
}

.vertical-center {
  min-height: 100%;  /* Fallback for vh unit */
  min-height: 100vh; /* You might also want to use
                        'height' property instead.
                        
                        Note that for percentage values of
                        'height' or 'min-height' properties,
                        the 'height' of the parent element
                        should be specified explicitly.
  
                        In this case the parent of '.vertical-center'
                        is the <body> element */

  /* Make it a flex container */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex; 
  
  /* Align the bootstrap's container vertically */
    -webkit-box-align : center;
  -webkit-align-items : center;
       -moz-box-align : center;
       -ms-flex-align : center;
          align-items : center;
  
  /* In legacy web browsers such as Firefox 9
     we need to specify the width of the flex container */
  width: 100%;
  
  /* Also 'margin: 0 auto' doesn't have any effect on flex items in such web browsers
     hence the bootstrap's container won't be aligned to the center anymore.
  
     Therefore, we should use the following declarations to get it centered again */
         -webkit-box-pack : center;
            -moz-box-pack : center;
            -ms-flex-pack : center;
  -webkit-justify-content : center;
          justify-content : center;
}

.error {
    border: 2px rgba(255, 0, 0, 0.5) solid; 
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
}

.extra-info-tab {
    padding-top: 10%;
	padding-bottom: 5%;
    margin-top: -8%;
}
.extra-info-tab #tabs{
    background: #007b5e;
    color: #eee;
}
.extra-info-tab #tabs h6.section-title{
    color: #eee;
}
.extra-info-tab #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #007bff;
    background-color: transparent;
    border-color: transparent transparent #f3f3f3;
    border-bottom: 3px solid !important;
    font-size: 16px;
    /*font-weight: bold;*/
}
.extra-info-tab .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    color: #007bff;
    font-size: 16px;
    /*font-weight: 600;*/
}
.extra-info-tab .nav-link:hover {
    border: none;
}
.extra-info-tab thead{
    background: #f3f3f3;
    color: #333;
}
.extra-info-tab a{
    text-decoration: none;
    color: #333;
    /*font-weight: 600;*/
}
