/* reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

  input.form-control {
    outline: none;
    box-shadow: none !important
	height:10px;
  }

  #chatNotif {
    margin-left: -18px;
  }

  #searchInput {
    padding-left: 32px;
  }
  .navbar{
    position:fixed;
    width:100%;
    z-index: 1000000;
    top:0;
	background:#1755a3 !important;
	visibility:hidden;
}
.nav-link {
	color:#fff !important;
}
.nav-link:hover {
	color:#aee9fc !important;
	/*text-decoration:underline;*/
}

.stick {
  padding: 15px 25px;
  background: #1b55a3;
  color: #f1f1f1;
  display:none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index:1;
    display:block;
}

.sticky + .content {
  padding-top: 102px;
  display:block;
  transition: .2s ease;
}
/* style for waterfall grid */
.wf-container {
    margin: 0 auto;
}
.wf-container:before,.wf-container:after {
    content: '';
    display: table;
}
.wf-container:after {
    clear: both;
}
.wf-box {
    margin: 10px;
	border-radius: 25px;
	position: relative;
}
.wf-box img { 
	border-radius: 25px 25px 0 0;
    display: block;
    width: 100%;
}
.wf-box .content {
	background:#fff;
	border-radius: 0 0 25px 25px;
    border-top-width: 0;
    padding: 15px 8px;
}
.wf-box .content p{
    font-weight:bold;
	font-size:10pt;
	line-height:16px;
}
.wf-box .content a{
    color:#000;
	text-decoration:none;
}
.wf-box .content a:hover{
    color:#1b55a3;
	text-decoration:underline;
}
.wf-box .content .catlang{
    font-size:9pt;
	text-align:center;
}
.wf-box .image {
  display: block;
  width: 100%;
  height: auto;
}

.wf-box .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .2s ease;
  background-color: #000;
  border-radius: 25px;
}


.wf-box :hover .overlay {
  opacity: 0.8;
}

.wf-box .overlay .text {
  color: white;
  font-weight:bold;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.wf-column {
    float: left;
}

@media screen and (min-width: 768px) {
    .wf-container { width: 750px; }
}
@media screen  and (min-width: 992px) {
    .wf-container { width: 970px; }
}
@media screen and (min-width: 1200px) {
    .wf-container { width: 1170px; }
}