/*--------------------------------------------------------------------------------------
  FONT
--------------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');

/*--------------------------------------------------------------------------------------
  MAIN
--------------------------------------------------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: #fff;
  font-family: Lato,sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
* {
  font-family:Lato,sans-serif;
}
a.no-cursor {
  cursor: default;
}
ul li {
  list-style-type: none;
}

/*--------------------------------------------------------------------------
 TOP
--------------------------------------------------------------------------*/
#goto_top {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  z-index: 9998;
  display: none; 
  opacity: 0.8; 
  background-color: #000; 
  color: #fff; 
  font-size: 18px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
}

/*--------------------------------------------------------------------------
 AJAX
--------------------------------------------------------------------------*/
#ajax_loader {
  display: none;
  background: url(../img/loaders/ajax-loader.gif) no-repeat center; 
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  opacity: 0.2;
}

/*--------------------------------------------------------------------------------------
  FOOTER
--------------------------------------------------------------------------------------*/
footer {
  background: #ffffff;
}
footer a {
  outline: 0;
  color: #1E99D7;
  text-decoration: none;
}
footer p {
  color: #888888;
  margin: 0 2px;
  padding: 0;
}
footer h5 {
  color: #888888;
  font-weight: bold;
  padding: 0;
}
footer a:hover {
  color: #5D9741;
  text-decoration: none;
}
footer a:focus {
  text-decoration: none;
  box-shadow: none;
}

/*--------------------------------------------------------------------------------------
  MISCELLANEOUS
--------------------------------------------------------------------------------------*/
.error {
  color: #dc3545;
}
.removed {
  color: #aa4444;
}
.enabled {
  color: #44aa44;
}
.background-enabled {
  background-color: #44aa44;
}
.disabled {
  color: #aa4444;
}
.warning {
  color: #aa4444;
}
.inactive {
  color: #cccccc;
}
.selected {
  color: #a94442;
}
.background-disabled {
  background-color: #aa4444;
}
.required {
  width: auto;
  float: none;
  color: #fd8204;  
  display: inline;
  margin : 0 6px 0 6px;
}
.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
i.fa.heading {
  font-size: 18px;
  text-align: center;
  margin-right: 8px;
  width: 24px;
}

/*--------------------------------------------------------------------------------------
  ARENA
--------------------------------------------------------------------------------------*/
.arena-text {
  color: #1E99D7 !important;
}
.arena-badge {
  color: #ffffff;
  padding: 4px 10px;
  background-color: #1E99D7;
}
.arena-background {
  background-color: #1E99D7;
}

/*--------------------------------------------------------------------------------------
  FORM ERROR
--------------------------------------------------------------------------------------*/
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  background-color: #f2dede;
  border-color: #a94442;
}
.has-error .form-control-feedback {
  color: #a94442;
}

/*--------------------------------------------------------------------------------------
  Divider
--------------------------------------------------------------------------------------*/
.divider {
  height: 1px;
  margin: 8px 0 12px 0;
  overflow: hidden;
  background-color: #c5c5c5;
}
.divider-small {
  height: 1px;
  margin: 8px 0 12px 0;
  overflow: hidden;
  background-color: #d5d5d5;
}

/*--------------------------------------------------------------------------------------
  CAPTCHA
--------------------------------------------------------------------------------------*/
.captcha {
  margin: 8px auto;
}
.captcha img {
  width: 100%;
  max-width: 220px;
  margin-top: 10px;
}
.captcha-image {
  background-color: #ffffff;
  border: 1px solid #999;
}
.captcha .form-group {
  margin-top: 10px;
}

/*--------------------------------------------------------------------------
 MESSAGE
--------------------------------------------------------------------------*/
.message-text {
  margin-top: 2px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  text-align: left;  
  padding: 2px 8px 2px 8px;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 10px center;
  border-left: 2px solid rgba(232, 232, 232, 0.4);
}
.message-text p {
  margin: 0;
  padding: 0;
}
.message-block {
  margin-bottom: 12px;
  padding: 10px 8px 10px 8px;
  background-color: #fbfbfb;
  border-left: 2px solid rgba(232, 232, 232, 0.4);
  text-align: left;
}
.message-alert {
  margin-bottom: 4px;
  padding: 4px 8px 8px 8px;
  text-align: center;
}
.message-text.info,
.message-alert.info,
.message-block.info {
  color: #00529B;
  font-size: 15px;  
}
.message-text.success,
.message-alert.success,
.message-block.success {
  color: #009a44;
  font-size: 16px;  
}
.message-text.warning,
.message-alert.warning,
.message-block.warning {
  color: #9F6000;
  font-size: 16px;
}
.message-text.error,
.message-alert.error,
.message-block.error {
  color: #dc3545;
  font-size: 16px; 
}
.message-text.info,
.message-block.info {
  border-left-color: #00529B;
}
.message-text.success,
.message-block.success {
  border-left-color: #009a44;
}
.message-text.warning,
.message-block.warning {
  border-left-color: #9F6000;
}
.message-text.error,
.message-block.error {
  border-left-color: #dc3545;
}
.message-alert.info {
  border-bottom-color: #00529B;
}
.message-alert.success {
  border-bottom-color: #009a44;
}
.message-alert.warning {
  border-bottom-color: #9F6000;
}
.message-alert.error {
  border-bottom-color: #dc3545;
}

/*--------------------------------------------------------------------------
 PROCESS WINDOW
--------------------------------------------------------------------------*/
.process-window-border {
  padding: 8px 8px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.process-window-content {
  display: none;
}
.process-window-content.active {
  display: block;
}
.process-dialog,
.process-request,
.process-window-content.active {
  cursor: pointer;
}

/*--------------------------------------------------------------------------------------
  CONTAINER BLOCK
--------------------------------------------------------------------------------------*/
.container-block {
}
@media (min-width: 768px) {
  .container-block {
    min-height: 440px;
  }
}

/*--------------------------------------------------------------------------------------
  HEADER HX
--------------------------------------------------------------------------------------*/
h1, h2, h3, h4 {
  text-transform:uppercase;
}

/*--------------------------------------------------------------------------------------
  BUTTON
--------------------------------------------------------------------------------------*/
.btn { 
  border-radius : 4px
}
.btn-block {
  width: 100%;
  white-space: normal;
  margin: 0 0 6px 0;
}
.btn.btn-default {
  border: 1px solid #999;
  background-color: #ffffff;
  padding: 6px 12px;
  color: #000;
}
.btn.btn-default:hover {
  border: 1px solid #1E99D7;
  color: #1E99D7;
}
.btn.btn-primary {
  background-color: #1E99D7;
  border: 1px solid #1E99D7;
  padding: 6px 12px;
  font-weight: bold;
  color: #fff;
}
.btn.btn-primary:hover,
.btn.btn-primary.btn-active {
  border:1px solid #00145a;
  background-color: #00145a;
}
.btn.btn-display {
  color: #999;
  height: 32px;
  padding: 0 8px;
  font-weight: bold;
  font-size: 20px;
  border: 1px solid #999;
  background-color: #e9eef2;
  border-left: 0; 
}
.btn.btn-display .active {
  color: #aa4444;
}
.btn.btn-default.btn-toolbox {
  padding: 5px 12px 5px 12px;
  background-color: #1E99D7;
  font-size: 14px;
  color: #fff;
}
.btn.btn-primary.btn-small {
  padding: 4px 12px 4px 12px;
}

/*--------------------------------------------------------------------------
 SELECT
--------------------------------------------------------------------------*/
select.form-control {
  padding: 4px 6px;
}
select.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  color: #0c0c0c;
  background-image: url(../img/pictos/index.svg);
  background-position: 100% center;
  background-repeat: no-repeat;
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
select.form-control option {
  color: #000;
}
select.form-control optgroup {
  color: #000;
}
select.form-control::-ms-expand {
  display: none;
}

/*--------------------------------------------------------------------------
 FORM CONTROL
--------------------------------------------------------------------------*/
.form-control {
  height: 32px;
  padding: 2px 8px 4px 8px;
  border-radius: 0;
  font-size: 14px;
  border: 1px solid #999;
  background-color: transparent;
}
.form-control:active {
  border: 1px solid #999;
  background-color: transparent;
}
.form-control:focus {
  border: 1px solid #999;
  background-color: transparent;
}

/*--------------------------------------------------------------------------
 DISPLAY BLOCK
--------------------------------------------------------------------------*/
.display-block {
  padding: 0;
  width: 100%;
  display: block;
  line-height: 1.5;
  overflow: hidden;
  background-color: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 16px;
}
.display-block h2 {
  margin: 4px 0 0 0;
  padding: 0;
}
.display-block .divider {
  margin: 10px 0 10px 0;
}

.container-content {
  padding: 8px;
}

/*--------------------------------------------------------------------------
 DISPLAY BLOCK HEADER
--------------------------------------------------------------------------*/
.display-header {
  padding: 8px 18px 0 18px;
}
.display-header h5 {
  color: #333;
}
.display-header h6 {
  color: #888888;
}
.display-header .btn.btn-primary {
  padding: 2px 12px 3px 12px;
}

/*--------------------------------------------------------------------------
 DISPLAY BLOCK CONTENT
--------------------------------------------------------------------------*/
.display-content {
  padding: 8px 24px 12px 24px;
}
.display-content.no-padding {
  padding: 0;
}
.display-content p {
  font-size: 14px;
  margin: 2px 0 4px 0;
  padding: 0;
}
.display-content p.heading {
  font-size: 14px;
  margin: 8px 0;
  padding: 0;
}
.display-content label {
  font-weight: bold;
  font-size: 14px;
  margin: 2px 0;
  padding: 0;
}
.display-content p.required-message {
  margin: 4px 0 12px 0;
  font-size: 14px;
  padding: 0;
}
.display-content .divider-lg {
  display: block;
}
@media (min-width: 992px) {
  .display-content .divider-lg {
    display: none;
  }
}
.display-content .divider-md {
  display: block;
}
@media (min-width: 768px) {
  .display-content .divider-md {
    display: none;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY SLIDER
--------------------------------------------------------------------------*/
.display-slider-default {
}
.display-slider-default .carousel-item p {
  font-size: 12px;
  line-height: 18px;
}
.display-slider-default .carousel-item h5 {
  font-size: 18px;
  line-height: 28px;
}

/*--------------------------------------------------------------------------
 LOGIN
--------------------------------------------------------------------------*/
.display-container {
  width: 100%;
  background-color: #e9eef2;
  padding: 20px 20px;
}
.display-container-body {
  max-width: 710px;
  margin: 24px auto 24px auto;
}

/*--------------------------------------------------------------------------
 HEADER
--------------------------------------------------------------------------*/
header {
  margin: 0;
}
header h4 {
  font-size: 18px;
  margin: 0 12px 24px 12px;
}
header .logo-right {
  float: right;
  display: none;  
  width: 180px;
  height: 150px;
  padding-top : 30px;
}
header .logo-left {
  float: left;
  display: none;
  width: 180px;
  height: 150px;
}
header .logo-center {
  padding-top : 30px;
  padding-bottom : 30px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 568px) {
  header .logo-left,
  header .logo-right {
    display: block;
  }
  header .logo-center {
    display: none;
  }
  header h4 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------------------
 HEADER IMAGE
--------------------------------------------------------------------------*/
.image-header {
  margin:0;
  padding:0;
  width: 100%;
  height: 240px;
}

/*--------------------------------------------------------------------------
 HOME CONTENT
--------------------------------------------------------------------------*/
.home-register {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

/*--------------------------------------------------------------------------
 DISPLAY EVENT
--------------------------------------------------------------------------*/
.display-event .display-event-content {
  width: 100%;
  max-width: 300px;
  list-style :none;
  position: relative;  
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.display-event .display-event-content .display-event-info {
  position: relative;
  background: #fff;
  padding: 10% 10px 4% 14px;
  height:160px;
}
.display-event .display-event-content .display-event-info a {
  color: #333;
  text-decoration: none;
}
.display-event .display-event-content .display-event-info .display-event-badge {
  margin-top: 8px;
}
.display-event .display-event-content .display-event-info .badge.badge-secondary {
  font-size: 16px;
  margin-bottom: 6px;
}
.display-event .display-event-content .display-event-info .display-event-title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 100%
}
.display-event .display-event-content .display-event-info .display-event-plus {
  position: absolute;
  bottom: -15px;
  left: 25px;
  top: -18px;
}
.display-event .display-event-content .display-event-info .display-event-plus a {
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
}
.display-event .display-event-content .display-event-info .display-event-user {
  position: absolute;
  bottom: -15px;
  right: 25px;
  top: -18px;  
}
.display-event .display-event-content .display-event-info .display-event-user a {
  width: 30px;
  height: 30px;
  display: block;
  cursor: pointer;
}
.display-event .display-event-content .display-event-info .display-event-user a:active,
.display-event .display-event-content .display-event-info .display-event-user a:focus,
.display-event .display-event-content .display-event-info .display-event-user a:hover {
  opacity: .5
}
.display-event .display-event-content .display-event-info .display-event-plus a:active,
.display-event .display-event-content .display-event-info .display-event-plus a:focus,
.display-event .display-event-content .display-event-info .display-event-plus a:hover {
  opacity: .5
}
.display-event .display-event-content .display-event-image {
  margin-bottom: 6px;
}
.display-event .display-event-content .display-event-image,
.display-event .display-event-content .display-event-image > a {
  display: inline-block;
}
.display-event .display-event-content .display-event-image img {
  width: 100%;
  height: auto
}
/*.display-event .display-event-content .display-event-image img:active,
.display-event .display-event-content .display-event-image img:focus,
.display-event .display-event-content .display-event-image img:hover {
  opacity: .5
}*/
.display-event .display-event-content .display-event-date {
  box-sizing: border-box;
  color: rgb(14, 19, 26);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/*--------------------------------------------------------------------------
 DISPLAY MODAL
--------------------------------------------------------------------------*/
.display-modal {
  border-radius: 15px;
  padding: 10px 10px 10px 10px;
  border: 0;
}
.display-modal {
  width: 100%;
  background-color: #F9FBFF;
}
.display-modal .modal-content {
  background-color: #F9FBFF;
  padding: 0;
  border: 0;
}
.display-modal .modal-body {
  background-color: #F9FBFF;
  overflow-x: hidden;
}
.display-modal.modal-scroll .modal-body {
  max-height: 480px;
  overflow-y: auto;
}
.display-modal .modal-footer {
  padding: 12px 4px 4px 20px;
}
.display-modal .modal-footer .btn.btn-default {
  background-color: #788694;
  border-color: #444444;
  padding: 6px 12px;
  color: #fff;
}
.display-modal .modal-footer .btn.btn-default:hover {
  color: #444;
  background-color: #F9FBFF;
  box-shadow: 0 .15rem 1.75rem 0 rgba(23,27,21,.15) !important;
}
.display-modal .modal-footer .btn.btn-primary {
  margin-left: 12px;
}

/*--------------------------------------------------------------------------
 DISPLAY HEADER TITLE
--------------------------------------------------------------------------*/
.display-title {
  margin: 4px 0 24px 0;
  text-align: center;
}
.display-happening {
  margin-top: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}
.display-happening-image {
  max-width: 100px;
  display: none;
}
.display-happening-body {
  text-align: center;
  padding: 4px 4px 4px 4px;
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .display-happening-image {
    display: block;
  }
  .display-happening-body {
    text-align: left;
	  padding: 4px 4px 4px 24px;
  }
}

/*--------------------------------------------------------------------------
 DISPLAY BREADCRUMB
--------------------------------------------------------------------------*/
ol.breadcrumb {
  background-color: #1E99D7;
}

/*--------------------------------------------------------------------------
 AUTOCOMPLETE
--------------------------------------------------------------------------*/
.autocomplete-suggestions {
  border: 1px solid #999;
  background: #FFF;
  overflow: auto;
}
.autocomplete-suggestion {
  padding: 4px 10px;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
  font-size: 14px;
}
.autocomplete-selected {
  background: #F0F0F0;
}
.autocomplete-suggestions strong {
  font-weight: normal;
  color: #3399FF;
}
.autocomplete-group {
  padding: 2px 5px;
}
.autocomplete-group strong {
  display: block;
  border-bottom: 1px solid #000;
}

/*--------------------------------------------------------------------------
 RANGE
--------------------------------------------------------------------------*/
.display-range {
  height: 40px;
  margin: 0 25px 0 15px;
}
.ui-slider {
    height: 7px;
    position: relative;
    border: none;
    background: #1E99D7;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    background: #1E99D7;
    border-radius: 25px;
    outline: none;
    border: 2px solid #fff;
    position: absolute;
    top: -10px;
}
.ui-slider-horizontal .ui-slider-range {
    background: #1E99D7;
}
.display-range .display-range-slider {
    height: 7px;
    position: relative;
    border: none;
}
.display-range span.display-range-label-left {
  cursor: pointer;
  position: absolute;
  width: 44px;
  height: 30px;
  margin-left: -15px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}
.display-range span.display-range-label-right {
  display: none;
  position: absolute;
  width: 8px;
  height: 30px;
  margin-left: -4px;
  text-align: center;
  color: #000;
}

/*--------------------------------------------------------------------------------------
  IMAGE BACKGROUND
--------------------------------------------------------------------------------------*/
.static-background {
  width: 100%;
  min-height: 500px;
  background-attachment: fixed;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.fixed-background {
  width: 100%;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
	background-attachment: scroll;
  background-size: cover;
}
.parallax-background {
  top:200px;
  width: 100%;
	height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.notify {
  width: 100%;
  display: block;
  background: #fff;
  padding: 12px 18px;
  /*max-width: 400px;*/
  margin: 0 auto;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px;
}

.notify h1 { margin-bottom: 6px; }

.successbox h1 { color: #678361; }
.errorbox h1 { color: #6f423b; }

.successbox h1:before, .successbox h1:after { background: #cad8a9; }
.errorbox h1:before, .errorbox h1:after { background: #d6b8b7; }

.notify .alerticon { 
  display: block;
  text-align: center;
  margin-bottom: 10px;
}


.notify h1 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 2.5em;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  padding: .1em 0;
  color: #444;
    position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}
.notify h1:before,
.notify h1:after {
  content: "";
  position: relative;
  display: inline-block;
  width: 50%;
  height: 1px;
  vertical-align: middle;
  background: #f0f0f0;
}
.notify h1:before {    
  left: -.5em;
  margin: 0 0 0 -50%;
}
.notify h1:after {    
  left: .5em;
  margin: 0 -50% 0 0;
}
.notify h1 > span {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
}

.notify p {
  display: block;
  font-size: 1.35em;
  line-height: 1.5em;
  margin-bottom: 22px;
}
