html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Eras ITC'
}

i {
    color: #EDA2B7;
    background-color: transparent;
}

.bg-expired {
    background-color: red !important;
    color: white !important;
}

.dashpanel {
    border: solid pink 1px;
    border-radius: 4px;
    margin-bottom:15px;
}
.panel-title {
    text-align: center;
    font-weight: bold;
}

.badge-normal {
    color: black;
}

.badge-danger {
    background-color: red;
    border-radius: 0.5rem !important;
}

.badge-warning {
    background-color: #f0ad4e;
    color: #fff;
    border-radius: 0.5rem !important;
}

.btn-primary {
    color: #fff;
    background-color: #EDA2B7;
    border-color: lightgray;
    font-weight: bold;
}

.btn-primary:hover {
    color: #fff;
    background-color: hotpink;
    border-color: lightgray;
    font-weight: bold;
}

/*Labels*/

.label {
    display: inline;
    padding: .4em .6em .3em;
    font-size: 85%;
    font-weight: 700;
    line-height: 1;
    /*text-align: center;*/
    white-space: nowrap;
    vertical-align: middle;
    border-radius: .25em;
}

.label-adjust {
    margin-left: 15px;
    margin-right: 5px;
}

.label-small {
    font-size: 70%;
}

.label-default {
    background-color: #DDD;
}
.label-primary {
    background-color: #337ab7;
    color: #fff;
}

.label-success {
    background-color: #5cb85c;
    color: #fff;
}

.label-info {
    background-color: #5bc0de;
    color: #fff;
}
.label-warning {
    background-color: #f0ad4e;
    color: #fff;
}
.label-danger {
    background-color: #d9534f;
    color: #fff;
}




.disabled {
    pointer-events: none;
    opacity: 0.65;
}

.stacca-bottom {
    margin-bottom: 5px;
}

.hidden {
    display: none;
}

/********************************************************************************************/
.custom-file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.custom-file-input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}

.custom-file-label {
    position: relative;
    display: block;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: #444;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

    .custom-file-label:hover {
        background-color: #ddd;
    }

    .custom-file-label::after {
        content: "Scegli un file...";
        color: #999;
        display: inline-block;
        padding: 4px 12px;
        border-left: 1px solid #ccc;
        border-radius: 0 4px 4px 0;
    }

.custom-file-help {
    margin-top: 5px;
    font-size: 12px;
    color: #777;
}
/********************************************************************************************/