.jumbotron {
    /* add bootstrap jumbotron background image */
    background: url("/img/banner.png") no-repeat center center;
}
.round{
    background-color:#2C3E50;
    border-radius: 50%;
    width: 75%;
    height: 1em;
    font-size: 2vw;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
}

div.btn-nav a{
    width: 100%;
}

body{
    background-color: #E5E5E5;
}

#content{
    background-color: #F5F5F5;
    min-height: 600px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 20px;
}

.grpd{
    text-align: justify;
    text-justify: inter-word;
    font-size: 1.2em;
}
/*--------------- Rotate text at 180° (Used in jumbotron) ---------------*/
.upside-down{
    -webkit-transform:rotate(-180deg);
    -moz-transform:rotate(-180deg);
    -o-transform:rotate(-180deg);
    transform:rotate(-180deg);
    filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    text-align: right;
}
/*------------------------------*/
.card{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.jumbotron{
    border-radius: 6px ;
}

/*--------------- Display box shadow for advised inputs (For application form only) ---------------*/
/* Disabled
#applicationForm .advised:placeholder-shown{
    box-shadow: 0 0 4px rgb(211, 121, 4);
}
#applicationForm .advised:not(:placeholder-shown){
    box-shadow: 0 0 4px rgb(24, 188, 65);
}

#applicationForm select.advised[value="_blank"]{
    box-shadow: 0 0 4px rgb(211, 121, 4);
}
#applicationForm select.advised + .select2-container {
    box-shadow: 0 0 4px rgb(211, 121, 4);
}
*/
/*------------------------------*/
@media (min-width: 768px) {
    .row.equal {
      display: flex;
      flex-wrap: wrap;
    }
  }
/*------------------------------*/

/* placeholders coloration lighter than bootsrap */
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #BBCACB!important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #BBCACB!important;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #BBCACB!important;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #BBCACB!important;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #BBCACB!important;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #BBCACB!important;
}
/*------------------------------*/

/* Animate caret for collapsible panels */
[data-toggle="collapse"] h3:after {
    display: inline-block;
        font-family: 'Font Awesome 5 Free';
        font-size: 40px;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      content: "\f0da";
      transform: rotate(90deg) ;
      transition: all linear 0.25s;
      font-weight: 900;
      margin-left:10px;
        vertical-align: middle;
      }   
    [data-toggle="collapse"].collapsed h3:after {
      transform: rotate(0deg) ;
    }
/*------------------------------*/
.big-icon {
    font-size: 25em;
    margin: 0 auto;
    display:table;
    color: #E5E5E5;
}
#footer {
    position: fixed;
    height: 60px;
    bottom: 0;
    width: 100%;
}
#content{
    margin-bottom: 60px; 
}
/*------------------------------*/
.striped {
    color: white;
    height: 22px;
    background: repeating-linear-gradient(
      -45deg,
      #706b5e,
      #706b5e 10px,
      #988246 10px,
      #988246 20px
    );
    text-align: center;
  }

.pressed{
    -webkit-box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 7px 2px rgba(0,0,0,0.75);
}

.img-shadow{
    box-shadow: 2px 3px 4px 3px #173a51;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.dotted{
    border-style: dashed;
    border-color: lightgray;
    display: flex;
    min-height: 100px;
    height: 100%;
    width: 100%;
}
.dotted:hover{
    border-color: darkgrey;
}
.dotted a{
    margin: auto;
}

.commentLess1500{
    box-shadow: 0 0 4px rgb(211, 121, 4);
}
.commentMore1500{
    box-shadow: 0 0 4px rgb(24, 188, 65);
}

tr.late{
    background-color: #e5a6a0!important;
}

.tooltip-inner {
    white-space:pre-wrap;
}