/* ========== TABLE LAYOUT ========== */

       table {
           width: 100%;}

       table, th, td {
          /*border:1px solid black;*/
          border-bottom: 1px solid rgba(221,221,221,0.5); /* Should this be 'none' or have a border??? */
          height: 30px;
          text-align: left;
          vertical-align: middle;
          padding-top:        5px;
          padding-bottom:     5px;
          padding-left:      10px;
          padding-right:     10px;}

       /*.fixed_header{
           width: 100%;
           table-layout: fixed;
           border-collapse: collapse;}

       .fixed_header tbody{
          display:block;
          width: 100%;
          overflow: auto;
          height: auto;}

       .fixed_header thead tr {
          display: block;}

       .fixed_header th, .fixed_header td {
         width: 200px;}*/

       th {
          background-color: #f2f2f2;
          border-bottom: 0px solid white; 
          color: black;
          padding-top: 10px;
          padding-bottom: 10px;
          font-size: 1.05em;
          text-decoration: underline solid #a51f25;}

       th a{
          background-color: #f2f2f2;
          border-bottom: 0px solid white; 
          color: black;
          padding-top: 10px;
          padding-bottom: 10px;
          font-size: 1.05em;
          text-decoration: underline solid #a51f25;}

       th a:hover{
          background-color: #f2f2f2;
          border-bottom: 0px solid white; 
          color: black;
          opacity: .4; /* the hvr-grow and hvr-fade css used for the highlighting of the rows are messing with the z-index of table rows. I turned the z-index-impacting-parts off in hover-min.css. But then the hvr-glow would not be visible when the first row would be highlighted in blue. To fix this I have added the css 'th{position: relative; -index: -1;}'. But then the the table headers would start to behave strangly (flikker on and off continiously) when hovered over. So on I added 'th:hover z-index: 0;  */
          padding-top: 10px;
          padding-bottom: 10px;
          font-size: 1.05em;
          text-decoration: underline solid #a51f25;}

       th:hover{
          z-index: 0;}

      table tr td{
          font-family: San Francisco Text Light, sans-serif;}

      th{
          font-family: San Francisco Text Semibold, sans-serif;}

        th{
            position: relative;
            z-index: -1;}

       tr:nth-child(even) { /* zebra layout table rows (properties are odd/even) */
          background-color: #f2f2f2;}

       /* make the first two column containing the checkbox and picture smaller */
       .column-small{
          width:            90px;
          padding-left:     0px;
          padding-right:    0px;
          padding-top:      0px;
          padding-bottom:   0px;}

        /* initial properties of headshot-pictures in tables */
        .column-small img{
            width:30px;
            height:30px;
            border-radius: 50%;
            margin-left: 13px;}

       .hvr-glow-table {
        display: table-row;} /* changed from inline-block for the rows to be displayed correctly */  

       .hvr-fade-table {
        display: table-row;} /* changed from inline-block for the rows to be displayed correctly */

       /* this makes an entire cell -and therefore the entire row- clickable */
        td a {
           display:block;
           width:100%;}

       /* change the color of a link inside a table so that it is not white */
       .a-table { 
         color: #000;
         text-decoration: none;
         -webkit-transition: color .3s ease;
              -o-transition: color .3s ease;
                 transition: color .3s ease; }

       /* change the color of all links in the row simultaneously */
       .a-table-row:active a,
       .a-table-row:focus a,
       .a-table-row:hover a{
           color:#FFFFFF;
           font-family: San Francisco Text Semibold, sans-serif;}

      /* animate the profile picture on hover over table row */
       .a-table-row:active img,
       .a-table-row:focus img,
       .a-table-row:hover img{
           d -webkit-transform: scale(3);
           transform: scale(3);
           position: relative;
           z-index: 9999;
           border: 1px solid rgba(255, 255, 255, .8);
           box-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);}

      /* animate the profile picture on hover over table row */
      /* .a-table-row img:active,
       .a-table-row img:focus,
       .a-table-row img:hover{
           d -webkit-transform: scale(7);
           transform: scale(7);
           position: relative;
           z-index: 9999;
           border: 1px solid rgba(255, 255, 255, .8);
           box-shadow: 0 1px 1px rgba(0, 0, 0, 0.8);} */

    /* user status 'box' (red, orange, green) */
        .user-status-red{    
            height: 100%;
            width:25px;
            background-color:#a51f25;}

        .user-status-orange{    
            height: 100%;
            width:25px; 
            background-color:#FBBA72;}

        .user-status-green{    
            height: 100%;
            width:25px; 
            background-color:#1fa59f;}

        .user-status-red-icon{    
            color: white;
            margin: 15px 5px 0px 7px;}

        .user-status-orange-icon{    
            color: white;
            margin: 15px 5px 0px 7px;}

        .user-status-green-icon{    
            color: white;
            margin: 15px 5px 0px 5px;}

    /* same as above but for the rapport-share page */
        .user-status-red-icon2{    
            color: white;
            margin: 10px 5px 0px 7px;}

        .user-status-orange-icon2{    
            color: white;
            margin: 10px 5px 0px 7px;}

        .user-status-green-icon2{    
            color: white;
            margin: 10px 5px 0px 5px;}

    /* account-type-indicator */
        .account-UP{
            background-color: #1fa59f;
            border-radius: 50px;
            color:white;
            padding: 3px 3px 3px 3px;
            max-width: 26px;}

        .account-1D{
            background-color: #FBBA72;
            border-radius: 50px;
            color:white;
            padding: 3px 4px 3px 4px;
            max-width: 26px;}

        .account-4D{
            background-color: #2098D1;
            border-radius: 50px;
            color:white;
            padding: 3px 3px 3px 3px;
            max-width: 26px;}

    .tbl-checkbox{
        margin-left:20px;
        font-size:25px;
        background-color: #ffffff;}

/* ========== RAPPORT SHARE  ========== */
.tbl-checkbox-reportshare{
        border-radius: 50%;
        margin-left:20px;
        font-size:25px;
        background-color: #ffffff;}

/* ========== RAPPORT SHARE CONFIRM ========== */
    .check-icon{
        color: #1fa59f;
        margin: 5px 20px 0px 5px; 
        font-size: 1.7em;}

    .confirm-tbl{
        border-bottom: none; 
        font-family: San Francisco Text Regular, sans-serif; font-size: 1.3em;}

    .no-border{
        border-bottom: none;}

/* ========== CONTEXT MENU FOUNDATION ========== */

.context-menu-foundation{
      width:99.75%;
      height:62px;
      min-height:62px;
      max-height:62px;
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      float:right;
      background-color: #f2f2f2; 
      margin: 38px 0.125% 0px 0.125%;
      border: 0px solid black;
      box-shadow: 0 0 8px rgba(0, 0, 0, .6);
      font-family: San Francisco Text Semibold, sans-serif;
}


/* ========== CONTEXT MENU BUTTONS ========== */

.context-menu-main-button{
      background-color: none;
      /*border-bottom: 1px solid gray; */
      padding: 15px 10px 13px 10px;
      text-align: center;
      display: block; /* use inline-block to make buttons order horizontally */
      font-size: 1.06em;
      color: #404040;
      cursor: default;}

.context-menu-main-button:active,
.context-menu-main-button:focus,
.context-menu-main-button:hover{
      color: white;
      box-shadow: inset 0 1px 2px rgba(0,0,0,.7), 0 -1px 1px #FFF, 0 1px 0 #FFF;}

.context-menu-single-button{
      cursor: pointer;}

.context-menu-sub-button{
      background-color: transparent;
      /*border-bottom: 1px solid gray; */
      color: white;
      padding: 15px 10px 15px 10px;
      text-align: center;
      text-decoration: none;
      display: block; /* use inline-block to make buttons order horizontally */
      font-size: 1.06em;
      color: #404040;
      cursor: default;
      z-index: 1001;
      -webkit-appearance : none; /* these three lines remove the default 'user agent style sheet' styling for the buttons */
      -moz-appearance    : none;
      appearance         : none;  
    
      width: 100% !important;  /* these five lines style the <button type='submit'> to look the same way as the previous <span> button  */
      margin-top: none !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
}

.context-menu-sub-button:active,
.context-menu-sub-button:focus,
.context-menu-sub-button:hover{
      color: white;
      cursor: pointer;}

.context-menu-sub-button-span{
    display:none;
    padding-left: 0px;
    padding-right: 0px ;
    margin-top: -1px;
    border-top:none;
    background-color: #f2f2f2;
    box-shadow: 0 6px 8px rgba(0, 0, 0, .2);}

.context-menu-main-button:hover + .context-menu-sub-button-span {
	display: block;}

.context-menu-sub-button-span:hover{
	display: block;
    cursor: pointer;}

.context-menu-sub-button-top-button{
   border-bottom: 1px dotted black;
}

.context-menu-sub-button-bottom-button{
   border-bottom: none;
}
    
.icon-sub{
   color:#404040;
   margin-right:3px;}

.context-menu-sub-button:active .icon-sub,
.context-menu-sub-button:focus .icon-sub,
.context-menu-sub-button:hover .icon-sub{
    color:white;}

.context-menu-main-button-hover{
    display: none;}

.context-menu-sub-button-span:active  .context-menu-main-button-hover,
.context-menu-sub-button-span:focus  .context-menu-main-button-hover,
.context-menu-sub-button-span:hover  .context-menu-main-button-hover{
    display: block;
    background-color:white;
    color: #404040;
    font-size: 1.06em;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.7), 0 -1px 1px #FFF, 0 1px 0 #FFF;
    padding: 15px 10px 13px 10px;
    text-align: center;
    display: block; /* use inline-block to make buttons order horizontally */
    cursor: default;
    }


.navigation-button-back{
   float:left;
   display:inline-block;
   margin:15px 0px 7px 0px;
   vertical-align: top;
   border-bottom-left-radius: 10px;}

.navigation-button-back:active,
.navigation-button-back:focus,
.navigation-button-back:hover{
    cursor: pointer;}
    

/* ========== CONTEXT MENU INPUTS ========== */

input {
  height: 34px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid transparent;
  border-top: none;
  border-bottom: 1px solid #DDD;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  padding: 4px 10px 2px 10px;
  color: rgba(55,63,81,0.4);}

input:active,
input:focus,
input:hover{
  border: 2px solid #2098D1;
  color: #404040;}

.context-menu-input{
   width:225px; 
   margin: 20px 5px 5px 5px;}

select {
  height: 34px;
  width: 100%;
  border-radius: 3px;
  border: 1px solid transparent;
  border-top: none;
  border-bottom: 1px solid #DDD;
  /*box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;*/
  padding: 4px 10px 2px 10px;
  color: rgba(55,63,81,0.4);}

select:hover{
  border: 2px solid #2098D1;}

select:active,
select:focus{
  border: 2px solid #2098D1;
  color: #404040;}

select:active option,
select:focus option,
select:hover option{
  color: #404040;}

select::-ms-expand{
display: block;
 color:#404040;}

.context-menu-select{
   width:225px; 
   margin: 20px 5px 5px 5px;}

.input-button {
  height: 34px;
  width: 66px;
  margin: 21px 5px 5px 5px;
  padding: 3px 3px 3px 3px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: none;
  background-color: #e5e5e5;
  color: #404040;}

.input-button:active,
.input-button:focus,
.input-button:hover{
  box-shadow: 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  background-color: #2098D1;
  color:  white;}

::-webkit-input-placeholder { /* Placeholder styling (Chrome/Opera/Safari) */
  color: rgba(55,63,81,0.4);}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(55,63,81,0.4);}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(55,63,81,0.4);}
:-moz-placeholder { /* Firefox 18- */
  color: rgba(55,63,81,0.4);}

.context-menu-main-button-span{
    display:inline-block;
    margin:15px 0px 7px 0px;
    vertical-align: top;}

/* ========== REPORT ========== */
.contextmenu-icon-background{
    color: rgba(1,1,1,0.6)}

.table-header-text{
    font-size:0.7em;
    color:#a51f25;}

.tbl-header-icon{
    margin-right: 4px;
    color: rgba(1,1,1,0.6);}

.tbl-row-rapport{
    height: 46px;}

.filter-delete-button {
  border-radius: 50%;
  color: #a51f25;
  background-color: #fff;}

.filter-delete-button:active,
.filter-delete-button:focus,
.filter-delete-button:hover{
  box-shadow: 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  background-color: #fff;
  color:  #2098D1;
  cursor: pointer;}

/* ========== PEOPLES HUB SEARCH BAR ========== */

.search-peoplehub{
    width:99.75%;
    border-bottom-left-radius:  20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    color: rgba(55,63,81,0.4);}

 .search-peoplehub input{
    box-shadow: none;}

 .pointer-hand{
   cursor: pointer;}


/* ========== CUSTOM SCROLLBAR ========== */

::-webkit-scrollbar {
    width: 11px;}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #ddd;}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #949494;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);}

::-webkit-scrollbar-thumb:horizontal:hover,
::-webkit-scrollbar-thumb:vertical:hover { 
  background: #404040;} 

.sub-menu-1:hover{
 background-color: #f2f2f2;
 cursor: pointer;}  


/* ========== FONT FAMILIES ========== */

.San-Francisco-Text-Regular{font-family: San Francisco Text Regular, sans-serif;}
.San-Francisco-Text-Medium{font-family: San Francisco Text Medium, sans-serif;}


/* ========== DIALOGUE ========== */


.archive-button-even{
    color: #f2f2f2; 
    font-size: 1.3em;}

.archive-button-even:active,
.archive-button-even:focus,
.archive-button-even:hover{
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
        d -webkit-transform: scale(1.4);
        transform: scale(1.4);
        color: #a51f25;}

.archive-button-odd:active,
.archive-button-odd:focus,
.archive-button-odd:hover{
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
        d -webkit-transform: scale(1.4);
        transform: scale(1.4);
        color: #a51f25;}

.archive-button-odd{
    color: white; 
    font-size: 1.3em;}

.icon-bgcolor-white{
  background-color: white;
  background-clip: padding-box;
  border-radius: 50%;
  box-shadow: 0 0 0px rgba(0, 0, 0, 1);
}

.chat-textarea{
  resize:none;
  width: 99%;
  height: 200px;
  border-radius: 10px;
  overflow: auto;
  padding: 20px 30px 20px 30px;
  margin-left: 0.5%;
  box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.7), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  font-size: 20px;
  font-family: San Francisco Text Regular, sans-serif;
  caret-color: black;}

.chat-attachments{
  width: 99%;
  margin-left: 0.5%;
  height: 50px;
  border: none;
  padding: 5px 30px 20px 10px;
  margin-bottom: 25px}

.chat-messages{
   width: 99%;
   margin-left: 0.5%;}

.chat-balloon-you{
  float:left; 
  position: relative;
  width: 65%; 
  min-height: 133px;
  padding: 20px 14px 14px 20px;
  border: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: auto;
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  font-size: 17px;
  font-family: San Francisco Text Regular, sans-serif;
  margin: 20px 0px 20px 25%;
  background-color: rgba(175, 222, 220,1);
  opacity: 1;
  color:#000;}

.chat-balloon-others{
  float:right; 
  position: relative;
  width: 65%; 
  min-height: 133px;
  padding: 20px 14px 14px 20px;
  border: none;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: auto;
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  font-size: 17px;
  font-family: San Francisco Text Regular, sans-serif;
  margin: 20px 25% 20px 0px;
  background-color: rgba(252,252,252,0.7);
  opacity: 1;
  color:#000;}

.chat-avatar-you{
  float:left;
  border: none; 
  width: 9%; 
  min-height: 133px;
  margin-top: 17.5px;
  text-align:center;
  margin-left: 10px;}

.chat-avatar-others{
  float:right;
  border: none; 
  width: 9%; 
  min-height: 133px;
  margin-top: 17.5px;
  text-align:center;
  margin-right: 10px;}

.chat-balloon-you a{
  color:rgba(51, 101, 138,1);}

.chat-balloon-you a:active,
.chat-balloon-you a:focus,
.chat-balloon-you a:hover{
  font-size: 1.5em;
  color: #a51f25;
  font-family: San Francisco Text Bold, sans-serif;}

.chat-status-red-icon{
    font-size:30px;
    color:#a51f25;
    margin-left: 20px}

.chat-status-green-icon{
    font-size:30px;
    color:#1fa59f;
    margin-left: 20px}

.chat-status-blue-icon{
    font-size:30px;
    color:#2098D1;
    margin-left: 20px}

.chat-text{
    margin-top:0px;
    margin-bottom: 17px;}

.chat-text-status{
    position: absolute; 
    bottom: 10px; 
    right: 50px; 
    font-size: 0.8em;
    color: rgba(147,162,155,1);
    font-family: San Francisco Text Light, sans-serif;}

.chat-text-status-icon-unread{
    position: absolute; 
    bottom: 8px; 
    right: 20px; 
    font-size: 1.3em;
    color: rgba(147,162,155,0.6);}

.chat-text-status-icon-read{
    position: absolute; 
    bottom: 8px; 
    right: 20px; 
    font-size: 1.3em;
    color: rgba(6,141,15,0.6);}

.chat-avatar-name{
    margin-top: 0px;
    font-family: San Francisco Text Bold, sans-serif;}

.chat-avatar-img{
    width:70px;
    height:70px;
    border-radius: 50%;}

.chat-avatar-date{
    margin-top: 0px;
    font-family: San Francisco Text Light, sans-serif;
    font-size: 0.9em;}

.chat-avatar-time{
    margin-top: 0px;
    font-family: San Francisco Text Light, sans-serif;
    font-size: 0.9em;}

/* ========== DIALOGUE CHAT ========== */
.context-menu-button{
      background-color: transparent;
      /*border-bottom: 1px solid gray; */
      color: white;
      padding: 15px 10px 15px 10px;
      text-align: center;
      text-decoration: none;
      display: block; /* use inline-block to make buttons order horizontally */
      font-size: 1.06em;
      color: #404040;
      cursor: default;
      z-index: 1001;
      -webkit-appearance : none; /* these three lines remove the default 'user agent style sheet' styling for the buttons */
      -moz-appearance    : none;
      appearance         : none;  
    
      width: 100% !important;  /* these five lines style the <button type='submit'> to look the same way as the previous <span> button  */
      margin-top: none !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
}

.chat-notification{
    width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;}

.chat-notification p{
    font-size: 1.5em; 
    font-family: San Francisco Text Regular, sans-serif;}

.hvr-grow-chat:active,
.hvr-grow-chat:focus,
.hvr-grow-chat:hover {
 -webkit-transform: scale(1.5);
    transform: scale(1.5);
    z-index: 9999;
    cursor: pointer;}

/* animate the profile picture on hover */
.hvr-grow-chat:active .dialogue-avatar,
.hvr-grow-chat:focus .dialogue-avatar,
.hvr-grow-chat:hover .dialogue-avatar{
   /* currently nothing is happening. Keeping the class in case I want to animate the image on hover*/
}

.chat-participant-delete-button {
  border-radius: 50%;
  color: rgba(0,0,0,.2);
  background-color: #fff;}

.hvr-grow-chat:active .chat-participant-delete-button,
.hvr-grow-chat:focus .chat-participant-delete-button,
.hvr-grow-chat:hover .chat-participant-delete-button{
  box-shadow: 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  background-color: #fff;
  color:  #a51f25;
  z-index: 9999;}

/* ========== DIALOGUE LIBRARY ========== */

.category-header{
    width:30%;
    max-width: 30%; 
    text-align: left;
    padding: 15px 20px 15px 20px;}

.library-col1{
    width:30%;
    max-width: 30%;
    text-align: left;
    padding: 5px 20px 5px 20px;}

.library-col2{
    width:55%;
    max-width: 55%;
    text-align: left;
    padding: 5px 20px 5px 20px;}

.library-col3{
    width:15%;
    max-width: 15%;
    text-align: right;}

.category-header-span{
    border-radius: 10px;
    color:white;
    padding: 5px 10px 5px 10px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .6);
    font-family: San Francisco Text Bold, sans-serif;
    font-size: 1.5em}

.category-header-cell1{
    width:55%;
    max-width: 55%;}

.category-header-cell1{
    width:15%;
    max-width: 15%;
    text-align: right;}

.task-name{
    display:block;
    width:100%;
    font-family: San Francisco Text Semibold, sans-serif;
    font-size: 1.3em;}

.icon-paperclip{
    font-size:23px;
    margin-right:15px;
    opacity: 0.3;}

.icon-pencil{
    font-size:23px;
    margin-right:15px;}

.icon-copy{
    font-size:23px;
    margin-right:15px;}

.icon-delete{
    font-size:23px;
    margin-right:15px;}

.assignment-description{
    margin-top: 0px; 
    font-family: San Francisco Text Light, sans-serif;}


/* ========== DIALOGUE LIBRARY CATEGORIES ========== */
.assignment-cell1{
    text-align: left;
    padding: 10px 20px 10px 20px;}

.assignment-cell2{
    text-align: right;}

.assignment-cell1-text{
    display:block;
    width:100%;
    font-family: San Francisco Text Semibold, sans-serif;
    font-size: 1.3em}

.assignment-label{
    display:block;
    margin-left:5px;}

.assignment-input-name{   
    margin-right: 50px;
    margin-top:5px;
    width: 350px;
    height: 40px;}

.assignment-input-category{
    margin-top:5px;
    width: 350px;
    height: 40px;}

.assignment-textarea-div{
    width:99%;
    margin: 0 auto;}

.assignment-textarea-div2{
    display: block; 
    width:100%; 
    margin: 0 auto;
    margin-bottom: 0px;}

.assignment-textarea{
    color: #404040;
    width:100%;
    height:500px;}

.chat-attachment-text{
    font-size: 1.06em; 
    font-family: San Francisco Text Heavy, sans-serif;
    margin: 0px 0px 0px 0px;
    color: #404040;}

.assignment-attachment-font{
    color:#2098D1;
    font-family: San Francisco Text Light, sans-serif;}



/* ========== DIALOGUE LIBRARY ASSIGNMENT ========== */
.assignment-div{
    display: block; 
    width:755px; 
    margin: 0 auto;
    margin-bottom: 25px;}



/* ========== DIALOGUE LIBRARY CATEGORIES CATEGORY ========== */
.dialoog-library-categories-category-div{
    display: block; 
    width:755px; 
    margin: 0 auto;
    margin-bottom: 25px;
    text-align: center;}

.dialoog-library-categories-category-span{
    display: inline-block;}

.assignment-label2{
    display:block;
    margin-left:5px;
    text-align: left;}

/* ========== DOSSIER ========== */

.notes-url{
   display:inline;
   width:100%;
   color: #404040;}

.dossier-icon-noanimation{
    font-size:23px;
    margin-right:15px;
    opacity: 0.3;}

.dossier-icon{
    font-size:23px;
    margin-right:15px;
    opacity: 0.3;}

.dossier-icon:active,
.dossier-icon:focus,
.dossier-icon:hover{
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
        d -webkit-transform: scale(1.4);
        transform: scale(1.4); 
        color: white;
        opacity: 1;}

.table-row-white{
  background-color: white;}

.notes-col1{
    width:75%;
    text-align: left;
    padding-top: 15px; 
    padding-bottom: 15px;}

.notes-col2{
    width:25%;
    text-align: right;}

.note-title{
    font-family: San Francisco Text Bold, sans-serif;
    font-size: 1.5em;}

.dossier-textarea{
  resize:none;
  width: 99%;
  height: 200px;
  border-radius: 5px;
  overflow: auto;
  padding: 20px 30px 20px 30px;
  margin-left: 0.5%;
  box-shadow: inset 0 1px 3px 1px rgba(0,0,0,0.1), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  font-size: 20px;
  font-family: San Francisco Text Regular, sans-serif;
  caret-color: black;}


/* ========== TODO ========== */

.todo-task-row{
   box-shadow: 0 10px 3px -10px rgba(0, 0, 0, .3);}

.todo-task{
    font-family: San Francisco Text Medium, sans-serif;
    font-size: 1.1em;}

.todo-task-row:active .highlight,
.todo-task-row:focus .highlight,
.todo-task-row:hover .highlight{
     font-family: San Francisco Text Heavy, sans-serif;}

.nohighlight:active,
.nohighlight:focus,
.nohighlight:hover{
     color: black;
     font-family: San Francisco Text Medium, sans-serif;}

.no-border-bottom{
     border-bottom: none;}

.hvr-grow-custom {
 display: inline-block;
 vertical-align: middle;
 -webkit-transform: perspective(1px) translateZ(0);
 transform: perspective(1px) translateZ(0);
 box-shadow: 0 0 1px transparent;
 -webkit-transition-duration: .3s;
 transition-duration: .3s;
 -webkit-transition-property: transform;
 transition-property: transform
}

.hvr-grow-custom:active,
.hvr-grow-custom:focus,
.hvr-grow-custom:hover {
 -webkit-transform: scale(1.01);
 transform: scale(1.01)
}

.task-done-button:active,
.task-done-button:focus,
.task-done-button:hover{
    color: #a51f25;
    border-radius: 50px;
    background: #a51f25;
    box-shadow: 0 1px 3px 1px rgba(0,0,0,0.7), 0 -1px 1px #FFF, 0 1px 0 #FFF;
    }

.icon-list{
    margin-left: 3px; 
    margin-right:8px; 
    color: #e5e5e5; 
    font-size: 1.1em; 
    border-radius: 50%; 
    border: 2px solid white;}

.todo-icon{
    font-size:23px;
    margin-right:15px;
    opacity: 0.3;}

.todo-icon-sun:active,
.todo-icon-sun:focus,
.todo-icon-sun:hover{
    opacity: 0.3;
}

.todo-icon:active,
.todo-icon:focus,
.todo-icon:hover{
    -webkit-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
        d -webkit-transform: scale(1.4);
        transform: scale(1.4); 
        color: white;
        opacity: 1;}

#option-1 {background-color: #a51f25; color: #a51f25;}
#option-2 {background-color: #1fa59f; color: #1fa59f;}
#option-3 {background-color: #2098D1; color: #2098D1;}
#option-4 {background-color: #FBBA72; color: #FBBA72;}
#option-5 {background-color: #C7EAE4; color: #C7EAE4;}
#option-6 {background-color: #031D44; color: #031D44;}
#option-7 {background-color: #8A716A; color: #8A716A;}

.tasks-title-blue{
    display:inline-block;
    font-size: 2em; 
    color: #2098D1;
    font-family: San Francisco Text Bold, sans-serif;}

.tasks-title-blue-nmbr{
    display:inline-block;
    min-width: 50px;
    background-color: #2098D1;
    border-radius: 50px;
    color:white;
    padding: 3px 7px 3px 7px;margin-right:75px;}

.tasks-title-green{
    display:inline-block;
    font-size: 2em; 
    color: #1fa59f;
    font-family: San Francisco Text Bold, sans-serif;}

.tasks-title-green-nmbr{
    display:inline-block;
    min-width: 50px; 
    background-color: #1fa59f;
    border-radius: 50px;
    color:white;
    padding: 3px 3px 3px 3px;
    margin-right:75px;}

.tasks-title-red{
    display:inline-block;
    font-size: 2em; 
    color: #a51f25;
    font-family: San Francisco Text Bold, sans-serif;}

.tasks-title-red-nmbr{
    display:inline-block;
    min-width: 50px;
    background-color: #a51f25;
    border-radius: 50px;
    color:white;
    padding: 3px 3px 3px 3px;}

.todo-tbl-row{
    width:100%;
    display:block;
    padding-top: 0px; 
    padding-bottom: 0px;}

.todo-tbl-td1{
    width:5%;
    text-align: left;
    padding-top: 3px; 
    padding-bottom: 3px;}

.todo-tbl-checkbox{
    font-size: 1.5em; 
    margin-left:15px;}
    
.todo-tbl-td2{
    width:55%;
    text-align: left;
    padding-top: 15px;
    padding-bottom: 15px;}

.todo-tbl-td3{
    width:20%;
    text-align: left;
    padding-top: 3px; 
    padding-bottom: 3px;
    font-family: San Francisco Text Regular, sans-serif;
    font-size: 1.2em;
    font-style:italic;}
    
.todo-tbl-td3-overdue{
    width: 20%;
    text-align: left;
    padding-top: 3px; 
    padding-bottom: 3px;
    font-family: San Francisco Text Bold, sans-serif;
    font-size: 1.2em;
    font-style:italic;
    color:#a51f25;}

.todo-duedate-icon{
    margin-right: 4px;
    opacity: 0.8;
    color:#a51f25;}

.todo-tbl-td4{
    width:25%;
    text-align: right;}

.todo-lists-td2{
    width:90%; 
    text-align: left;
    padding: 10px 20px 10px 20px;} 

.todo-lists-td3{
    text-align: right;}

.todo-task-textarea-div{
    margin-top: 75px;
    color:#1fa59f;}

.todo-task-textarea,
.todo-task-textarea:active,
.todo-task-textarea:focus{
    color: #404040;
    width:100%;
    height:250px;}

.todo-task-textarea-div-sub{
    display: block; 
    width:70%; 
    margin: 0 auto;
    margin-bottom: 50px;}

.todo-div-inputs{
    display: block; 
    width:755px; 
    margin: 0 auto;
    margin-bottom: 25px;}

.todo-input-label{
    display:block;
    margin-left:5px;}

.todo-status-green-icon{
    font-size:30px;
    color:#1EA59F;
    margin-left: 15px;}

.todo-status-blue-icon{}

.todo-status-red-icon{
    font-size:30px;
    color:#a51f25;
    margin-left: 15px;}


/* ========== MANAGEMENT ========== */

.input-button-mngt:active,
.input-button-mngt:focus,
.input-button-mngt:hover{
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 -1px 1px rgba(0,0,0,.3), 0 1px 0 rgba(0,0,0,.3);
  background-color: #1EA59F;
  color:  white;}

.input-button-selectall:active,
.input-button-selectall:focus,
.input-button-selectall:hover{
  box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 -1px 1px rgba(0,0,0,.3), 0 1px 0 rgba(0,0,0,.3);
  background-color: #2098D1;
  color:  white;
  cursor: pointer}

.input-button-selectall:active .text-white,
.input-button-selectall:focus .text-white,
.input-button-selectall:hover .text-white{
  color:  white;
  }

.mngt-tabs{
 display: inline-block;
 vertical-align: middle;
 -webkit-transform: perspective(1px) translateZ(0);
 transform: perspective(1px) translateZ(0);
 box-shadow: 0 0 1px transparent;
 -webkit-transition-duration: .3s;
 transition-duration: .3s;
 -webkit-transition-property: transform;
 transition-property: transform
}

.mngt-tabs:active,
.mngt-tabs:focus,
.mngt-tabs:hover {
 -webkit-transform: translateX(30px);
 transform: translateX(30px)} 


/* ========== MANAGEMENT-ORGANISATION ========== */

.mgnt-label{
    font-size: 20px;
    font-family: San Francisco Text Light, sans-serif;
    opacity: 0.5;}

.mgnt-input{
    font-size: 20px;
    font-family: San Francisco Text Regular, sans-serif;}

.mgnt-header{
    width: 60%;
    border-bottom: 1px solid #ddd;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 50px;
    box-shadow: 0 4px 10px -7px rgba(0, 0, 0, 0.3);
    }

.mgnt-header p{
    font-size: 2em; 
    font-family: San Francisco Text Regular, sans-serif;}


/* ========== MANAGEMENT-LICENSES ========== */

.mgnt-large-font{
    font-size: 1.5em;}

.mgnt-plusmin-icon-white{
    font-size: 0.6em;
    color: white;}

.mgnt-plusmin-icon{
    font-size: 0.6em;
    color: #404040;}

.mgnt-plusmin-icon2{
    font-size: 0.6em;
    color: #404040;}

.mgnt-plusmin-icon:active,
.mgnt-plusmin-icon:focus,
.mgnt-plusmin-icon:hover{
    color: rgba(31, 165, 159, 0.5);}

.mgnt-plusmin-icon2:active,
.mgnt-plusmin-icon2:focus,
.mgnt-plusmin-icon2:hover{
    color: rgba(165, 31, 37, 0.5);}

.mgnt-brdr-clr{
    border: 1px solid #949494;
    background: #1fa59f;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    border: 2px solid white;}

.mgnt-brdr-clr:active,
.mgnt-brdr-clr:focus,
.mgnt-brdr-clr:hover{
    background: rgba(31, 165, 159, 0.7);
    border: 3px solid white;}

.mgnt-lic-button{
    color: white; 
    margin-top: 7px; 
    margin-left: 7px; 
    font-size: 50px;}

.mgnt-brdr-clr:active .mgnt-lic-button,
.mgnt-brdr-clr:focus .mgnt-lic-button,
.mgnt-brdr-clr:hover .mgnt-lic-button{
    color: white;}


/* ========== MANAGEMENT-EMPLOYEES ========== */

 /* animate the account-icon on hover over table row */
    .a-table-row:active .account-icon,
    .a-table-row:focus .account-icon,
    .a-table-row:hover .account-icon{
        box-shadow: 0 0 5px white;}



/* ========== PEOPLEHUB ========== */

.peoplehub-brdr-clr{
    border: 1px solid #949494;
    background: #1fa59f;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    border: 2px solid white;}


/* ========== INVOICE ========== */

.invoices_dashboard{
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.3);
}


/* ========== INVOICE DETAILS ========== */

.no-background tr:nth-child(even) { /* some tables like the invoice-details page should not have zebra layout  */
    background-color: transparent;}

.no-background td{
    border-bottom: none;}

.invoice-textarea{
  resize:none;
  width: 100%;
  height: 200px;
  border-radius: 3px;
  overflow: auto;
  padding: 20px 30px 20px 10px;
  margin-left: 10px;
  margin-bottom: 70px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.39), 0 -1px 1px #FFF, 0 1px 0 #FFF;
  font-size: 20px;
  font-family: San Francisco Text Regular, sans-serif;
  caret-color: black;}


/* ========== ACTIVITY ========== */
.hvr-fade-activity {
     background-color: #f2f2f2; 
     vertical-align: middle;
     -webkit-transform: perspective(1px) translateZ(0);
     transform: perspective(1px) translateZ(0);
     box-shadow: 0 0 1px transparent;
     overflow: hidden;
     -webkit-transition-duration: .3s;
     transition-duration: .3s;
     -webkit-transition-property: color, background-color;
     transition-property: color, background-color
}

.hvr-fade-activity:active,
.hvr-fade-activity:focus,
.hvr-fade-activity:hover {
     background-color: #2098D1; /* red value: #a51f25 */
     color: #fff
}


/* ========== MISC ========== */
.hide-msg{
    color: #000;
}

.hide-msg:active,
.hide-msg:focus,
.hide-msg:hover {
    color: #a51f25;
    d -webkit-transform: scale(1.3);
           transform: scale(1.3);
           -webkit-transition-duration: .3s;
           transition-duration: .3s;
           position: relative;
           z-index: 9999;
}


/* ========== CANDIDATE/ASSESSMENTS ========== */

@import url(https://fonts.googleapis.com/css?family=Lato:400,700,900);
*, *:before, *:after {
  box-sizing: border-box;
}


.slide-container {
  margin: auto;
  width: 100%;
  text-align: center;
}

.wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.wrapper:focus {
  outline: 0;
}

.clash-card {
  background: white;
  width: 28%;
  display: inline-block;
  margin: auto;
  border-radius: 19px;
  position: relative;
  text-align: center;
  box-shadow: -1px 3px 30px -12px black;
  z-index: 9999;
  font: 14px/20px "Lato", Arial, sans-serif;
  color: #9E9E9E;
}

.clash-card__image {
  position: relative;
  height: 50px;
  margin-bottom: 35px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.clash-card__image--barbarian {
  background: url("../images/module-bg.jpg");
}
.clash-card__image--barbarian img {
  width: 76px;
  position: absolute;
  top: 10px;
  left: calc(50% - 38px);
  opacity: .7;
}

.clash-card:active .clash-card__image--barbarian img,
.clash-card:focus .clash-card__image--barbarian img,
.clash-card:hover .clash-card__image--barbarian img{ 
  opacity: 1;
}

.clash-card__level {
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 7px;
}

.clash-card__level--barbarian {
  color: #a51f25;
}

.clash-card__unit-name {
  font-size: 26px;
  color: black;
  font-weight: 900;
  margin-bottom: 5px;
}

.clash-card__unit-description {
  padding: 20px;
  margin-bottom: 10px;
  height: 120px;
  min-height: 120px;
  max-height: 120px;
  font-size: 1.1em;
}

.clash-card__unit-stats--barbarian {
  background: #FFBC42;
}

.clash-card__unit-stats--finished {
  background: #1fa59f;
}

.clash-card__unit-stats--barbarian .one-third {
  border-right: 1px solid #BD7C2F;
}

.clash-card:active .clash-card__unit-stats--barbarian .one-third,
.clash-card:focus .clash-card__unit-stats--barbarian .one-third,
.clash-card:hover .clash-card__unit-stats--barbarian .one-third{
     border-right: 1px solid #FFBC42; 
}

.clash-card__unit-stats {
  color: white;
  font-weight: 700;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.clash-card:active .clash-card__unit-stats,
.clash-card:focus .clash-card__unit-stats,
.clash-card:hover .clash-card__unit-stats{
     background-color: rgba(255,188,66,.8); /* red value: #a51f25 */
     color: #fff;
}


.clash-card:active .clash-card__unit-stats--finished,
.clash-card:focus .clash-card__unit-stats--finished,
.clash-card:hover .clash-card__unit-stats--finished{
     background-color: rgba(31,165,159,0.8); /* red value: #a51f25 */
     color: #fff;
}

.clash-card__unit-stats .one-third {
  width: 50%;
  float: left;
  padding: 12px 0px 0px 0px;
}

.clash-card__unit-stats .one-whole {
  width: 100%;
  float: left;
  padding: 12px 0px 0px 0px;
}

.clash-card__unit-stats sup {
  position: absolute;
  bottom: 4px;
  font-size: 45%;
  margin-left: 2px;
}
.clash-card__unit-stats .stat {
  position: relative;
  font-size: 1.5em;
  margin-bottom: 10px;
}
.clash-card__unit-stats .stat-value {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.6em;
}
.clash-card__unit-stats .no-border {
  border-right: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.slick-prev {
  left: 100px;
  z-index: 999;
}

.slick-next {
  right: 100px;
  z-index: 999;
}



/* ========== INDEX ========== */

@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,800);

.index-card-1,
.index-card-2,
.index-card-3,
.index-card-4,
.index-card-5,
.index-card-6,
.index-card-7,
.index-card-8{
    /* height: 32vh; */
    border-radius: 3px;
    width: 20%;
}

.index-card-5,
.index-card-6,
.index-card-7,
.index-card-8{
    margin-top: 20px;
    margin-bottom: 80px;
}

.index-card-1-top{
    background: url("../images/index-bg-1.png");
    opacity: 1;}

.index-card-2-top{
    background: url("../images/index-bg-2.png");}

.index-card-3-top{
    background: url("../images/index-bg-3.png");}

.index-card-4-top{
    background: url("../images/index-bg-5.png");}

.index-card-5-top{
    background: url("../images/index-bg-4.png");}

.index-card-6-top{
    background: url("../images/index-bg-6.png");}

.index-card-7-top{
    background: url("../images/index-bg-7.png");}

.index-card-8-top{
    background: url("../images/index-bg-8.png");}

.index-card-1-top,
.index-card-2-top,
.index-card-3-top,
.index-card-4-top,
.index-card-5-top,
.index-card-6-top,
.index-card-7-top,
.index-card-8-top{
    background-size: cover; 
    background-position: center bottom;
    border-top-left-radius: 3px; 
    border-top-right-radius: 3px;
}

.index-card-1-bottom,
.index-card-2-bottom,
.index-card-3-bottom,
.index-card-4-bottom,
.index-card-5-bottom,
.index-card-6-bottom{
    border-bottom-left-radius: 3px; 
    border-bottom-right-radius: 3px; 
    vertical-align: middle;
}

.index-card-1-bottom p,
.index-card-2-bottom p,
.index-card-3-bottom p,
.index-card-4-bottom p,
.index-card-5-bottom p,
.index-card-6-bottom p{
    font-weight: 400;
    padding: 0 0 0 0; 
    margin: 0 0 0 0; 
    font-size: 2em; 
    text-transform: uppercase; 
    word-spacing: -0.15em; 
    font-family: 'Raleway', Arial, sans-serif;
}

.index-card-1-bottom p,
.index-card-2-bottom p,
.index-card-3-bottom p{
    color: #a51f25;
}

.index-card-4-bottom p,
.index-card-5-bottom p{
    color: #1fa59f;
}

.index-card-6-bottom p{
    color: #4B4F52;
}

.index-card-1-candidate,
.index-card-2-candidate,
.index-card-3-candidate{
    height: 60vh;
}

.index-card-4-candidate{
    width: 100%;
    height: 15vh;
}

.index-card-1-top-candidate{
    background: url("../images/index-bg-1-candidate.png");}

.index-card-2-top-candidate{
    background: url("../images/index-bg-2-candidate.png");}

.index-card-3-top-candidate{
    background: url("../images/index-bg-3-candidate.png");}

.index-card-4-top-candidate{
    background: url("../images/index-bg-4-candidate.png");}

.index-card-1-top-candidate,
.index-card-2-top-candidate,
.index-card-3-top-candidate{
    background-size: cover; 
    background-position: center bottom;
    border-top-left-radius: 3px; 
    border-top-right-radius: 3px;
}

.index-card-4-top-candidate{
    background-size: contain; 
    background-position: center bottom;
    background-repeat: no-repeat;
    border-top-left-radius: 3px; 
    border-top-right-radius: 3px;
}

.index-card-1-candidate:active .index-card-1-top-candidate,
.index-card-1-candidate:focus .index-card-1-top-candidate,
.index-card-1-candidate:hover .index-card-1-top-candidate{
    background: url("../images/index-bg-1-white-candidate.png"); 
    background-size: cover;
    background-position: center bottom;}

.index-card-2-candidate:active .index-card-2-top-candidate,
.index-card-2-candidate:focus .index-card-2-top-candidate,
.index-card-2-candidate:hover .index-card-2-top-candidate{
    background: url("../images/index-bg-2-white-candidate.png"); 
    background-size: cover;
    background-position: center bottom;}

.index-card-3-candidate:active .index-card-3-top-candidate,
.index-card-3-candidate:focus .index-card-3-top-candidate,
.index-card-3-candidate:hover .index-card-3-top-candidate{
    background: url("../images/index-bg-3-white-candidate.png"); 
    background-size: cover;
    background-position: center bottom;}

.index-card-4-candidate:active .index-card-4-top-candidate,
.index-card-4-candidate:focus .index-card-4-top-candidate,
.index-card-4-candidate:hover .index-card-4-top-candidate{
    background: url("../images/index-bg-4-white-candidate.png"); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;}

/* makes sure there is a little bit of space left and right of the main body on smalls screens */
@media only screen and (max-width: 1600px) {
    .lesswide-onsmallerscreen{
        width: 98%; 
        margin-left: 1%;
    }
}


/* ========== DOCUMENTS ========== */

.folded-corner {
  position: relative;
  overflow: visible;
}
  
.folded-corner:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  border-width: 0 50px 50px 0;
  border-style: solid;
  border-color: #fff #fff rgba(0,0,0,.05) rgba(0,0,0,.05);
  -webkit-box-shadow: -3px 3px 5px rgba(0,0,0,0.3);
  -moz-box-shadow: -3px 3px 5px rgba(0,0,0,0.3);
  box-shadow: -3px 3px 5px rgba(0,0,0,0.3);
  display: block; width: 0;
}

/*for rounded corners*/
.folded-corner.rounded {
  -moz-border-radius: 5px 0 5px 5px;
  border-radius: 5px 0 5px 5px;
}

.folded-corner.rounded:before {
  -moz-border-radius: 0 0 0 2px;
  border-radius: 0 0 0 2px;
}



/* ========== LOGIN ========== */

.login-submitbutton{
    background: #a51f25;
    color: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,0.3), 0 -1px 1px rgba(0,0,0,.3), 0 1px 0 rgba(0,0,0,.3);
    margin-left: 0px;
    margin-right: 0px;
}

.login-submitbutton:active,
.login-submitbutton:focus,
.login-submitbutton:hover{
    background: #2098D1;
    color: #fff;
}



/* ========== WEBSITE ========== */

.h-divider {
  margin: auto;
  width: 100%;
  position: relative;
  background-color: #f2f1f2;    
}

.h-divider .shadow {
  overflow: hidden;
  height: 1px;
  background-color: #f2f1f2;
}

.h-divider .shadow:after {
  content: '';
  display: block;
  margin: -25px auto 0;
  width: 75%;
  height: 25px;
  border-radius: 125px/12px;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  background-color: #f2f1f2;
}

.contact-button{
    background-color: #a51f25; 
}

.contact-button:active,
.contact-button:focus,
.contact-button:hover{
    background-color: #2098D1;
    cursor: pointer;
}

.resp-cover{
    width: 100%; 
    height: calc(100vh); 
    margin-top:0px; 
    margin-bottom: 0px; 
    z-index: 0; 
    background: url(../images/background-index.jpg); 
    background-position: center bottom; 
    background-repeat: no-repeat; 
    background-size: cover;
}

.resp-cover-certification{
    width: 100%; 
    height: calc(100vh); 
    margin-top:0px; 
    margin-bottom: 0px; 
    z-index: 0; 
    background: url(../images/background-faded.jpg); 
    background-position: center bottom; 
    background-repeat: no-repeat; 
    background-size: cover;
}

.resp-cover-div{
    margin: 0; 
    position: absolute; 
    top: 50%; 
    -ms-transform: translateY(-50%); 
    transform: translateY(-50%); 
    width: 40%; 
    min-width: 600px; 
    padding: 50px 0 0 50px; 
    border-radius: 5px;
}

.resp-cover-title{
    font-size: 4em; 
    line-height: 1; 
    font-family: San Francisco Text Semibold, sans-serif;
}

.resp-cover-text{
    margin-top: 10px; 
    width: 600px; 
    font-size: 1.7em; 
    font-family: San Francisco Text Regular, sans-serif;
}

.resp-cover-button{
    width:425px; 
    height: 50px; 
    color:#fff; 
    text-align: center; 
    margin: 10px 0 0 0;
}

.resp-cover-button-text{
    margin: 20px auto; 
    font-size: 2em; 
    line-height: 0px;
}

.big-quote{
    margin-top: 0px; 
    margin-bottom: 0px; 
    font-size: 3.1em; 
    font-weight: 800;
    }

.small-quote{
    margin-top: 0px; 
    margin-bottom: 0px; 
    font-size: 1.75em; 
    font-weight: 100;
}

.resp-question{
    width: 19.4%; 
    box-shadow: none;
}

.resp-big-quote-div{
    margin-top: 80px; 
    padding-top: 100px; 
    padding-bottom: 0px; 
    background-color: #f2f1f2;
    }

.resp-big-quote-div2{
    margin-top: 100px; 
    padding-top: 0px; 
    padding-bottom: 40px; 
    background-color: #ffff;
    }

.resp-big-quote-div3{
    margin-top: 200px; 
    padding-bottom:80px
}

.resp-big-quote-div4{
    margin-bottom: 0px; 
    padding-top: 80px; 
    padding-bottom:80px; 
    background-color: #f2f1f2;
}

.resp-big-quote-div5{
    margin-top: 100px; 
    padding-bottom:80px
}

.resp-feature-img-left{
    vertical-align: middle; 
    align: left; 
    height: 350px; 
    width: 350px; 
    margin-right:30px;
}

.resp-feature-img-right{
    vertical-align: middle; 
    align: right; 
    height: 350px; 
    width: 350px; 
    margin-left:30px;
}

.resp-feature-text{
    display: table-cell; 
    vertical-align: middle;
}

.resp-feature-text-title{
    font-size:25px;
}

.resp-feature-text-subtitle{
    color:#e30613; 
    text-align: left; 
    font-family: 'Rockwell Std', serif; 
    font-style: italic;
}

.resp-sectors-image-first{    
    margin-left: 8.5% !important;
}

.resp-sectors-div{
    font: 14px/20px 'Lato', Arial, sans-serif; 
    margin-bottom: 0px; 
    max-height: 18vw; 
    min-height: 18vw;
}

.resp-sectors-div-mobile{
    margin-bottom: 75px;
}

.resp-book-demo-button{
    width:500px; 
    height: 70px; 
    color:#fff; 
    text-align: center;
}

.resp-book-course-button{
    width:700px; 
    height: 70px; 
    color:#fff; 
    text-align: center;
}

.resp-book-demo-button-text{
    font-size: 2em; 
    line-height: 0px;
}

.resp-idea-button{
    width: 320px; 
    height: 60px; 
    color: #fff; 
    text-align: center; 
    font-size: 2em;    
}

.resp-cover-contact{
    background: url(../images/background-contact.jpg);
    background-position: center bottom; 
    background-repeat: no-repeat; 
    background-size: cover;
}

.show-on-mobile{
    display: none;
}

.show-on-mobile2{
    display: none;
}


/* ========== MOBILE WEBSITE ========== */

@media (max-width: 480px) {
    
    .resp-cover{
        width: 100%; 
        height: calc(100vh); 
        margin-top:0px; 
        margin-bottom: 0px; 
        z-index: 0; 
        background: url(../images/background-index-mobile.jpg); 
        background-position: center bottom; 
        background-repeat: no-repeat; 
        background-size: cover;
    }
    
    .resp-cover-certification{
        background: url(../images/background-mobile-faded.jpg);
        background-position: center bottom; 
        background-repeat: no-repeat; 
        background-size: cover;
    }
    
    .resp-cover-contact{
        background: url(../images/background-mobile-faded-contact.jpg);
        background-position: center bottom; 
        background-repeat: no-repeat; 
        background-size: cover;
    }

    .resp-cover-div{
        width: 100%; 
        min-width: 100%;
        margin: 0; 
        position: absolute; 
        top: 50%; 
        -ms-transform: translateY(-60%); 
        transform: translateY(-60%);  
        padding: 0px 20px 0 20px; 
        border-radius: 5px;
    }

    .resp-cover-title{
        width: 100%;
        font-size: 2.6em; 
        line-height: 1; 
        font-family: San Francisco Text Bold, sans-serif;
    }

    .resp-cover-text{
        margin-top: 10px; 
        width: 100%; 
        font-size: 1.4em; 
        font-family: San Francisco Text Regular, sans-serif;
    }

    .resp-cover-button{
        width: 75%; 
        height: 40px; 
        color:#fff; 
        text-align: center; 
        margin: 30px 0 0 0;
    }

    .resp-cover-button-text{
        margin: 17px auto; 
        font-size: 1.2em; 
        line-height: 0px;
    }
    
    .big-quote{
        margin-top: 0px; 
        margin-bottom: 0px; 
        font-size: 2.5em; 
        font-weight: 800;
        line-height: 1em;
    }
    
    .small-quote{
        margin-top: 30px; 
        margin-bottom: 0px; 
        font-size: 1.5em; 
        font-weight: 100;
        line-height: 1.2em;
    }
    
    .resp-margin-bottom{
        padding-bottom: 80px;     
    }
    
    .resp-question{
        width: 50%; 
        box-shadow: none;
        display: inline;
        margin-bottom: 0px;
    }
    
    .resp-big-quote-div{
        margin-top: 80px; 
        padding-top: 65px; 
        padding-bottom: 0px; 
        background-color: #f2f1f2;
    }
    
    .resp-big-quote-div2{
        margin-top: 80px; 
        padding-top: 0px; 
        padding-bottom: 0px; 
        background-color: #fff;
    }
    
    .resp-big-quote-div3{
        margin-top: 80px; 
        padding-top: 0px; 
        padding-bottom: 0px; 
        background-color: #fff;
    }
    
    .resp-feature-img-left{
        vertical-align: middle; 
        align: center; 
        width: 80vw; 
        height: auto; 
        margin-right: 0px;
    }
    
    .resp-feature-img-right{
        vertical-align: middle; 
        align: center; 
        width: 80vw; 
        height: auto; 
        margin-left: 0px;
    }
    
    .resp-feature-text{
        display: block; 
        vertical-align: top;
        margin-top: 20px;
    }
    
    .resp-feature-text-title{
        font-size:25px;
        display: block;
        text-align: left;
    }
    
    .resp-feature-text-subtitle{
        color:#e30613; 
        display: block;
        text-align: left; 
        font-family: 'Rockwell Std', serif; 
        font-style: italic;
        font-size: 1.2em;
    }
    
    .resp-feature-text-text{
        display: block;
        text-align: left;
        margin-top: -20px;
        font-size: 1.2em;
    }
    
    .resp-feature-text-justify{
        text-align:justify; 
         -ms-word-break: break-word;
     word-break: break-word;

     /* Non standard for WebKit */
     word-break: break-word;

-webkit-hyphens: auto;
   -moz-hyphens: auto;
        hyphens: auto;
    }
    
    .resp-sectors-image{    
        width: 50%;
    }
    
    .resp-sectors-image-top{
        padding: 0px 0px 0px 0px;
    }
    
    .resp-sectors-div{
        font: 14px/20px 'Lato', Arial, sans-serif; 
        margin-bottom: 0px; 
        max-height: 45vw; 
        min-height: 45vw;
    }
    
    .resp-sectors-image-first{    
        margin-left: 0% !important;
    }
    
    .resp-book-demo-button{
        width: 100%; 
        height: 70px; 
        color:#fff; 
        text-align: center;
    }
    
    .resp-book-demo-button-text{
        font-size: 1.4em; 
        line-height: 20px;
    }
    
    .resp-book-course-button-text{
        margin-top: 12px;
        font-size: 1.5em; 
        line-height: 20px;
    }
    
    .resp-contact-us{
        width: 90%;
    }
    
    .resp-index-lastquote{
        margin-bottom: 80px;    
    }
    
    .resp-idea-button{
        width: 50%;    
    }
    
    .resp-cover-div-certification{
        -ms-transform: translateY(-45%); 
        transform: translateY(-45%);  
    }
    
    .resp-book-course-button{
        width: 100%; 
        height: 70px; 
        color:#fff; 
        text-align: center;
    }
    
    .resp-mobile-menu-text{
        font-size: 1em;
        font-family: San Francisco Text Bold, sans-serif;
    }
    
    .hidden-on-mobile{
        display: none;
    }
    
     .show-on-mobile{
        display: inline-block;
    }
    
    .show-on-mobile2{
        display: block;
    }
    
    .resp-cover-contact{
        height: auto;
    }

}

@media (max-width: 320px) { /* iPhone 5, SE */
 
    .resp-cover-text{
        margin-top: 10px; 
        width: 100%; 
        font-size: 1.2em; 
        font-family: San Francisco Text Regular, sans-serif;
    }
    
    .resp-cover-button-text{
        margin: 17px auto; 
        font-size: 1em; 
        line-height: 0px;
    }
    
    .resp-book-demo-button-text{
        margin-top: 12px;
        font-size: 1.4em; 
        line-height: 20px;
    }
    
    .resp-mobile-menu-text{
        font-size: 0.8em;
    }
}




