
html, body
{
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

h1 {
    display: block;
    margin: 3px 0 10px 0;
    text-align: left;
    font-family: 'Open Sans Condensed-Light', sans-serif;
    line-height:65px;
    color:#000;
    font-weight:normal;
    font-size:65px;
}

h2 {
    display: block;
    margin: 3px 0;
    text-align: left;
    font-family: 'Open Sans Condensed-Light', sans-serif;
    color:#000;
    font-weight:normal;
    font-size:34px;
    line-height:36px;
}

h3 {
    display: block;
    margin: 3px 0;
    text-align: left;
    font-family: 'Open Sans Condensed-Light', sans-serif;
    color:#000;
    font-weight:normal;
    font-size:34px;
    line-height:36px;
}

h4 {
    display: block;
    font-size: 1em;
    margin-top: 1.33em;
    margin-bottom: 1.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align:left;
}

h5 {
    display: block;
    font-size: .83em;
    margin-top: 1.67em;
    margin-bottom: 1.67em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align:left;
}

h6 {
    display: block;
    font-size: .67em;
    margin-top: 2.33em;
    margin-bottom: 2.33em;
    margin-left: 0;
    margin-right: 0;
    font-weight: bold;
    text-align:left;
}

/* LOGIN FORM */
#login-form-wrap {
    background-color: #EAEAEA;
    width: 25%;
    margin: 30px auto;
    text-align: center;
    padding: 20px 0 0 0;
    border-radius: 4px;
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.2);
    border: 1px solid #D4D4D4;
}

#login-form {
    padding: 0 60px;
}

input[type=text],
input[type=password],
input[type=email] {
    width: 100%;
    padding: 12px 40px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

button {
    background-color: #3ca9e2;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

.container {
    padding: 16px;
}

.inputField {
    position: relative;
}

.inputField i{
    position: absolute;
    left: 15px;
    top: 18px;
    color: gray;
}

.divContent {
    margin: 0;
    padding: 0;
}
/* LOGIN FORM END */

/* BOX HOME */
.customBoxContent {
    margin: 0;
    padding: 0;
}

.customBox {
    margin: 10px;
    width: 200px;
    height: 150px;
    padding: 4px;
    border: 1px solid #ccc;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    float: left;
    box-sizing: border-box;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.4);
}

.customBox:hover {
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.6);
}

.customBoxTitle {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #FFFFFF;
    padding: 2px;
}

.customBoxValue {
    font-size: 40px;
    text-align: left;
    color: #FFFFFF;
    padding: 2px;
}

.customBoxSpan {
    font-size: 16px;
    margin-left: 5px;
}
/* BOX HOME END*/


/* VERTICAL MENU */
.vertical-menu {
    width: 100%;
}

.vertical-menu a {
    color: #5C5C5C;
    display: block;
    padding: 10px;
    text-decoration: none;
}

.vertical-menu a:hover {
    background-color: #CCCCCC;
}

.vertical-menu a.active {
    background-color: #007BB9;
    color: white;
}
/* VERTICAL MENU END */

/* DRAG & DROP IMAGE */
.drop-zone {
    max-width: 300px;
    height: 190px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    color: #5C5C5C;
    border: 2px solid #009578;
    border-radius: 10px;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.btnUpload {
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 15px 5px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 2px;
    cursor: pointer;
}

.btnDelete {
    background-color: #FFBF00;
    border: none;
    color: white;
    padding: 15px 5px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 2px;
    cursor: pointer;
}

.btnPublicArt {
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 8px 5px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 70px;
    margin: 0 2px;
    cursor: pointer;
}

.btnRemoveArt {
    background-color: #FF0000;
    border: none;
    color: white;
    padding: 8px 5px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    width: 70px;
    margin: 0 2px;
    cursor: pointer;
}

#wrapperUpload {
    width:100%;
    margin : 0;
}

#divTip1 {
    width:300px;
    margin : 0;
    float : left ;
}

#divTip2 {
    width:50px;
    margin : 0;
    float : left ;
}

#divTip3 {
    width: 200px;
    height: 200px;
    margin-left: 10px;
    float : left ;
    border: 1px solid gray;
}

#divTip4 {
    width: 100px;
    height: 110px;
    margin-left: 10px;
    float : left ;
    background-color: #D4D4D4;
    border: 1px solid gray;
}

#divTip5 {
    width: 400px;
    margin-left: 10px;
    float : left ;
}
/* DRAG & DROP IMAGE END */


/* GALLERIA IMMAGINI */
.img {
    float: left;
    width:  200px;
    height: 200px;
    margin: 5px;
    border: 2px solid #D4D4D4;
    cursor: pointer;
    position: relative;
}
.img:hover{
    border: 2px solid #16A500;
}

.imgDiv {
    position: absolute;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
}
/* GALLERIA IMMAGINI END */

/* GALLERIA AUDIO */
.aud {
    float: left;
    width:  200px;
    height: 80px;
    margin: 5px;
    border: 2px solid #D4D4D4;
    cursor: pointer;
    position: relative;
}
.aud:hover{
    border: 2px solid #16A500;
}

.audDiv {
    position: absolute;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
}
/* GALLERIA AUDIO END */

/* GALLERIA VIDEO */
.vid {
    float: left;
    width:  200px;
    height: 190px;
    margin: 5px;
    border: 2px solid #D4D4D4;
    cursor: pointer;
    position: relative;
}
.vid:hover{
    border: 2px solid #16A500;
}

.vidDiv {
    position: absolute;
    width: 100%;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
}
/* GALLERIA VIDEO END */

/* PAGE LAYOUT ARTICLES */
.artOnLine {
    width:  200px;
    height: 200px;
    margin: 5px;
    border: 2px solid #D4D4D4;
    position: relative;
}
.artOnLine:hover{
    border: 2px solid #16A500;
}

.artOnLineTopDiv {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 35px;
    background-color: rgba(0, 0, 0, 1);
    top: 0;
}

.artOffLineTopDiv {
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 35px;
    background-color: rgba(255, 0, 25, 1);
    top: 0;
}

.artOnLineBottomDiv {
    position: absolute;
    width: 100%;
    height: 35px;
    background-color: rgba(0, 0, 0, 1);
    bottom: 0;
}

.artGrid {
    width:  250px;
    height: 250px;
    border: 2px solid #8C8C8C;
    position: relative;
}

.artGrid:hover{
    border: 2px solid #16A500;
}

.artGridTopDiv {
    position: absolute;
    width: 100%;
    height: auto;
    padding: 5px;
    min-height: 35px;
    background-color: rgba(255,255,255, 1);
    top: 0;
    font-size:12px;
    font-weight:bold;
    text-transform:uppercase;
    box-sizing: border-box;
}

.artGridBottomDiv {
    position: absolute;
    width: 100%;
    height: 54px;
    bottom: -2px;
}

.artGridBottomButton {
    position: absolute;
    width: 40px;
    padding-top: 2px;
    /*padding: 0;*/
    height: 54px;
    bottom: 0;
    right: 0;
}
/* PAGE LAYOUT ARTICLES END*/


/* GALLERIA ARTICOLI */
.article {
    float: left;
    width:  250px;
    height: 250px;
    margin: 5px;
    border: 2px solid #D4D4D4;
    cursor: pointer;
    position: relative;
}
.article:hover{
    border: 2px solid #16A500;
}
/* GALLERIA ARTICOLI END */


/* POPUP IMMAGINI */
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
    padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
    padding: 0;
}
/* POPUP IMMAGINI END */


.tableset {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

.tdset, .thset {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
}

.trset:nth-child(even) {
    background-color: #dddddd;
}

.tableTd{
    border: 1px solid #747474;
    border-left: 5px solid #008CBA;
    margin: 2px 0 2px 0;
    padding: 10px;
}

.tableSimpleTd{
    border: 1px solid #747474;
    margin: 2px 0 2px 0;
    padding: 10px;
}

.tableDivArt{
    /*border: 1px solid #747474;*/
    border-bottom: 1px solid #747474;
    border-right: 1px solid #747474;
    margin: 2px 0 2px 0;
    padding: 10px;
}

.tableDivSubArt{
    /*border: 1px solid #747474;*/
    border-right: 1px solid #747474;
    margin: 2px 0 2px 0;
    padding: 10px;
}

.tableTdhref{
    color:black;
    text-decoration: none;
}

.tableSpanTd{
    font-weight: bold;
    color: #008CBA;
}

.fixWidth {
    width: -webkit-calc(100% - 250px);
    width: -moz-calc(100% - 250px);
    width: calc(100% - 250px);
}

.amTab01 {
    background-image: url(../images/Gen_tabhead.png);
    background-repeat: repeat-x;
    color: #446D8C;
    height: 50px;
    text-decoration: none;
    border-bottom: 1px solid rgb(154,180,206);
    border-left: 1px solid rgb(154,180,206);
    border-top: 1px solid rgb(154,180,206);
}

.amTab02 {
    background-image: url(../images/Gen_tabhead.png);
    background-repeat: repeat-x;
    color: #446D8C;
    height: 50px;
    text-decoration: none;
    border: 1px solid rgb(154,180,206);
}

.bckGr01 {
    background-image: url(../images/Gen_headcel.png);
}

.txGen05 {
    font-size: 16px;
    color: #000000;
    font-weight: normal;
    text-decoration: none;
    padding: 0 5px 0 15px;
}

.amTrIns {
    background-color : #E9E9E9;
    cursor:pointer;
}

.amTrOu1 {
    background-color : #FFFFFF;
}

.ammTrOu2 {
    background-color : #F4F4F4;
}

.amTable01 a {
    padding: 15px 0px 5px 5px;
    color: #747474;
    height: 30px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgb(154,180,206);
    border-left: 1px solid rgb(154,180,206);
}

.amTable01 a:hover {
    color: #A4A4A4;
    font-weight: normal;
    text-decoration: none;
}

.amTable02 a {
    padding: 15px 0px 5px 5px;
    color: #747474;
    height: 30px;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid rgb(154,180,206);
    border-left: 1px solid rgb(154,180,206);
    border-right: 1px solid rgb(154,180,206);
}

.amTable02 a:hover {
    color: #4C4C4C;
    font-weight: normal;
    text-decoration: none;
}

.divItem{
    color: #888888;
    margin-top: 0;
    margin-bottom: 0;
}

#divBox1 {
    width:200px;
    margin : 0;
    float : right ;
}

#divBox2 {
    width:50px;
    margin : 0;
    float : right ;
}

/*switch and checkbox */
.onoffSw {
    position: relative;
    width: 100px;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select: none;
}

.onoffSw-checkbox {
    display: none;
}

.onoffSw-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #A4A4A4;
    border-radius: 0px;
}

.onoffSw-inner {
    display: block;
    width: 200%;
    margin-left: -100%;
    -moz-transition: margin 0.3s ease-in 0s;
    -webkit-transition: margin 0.3s ease-in 0s;
    -o-transition: margin 0.3s ease-in 0s;
    transition: margin 0.3s ease-in 0s;
}

.onoffSw-inner:before, .onoffSw-inner:after {
    display: block;
    float: left;
    width: 50%;
    height: 22px;
    padding: 0;
    line-height: 22px;
    font-size: 12px;
    color: white;
    font-weight: normal;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.onoffSw-inner:before {
    content: "ON";
    padding-left: 10px;
    background-color: #FFFFFE;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -moz-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -ms-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -o-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: linear-gradient(to bottom, #FFFFFF, #EEEEEE);
    color: #446D8C;
}

.onoffSw-inner:after {
    content: "OFF";
    padding-right: 10px;
    background-color: #EEEEEE;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -moz-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -ms-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: -o-linear-gradient(top, #FFFFFF, #EEEEEE);
    background-image: linear-gradient(to bottom, #FFFFFF, #EEEEEE);
    color: #999999;
    text-align: right;
}

.onoffSw-switch {
    display: block;
    width: 18px;
    margin: 2px;
    background: #BCBCBC;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #BCBCBC);
    background-image: -moz-linear-gradient(top, #FFFFFF, #BCBCBC);
    background-image: -ms-linear-gradient(top, #FFFFFF, #BCBCBC);
    background-image: -o-linear-gradient(top, #FFFFFF, #BCBCBC);
    background-image: linear-gradient(to bottom, #FFFFFF, #BCBCBC);
    border: 1px solid #747474;
    border-radius: 0px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 76px;
    -moz-transition: all 0.3s ease-in 0s;
    -webkit-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}

.onoffSw-checkbox:checked + .onoffSw-label .onoffSw-inner {
    margin-left: 0;
}

.onoffSw-checkbox:checked + .onoffSw-label .onoffSw-switch {
    right: 0px;
    background-color: #27A1CA;
    background-image: -webkit-linear-gradient(top, #FFFFFF, #27A1CA);
    background-image: -moz-linear-gradient(top, #FFFFFF, #27A1CA);
    background-image: -ms-linear-gradient(top, #FFFFFF, #27A1CA);
    background-image: -o-linear-gradient(top, #FFFFFF, #27A1CA);
    background-image: linear-gradient(to bottom, #FFFFFF, #27A1CA);
}

/* option e checkbox */
input[type=radio] {
    display:none;
}

input[type=radio] + label {
    display:inline-block;
    margin:-2px;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 20px;
    color: #333;
    text-align: center;
    text-shadow: 0 1px 1px rgba(255,255,255,0.75);
    vertical-align: middle;
    cursor: pointer;
    background-color: #f5f5f5;
    background-image: -moz-linear-gradient(top,#fff,#e6e6e6);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));
    background-image: -webkit-linear-gradient(top,#fff,#e6e6e6);
    background-image: -o-linear-gradient(top,#fff,#e6e6e6);
    background-image: linear-gradient(to bottom,#fff,#e6e6e6);
    background-repeat: repeat-x;
    border: 1px solid #ccc;
    border-color: #e6e6e6 #e6e6e6 #bfbfbf;
    border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
    border-bottom-color: #b3b3b3;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',endColorstr='#ffe6e6e6',GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
}

input[type=radio]:checked + label {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05);
    background-color:#FDEBB6;
}

#upButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #008CBA;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 70px;
}

#upButton:hover {
    background-color: #555;
}


.columnHome {
    float: left;
    vertical-align: top;
    padding: 5px;
    box-sizing: border-box;
}

.rowHome:after {
    content: "";
    display: table;
    clear: both;
}

.updateHome{
    font-size: 0px;
    float:right;
    padding:0;
    margin: 11px 5px 0 0;
    background-image: url(/images/Gen_update.png);
    background-size: 100% 100%;
    border: none;
    color: #008CBA;
    text-decoration: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.artContainer {
    position: fixed;
    top:55px;
    right:0;
    border-left: 2px solid green;
    padding:0;
    margin:0;
    padding-left: 15px;
    width:250px;
    overflow-y:auto;
    overflow-x:hidden;
    min-height:50px;
    box-sizing:border-box;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

/* PAGINATION */
.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
}

.pagination a.active {
    background-color: #008CBA;
    color: white;
    border: 1px solid #008CBA;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
/* PAGINATION END */

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 1px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.myDiv {
    display: none;
    width: 220px;
    border:1px solid grey;
    overflow: auto;
}

.styleCheck{
    width:24px;
    height:24px;
    position:relative;
    top:0px
}

#player {
    width: 200px;
}

ul, #myUL {
    list-style-type: none;
}

#myUL {
    margin: 0;
    padding: 0;
}

.caret {
    cursor: pointer;
    -webkit-user-select: none; /* Safari 3.1+ */
    -moz-user-select: none; /* Firefox 2+ */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
}

.caret::before {
    content: "\25B6";
    color: black;
    display: inline-block;
    margin-right: 6px;
}

.caret-down::before {
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari */
    transform: rotate(90deg);
}

.nested {
    display: none;
}

.active {
    display: block;
}

