/* Custom CSS below */
html, body{
  min-height:100vh;
}
#wrapper{
  min-height:100vh;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0 5px;
}

body{
  font-family: 'Lora', serif;
}
.blue-bg{
    background-color:#326e98;
}
.loader {
    border: 9px solid #f3f3f3;
    border-radius: 50%;
    border-top: 9px solid blue;
    border-right: 9px solid green;
    border-bottom: 9px solid red;
    border-left: 9px solid pink;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.tableUsers td{
  max-width:100px;
  word-break: break-word;
}
.select-200{
  max-width:200px;
}
.hidden{
  display:none;
}
.bg-blue{
  background-color:#2262a2!important;
}
.bg-setup{
  background-color: #2262a2!important;
  color: whitesmoke;
}
#radioBtn .notActive{
  color: #3276b1;
  background-color: #fff;
}
.smooth-box{
  box-shadow: 3px 3px 20px #bbbbbb;
  border: 1px solid #b7b7b7;
}

/* Preloader */
.no-js #loader { display: none;  }
.js #loader { display: block; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url(/assets/images/preloader.gif) center no-repeat #fff;
}

.img-conducere{
  max-height:300px;
  max-width:100%;
  display:block;
  margin:0 auto;
}
.mb-5{
  margin-bottom:5em;
}
.col-conducere{
  display:flex;
  flex-direction:row;
  justify-content: flex-end;
}
.row-anunturi{
  background-color: white;
  padding: 1em 0em;
  border-radius: 7px;
  box-shadow: 2px 2px 10px #cccccc57;
}

.mt-4{
  margin-top:2em;
}
.mb-1{
  margin-bottom:1em;
}
.min-70{
  min-height:70vh;
}
.mesaj{
  font-size:2rem;
}
.denumire{
  text-align: center;
  font-size: 3rem;
  color: #626982;
  font-size:2rem;
}
.header-contact{
  font-size: 1.5rem;
  letter-spacing: 1px;
  background-color: white;
  border-radius: 5px;
  padding: 0.5em;
}

.right-tabs .nav {
  float: right;
  border-bottom: 0px;
}
.right-tabs .nav li { float: left }
.right-tabs .tab-content {
  float: left;
  border-top: 1px solid #ddd;
  margin-top: -1px;
}

#website-logo-front{
  max-width: 150px;
}

.sidebar .side-menu nav .nav > li > .mega-menu {
  min-width: 310px !important;
}

#btn-log-in{
  float:right;
}

#btn-log-in >a{
  color:rgba(0, 0, 0, 0.4);
}

.row-gallery {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 25%; /* IE10 */
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
  .column {
    -ms-flex: 50%;
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .col-imagine-principala {
      margin-top:-25px !important;
      padding: 3px !important;
  }
}

#main-content-cont{
  min-height:61vh
}

.horizontal-center{
  display: flex;
  align-items: center;
}

.vertical-center{
  display: flex;
  justify-content: center;
}

#imagine-pagina-principala{
  max-width: 100%;
  position: relative;
}

#titlu-pagina-prezentare{
  position: absolute;
  bottom: 10px;
  right: 37px;
  color: white;
  background: #00000057;
  padding: 1em;
}

.videoWrapper {
  position: relative;
  padding-bottom: calc(var(--aspect-ratio, .5625) * 100%); 
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}