/* ELEMENTI BASE */
html, body {margin: 0; border: 0; padding: 0;}
body {
    color: #666;
    font-size: 16px;
    /*font-family: 'Lato', 'sans-serif';*/
    font-family: 'Roboto', 'Open Sans', 'sans-serif';
    /*line-height: 23px;*/
    line-height: 18px;
    /*background-color: #FAFAFA;*/
    background-color: #FFF;
}
a {
    /* color: #1fae66; */
    color: #9e9e9e;
    transition: all .3s ease 0s;
}

a:hover, a:focus {
    text-decoration: none;
    /* color: #0D9C54; */
    color: #616161;
    outline: none;
}

/* DIMENSIONAMENTI BASE */
.container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.m-3 { margin-top: 1rem !important;margin-bottom: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.mgl-10 { margin-left: 10px !important; }
.mgr-10 { margin-right: 10px !important; }

.bd-red {color: #f85d2c !important;}

.bg-green { background-color: #1fae66 !important }
.bg-grey { background-color: #777777 !important; }

.cl-red {color: #f85d2c !important;}
.cl-white { color: #ffffff !important; }

.mgbt-0 {margin-bottom: 0!important;}
.mgtp-30 {margin-top: 30px !important;}

/* HELPERS */
.disabled, .disabled * {
    color: #e0e0e0 !important;
    cursor: default;
}

/* COMPONENTI */

/* -- form input checkbox & radio -- */
.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {margin-top: 0;}

.checkbox input[type=checkbox][disabled] + .text,
.checkbox-inline input[type=checkbox][disabled] + .text,
.radio input[type=radio][disabled] + .text,
.radio-inline input[type=radio][disabled] + .text {color:#b5b5b5;}


/* -- alert-dismissable -- */
.alert-dismissable .close {top: 0;}

/* -- nav -- */
.nav li a {
    padding: 7px 15px;
}

/* -- button -- */
.btn { /*padding: 6px 15px;*/ }

.btn.expandable {}
.btn.expandable .text {display: inline-block;width: 0;height:1.3em;vertical-align:text-bottom;transition: width .3s ease;overflow: hidden;}
.btn.expandable:hover .text {width: auto;}

.btn.btn-primary.inverse {color:#337ab7;background-color:#fff;}
.btn.btn-primary.inverse:hover {color:#fff;background-color:#286090;border-color: #204d74;}


.btn.btn-warning.inverse {color:#f0ad4e;background-color:#fff;}
.btn.btn-warning.inverse:hover {color:#fff;background-color:#ec971f;border-color: #d58512;}
/*.btn.btn-warning.inverse.disabled {color:#f0ad4ecc;background-color:#fff;}*/


.btn.btn-danger.inverse {color:#d9534f;background-color:#fff;}
.btn.btn-danger.inverse.disabled {color:#d9534fcc !important;border-color: #d43f3acc!important;background-color: #fff!important;}
.btn.btn-danger.inverse:hover {color:#fff;background-color:#c9302c;border-color: #ac2925;}
.btn.btn-danger.inverse.disabled:hover {}

.btn.vd_bg-linkedin.inverse {color:#2e8cc2;background-color:#fff !important;border: 1px solid #2e8cc2;}
.btn.vd_bg-linkedin.inverse:hover {color:#fff!important;background-color:#297dad!important;border-color:#297dad;}

.btn.vd_bg-yellow.inverse {color:#f89c2c;background-color:#fff !important;border: 1px solid #f89c2c;}
.btn.vd_bg-yellow.inverse:hover {color:#fff!important;background-color:#f79013!important;}

/* -- .vd_panel-menu -- */
.vd_panel-menu .menu.disabled {cursor: default;}

/* -- vd_input-wrapper -- */
.vd_input-wrapper .menu-icon {top:9px;}
.vd_input-wrapper.light-theme {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.vd_input-wrapper select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 6px 6px 7px 38px;
    background: none;
    border: none;
    /*border-radius: 0;*/
    box-shadow: none;
}
.vd_input-wrapper select.form-control + .caret {
    /*font: normal normal normal 14px/1 FontAwesome;*/
    display: inline-block;
    position: absolute;
    right: 8px;
    top: 15px;
    border-top-width: 6px;
    border-left-width: 6px;
    border-right-width: 6px;
    transition: transform ease .3s;
}
/*.vd_input-wrapper select.form-control:focus {
    box-shadow: inset 0 0 8px rgba(102,175,233,1), 0 0 8px rgba(102,175,233,1)
}*/
.vd_input-wrapper select.form-control:active + .caret {
    transform: rotate(180deg);
}
/*.vd_input-wrapper select.form-control + .caret:before {
    content: "\f0d7";
}*/
.vd_input-wrapper textarea {border: none;width: 100% !important;}

/* -- radio -- */
.vd_radio {padding-left: 0;}
.vd_radio input[type=radio] { display: none; }
.vd_radio label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 15px;
    font-size: 13px;
    margin-bottom: 6px;
    color: #777a80;
}
.vd_radio label:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    border: 1px solid #c2c6cb;
    border-radius: 99px;
}
.vd_radio label:after {
    font-size: 13px;
    content: "";
    text-align: center;
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    -o-transform: scale(0);
    -ms-transform: scale(0);
    -moz-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    border-radius: 99px;
    left: 0px;
    top: 0;
    background-color: #6f7b8a;
    border: 1px solid #6f7b8a;
}
.vd_radio.radio-success label:after {
    background-color: #1FAE66;
    border: 1px solid #1FAE66;
}
.vd_radio input[type=radio]:checked + label { color: #4d5056; }
.vd_radio input[type=radio]:checked + label:before { border: 1px solid #8e9095; }
.vd_radio.radio-success input[type=radio]:checked + label:before { border: 1px solid #1FAE66; }
.vd_radio input[type=radio]:checked + label:after {
    -o-transform: scale(0.63);
    -ms-transform: scale(0.63);
    -moz-transform: scale(0.63);
    -webkit-transform: scale(0.63);
    transform: scale(0.63);
    line-height: 18px;
    -o-transition: -o-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -ms-transition: -ms-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -moz-transition: -moz-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -webkit-transition: -webkit-transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -o-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -ms-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -moz-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    -webkit-transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
    transition: transform 0.1s 0s cubic-bezier(0.455, 0.03, 0.215, 1.33);
}

/* -- checkbox -- */
.vd_checkbox label::after {left:-1px;top:3px;}
.vd_checkbox.checkbox-primary input[type=checkbox]:checked + label:before {
  background-color: #337ab7;
  border: 1px solid #337ab7;
}

/* -- checkbox e radio -- */
.vd_radio label,
.vd_checkbox label {font-weight: normal;}

/* -- progres -- */
.progress {
    background-image: -webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);
    background-image: -o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));
    background-image: linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
    background-repeat: repeat-x;
}


/* -- form wizard -- */
.form-wizard .nav > li > a {
    color: #AAA;
    padding: 15px;
    text-align: center;
}

.form-wizard .nav .menu-icon {
    border-radius: 30px;
    display: block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    margin: 0 auto 5px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    font-size: 16px;
    background: #F5F5F5;
    color: #AAA;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    background: none;
}

.form-wizard .nav > li.active .menu-icon {
    background: #0F4373;
    color: #FFF;
}
/*.form-wizard .wizard .btn {
    background-color: #aaa;
    color: #ffffff;
}*/


/* -- panel -- */
.panel-default {border-color: #dadce0;}


/* SEZIONI DI PAGINA */
.header-wrapper { position: relative; }
.header { border-top: 4px solid #1a80b6; }

.header-wrapper {clear:both;margin-left:-15px;margin-right: -15px;}
.header {padding-left: 30px;padding-right: 30px;}

.logo {position: relative;display:inline-block;}
.logo img {max-width: 100%; max-height: 100%;max-height: 100px;}

.form-horizontal .vd_radio {padding-top: 4px;}

#beta-label {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 90px;
    height: 100px;
    background: transparent url('/img/beta_label.png') top right no-repeat;
    background-size: contain;
    z-index: 99;
}

.clearbox {
    color: #333;

    padding: 43px 50px 26px;
    position: relative;

    background: #fff;
    border: 1px solid;
    border-color: #e5e5e5 #dbdbdb #d2d2d2;
    -webkit-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
    -moz-box-shadow: rgba(0,0,0,0.3) 0 1px 3px;
    box-shadow: rgba(0,0,0,0.3) 0 1px 3px;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -khtml-border-radius: 4px;
}

.flag-icon {/*display: table;*//*margin:-6px 0;*/}
.flag-icon img {width: 22px;/*display: table-cell;*/vertical-align: middle;margin-right: 1px;max-width: none;}
.flag-icon span {/*display: table-cell;*/vertical-align: middle;min-width:50px;line-height: 22px;}
/*.flag-icon span span {width:100%;}*/


.footer {
  width:100%;
  margin-top: 15px;
  margin-bottom:10px;
  font-size: 12px;
  color:#999;
  text-align: center;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer > * {display: flex;}
.footer .footer-legal {justify-content: space-between;}
.footer .footer-legal > * {margin-right: 15px;/*display: inline-block;*/white-space: nowrap;}
.footer .footer-legal > *:last-child {margin-right: 0;}
.footer .footer-legal-copyright {display: flex;flex-wrap: wrap;}
.footer .footer-legal-links {/*float:left;margin-right: 25px;display: inline-block;*/}
.footer .footer-legal-links > a {
  display: inline-block;
  border-right: 1px solid #d6d6d6;
  margin-right: 5px;
  padding-right: 5px;
  white-space: nowrap;
}
.footer .footer-legal-links > a:last-child {border-right: 0;margin-right: 0;padding-right: 0;}

.footer .footer-language {/*float:left;*//*display: inline-block;*/white-space: nowrap;}
.footer .footer-language > * {margin-right: 15px;}
.footer .footer-language > *:last-child {margin-right: 0;}
.footer .footer-language #debug-translator {line-height: 22px;}
.footer .footer-language #debug-translator:hover {color:#23527c;}

body.maintenance {}

/* -- grid system -- */

.visible-xl-block, .visible-xxl-block, .visible-uxl-block {display: none !important;}

@media (min-width: 1440px) {
  .visible-lg-block { display: none !important; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  .visible-xl-block { display: block !important; }
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .visible-xxl-block { display: block !important; }
}

@media (min-width: 2560px) {
  .visible-uxl-block { display: block !important; }
}

@media (min-width: 1440px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }
  .col-xl-12 { width: 100%; }
  .col-xl-11 { width: 91.66666667%; }
  .col-xl-10 { width: 83.33333333%; }
  .col-xl-9 { width: 75%; }
  .col-xl-8 { width: 66.66666667%; }
  .col-xl-7 { width: 58.33333333%; }
  .col-xl-6 { width: 50%; }
  .col-xl-5 { width: 41.66666667%; }
  .col-xl-4 { width: 33.33333333%; }
  .col-xl-3 { width: 25%; }
  .col-xl-2 { width: 16.66666667%; }
  .col-xl-1 { width: 8.33333333%; }
  .col-xl-pull-12 { right: 100%; }
  .col-xl-pull-11 { right: 91.66666667%; }
  .col-xl-pull-10 { right: 83.33333333%; }
  .col-xl-pull-9 { right: 75%; }
  .col-xl-pull-8 { right: 66.66666667%; }
  .col-xl-pull-7 { right: 58.33333333%; }
  .col-xl-pull-6 { right: 50%; }
  .col-xl-pull-5 { right: 41.66666667%; }
  .col-xl-pull-4 { right: 33.33333333%; }
  .col-xl-pull-3 { right: 25%; }
  .col-xl-pull-2 { right: 16.66666667%; }
  .col-xl-pull-1 { right: 8.33333333%; }
  .col-xl-pull-0 { right: auto; }
  .col-xl-push-12 { left: 100%; }
  .col-xl-push-11 { left: 91.66666667%; }
  .col-xl-push-10 { left: 83.33333333%; }
  .col-xl-push-9 { left: 75%; }
  .col-xl-push-8 { left: 66.66666667%; }
  .col-xl-push-7 { left: 58.33333333%; }
  .col-xl-push-6 { left: 50%; }
  .col-xl-push-5 { left: 41.66666667%; }
  .col-xl-push-4 { left: 33.33333333%; }
  .col-xl-push-3 { left: 25%; }
  .col-xl-push-2 { left: 16.66666667%; }
  .col-xl-push-1 { left: 8.33333333%; }
  .col-xl-push-0 { left: auto; }
  .col-xl-offset-12 { margin-left: 100%; }
  .col-xl-offset-11 { margin-left: 91.66666667%; }
  .col-xl-offset-10 { margin-left: 83.33333333%; }
  .col-xl-offset-9 { margin-left: 75%; }
  .col-xl-offset-8 { margin-left: 66.66666667%; }
  .col-xl-offset-7 { margin-left: 58.33333333%; }
  .col-xl-offset-6 { margin-left: 50%; }
  .col-xl-offset-5 { margin-left: 41.66666667%; }
  .col-xl-offset-4 { margin-left: 33.33333333%; }
  .col-xl-offset-3 { margin-left: 25%; }
  .col-xl-offset-2 { margin-left: 16.66666667%; }
  .col-xl-offset-1 { margin-left: 8.33333333%; }
  .col-xl-offset-0 { margin-left: 0; }
}

@media (min-width: 1920px) {
  .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
    float: left;
  }
  .col-xxl-12 { width: 100%; }
  .col-xxl-11 { width: 91.66666667%; }
  .col-xxl-10 { width: 83.33333333%; }
  .col-xxl-9 { width: 75%; }
  .col-xxl-8 { width: 66.66666667%; }
  .col-xxl-7 { width: 58.33333333%; }
  .col-xxl-6 { width: 50%; }
  .col-xxl-5 { width: 41.66666667%; }
  .col-xxl-4 { width: 33.33333333%; }
  .col-xxl-3 { width: 25%; }
  .col-xxl-2 { width: 16.66666667%; }
  .col-xxl-1 { width: 8.33333333%; }
  .col-xxl-pull-12 { right: 100%; }
  .col-xxl-pull-11 { right: 91.66666667%; }
  .col-xxl-pull-10 { right: 83.33333333%; }
  .col-xxl-pull-9 { right: 75%; }
  .col-xxl-pull-8 { right: 66.66666667%; }
  .col-xxl-pull-7 { right: 58.33333333%; }
  .col-xxl-pull-6 { right: 50%; }
  .col-xxl-pull-5 { right: 41.66666667%; }
  .col-xxl-pull-4 { right: 33.33333333%; }
  .col-xxl-pull-3 { right: 25%; }
  .col-xxl-pull-2 { right: 16.66666667%; }
  .col-xxl-pull-1 { right: 8.33333333%; }
  .col-xxl-pull-0 { right: auto; }
  .col-xxl-push-12 { left: 100%; }
  .col-xxl-push-11 { left: 91.66666667%; }
  .col-xxl-push-10 { left: 83.33333333%; }
  .col-xxl-push-9 { left: 75%; }
  .col-xxl-push-8 { left: 66.66666667%; }
  .col-xxl-push-7 { left: 58.33333333%; }
  .col-xxl-push-6 { left: 50%; }
  .col-xxl-push-5 { left: 41.66666667%; }
  .col-xxl-push-4 { left: 33.33333333%; }
  .col-xxl-push-3 { left: 25%; }
  .col-xxl-push-2 { left: 16.66666667%; }
  .col-xxl-push-1 { left: 8.33333333%; }
  .col-xxl-push-0 { left: auto; }
  .col-xxl-offset-12 { margin-left: 100%; }
  .col-xxl-offset-11 { margin-left: 91.66666667%; }
  .col-xxl-offset-10 { margin-left: 83.33333333%; }
  .col-xxl-offset-9 { margin-left: 75%; }
  .col-xxl-offset-8 { margin-left: 66.66666667%; }
  .col-xxl-offset-7 { margin-left: 58.33333333%; }
  .col-xxl-offset-6 { margin-left: 50%; }
  .col-xxl-offset-5 { margin-left: 41.66666667%; }
  .col-xxl-offset-4 { margin-left: 33.33333333%; }
  .col-xxl-offset-3 { margin-left: 25%; }
  .col-xxl-offset-2 { margin-left: 16.66666667%; }
  .col-xxl-offset-1 { margin-left: 8.33333333%; }
  .col-xxl-offset-0 { margin-left: 0; }
}

@media (min-width: 2560px) {
  .col-uxl-1, .col-uxl-2, .col-uxl-3, .col-uxl-4, .col-uxl-5, .col-uxl-6, .col-uxl-7, .col-uxl-8, .col-uxl-9, .col-uxl-10, .col-uxl-11, .col-uxl-12 {
    float: left;
  }
  .col-uxl-12 { width: 100%; }
  .col-uxl-11 { width: 91.66666667%; }
  .col-uxl-10 { width: 83.33333333%; }
  .col-uxl-9 { width: 75%; }
  .col-uxl-8 { width: 66.66666667%; }
  .col-uxl-7 { width: 58.33333333%; }
  .col-uxl-6 { width: 50%; }
  .col-uxl-5 { width: 41.66666667%; }
  .col-uxl-4 { width: 33.33333333%; }
  .col-uxl-3 { width: 25%; }
  .col-uxl-2 { width: 16.66666667%; }
  .col-uxl-1 { width: 8.33333333%; }
  .col-uxl-pull-12 { right: 100%; }
  .col-uxl-pull-11 { right: 91.66666667%; }
  .col-uxl-pull-10 { right: 83.33333333%; }
  .col-uxl-pull-9 { right: 75%; }
  .col-uxl-pull-8 { right: 66.66666667%; }
  .col-uxl-pull-7 { right: 58.33333333%; }
  .col-uxl-pull-6 { right: 50%; }
  .col-uxl-pull-5 { right: 41.66666667%; }
  .col-uxl-pull-4 { right: 33.33333333%; }
  .col-uxl-pull-3 { right: 25%; }
  .col-uxl-pull-2 { right: 16.66666667%; }
  .col-uxl-pull-1 { right: 8.33333333%; }
  .col-uxl-pull-0 { right: auto; }
  .col-uxl-push-12 { left: 100%; }
  .col-uxl-push-11 { left: 91.66666667%; }
  .col-uxl-push-10 { left: 83.33333333%; }
  .col-uxl-push-9 { left: 75%; }
  .col-uxl-push-8 { left: 66.66666667%; }
  .col-uxl-push-7 { left: 58.33333333%; }
  .col-uxl-push-6 { left: 50%; }
  .col-uxl-push-5 { left: 41.66666667%; }
  .col-uxl-push-4 { left: 33.33333333%; }
  .col-uxl-push-3 { left: 25%; }
  .col-uxl-push-2 { left: 16.66666667%; }
  .col-uxl-push-1 { left: 8.33333333%; }
  .col-uxl-push-0 { left: auto; }
  .col-uxl-offset-12 { margin-left: 100%; }
  .col-uxl-offset-11 { margin-left: 91.66666667%; }
  .col-uxl-offset-10 { margin-left: 83.33333333%; }
  .col-uxl-offset-9 { margin-left: 75%; }
  .col-uxl-offset-8 { margin-left: 66.66666667%; }
  .col-uxl-offset-7 { margin-left: 58.33333333%; }
  .col-uxl-offset-6 { margin-left: 50%; }
  .col-uxl-offset-5 { margin-left: 41.66666667%; }
  .col-uxl-offset-4 { margin-left: 33.33333333%; }
  .col-uxl-offset-3 { margin-left: 25%; }
  .col-uxl-offset-2 { margin-left: 16.66666667%; }
  .col-uxl-offset-1 { margin-left: 8.33333333%; }
  .col-uxl-offset-0 { margin-left: 0; }
}


/* -- flex -- */
.d-flex {
  display: -ms-flexbox!important;
  display: flex!important;
}
.d-inline-flex {
  display: -webkit-inline-box!important;
  display: -ms-inline-flexbox!important;
  display: inline-flex!important;
}
.flex-row {
  -ms-flex-direction: row!important;
  flex-direction: row!important;
}
.flex-column {
  -ms-flex-direction: column!important;
  flex-direction: column!important;
}
.justify-content-start {
  -ms-flex-pack: start!important;
  justify-content: flex-start!important;
}
.justify-content-end {
  -ms-flex-pack: end!important;
  justify-content: flex-end!important;
}
.justify-content-center {
  -ms-flex-pack: center!important;
  justify-content: center!important;
}
.justify-content-between {
  -ms-flex-pack: justify!important;
  justify-content: space-between!important;
}
.justify-content-around {
  -ms-flex-pack: distribute!important;
  justify-content: space-around!important;
}
.align-items-center {
    -webkit-box-align: center!important;
    -ms-flex-align: center!important;
    align-items: center!important;
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
}

