/* Generic CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hide {
    display: none;
}

.relative {
    position: relative;
}

.active {
    background-color: #dff0d8 !important;
    border-color: #3c763d!important;
}

/* Global CSS */
.title-row {
    margin: 30px 0;
}

.home-title {
    text-align: center;
    font-weight: bold;
    font-size: xx-large;
    line-height: 150px;
    vertical-align: middle;
}

.img-small {
    width: 150px;
}

.text-link {
    text-decoration: none;
    color: initial;
}

.text-link:hover {
    text-decoration: none;
    color: initial;
}

.layover {
    position: fixed; 
    display: block; 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99;
}

/* Specific aggiungicertificatomedico.php CSS */
.result {
    position: absolute;
    width: calc(100% - 39px);
    max-height: 150px;
    background-color: #fff;
    overflow: scroll;
    margin-left: 39px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #ccc;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #ccc;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #ccc;
}

.result-element {
    margin: 0;
    padding: 5px 0;
    padding-left: 12px;
}

.result-element:hover {
    background-color: #eee;
    cursor: pointer;
}