
.logo-sito-row { width: 28px; }
.logo-sito-row.small { width: 18px; }
.error { background-color: #FEE; color: #F00; }


.pointer {
    cursor: pointer;
    opacity: 0.9;
}
.pointer:hover {
    opacity: 1;
}


/* tables */

.table {
    clear: both;
    display: table;
}

.table.cell {
    display: table-cell;
}

.inline-block {
    display: inline-block;
}



/* layout */
.bordered {
    border: 1px solid #333;
}
.bordered.thick {
    border-width: 4px;
}

.bordered.green {
    border-color: #27ae60;
}

.bordered.red {
    border-color: #c0392b;
}

.bordered.radius-5 {
    border-radius: 5px;
}

.text-bold {
    font-weight: bold;
}


.text-striked {
    text-decoration: line-through;
}
   

.text-italic {
    font-style: italic !important;

}

/* padding */
.pad-0-5 {
    padding: 0.5rem;
}

.pad-1 {
    padding: 1rem;
}

.pad-1-5 {
    padding: 1.5rem;
}

.pad-l-1 {
    padding-left: 1rem;
}
.pad-r-1 {
    padding-right: 1rem;
}


.pad-l-2 {
    padding-left: 2rem;
}
.pad-r-2 {
    padding-right: 2rem;
}

/* widths */
.w-40 {
    width: 40%;
}
.w-50 {
    width: 50%;
}
.w-60 {
    width: 60%;
}
.w-70 {
    width: 70%;
}
.w-80 {
    width: 80% !important;
}
.w-100 {
    width: 100%;
}

.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.text-centered {
    text-align: center;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flex-aligned-vertical {
    display: flex;
    align-items: center;
}
.fit-content {
    width: fit-content;

}

/* colors */
.text-green {
    color: #27ae60 !important;
}
.text-green-dark {
    color: #363 !important;
}
.text-red {
    color: #c0392b !important;
}
.text-gray {
    color: #333 !important;
}
.text-light-gray {
    color: #666 !important;
}
.text-pink {
    color: #e84393 !important;
}
.text-blue {
    color: #0984e3 !important;
}
.text-orange {
    color: #d35400 !important;
}


.text-white {
    color: #FFF !important;
}

.text-dark {
    color: #333 !important;
}


.position-relative {
    position: relative;
}

.m-right-05 {
    margin-right: 0.5rem;
}
.m-right-1 {
    margin-right: 1rem;
}
.m-right-2 {
    margin-right: 2rem;
}

.m-right-3 {
    margin-right: 3rem;
}

.p-right-05 {
    padding-right: 0.5rem;
}
.p-right-1 {
    padding-right: 1rem;
}
.p-right-2 {
    padding-right: 2rem;
}

.p-right-3 {
    padding-right: 3rem;
}


.p-1 {
    padding: 8px;
}

.p-left-05 {
    padding-left: 0.5rem;
}
.p-left-1 {
    padding-left: 1rem;
}
.p-left-2 {
    padding-left: 2rem;
}

.p-left-3 {
    padding-left: 3rem;
}



.m-left-05 {
    margin-left: 0.5rem;
}
.m-left-1 {
    margin-left: 1rem;
}
.m-left-2 {
    margin-left: 2rem;
}

.m-left-3 {
    margin-left: 3rem;
}


.m-top-05 {
    margin-top: 0.5rem;
}
.m-top-1 {
    margin-top: 1rem;
}
.m-top-2 {
    margin-top: 2rem;
}
.m-top-3 {
    margin-top: 3rem;
}
.m-top-4 {
    margin-top: 4rem;
}

.m-bot-05 {
    margin-bottom: 0.5rem;
}

.m-bot-1 {
    margin-bottom: 1rem;
}
.m-bot-2 {
    margin-bottom: 2rem;
}
.m-bot-4 {
    margin-bottom: 4rem;
}
.v-aligned {
    vertical-align: middle !important;
}


.display-inline-block {
    display: inline-block;
}
.display-none {
    display: none;
}
.visibility-hidden {
    visibility: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.no-wrap {
    white-space: nowrap;
}


.bottom-border {
    border-bottom: 1px solid #CCC;
}

.hover-effect:hover {
    background-color: #EEE;
}

.font-size-1 {
    font-size: 0.8rem;
}
.font-size-2 {
    font-size: 1rem ;
}

.font-size-3 {
    font-size: 1.2rem;
}
.font-size-4 {
    font-size: 1.5rem;
}

.float-left {
    float:left;
}

.float-right {
    float:right;
}

.smaller {
    font-size: 90%;
}
.smallest {
    font-size: 80%;
}

.bigger {
    font-size: 110%;
}
.biggest {
    font-size: 130%;
}
.bold {
    font-weight: bold;
}


table.basic {
    border-collapse: collapse;
}
table.basic tr, table.basic td {
    border: none;
}


table.tiny-table {
    border-collapse: collapse;
}

table.tiny-table tr:nth-child(even){background-color: #f2f2f2;}
table.tiny-table tr:hover {background-color: #ddd;}


table.tiny-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #7f8c8d;
    color: white;
  }

table.tiny-table, table.tiny-table th, table.tiny-table td {
    border: 1px solid black;
    padding: 8px;
  }



button:disabled,
button[disabled]{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
  cursor:not-allowed;
}


button:disabled:hover,
button[disabled]:hover{
  border: 1px solid #999999;
  background-color: #cccccc;
  color: #666666;
}