/*************************************************************************

CODER

Davide Cantelli - www.davidecantelli.it / hello@davidecantelli.it

*************************************************************************/
html {
  margin: 0;
  border: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
  font: 400 62.5%/1 'Lato', 'TrebuchetMS', Arial, Helvetica, sans-serif;
  color: #888888; }

body {
  position: relative;
  margin: 0;
  border: 0;
  padding: 0;
  width: 100%;
  background: #f4f4f4;
  -webkit-transition: left 0.3s;
  transition: left 0.3s; }

img {
  border: none; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.noscroll {
  overflow: hidden; }

.grid {
  padding: 0 15px; }

.clear {
  clear: both; }

.col-sm-3 {
  float: left;
  width: 25%;
  padding: 0 15px; }

.col-sm-8 {
  float: left;
  width: 75%;
  padding: 0 15px; }


  
  .col-sm-2 {
  float: left;
  width: 20%;
  padding: 0 15px; }
  
  .col-sm-4 {
  float: left;
  width: 33.3333%;
  padding: 0 15px; }

.col-sm-6 {
  float: left;
  width: 50%;
  padding: 0 15px; }

.col-sm-12 {
  float: left;
  width: 100%;
  padding: 0 15px; }

@media only screen and (max-width: 768px) {
  .col-sm-6,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-8 {
    width: 100%; }
 }

/**************************************************************************

HEADER

*************************************************************************/
header {
  position: relative;
  width: 100%;
  height: 160px;
  background: url('bg.jpg') 50% 50% no-repeat;
  background-size: cover;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
  header:before, header:after {
    content: "";
    display: table; }
  header:after {
    clear: both; }

p.logo {
  position: relative;
  margin: 80px 30px 0;
  padding: 0;
  overflow: hidden; }
  p.logo a {
    display: block;
    width: 300px;
    height: 50px;
    background: url('logo-ebcconsulting.png') 0% 0% no-repeat;
    background-size: auto 100%; }
    p.logo a strong {
      position: absolute;
      top: -100px; }

.langs {
  float: right;
  position: relative;
  z-index: 10;
  margin: -20px 20px 0;
  padding: 0;
  height: 0; }
  .langs li {
    display: inline-block;
    margin: 0 3px; }
    .langs li a {
      display: block;
      border-radius: 40px;
      width: 40px;
      height: 40px;
      font-size: 1.4em;
      color: #fff;
      line-height: 40px;
      text-align: center;
      text-decoration: none;
      background: #86dcf2;
      box-shadow: 0 0 0 0px #86dcf2, 0 2px 5px 0 rgba(0, 0, 0, 0.1);
      cursor: pointer;
      -webkit-transition: box-shadow 0.3s;
      transition: box-shadow 0.3s; }
      .langs li a:hover {
        box-shadow: 0 0 0 3px #86dcf2, 0 5px 8px 0 rgba(0, 0, 0, 0.1); }
      .langs li a.fa-home {
        margin-right: 20px;
        font-size: 1.8em; }

@media only screen and (max-width: 400px) {
  p.logo a {
    width: 100%;
    height: 60px;
    background-size: 80% auto; }
 }

/**************************************************************************

ASIDE

*************************************************************************/
aside {
  position: absolute;
  top: 0;
  bottom: 0;
  border-right: 1px solid #e6e6e6;
  width: 25%;
  min-height: 100%;
  background: #fff; }

nav ul {
  margin: 30px 0px;
  width: 100%;
  padding: 0;
  list-style: none;
  overflow: auto; }
  nav ul li {
    display: block;
    margin: 0 2px;
    border-bottom: 1px solid #f4f4f4; }
    nav ul li a {
      display: block;
      position: relative;
      padding: 15px 30px;
      font-size: 1.4em;
      font-weight: 400;
      color: #888888;
      text-decoration: none;
      text-transform: uppercase;
      -webkit-transition: color 0.2s;
      transition: color 0.2s; }
      nav ul li a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 0;
        height: 1px;
        background: transparent;
        -webkit-transition: width 0.4s;
        transition: width 0.4s; }
      nav ul li a:hover {
        color: red; }
        nav ul li a:hover:before {
          width: 100%;
          background: red; }
      nav ul li a.selected {
        color: #49a6f5; }
        nav ul li a.selected:before {
          width: 100%;
          background: #49a6f5; }
      nav ul li a i.fa {
        display: none;
        margin-right: 10px; }
nav a.burgerIcon {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 60px;
  cursor: pointer;
  -webkit-transition: left 0.3s;
  transition: left 0.3s; }
  nav a.burgerIcon div {
    position: absolute;
    top: 50%;
    right: 15px;
    margin: -1px 0 0 0;
    width: 30px;
    height: 2px;
    background: #fff;
    opacity: 1;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    nav a.burgerIcon div:before, nav a.burgerIcon div:after {
      content: "";
      position: absolute;
      width: 30px;
      height: 2px;
      background: #fff;
      -webkit-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
      -webkit-transition: all 0.3s;
      transition: all 0.3s; }
    nav a.burgerIcon div:before {
      top: -10px; }
    nav a.burgerIcon div:after {
      top: 10px; }
nav .burgerOverlay {
  position: fixed;
  display: none;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 150;
  background: #000;
  background: rgba(0, 0, 0, 0.7); }

@media only screen and (max-width: 960px) {
  aside {
    position: absolute;
    top: -80px;
    margin: 10px;
    width: 60px;
    min-height: 60px;
    border-right: none;
    background: none; }

  nav ul {
    position: fixed;
    top: 0px;
    left: -240px;
    z-index: 170;
    margin: 0;
    padding: 0;
    width: 240px;
    height: 100%;
    background: #fff;
    -webkit-transition: left 0.3s;
    transition: left 0.3s; }
    nav ul li a:before, nav ul li a:after {
      display: none; }
  nav a.burgerIcon {
    display: block; }

  .active ul {
    left: 0; }
  .active a.burgerIcon {
    left: 240px;
    z-index: 200; }
    .active a.burgerIcon div {
      background: transparent; }
      .active a.burgerIcon div:before {
        top: 0px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
      .active a.burgerIcon div:after {
        top: 0px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }

  .burgerOverlay.active {
    display: block; }
 }

/**************************************************************************

CONTENT

*************************************************************************/
.container {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  width: 100%;
  height: 100%; }
  .container:before, .container:after {
    content: "";
    display: table; }
  .container:after {
    clear: both; }

.boxWhite {
  position: relative;
  margin-bottom: 15px;
  background: #fff;
  width: 100%;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  overflow: auto; }

.scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  background: red;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
  .scrollToTop:hover {
    text-decoration: none;
    background: #18b8e0; }

h1 {
  margin: 0px;
  padding: 20px 30px;
  font-size: 40px;
  font-weight: 300;
  color: #fff;
  background: red; }
  h1 .container {
    padding: 0 30px; }

h2 {
  clear: both;
  margin: 40px 0;
  border-left: 10px solid red;
  padding: 10px 15px;
  font-size: 25px;
  font-weight: 300;
  color: #888888;
  text-transform: uppercase;
  background-color: #F7F7F7; }

h3 {
  clear: both;
  margin: 30px 0;
  padding: 0 15px;
  font-size: 25px;
  font-weight: 400;
  color: red;
  text-transform: uppercase; }

h4 {
  clear: both;
  margin: 30px 0;
  padding: 0 15px;
  font-size: 20px;
  font-weight: 700;
  color: red;
  text-transform: uppercase; }

#content {
  margin-left: 25%;
  padding: 30px 30px;
  width: 75%;
  min-height: 100%;
  background: #fff; }
  #content:before, #content:after {
    content: "";
    display: table; }
  #content:after {
    clear: both; }
  #content img {
    display: block;
    margin: 40px 0;
    padding: 0px 15px;
    max-width: 100%; }
  #content p {
    margin: 30px 0;
    padding: 0 15px;
    font-size: 1.4em;
    line-height: 1.5em; }
  #content ul, #content ol {
    margin: 30px 0;
    padding: 0 15px 0 50px;
    font-size: 1.4em;
    line-height: 1.5em; }
  #content p a, #content ul a, #content ol a {
    color: #888888;
    font-weight: 700; }
    #content p a:hover, #content ul a:hover, #content ol a:hover {
      color: red; }
  #content .small {
    font-size: 1.2em; }

@media only screen and (max-width: 1160px) {
  h1 .container {
    padding: 0; }
 }

@media only screen and (max-width: 960px) {
  #content {
    margin-left: 0;
    width: 100%; }

  h1 {
    padding: 20px 30px 20px 90px; }
 }

@media only screen and (max-width: 480px) {
  h1 {
    padding: 27px 30px 27px 90px;
    font-size: 26px; }

  #content {
    padding: 30px 15px; }
 }

/**************************************************************************

 FORM

*************************************************************************/
.button {
  clear: both;
  display: table;
  margin: 45px auto;
  border: 0;
  border-radius: 2px;
  padding: 10px;
  min-width: 230px;
  color: #fff;
  font-size: 1.3em;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  background: red;
  cursor: pointer;
  outline: none; }
  .button:hover {
    background: #18b8e0;
    text-decoration: none; }

textarea, input {
  margin-bottom: 30px;
  font-size: 1.3em;
  outline: none;
  -webkit-appearance: none; }

textarea {
  resize: none;
  border: 1px solid #eee;
  padding: 10px; }
  textarea.textareaBig {
    height: 150px; }

label {
  display: block;
  color: red;
  line-height: 1.8em; }

select {
  display: block;
  margin-bottom: 30px;
  font-size: 1.3rem; }
  select:focus {
    outline: none; }

.inputDateMonth {
  width: 35px !important;
  text-align: center; }

.inputDateYear {
  width: 55px !important;
  text-align: center; }

.buttonsBox {
  text-align: center; }
  .buttonsBox .button {
    display: inline-block;
    margin: 0 0 15px 15px; }

@media only screen and (max-width: 578px) {
  #content .button {
    display: block;
    width: 100%;
    text-align: center; }
 }

/**************************************************************************

 MODAL WINDOW

*************************************************************************/
.modalWindow, .finestraModale {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  padding: 30px 0 0;
  width: 100%;
  height: 100%;
  /* per non rendere l'aspetto modale basta commentare questo attributo*/
  /*background: rgba(0, 0, 0, 0.6);*/ }
  .modalWindow .container, .finestraModale .container {
	  border: 1px solid red;
    border-radius: 3px;
    max-width: 600px;
    height: auto;
    max-height: 100%;
    padding: 30px 15px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch; }
    .modalWindow .container h1, .finestraModale .container h1 {
      background: none;
      box-shadow: none;
      height: auto;
      line-height: 1.2em; }

/**************************************************************************

 ACCORDION

*************************************************************************/
.accordionSection {
  clear: both; }
  .accordionSection:before, .accordionSection:after {
    content: "";
    display: table; }
  .accordionSection:after {
    clear: both; }
  .accordionSection .accordionTitle {
    position: relative;
    margin: 20px 0;
    padding-right: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }
    .accordionSection .accordionTitle:after {
      content: "\f077";
      font-family: "FontAwesome";
      position: absolute;
      right: 0;
      top: 50%;
      margin-top: -10px;
      padding: 0 20px;
      font-size: 20px;
      -webkit-transition: transform 0.3s;
      transition: transform 0.3s; }
    .accordionSection .accordionTitle:hover {
      padding-left: 20px; }
  .accordionSection.closed .accordionTitle:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  .accordionSection .accordionContent {
    padding: 20px 0; }

/**************************************************************************

 ARTICLE - JOB ADVERTISING

*************************************************************************/
article.jobAdv {
  margin: 0 0 30px;
  position: relative;
  width: 100%;
  /*max-width: 600px;*/ }
  article.jobAdv h2 {
    position: relative;
    margin: 0 0 10px;
    border: 0;
    padding-top: 20px;
    padding-right: 100px;
    border-bottom: 1px solid #EAEAEA;
    font-size: 2.0em;
    background: none;
    color: red; }
    article.jobAdv h2:before {
      content: "";
      position: absolute;
      left: 0;
      bottom: -1px;
      width: 0;
      height: 1px;
      background: transparent;
      -webkit-transition: width 1s;
      transition: width 1s; }
  article.jobAdv .detail {
    display: block;
    margin: 5px 20px;
    font-size: 1.3em;
    line-height: 1.5em; }
  article.jobAdv .reference {
    position: absolute;
    top: 10px;
    right: 10px;
    font-style: italic;
    font-size: 1.2em; }
  article.jobAdv .data {
    position: absolute;
    top: 25px;
    right: 10px;
    font-style: italic;
    font-size: 1.2em;
    color: #C0C0C0; }
  article.jobAdv .category {
    font-weight: 700; }
  article.jobAdv .description {
    color: #C0C0C0; }
  article.jobAdv a  {
    display: block;
    padding-bottom: 20px;
    background-color: #FAFAFA;
    border-radius: 5px;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s; }
    article.jobAdv a:hover {
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
      article.jobAdv a:hover h2:before {
        width: 100%;
        background: red; }

		article.jobAdv  .abstractAnnuncio {
    display: block;
    padding-bottom: 20px;
    background-color: #FAFAFA;
    border-radius: 5px;
    color: inherit;
	margin-top: -20px;
    text-decoration: none;
    box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s; }
    article.jobAdv a:hover {
      box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1); }
      article.jobAdv a:hover h2:before {
        width: 100%;
        background: red; }
		
		
.jobAdvDetailsList {
  padding: 0px 10px;
  max-width: 400px;
  border-bottom: 1px solid #ccc; }
  .jobAdvDetailsList span {
    display: block;
    margin: 0 0 20px;
    font-size: 1.4em; }
    .jobAdvDetailsList span strong {
      margin-right: 10px; }
    .jobAdvDetailsList span i {
      width: 30px;
      margin-right: 20px;
      font-size: 1.5em;
      color: red;
      text-align: center; }

/**************************************************************************

OVERRIDE COMPONENT

*************************************************************************/
#content .dxucControl img {
  margin: 0; }

/**************************************************************************

 PICKER MATERIALIZE MODS

*************************************************************************/
.picker__table {
  font-size: 1.4rem; }

.picker__weekday-display {
  background-color: red; }

.picker__date-display {
  background-color: red; }

.picker__year-display {
  color: #fff;
  color: rgba(255, 255, 255, 0.6); }

.picker__nav--prev:hover, .picker__nav--next:hover {
  background: red; }

.picker__day--selected.picker__day--outfocus, .picker__day--selected:hover.picker__day--outfocus, .picker--focused .picker__day--selected.picker__day--outfocus, button.picker__today:focus, button.picker__clear:focus, button.picker__close:focus {
  background: #b4e9f7; }

.picker__select--month, .picker__select--year {
  height: auto; }

.picker__day--selected, .picker__day--selected:hover, .picker--focused .picker__day--selected {
  background-color: red; }

.picker__weekday {
  font-size: 1.26rem; }

.picker__day--outfocus, .picker__day--infocus {
  padding: 1.05rem 0; }

.picker__close, .picker__today {
  color: red; }
  
  
  
  
  

/**************************************************************************

FOOTER

*************************************************************************/
footer {
  margin-top: 0px;
  border-top: 1px solid #eee;
  width: 100%;
  padding: 30px 0 30px;
  background: #E8E8E8; }
  footer:before, footer:after {
    content: "";
    display: table; }
  footer:after {
    clear: both; }
  footer img.logo {
    margin: 20px 15px 0px;
    width: 220px; }
  footer p {
    margin: 20px 15px;
    font-size: 1.2em;
    line-height: 1.5em; }
  footer ul.socialIcons {
    float: right;
    margin: 20px;
    list-style: none; }
    footer ul.socialIcons li {
      float: left;
      margin: 0 5px; }
      footer ul.socialIcons li a {
        padding: 10px;
        font-size: 2em;
        color: #888888;
        text-decoration: none;
        -webkit-transition: color 0.2s;
        transition: color 0.2s; }
        footer ul.socialIcons li a:hover {
          color: red; }
		  
		  
/*************************************************************/		  
.selezionaVoceMenu {
	
	color: red;
	

}


/* messaggio annuncio scaduto o archiviato */

#ContentPlaceHolder1_annuncioScadutoLabel{
	
	
	
	
	
}
		  
.SezioneRossa {
	
	border:1px solid red;
	color:red;
	
}



 #riquadroElencoAnnunciAttivi{
	 
	 /* per visualizzare la regola */
	 display:block;
	 padding-bottom: 15px;
	 
	 
 }
 
 

/* nuove pop up modali */
.modalWindow2, .finestraModale2 {

  display: none;

  position: fixed;

  top: 0;

  left: 0;

  z-index: 150;

  padding: 30px 0 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.6); }

  .modalWindow2 .container, .finestraModale2 .container {
border: 1px solid red;
    border-radius: 3px;

    max-width: 600px;

    height: auto;

    max-height: 100%;

    padding: 30px 15px;

    overflow-y: scroll;

    -webkit-overflow-scrolling: touch; }

    .modalWindow2 .container h1, .finestraModale2 .container h1 {

     /* background: none;*/

	 
	  background-color:white;
      box-shadow: none;

      height: auto;

      line-height: 1.2em; }
 







