html,
body {
    height: 100%;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 60px;
}

.wrap > .container {
    padding: 70px 15px 20px;
}

.footer {
    height: 60px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 21px;
    padding: 14px 24px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: "\e151";
}

a.desc:after {
    content: "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view td {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

/* align the logout "link" (button in form) of the navbar */
.nav li > form > button.logout {
    padding: 15px;
    border: none;
}

@media(max-width:767px) {
    .nav li > form > button.logout {
        display:block;
        text-align: left;
        width: 100%;
        padding: 10px 15px;
    }
}

.nav > li > form > button.logout:focus,
.nav > li > form > button.logout:hover {
    text-decoration: none;
}

.nav > li > form > button.logout:focus {
    outline: none;
}


.box{
    /*box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);*/
    /*border: 1px solid #CDCDCD;*/
    /*border: 1px solid rgba(0,0,0,.10);*/
    border-radius: 2px;
    box-shadow: 0 1px 7px 0 rgba(0,0,0,.16), 0 3px 10px 0 rgba(0,0,0,.09);
    padding: 10px 0;
}

.box .title {
    font-size: 26px;
    line-height: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    
}

.ellipsis{

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.no-padding{
    padding: 0;
}

/* pagination */

.pagination > li > a, .pagination > li > span {
   
    border-radius: 50%;
    background-color: #fff;
    margin: 5px 5px;
    line-height: 40px;
}
.pagination > li > a, .pagination > li > span {
    
    padding: 0;
    width: 40px;
    height: 40px;
    color: #03a9f4;
   
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
   
    border-radius: 50%;
   
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-radius: 50%;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #e7e7e7;
    cursor: default;
    background-color: #03a9f4;
    border-color: #03a9f4;
}

.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
    z-index: 2;
    color: #e7e7e7;
    background-color: #03a9f4;
    border-color: #03a9f4;
}

.btn-primary {
    color: #fff;
    background-color: #03a9f4;
    border-color: #03a9f4;
}

.btn-primary:hover ,.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #0293d4;
    border-color: #0293d4;
}
.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
    color: #fff;
    background-color: #0293d4;
    border-color: #0293d4;
}

.comment-title{
    padding: 10px;
    text-align: center;
    margin-top: 0px;

}
.question{

} 
.question-title{
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 20px;
}
.question-section{
    margin-top: 10px;
    margin-bottom: 30px;
}

.questionnaires{

}

.questionnaires .questionnaire{
    margin-top: 20px;

}


#loading {
    position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
    background: #EEE;
    z-index: 1000000;
    display: none;
}

.loader {

    width: 8em;
	height: 8em;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -100px;

    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .final-img{
      margin: auto;
      margin-bottom: 50px;
      margin-top: 20px;
  }

  .final .alert{
    border-radius: 0;
  }

  

  .answer-progress{
      margin-top: 20px;
  }
  .answer-progress .progress-bar{
    font-size:17px;
}

  .btn-back , .btn-next{
      margin:  10px;
  }

