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


.mobile
{
    display: none;
}

.nomobile
{
    display: none;
}


/* RESET
---------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline; }

ins {
  background-color: #ffff99;
  color: black;
  text-decoration: none; }

mark {
  background-color: #ffff99;
  color: black;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle;
}

/* COLORI
---------------------------------- */

/*
- Grigio scuro #333333 (testo)
- Grigio chiaro #DDDDDD
- Verde acido #B9C01D
- Azzurro #2394C4 (link)
- Azzurro scuro #186687 (link)
*/


/* BASE
----------------------------------*/
html, body
{
    width: 100%;
    min-height: 100%;
}

body
{
    color: #5d5d5d;
    font-family: Lato, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    flex-grow: 1;
}


html
{
    display: flex;
}



/* TIPOGRAFIA
---------------------------------- */

h1, h2, h3, h4, h5, h6
{
    margin: 0px;
    line-height: 1.5em;
}

h1
{
    font-size: 30px;
}

h2
{
    font-size: 24px;
}

h3
{
    font-size: 18px;
}

h4
{
    font-size: 15px;
}

h5, h6
{
    font-size: 13px;
}

h6
{
    color: #676767;
    text-transform: uppercase;
}

p
{
    margin: 0 0 9px;
        line-height: 1.5em;
}

small
{
    color: #999999;
    font-size: 12px;
}

blockquote
{
    border-left: 5px solid #DDDDDD;
    margin: 0 0 18px;
    padding: 0 0 0 15px;
}

.blockquote-right
{
    border-left: 0 none;
    border-right: 5px solid #EEEEEE;
    float: right;
    padding-left: 0;
    padding-right: 15px;
}

ul, ol {
    margin: 0px 0px 10px 30px;
    padding: 0;
}

ul.unstyled, ol.unstyled {
    list-style: none outside none;
    margin-left: 0px;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small
{
    font-weight: normal;
    font-size: 14px;
}

h1 small
{
    font-size: 18px;
    font-weight: 300;
}

p.lead
{
    font-size: 20px;
    font-weight: 200;
    line-height: 27px;
    margin-bottom: 18px;
}


.ag-left
{
    text-align: left;
}

.ag-right
{
    text-align: right;
}

.ag-center
{
    text-align: center;
}

.right
{
    float: right;
}

.left
{
    float: left;
}

.indented-element, .sortable-contents .indented-element
{
    padding-left: 25px;
}

.disabled-element
{
    color: #999999;
}

/* LINKS
---------------------------------- */

a
{
    color: #008ac2;
}

a:hover
{
    color: #008ac2;
    text-decoration: none;
}

/* STRUTTURA
-----------------------------------------*/

#wrapper
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}

header
{
  background: #fff;
  height: 66px;
  padding: 0 30px;
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 999;
  box-shadow: 0px 0px 10px #dadada;
}

footer
{
  margin: 0px;
  padding: 20px 40px;
  background: #d9dbdd;
}


header p,
footer p
{
    margin: 0px;
}

.logo-header
{
    width: 200px;
    height: 46px;
    background: transparent url(../images/layout/logo-header.png) no-repeat center center;
    background-size: contain;
}


#wrapper-not-logged
{
    background: #f8f8f8;
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content-wrapper
{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex: 1;
    margin: 0px;
}

#content-wrapper-box
{
    display: block;
    position: relative;
    background: transparent;
    color: #d2d2d2;
    padding: 0;
    width: 490px;
    height: auto;
    text-align: left;
    border: 1px solid #e5e5e5;
}

#page-header
{
  margin: 0px;
  padding: 0;
  display: block;
  min-height: 44px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

#page-header-title 
{
    margin-bottom: 30px;
}

#page-header-actions
{
    text-align: right;
}

#page-header-actions .btn
{
    margin-bottom: 10px;
}

#page-header h1
{
  font-size: 26px;
  font-weight: 500;
  line-height: 28px;
  margin: 0px;
  color: #010101;
}


#page-header h1 small
{
    margin-left: 10px;
    text-transform: none;
    font-weight: 500;
}


#column-left
{
  position: relative;
  z-index: 99;
  padding: 0;
  background: #fff;
  color: #fff;
  flex-grow: 0;
  box-shadow: 0px 0px 10px #dadada;
  width: 165px;
  min-width: 165px;
  max-width: 165px;
}

#main
{
  flex-grow: 1;
  padding: 0;
  order: 0;
  background: #f8fafc url(../images/layout/bg-internal.jpg) no-repeat left top;
  max-width: 92%;
}


#column-right
{
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0px 0px 10px #dadada;
  flex-grow: 0;
  color: #fff;
  position: relative;
  display: none;
  order: -1;
}

.btn, .table-admin a.btn
{
    border-radius: 1px;
    background: #6d965d;
    color: #fff;
    font-size: 15px;
    line-height: 15px;
    padding: 11px 16px 10px 16px;
    text-decoration: none;
    display: inline-block;
    width: auto;
    font-weight: normal;
    white-space: nowrap;
    border: none;
}


.btn .fa
{
    font-size: 18px;
    float: left;
    margin: 0 7px 0 0;
}

.btn-alternate
{
    background-color: #f1f1f1;
    color: #5d5d5d;
}

.btn-secondary
{
    background-color: #f1f1f1;
    color: #5d5d5d;
}

.btn.btn-delete 
{
    background: red;
    color: #fff;
}

.btn:hover
{
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}


.btn-icon:hover
{
    text-decoration: none;
}

.clearfix {
    clear: both;
}

td.td-action .fa {
    font-size: 18px;
}

/* FORM
---------------------------------- */

form
{

}


input, select, textarea, button
{
    font-family: Open Sans, sans-serif;
    color: #40494d;
}

input, select, textarea
{
  border: 1px solid #d8d8d8;
  padding: 10px;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 4px;
  background: #f8fafc;
}

.ws-form-field
{
   width: 60%; 
}

.ws-form.disabled input, 
.ws-form.disabled select 
{
    border: none;
}

.ws-form.disabled .ws-form-field.long-field,.ws-form.disabled .ws-form-field.medium-field
{
    width: 60%;
}

.ws-form.disabled .form-fieldset.form-collection-element .form-field
{
    width: 30% !important;
}

.ws-form .ws-form-collection .btn
{
    margin-top: 10px;
    padding: 5px;
    font-size: 13px;
}

.ws-form .form-field-collection-container {
    padding: 10px;
    border: 1px solid #dedede;
    min-height: 45px;
}

.ws-form .form-field-collection-container legend {
    background-color: #f0f8ff;
    padding: 10px;
    color: #008ac2;
    margin: 0 0 20px;
}

.ws-form.disabled .ws-form-dropdown-text 
{
    display: inline;
    width: 70%;
}

.ws-form.disabled .required
{
    display: none;
}

.ws-form label.radio-label 
{
    display: inline;
}

label .required 
{
    vertical-align: middle;
}

.veryshort-field
{
    width:10%;
}

.small-field
{
    width: 20%;
}

.short-field
{
    width: 25%;
}

.medium-field
{
    width: 45%;
}

.long-field
{
    width: 75%;
}

.verylong-field
{
    width: 93%;
}

.content-container.master_configs .short-field
{
   width: 40%;
}

.content-container.master_configs textarea
{
  width: 40%;
  min-height: 90px;
}

table input, table select, table textarea
{
    border: 1px solid #e7e7e7;
    background: #fff;
}

option
{
    padding: 0px 5px;
}

input:focus, textarea:focus, select:focus
{

}

select, .input-file
{
    line-height: 13px;
}

.input-file
{
    box-shadow: none;
    width: auto;
}

input[type=radio], input[type=checkbox]
{
    vertical-align: top;
    width: auto;
}

label
{
    display: block;
    padding-bottom: 3px;
    font-weight: 600;
}

.lb-inline
{
    display: inline;
    margin-right: 5px;
}

.lb-checkbox, .lb-radio
{
    font-weight: normal;
}

label.radio-label input[type=radio] 
{
    vertical-align: middle;
}

.required
{
    color: #CE453E;
}


.form-field-wrap 
{
    display: flex;
    width: 100%;
}

.form-fieldset
{
  padding: 0;
  margin-bottom: 8px;
  margin: 15px 0;
}

.form-fieldset legend
{
  color: #008ac2;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  padding: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  float: left;
}

.form-fieldset legend  a
{
    text-decoration: none;
}

.form-fieldset .form-fieldset-int
{
      display: flex;
      flex-wrap: wrap;
      padding: 10px 0 0 0;
      clear: both;
      width: 100%;
}

.form-fieldset-int label
{
  vertical-align: top;
  color: #a1a0a0;
  font-weight: 400;
  width: 25%;
  margin: 0;
  font-size: 12pt;
  text-align: left;
      margin: 0 20px 0 0;
}

.form-fieldset-int .form-field-error,.form-field-help,.form-field-info
{
    margin-left: 160px;
}

/* MESSAGGI
---------------------------------- */
.message
{
    margin: 10px auto 30px;
    padding: 10px;
    color: #fff;
}

.message-error
{
    background-color: #CE453E;
    color: #FFFFFF;
}

.message-ok
{
    background-color: #5f9425;
}
.message-alert
{
    background-color: #b98e00;
}

.message-info
{
    background-color: #e7e7e7;
    color: #000;
}

.form-field-flag
{
    width: 20px;
    margin-left: 5px;
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
}

.form-field-flag.lb-vtop
{
    vertical-align: top;
}

.gantt-cell.has-errors {
    border: 1px solid red;
    background-color: red  !important
}

.gantt.gantt-employee.has-errors{
    border: 1px solid red;
}


.form-field-error
{
    color: #CE453E;
    display: block;
}

.form-field-help,
.form-field-info
{
    font-size: 14px;
    margin-left: 160px;
    color: #000000;
    font-style: italic;
    font-weight: 500;
    width: 100%;
    display: block;
}


.form-field-help .fa,
.form-field-info .fa
{
    color: #000;
    font-size: 13px;
    margin-right: 5px;
}

label .lang-flag
{
    display: none;
}

.autogrow
{
    resize: none;
    min-height: 50px;
    height: 50px;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
}


/* LOGIN */

#login-form-container
{
    background: #2e2c38;
    padding: 30px 50px;
    box-sizing: border-box;
}

#login-logo-container
{
    background: #fff;
    padding: 20px 50px;
}

#login-form-container label
{
    text-align: left;
    font-weight: normal;
    padding: 8px 0 0 0;
    color: #d2d2d2;
}


#login-form-container form
{
    display: inline-block;
    padding: 0;
    width: 100%;
}

#login-form-container input:not([type=submit])
{
    border: none;
    padding: 9px;
    background: #fff;
    border-radius: 1px;
}

#login-submit, #login-form-container .btn, #login-form-container .btn:hover
{
    color: #fff;
    text-decoration: none;
    padding: 11px 16px 10px 16px;
    box-sizing: border-box;
}

#login-form-container .btn-alternate, #login-form-container .btn-alternate:hover
{
    color: #5d5d5d;
}

#login-form-container label
{
    display: inline-block;
    width: 95px;
    float: left;
}

#login-form-container input:not([type=submit])
{
    width: 295px;
}

input[type=submit]:disabled, button:disabled 
{
    background: grey !important;
    opacity: 0.3;
    cursor: wait !important;
}

.login-logo
{
    width: 100%;
    height: 70px;
    background: transparent url(../images/layout/logo-header.png) no-repeat center center;
    background-size: contain;
}


#user-recovery-password-submit
{
    float: right;
}

#user-box
{
    width: 100%;
    background: #5a5863;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#user-box-avatar
{
    width: 36px;
    height: 36px;
    padding-right: 20px;
    flex-grow: 0;
    font-size: 36px;
}

#user-box-username
{
    flex-grow: 1;
}

#user-box-username a,
#user-box-username a:hover
{
    color: #fff;
    text-decoration: none;
}



/* MENU */

#menu-top-mobile
{
    padding: 0 20px 20px 20px;
    background-color: #fff;
}

.slicknav_btn
{
    width: 100%!important;
    border: none!important;
    background: #eaeaea url(../images/layout/espand-icon.png) no-repeat 98% center !important;
    padding: 10px!important;
    margin: 0!important;
    border: none!important;
    border-radius: 0px!important;
}

.slicknav_menu
{
    background: transparent!important;
    padding: 0px!important;
    font-size: 14pt!important;
}

.slicknav_menu .slicknav_menutxt
{
    color: #707173!important;
    text-shadow: none!important;
}

.slicknav_menu .slicknav_icon
{
    display: none!important;
}

.slicknav_nav a
{
    padding: 10px!important;
    margin: 1px 0 0 0!important;
    background-color: #2e83ba;
}

.slicknav_nav a a
{
    padding: 10px!important;
    margin: 0!important;
}

.slicknav_nav a:hover
{
    border-radius: 0px!important;
    background-color: #4293c8!important;
    color: #fff!important;
}

.user-menu-container
{
    float: right;
    display: inline-block;
    margin: 0px;
}

.user-menu-container a
{
    color: #575757;
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: normal;
    text-align: center;
    display: block;
}

.user-menu-container a .fa
{
    display: block;
    font-size: 24px;
    color: #008ac2;
}

.user-menu-container a#menu-account .fa,
.user-menu-container a#menu-users .fa
{
    font-size: 22px;
}


#menu-top_menu
{
    margin: 0;
    padding: 0;
    display: table;
    margin: 0px auto;
}

#menu-top_menu li
{
    padding: 0 12px;
    display: table-cell;
    float: none;
    vertical-align: bottom;
    height: 43px;
    width: 85px;
}

#menu-top_menu a
{
    padding: 0px;
}

#menu-top_menu a:hover
{
    opacity: 0.5;
}

.menu li
{
    list-style-type: none;
    float: left;
    padding: 0px;
    margin: 0px;
}

.slicknav_nav .fa
{
    display: none;
}

#page-header-actions .btn
{
    margin-left: 10px;
}


/* TABELLE */

thead tr
{
    border: none;
}

tr {
    background: #fff;
}

tr:nth-child(2n+2)
{
    background: #f4f4f4;
}

th, td
{
  font-size: 16px;
  font-weight: 400;
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
  color: #3e3e3e;
}

td {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

td:first-child {
    border-left: 1px solid #ececec;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

td:last-child {
    border-right: 1px solid #ececec;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    padding-right: 15px!important;
}

table .td-action {
    padding: 0 5px;
}


thead th
{
    vertical-align: middle;
}

th
{
  background: transparent;
  color: #008ac2;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

th a, th a:hover
{
    color: #008ac2;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}


/* TABELLE LISTE */
.table
{
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0 3px;
  max-width: 100%;
  font-size: 1em;
  width: 100%;
}

.table-admin a.btn,
.filters-row .btn
{
    font-size: 12px;
    padding: 3px 6px;
    line-height: 14px;
    background-color: #008ac2;
    color: #fff;
    border: none;
}


.table-admin th a.btn
{
  background-color: #008ac2;
  color: #ffffff;
}


.filters-row td
{
    background: #c2e3f0;
    border: none;
}

.table-admin a.btn, .filters-row .btn, .table-admin a.btn {
    font-size: 12px!important;
    padding: 3px 6px!important;
    line-height: 13px!important;
    color: #fff;
    text-transform: uppercase;
    border: none;
    font-weight: 600;
    height: auto;
}

.table-admin .filters-last-column
{
    width: 1%;
    min-width: 1%;
    max-width: 1%;
    text-align: center;
}


.table-admin .last-column
{
    text-align: right;
}


.filters-row input, .filters-row select
{
    font-size: 12px;
    padding: 3px;
    height: 25px;
    border: none;
}

td.td-action, td.td-identifier
{
    width: 22px;
    text-align: center;
    vertical-align: middle;
}

.table-admin th .icon-sort
{
  order: -1;
  margin: 0 5px 0 0;
  color: #dcdcdc;
  line-height: 8px;
}

.table-admin th .fa-sort-up
{
    top: 7px;
}

th a, td a {
    color: #3e3e3e;
    text-decoration: none;
}

th {
    padding: 0px 15px 5px 15px;
}

tr.table-footer
{
    background: #c2e3f0;
}

tr.table-footer td 
{
    font-weight: bold;
    padding: 10px;
}

/* paginazione */

.pagination
{
    text-align: center;
    margin-top: 10px;
}

.pagination ul
{
    margin: 0px;
}

.pagination li
{
    display: inline-block;
    list-style-type: none;
    padding-right: 5px;
}

.pagination a
{
    padding: 4px 8px;
    text-decoration: none;
    border: 1px solid #ddd;
}

li.pagination-active
{
    padding: 4px 10px;
    font-weight: bold;
}

.pagination-pager
{
    text-align: right;
    width: 20%;
    float: right;
}

.pagination-links
{
    text-align: center;
    width: 80%;
    float: left;
    margin-bottom: 0px;
}

.secondary-title
{
    display: block;
    font-weight: 700;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 10px;
}

.clean-list
{
    margin-bottom: 30px;
}

.with-checkbox
{
    list-style-type: none;
    margin-bottom: 10px;
}

.with-checkbox .form-field-help
{
    margin-left: 22px;
}

.enabled
{
    color: #6d965d;
}

.disabled
{
    color: #5d5d5d;
}

#template-edit .template-vars
{
    display: block;
    margin: 10px 0;
    clear: both;
    float: none;
}

#template-edit label .lang-flag
{
    margin-left: 5px;
}

#template-edit label
{
    float: none;
    clear: both;
}

#template-edit .label-textarea,
.form-fieldset-int label.lb-100
{
    float: none;
    clear: both;
    width: 100%;
}

.form-fieldset-int label.lb-50
{
	width: 50%;
}

.form-field
{
    margin-bottom: 20px;
    clear: both;
}


.form-fieldset-int label,
#template-edit .label-textarea
{
    width: 140px;
}

.editor-mini-container
{

}

#template-edit .template-vars
{
  width: 100%;
}

#template-edit .form-field {
    display: block !important;
}

.form-fieldset-int .form-field-error
{
    margin-left: 160px;
}

.iblock
{
    display: inline-block;
}

.logo-header
{
    width: 200px;
    float: left;
}

#template-edit .multilanguage .template-vars,
.multilanguage .form-fieldset-int .form-field-error,
.multilanguage .editor-mini-container
{
    margin-left: 202px;
}


.translate-input
{
    width: 50%;
}

#wrapper-not-logged {
    background: #eeeeee url(../images/layout/login-bg.png) no-repeat top left;
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

#content-wrapper-box {
    width: 490px;
    height: auto;
    border: 1px solid #d3d3d3;
    border-radius: 4px;
    box-shadow: 0px 0px 10px #dadada;
}

#login-logo-container {
    background: #fff;
    padding: 20px 50px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

#login-form-container {
    background: #fff url(../images/layout/login-shadow.png) repeat-x top left;
    padding: 10%;
    box-sizing: border-box;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

#login-form-container form {
    display: inline-block;
    padding: 0;
    width: 100%;
}

.login-credentials-box {
    margin: 30px 0 0 0;
    text-align: center;
    border-top: 1px solid #d3d3d3;
    padding: 10px 0 0 0;
    line-height: 14px;
    color: #3e3e3e;
}

#wrapper-not-logged .form-field {
    display: flex;
    border: 1px solid #a2a2a2;
    box-shadow: 0px 0px 10px #dadada;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
}

#wrapper-not-logged label {
    display: none;
}

#wrapper-not-logged .form-field::before {
    content: '';
    display: inline-block;
    background: #a2a2a2;
    width: 38px;
}

#wrapper-not-logged .form-field:nth-child(1)::before {
    background: #a2a2a2 url(../images/layout/login-user-icon.png) no-repeat center center;
}

#wrapper-not-logged .form-field:nth-child(2)::before {
    background: #a2a2a2 url(../images/layout/login-pass-icon.png) no-repeat center center;
}

#login-form-container input:not([type=submit]):not([type=checkbox]) {
    width: 100%;
    box-sizing: border-box;
}

#wrapper-not-logged .form-submit {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
}

#login-submit, #login-form-container .btn, #login-form-container .btn:hover {
    color: #fff;
    text-decoration: none;
    padding: 11px 16px 10px 16px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

#login-form-container {
    padding: 30px 100px;
}

#login-submit {
    font-size: 24px;
    line-height: 24px;
}

#wrapper-not-logged .btn-alternate, #wrapper-not-logged .btn-alternate:hover {
    background: transparent;
    padding: 0;
    text-decoration: underline;
    align-self: flex-end;
    margin: 0 0 10px 0;
    font-size: 14px;
}

#wrapper-not-logged .message-info
{
  padding: 0;
  background: transparent;
}

#login-form-container .btn-alternate, #login-form-container .btn-alternate:hover {
    color: #3e3e3e;
    text-transform: inherit;
}

.btn, .table-admin a.btn {
    border-radius: 4px;
    background: #008ac2;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    padding: 11px 16px 10px 16px;
    text-decoration: none;
    display: inline-block;
    width: auto;
    font-weight: 400;
    white-space: nowrap;
    border: none;
    text-transform: uppercase;
}

#login-form-container input:not([type=submit]) {
    border: none;
    padding: 9px;
    background: #fff;
    border-radius: 1px;
}

.content-container {
    padding: 30px;
    margin: 30px;
    background: #fff;
    box-shadow: 0px 0px 10px #dadada;
    border-radius: 4px;
}

.form-fieldset .form-fieldset-int:not(.block-field) .form-field {
    flex-grow: 1;
    width: 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.form-fieldset-int .form-field:first-of-type label, .form-field:nth-child(2n+1) label,.form-field:nth-child(2n+2) label 
{
    text-align: left;
    vertical-align: middle;
}

#user-edit-submit::after, #invoice-edit-submit::after, #invoice-edit-submit.btn-save::after {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 15px!important;
    color: #fff;
    margin: 0 0 0 5px;
}

.content-container.master_users,.content-container.users #page-header-title h1::before
{

    content: "\f007";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px!important;
    color: #008ac2;
    margin: 0 10px 0 0;
}

.content-container.master_configs #page-header-title h1::before
{
  content: "\f085";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px!important;
  color: #008ac2;
  margin: 0 10px 0 0;
}

.content-container.master_languages.translate #page-header-title h1::before
{
  content: "\f0ac";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px!important;
  color: #008ac2;
  margin: 0 10px 0 0;
}

.content-container.companies #page-header-title h1::before
{
  content: "\f1ad";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px!important;
  color: #008ac2;
  margin: 0 10px 0 0;
}

/* icona titolo aggiunta nuovo */

.content-container.companies #page-header-title h1::before, .content-container.roles #page-header-title h1::before,
.content-container.skills #page-header-title h1::before, .content-container.funding_types #page-header-title h1::before,
.content-container.users #page-header-title h1::before,.content-container.roles #page-header-title h1::before,
.content-container.locations #page-header-title h1::before,.content-container.modules #page-header-title h1::before
{
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px!important;
    color: #008ac2;
    margin: 0 10px 0 0;
}

.content-container.roles #page-header-title h1::before
{
   content: "\f2bb";
}

.content-container.locations #page-header-title h1::before
{
    content: "\f024";
}

.content-container.modules #page-header-title h1::before
{
    content: "\f212";
}

.content-container.funding_types #page-header-title h1::before
{
    content: "\f155";
}

.content-container.skills #page-header-title h1::before
{
    content: "\f0b1";
}

.master_configs .form-fieldset .form-fieldset-int .form-field {
    width: 100%;
    max-width: 100%;
}

.master_configs .form-fieldset .form-fieldset-int .form-field label {
    text-align: left;
    width: 200px;
}

.master_configs .form-field-help, .form-field-info {
    margin-left: 220px;
}

.master_configs .form-field-error
{
    display: block;
    margin-left: 220px;
}

#template-edit .label-textarea, .form-fieldset-int label.lb-100, .form-fieldset-int label.lb-50 {
    float: none;
    clear: both;
    width: 100%;
}

.content-container.master_groups.edit .with-checkbox input[type=checkbox] {
    float: left;
}

.user-edit-permission-group {
    display: block;
    width: 100%;
}

#menu-menu_main li
{
    margin: 0;
    display: block;
    float: none;
    vertical-align: bottom;
    position: relative;
}

#menu-menu_main li ul
{
    margin: 0;
    display: block;
    left: 165px!important;
    top: 0px!important;
    background-color: #ececec;
}

#menu-menu_main li ul li
{
  margin: 10px;
}

#menu-menu_main li a
{
  padding: 0px;
  height: 90px;
  width: 165px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #3e3e3e;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.7s ease;
  border-bottom: 1px solid #ececec;
      margin: auto;
}

#menu-menu_main 
{
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

#menu-menu_main li ul li a
{
  height: auto;
  width: auto;
  margin: 0;
  flex-flow: row;
  justify-content: flex-start;
  width: 230px;
  padding: 8px 10px!important;
  transition: background 0.7s ease;
  white-space: normal;
  font-weight: 400;
  font-size: 14px;
}

#menu-menu_main li ul li a:hover
{
  background: #fff;
  color: #008ac2!important;
  transition: background 0.7s ease;
  border-bottom: 1px solid #fff;
}

#menu-menu_main li ul li a:hover .fa
{
  color: #008ac2;
}

#menu-menu_main li ul li a .fa
{
  font-size: 14px;
  margin: 0 12px 0 0;
  color: #868686;
}

#menu-menu_main a .fa {
    font-size: 30px;
    line-height: 22px;
    margin: 0 0 8px 0;
    color: #d5d5d5;
    transition: color 0.7s ease;
}

#menu-menu_main li.selected a, #menu-menu_main li.selected a .fa, #menu-menu_main a:hover, #menu-menu_main a:hover .fa
{
    color: #008ac2;
}

#menu-menu_main a:hover, #menu-menu_main a:hover .fa
{
    transition: color 0.7s ease;
}

table .list-filter.short-field, table .list-filter.datepicker
{
    width: 46%;
    margin-right: 2%;
}

table .list-filter.small-field + .list-filter.small-field
{
    margin-left: 2%;
}

/* datepicker */

#ui-datepicker-div
{
    position: relative;
    z-index: 9999999!important;
    font-family: Catamaran, sans-serif!important;
    border: 1px solid #d5d5d5;
}

.ui-widget-header
{
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
}

.ui-datepicker .ui-datepicker-title
{
      margin: 0 2.3em 3px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default
{
  border: 1px solid #fff;
  background: #efefef;
  color: #333;
  background-image: none;
  text-align: center;
  vertical-align: middle;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year
{
    padding: 4px;
    margin: 0 2%;
    width: auto;
    max-width: 45%;
}

.ui-datepicker td a:hover
{
  background: #333;
  color: #fff;
  text-decoration: none;
}

.ui-datepicker td a.ui-state-active
{
  background: #008ac2;
  color: #fff;
}

.ui-datepicker tr:nth-child(2n+2)
{
    background: #fff;
}

.ui-datepicker .ui-state-hover,.ui-datepicker .ui-widget-content .ui-state-hover, .ui-datepicker .ui-widget-header .ui-state-hover, .ui-datepicker .ui-state-focus, .ui-datepicker .ui-widget-content .ui-state-focus, .ui-datepicker  .ui-widget-header .ui-state-focus
{
    background: transparent;
    border: none;
    opacity: 0.5;
    top: 2px;
    right: 2px;
}

.ui-datepicker td
{
  width: 14%;
}

.ui-dialog.ui-widget 
{
    z-index: 9999;
}


@media (min-width: 1280px)
{


    .form-fieldset-int label
    {
      text-align: right;
    }

    .form-field-help:not(.block),
    .form-field-info:not(.block)
    {
        display: inline-block;
        max-width: 500px;
        vertical-align: top;
    }

    .form-field-help.textarea-help,
    .form-field-info.textarea-help
    {
        max-width: 250px;
    }

    .form-fieldset .form-fieldset-int:not(.block-field) .form-field
    {
        width: 33%;
        max-width: 33%;
    }
    
    
    .form-fieldset .form-fieldset-int:not(.block-field) .form-field.medium-field 
    {
        width: 70%;
        max-width: inherit;
        margin: 0px;
    }
    
    .form-fieldset .form-fieldset-int:not(.block-field) .form-field.long-field 
    {
        width: 100%;
        max-width: inherit;
        margin: 0px;
    }
    
    .form-fieldset .form-fieldset-int .form-field:first-child label, .form-fieldset .form-fieldset-int .form-field:nth-child(3n+4) label
    {
        text-align: left;
    }

    .form-fieldset-int label .form-fieldset-int.personal .sex label, .form-fieldset-int.personal .name label, .form-fieldset-int.account .email label, .form-field.sex label {
        width: 50px;
    }

    .form-field:nth-child(2n+2) label
    {
        text-align: left;
    }

     .form-fieldset-int.personal .name label, .form-fieldset-int.account .email label, .form-field.sex label {
        width: 55px;
    }

    .form-fieldset-int label, #template-edit .label-textarea {
        display: inline-block;
        float: none;
        margin: 0 20px 0 0;
        font-size: 15px;
    }
    
    .form-fieldset-int .with-checkbox label {
        width: auto;
    }

    .form-field-help:not(.block), .form-field-info:not(.block) {
        display: inline-block;
        max-width: 500px;
        vertical-align: top;
    }

    .master_configs .form-fieldset .form-fieldset-int .form-field {
        width: 100%;
        max-width: 100%;
    }

    .master_configs .form-fieldset .form-fieldset-int .form-field label {
        text-align: left;
        width: 200px;
    }
    
    
    .master_configs .form-field-help, .form-field-info {
        margin-left: 40px;
    }

}


@media (min-width: 1600px)
{
    .form-field-help:not(.block),
    .form-field-info:not(.block)
    {
        max-width: 750px;
    }

    .form-field-help.textarea-help,
    .form-field-info.textarea-help
    {
        max-width: 400px;
    }
}


@media (min-width: 1700px)
{
    .form-field-help:not(.block),
    .form-field-info:not(.block)
    {
        max-width: auto;
    }

    .form-field-help.textarea-help,
    .form-field-info.textarea-help
    {
        max-width: 450px;
    }
}

table#courses .filters-row input ~  input
{
    margin: 5px 0px;
}

.form-collection .form-fieldset .form-fieldset-int:not(.block-field) .form-field .btn-collection-delete
{
    width: 100px;
    text-transform: inherit;
    padding: 5px;
    text-align: center;
}

.form-collection .form-fieldset .form-fieldset-int:not(.block-field) .form-field 
{
    flex-grow: 0 !important;
    width: 20%;
}

.form-collection .form-fieldset .form-fieldset-int:not(.block-field) .form-field label 
{
    width: 25%;
}

.form-collection .form-fieldset .form-fieldset-int:not(.block-field) .form-field input,.form-collection .form-fieldset .form-fieldset-int:not(.block-field) .form-field select 
{
    width: 60%;
}

.form-collection-element .form-field-error 
{
    margin: 0px;
}

.ui-autocomplete
{
    max-height: 180px;
    overflow-y: scroll;
    font-size: 13px;
    z-index: 9999;
}

.custom-combobox-toggle.ui-corner-right 
{
    display: inline-block;
    position: relative;
    height: 38px;
    margin-left: 1px;
}

.vertical-form .form-fieldset-int .form-field:first-of-type label,.vertical-form .form-field:nth-child(2n+1) label,.vertical-form .form-field:nth-child(2n+2) label
{
    text-align: right;
}

.custom-combobox-input.ui-autocomplete-input
{
    text-align: left;
    width: 68%;
    margin: 0px;
}

.custom-combobox-input.ui-autocomplete-input.short-field
{
    width: 25%;
}

.custom-combobox-input.ui-autocomplete-input.medium-field
{
    width: 40%;
}

.table-admin input[type=time]
{
    width: 100px;
    margin-bottom: 7px;
    display: block;
    text-align: center;
}

.employee-name 
{
    color: #008ac2;
}

table#employees .td-column.hour_price
{
    text-align: right;
}

.vertical-form .form-submit 
{
    text-align: right;
}

.vertical-form 
{
    max-width: 665px;
}

#courses-select.vertical-form{
    max-width: 765px;
}

#courses-select label.radio-label input[type=radio] {
    vertical-align: text-bottom;
}

.ms-parent.ws-form-field.multipleselect 
{
    max-width: 500px;
}

.multipleselect .ms-drop label{
    text-align: initial !important;
    color: initial !important;
}

/* Gantt */

.gantt-header 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gantt-row 
{
    padding: 1px;
}

.gantt-cell 
{
    display: table-cell;
}

.gantt-row.hours .gantt-cell 
{
    text-align: left;
}

.gantt-row .hour-small 
{
    font-size: 10px;
}

.gantt-row.badge .gantt-cell
{
    background: #f5f5f5;
}

.gantt-row.badge .gantt-cell.active 
{
    background: #d6d3d3;
}


.gantt-row.paycheck .gantt-cell
{
    background: #ece9e9;
}

.gantt-row.paycheck .gantt-cell.active 
{
    background: #5d5d5dc4;
}

.gantt-row.secretary .gantt-cell
{
    background: #dfebff;
}

.gantt-row.secretary .gantt-cell.active 
{
    background: #9db6e0;
}

.gantt-row.admin_governance .gantt-cell
{
    background: #ffdcdcc4;
}

.gantt-row.admin_governance .gantt-cell.active 
{
    background: #f99393c4;
}

.gantt-row.waste .gantt-cell
{
    background: #fc8cfb4d;
}

.gantt-row.waste .gantt-cell.active 
{
    background: #fb69fac4;
}

.gantt-row:not(.hours) .gantt-cell.editable:hover
{
    box-sizing: border-box;
    cursor: pointer;
    border: 1px solid #fff;
    text-align: center;
}

.gantt-cell .fa
{
    display: none;
}

.gantt-row:not(.hours) .gantt-cell.editable:hover .fa
{
    display: inline;
    color: #000;
}

.gantt-row .gantt-cell.active.other_course,.gantt-row .gantt-cell.other_course
{
    background: black;
}

.gantt-date-title 
{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0px 13px 0px;
}

.gantt h2 
{
    margin: 0px 20px 0px 0px;
    font-size: 19px;
}

.gantt-title 
{
    display: flex;
    justify-items:;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.gantt-employee-date
{
    flex-grow: 1;
    margin: 10px;
}

.gantt-employee:not(.hidden) + .gantt-employee-date::before 
{
    content: "-";
    display: inline;
    padding: 0px 10px;
}

.gantt-buttons p 
{
    margin: 9px;
    vertical-align: midd;
}

.gantt-buttons 
{
    text-align: right;
    align-items: center;
    display: inline-flex;
}

.gantt-buttons .btn-delete
{
    padding: 10px;
    text-align: center;
    margin: auto;
}

.gantt-buttons .btn-delete span
{
    font-size: 10px;
    margin: auto;
}

/* Gantt legend */

.gantt-legend 
{
    width: 45%;
    display: flex;
    border: 1px solid #DEDEDE;
    justify-content: space-between;
    padding: 5px 20px;
}

.gantt-legend li 
{
    display: inline-flex;
    margin: 0px 10px;
}

.gantt-legend ul
{
    display: flex;
    /* width: 140%; */
    justify-content: space-around;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    padding: 9px;
}

.gantt-legend ul li:before 
{
    content: '';
    display: block;
    padding: 5px;
    width: 0px;
    display: inline-block;
    margin-right: 8px;
    width: 10px;
    height: 10px;
}


.gantt-legend ul li.badge:before 
{
    background: #d6d3d3;
}

.gantt-legend ul li.paycheck:before 
{
    background: #5d5d5dc4;
}

.gantt-legend ul li.secretary:before 
{
    background: #9db6e0;
}

.gantt-legend ul li.admin_governance:before 
{
    background: #ff6a6ac4;
}

.gantt-legend ul li.waste:before 
{
    background: #fb69fac4;
}

.gantt-legend ul li.other_course:before 
{
    background: black;
}

.gantt-legend h2 
{
    margin: 10px 0px 0px 0px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
}

.gantt-legend.admin
{
    width: 66%;
    font-size: 13px;
}   

.no-badge-alert 
{
    color: red;
    font-size: 10px;
    margin: 0px 10px;
    font-weight: normal;
    display: inline;
    vertical-align: top;
}

/* Gantt employee */


.gantt.gantt-employee 
{
    margin: 0px 0px 20px 0px;
}

.gantt.gantt-employee h3 
{
    font-size: 14px;
    color: #008ac2;
    font-weight: bold;
}

.gantt.gantt-employee 
{
    border: 1px dotted #DEDEDE;
    padding: 7px;
}

/* Presence data */

.presence-data-form
{
    margin: 30px 0px;
}

.presence-data-form .form-field.time 
{
    display: inline-block;
    width: 270px;
}

.presence-data-form  .form-field.time label 
{
    width: 140px;
}

.presence-data-form .form-field.time select 
{
    width: 90px;
    margin-right: 7px;
}

.presence-data-form .form-field.time .form-field-error 
{
    display: block;
    float: none;
    width: 100%;
    float: left;
}

.presence-data-form.waste .form-submit
{
    text-align: center;
}

/* Presence period */
.presence-montly-block,.presence-paycheck-block
{
    padding: 5px 0px;
    text-align: center;
    border: 1px solid #009cdc;
    border-radius: 5px;
    background-color: #ffffff;
}

.presence-montly-block.add,.presence-paycheck-block.add
{
    width: 40px;
    margin-top: 5px;
}

span.presence-montly-filename, span.presence-paycheck-filename
{
    padding: 10px;
}

/* Presence Reported Employees */

#presences-reported-list 
{
    margin-top: 50px;
}


#presences-reported-list th.employees 
{
    width: 60%;
}

/* Select employee / course */

#employees-select .form-submit,#courses-select .form-submit, #period-select .form-submit
{
    display: inline;
    position: relative;
    float: right;
    top: -60px;
    right: 10px;
}

.gantt-no-data-available
{
    text-align: center;
}

/* Presences Data form*/

#presences-data-form h2 
{
    font-size: 20px;
    text-align: center;
}

/* Courses Form */

.ui-autocomplete-input.ws-form-field 
{
    font-size: 12px;
}

.ws-form-collection:not(.disabled) .form-fieldset.form-collection-element .form-field 
{
    width: 23% !important;
    text-align: left;
    margin: 0px;
}

.ws-form-collection:not(.disabled) .form-fieldset.form-collection-element .form-field.buttons.inline
{
    width: 100px !important;
    float: left;
    display: flex;
}

.ws-form-collection:not(.disabled) .form-fieldset.form-collection-element .form-field.hour_price
{
    width: 240px !important;
}

.ws-form-collection .form-collection-element .hour_price .form-field-error
{
    margin: 0px !important;
}

.ws-form-collection:not(.disabled) .form-fieldset.form-collection-element .form-field.hour_price .short-field 
{
    width: 30%;
    margin-right: 10px;
}

.ws-form-collection:not(.disabled) .form-fieldset.form-collection-element .form-field.hour_price label
{
    width: 100px !important;
}

.ws-form-collection .form-fieldset.form-collection-element .form-field label 
{
    width: 80px !important;
}

.ws-form-collection .form-fieldset.form-collection-element .form-field .custom-combobox 
{
    width: 70%;
}

.ws-form-collection .form-collection-element .form-field .custom-combobox input 
{
    width: 85% !important;
}

.ws-form-collection .form-collection-element:hover 
{
    background: #c2d7e061;
}

.ws-form-collection .form-collection-element .form-fieldset-int 
{
    padding: 5px 5px 5px;
}

.ws-form-collection .form-collection-element .form-field-error
{
    margin-left: 100px;
}

.hidden
{
    display: none !important;
}

/* Loading */


body.loading .modal 
{
    display: block;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.55) url('../images/fancybox/fancybox_loading.gif') 50% 50% no-repeat;
}

/* Dialog remote */

.dialog-remote form 
{
    padding: 30px;
}

#config-absences_percentage_1,#config-absences_percentage_2,#config-absences_percentage_3,#config-absences_secretary_max_day
{
    width: 80px;
}

/* Alerts */

.alert-disabled
{
    background-color: none !important;
}

.alert-red 
{
    background-color: #f5c9c9 !important;
}

.alert-orange
{
    background-color: #ffead7 !important;
}

.alert-black
{
    background-color: #b3b3b3 !important;
}

.alert-icon 
{
    display: inline-block;
    width: 10px;
    height: 10px;
}

.alerts-absences-legend ul 
{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0px;
    align-items: center;
}

table#alerts_absences small 
{
    color: black;
    font-size: 10px;
}

.alerts-absences-legend h2 
{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: normal;
    margin-right: 40px;
}

.alerts-absences-legend 
{
    border: 1px solid #eaebec;
    display: flex;
    align-items: center;
    padding: 5px;
    margin: 0px 0px 20px;
}

.alerts-absences-legend li
{
    margin-left: 20px;
}

#menu-alerts-li.alert-red .fa,#menu-alerts-li.alert-red a
{
    color: red !important;
}

input.monthpicker
{
    width: 12%;
}

table .filters-row input.monthpicker 
{
    width: 50%;
}

/* Period select form */


#period-select
{
    max-width: 490px;
    flex-direction: column;
}

#period-select p 
{
    display: inline;
}

#period-select fieldset input 
{
    width: 35%;
}

#period-select .form-fieldset-int 
{
    display: flex;
    flex-direction: column;
}

.lf
{
    text-align: left;
}

.rg
{
    text-align: right;
}

.ct
{
    text-align: center;
}  

.tl
{
    font-size: 15px;
}

.mass-actions-list .btn 
{
    margin: 10px 0px !important;
}

.form-field.medium-field .custom-combobox
{
    width: 50%;
}

/* Register new course */

#student-register-new-course-form label 
{
    width: 146px;
    vertical-align: middle;
}

#student-register-new-course-form-box .form-field-error 
{
    margin-left: 26%;
    font-size: 13px;
}

#credentials-box {
    background: #f8f8f8;
    padding: 14px;
}

/* Employees hour prices collection */

#form-collection-employees_hour_prices:not(.disabled) .form-fieldset.form-collection-element .form-field label
{
    width: 130px  !important;
}

#form-collection-employees_hour_prices .form-fieldset.form-collection-element .form-field .custom-combobox
{
    width: 50%;
}

#form-collection-employees_hour_prices .form-collection-element .form-field .custom-combobox input
{
    width: 65% !important;
}

#form-collection-employees_hour_prices:not(.disabled) .form-fieldset.form-collection-element .form-field .short-field
{
    width: 23%;
}

#form-collection-employees_hour_prices .form-collection-element .form-field-error
{
    margin: 0px !important;
}

.purchase-request-field-status-aperta{
    background: #2e83ba;
    color: #fff;
    font-weight: bold;
    font-size:16px;
    text-align: center;
    width:150px;
    display:block;
    margin:0 auto;
    padding:8px;
}

.purchase-request-field-status-evasa{
    background:  #5f9425;
    color: #fff;
    font-weight: bold;
    font-size:16px;
    text-align: center;
    width:150px;
    display:block;
    margin:0 auto;
    padding:8px;
}
.purchase-request-field-status-annullata{
    background: #CE453E;
    color: #fff;
    font-weight: bold;
    font-size:16px;
    text-align: center;
    width:150px;
    display:block;
    margin:0 auto;
    padding:8px;
}

/* Passive invoices */

.form-collection-element .btn-collection-delete 
{
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-self: flex-end;
}

#form-collection-passive_invoices_courses .form-collection-element .form-field label
{
    width: 65% !important;
}

#form-collection-passive_invoices_courses .form-collection-element .form-field .short-field
{
    width: 35% !important;
}

#form-collection-passive_invoices_courses .form-collection-element .form-field .custom-combobox input
{
    width: 65% !important;
}

#form-collection-purchases_products .form-field
{
    width: 17% !important;
}

#form-collection-purchases_products .form-field label 
{
    width: 120px !important;
    margin: 0px !important;
}

#form-collection-purchases_products .form-field input[type=checkbox]
{
    width: 30px;
}

#form-collection-purchases_products .form-field input[type=text] 
{
    width: 160px;
}

#form-collection-purchases_products .form-field .custom-combobox input 
{
    width: 60% !important;
}

#form-collection-purchases_products .form-field.small-field 
{
    width: 10% !important;
}

#form-collection-purchases_products .form-field.small-field input {
    width: 60%;
}
.error-codes{
    border: red 2px solid;
}


#employees_costs_presences input.datepicker.long-field
{
    width: 100%;
}

#employees-costs-presences-form fieldset
{
    display: flex;
    width: 230px;
}

#employees-costs-presences-form
{
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#employees-costs-presences-form fieldset .form-fieldset-int p 
{
    display: flex;
    flex-direction: column;
    max-width: 100%;
    align-items: start;
    text-align: r;
}

#employees-costs-presences-form fieldset .form-fieldset-int p * 
{
    text-align: left;
    width: 50%;
    vertical-align:;
}

#employees-costs-presences-form fieldset .form-fieldset-int p label
 {
    display: none;
}

#employees-costs-presences-form .form-submit.bottom 
{
    display: inline-flex;
    flex-direction: row;
    align-items: center;
}

#employees-costs-presences-form .form-submit.bottom button 
{
    display: inline;
}

#employees-costs-presences-form .form-submit.bottom 
{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

#employees-costs-presences-form .form-submit.bottom .btn
{
    margin: 0 10px 0 0px;
}

#employees-costs-presences-form p input[type=number]
{
    width: 60px;
}

#employees-costs-presences-form .form-fieldset-int p .form-field-error
{
    width: 80%;
    margin: 0px;
}

.send_password_email{
    clear: both;
    display: flex;
    width: 70%;
    margin-left: 0px;
}

.ml-auto{
    margin-left: auto;
}

.flex-break {
    flex-basis: 100%;
    height: 0;
}

#form-collection-employees_skills .form-field{
    width: 25% !important;
}

#form-collection-employees_skills  .form-field label{
    width: 100px !important;
}

#form-collection-employees_skills .flex-break{
    margin-top: 15pt;
}

#form-collection-employees_skills .substitution.hidden{
    display: none;
}

/* Stages dates */

#stage-dates {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#stage-dates .stage-present-in-class-field label {
    font-size: 12px;
}

#stage-dates .stage-date-field {
    display: flex;
}

#stage-dates fieldset{
    margin: 0 10pt 10pt 0px;
}

#stage-dates .form-field {
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    margin: 0;
}

#stage-dates .form-fieldset-int .form-field input[type=number] {
    width: 40%;
}

#stage-dates .form-fieldset-int {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    padding: 8pt;
    border-radius: 10pt;
    margin-left: 7pt;
    border: 1px solid #dedede;
    flex-wrap: inherit;
}

#stage-dates .form-fieldset-int .form-field .form-field-error {
    font-size: 9pt;
}

#stage-dates .stage-present-in-class-field label {
    margin-left: 10px;
}

#stage-dates .form-fieldset-int label {
    text-align: left;
}

#stage-dates .form-field label{
    color: initial;
}

#stage-dates .form-field.holyday label{
    color: red;
}

#mass-hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 30%;
    margin-bottom: 30px;
}

#mass-hours input{
    width: 20%;
}

#mass-hours label {
    margin-right: 10px;
    font-weight: normal;
    margin-left: 15px;
}

#stage-dates .stage-present-in-class-field {
    display: flex;
    flex-direction: row-reverse;
}

#stage-dates .form-submit{
    width: 100%;
    text-align: left;
    margin: 10px 10px 0px;
}

table#employees-governance td, table#employees-governance th {
    padding: 5px;
    font-size: 12pt;
}