/* GENERAL AND COMMON CLASSES - START */
.bold700 {
    font-weight: 700;
}

.bg-white {
    background-color: #ffffff;
}

.marginTop20 {
    margin-top: 20px;
}

.marginBottom15 {
    margin-bottom: 15px;
}

.paddingLeft15 {
    padding-left: 15px;
}

.paddingLeft30 {
    padding-left: 30px;
}

/* GENERAL AND COMMON CLASSES - END */

/* ADMIN - START */
.lh-admin-header {
    margin: 40px 0 0;
}

.lh-admin-main {
    width: 98%;
    background-color: #ffffff;
    margin: 0 1% 0 0%;
    overflow: hidden;
    clear: both;
}

.col-inner {
    margin-bottom: 20px;
    padding-left: 30px;
}

.col-sm-6 {
    float: left;
}

/* ADMIN - END */

/* PUBLIC - START */

/* PUBLIC - END */

/* MEDIA QUERIES */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .col-sm-6 {
        width: 100%
    }
}

@media only screen and (min-width: 321px) {
    .col-sm-6 {
        width: 100%
    }
}

@media only screen and (max-width: 320px) {
    .col-sm-6 {
        width: 100%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .col-sm-6 {
        width: 50%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px)
and (orientation: landscape) {
    .col-sm-6 {
        width: 50%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .col-sm-6 {
        width: 50%;
    }
}

@media only screen and (min-width: 1224px) {
    .col-sm-6 {
        width: 50%;
    }
}

@media only screen
and (min-width: 1824px) {
    .col-sm-6 {
        width: 50%;
    }
}

/* iPhone 5 (portrait &amp; landscape)----------- */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px) {
    .col-sm-6 {
        width: 50%;
    }
}

/* iPhone 5 (landscape)----------- */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (orientation: landscape) {
    .col-sm-6 {
        width: 50%;
    }
}

/* iPhone 5 (portrait)----------- */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (orientation: portrait) {
    .col-sm-6 {
        width: 50%;
    }
}

.pannello-testa {
    box-sizing: border-box;
    display: block;
    font-size: 15px;
    line-height: 22.5px;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
}

label.lh-label {
    font-size: 13px;
    font-weight: 800;
}

.lh-form-control {
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.lh-form-group {
    margin-bottom: 15px
}

.lh-button {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    outline: none;
}

.lh-button-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.lh-button-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.lh-button-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.lh-button-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.lh-button-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}