body {
    background-image: url('../img/geometry.png');
    /*font-size: 160%;*/
}
.container {
    margin-bottom: 80px;
}
/*Evita che gli iPhone facciano zoom automatico sui form */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select,
    textarea,
    input {
        font-size: 16px;
    }
    label > .label-body {
        margin-left: .4rem;
        position: relative;
        top: 1px;
    }
}
img.logo {
    width: 180px;
    height: 180px;
}
img.logo-mini {
    width: 140px;
    height: 140px;
}
.center {
    text-align: center;
}
.padding200 {
    padding-top: 200px;
    height: auto;
    overflow: hidden;
    position: relative;
}
.padding100 {
    padding-top: 100px;
    height: auto;
    overflow: hidden;
    position: relative;
}
.margin50 {
    margin-top: 80px;

}
@media (max-width:399px) {
    .padding200 {
        padding-top: 100px;
        height: auto;
        overflow: hidden;
        position: relative;

    }
    .padding100 {
        padding-top: 50px;
        height: auto;
        overflow: hidden;
        position: relative;

    }
}
.rightlabel {
    float: right;
}
.paddingCheckbox {
    padding-top: 35px;
}
#advancedForm, #addressBox, #urlBox  {
    display: none;
    height: auto;
    overflow: hidden;
    position: relative;
}
.resultBox {
    height: auto;
    overflow: hidden;
    position: relative;
}

#advFormDisplay, #addressDisplay, #urlDisplay {
    cursor: pointer;
    text-decoration: underline;
}

#submit:disabled {
    cursor:not-allowed !important;
    background-color: #196178;
    border-color: #071D24;
}

.noselect {
    cursor:default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pointer {
    cursor: pointer;
}


.summaryBox span {
    display:block;
    padding: 5px;
}

#addressBox, #urlBox, .resultBox {
    -webkit-box-shadow: 10px 10px 29px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 29px -8px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 29px -8px rgba(0,0,0,0.75);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

#addressBox li, #urlBox li, .resultBox li {
    display:block;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #aaa;
    margin:0;
    overflow: hidden;
}

#addressBox li:hover, #urlBox li:hover, .resultBox li:hover {
    background: #eee;
}
#addressBox li:last-child, #urlBox li:last-child, .resultBox li:last-child {
    border-bottom: none;
}

#addressBox ul, #urlBox ul, .resultBox ul {
    list-style-type: none;
    margin:0;
    overflow-x: scroll;
}
@media (min-width: 1000px)  {
    #addressBox ul, #urlBox ul, .resultBox ul {
        overflow-x: hidden;
    }
}

#addressBox li > span, #urlBox li > span, .resultBox li > span {
    display: block;
    width: 100%;
}


.address, .urlCode {
    padding:2px;
    font-size: 110%;
    color: #0060ba;
    font-family: monospace;
    text-align: center;
}
.infoLink, .urlElem {
    padding:2px;
    display: block;
    position: relative;
    font-size: 90%;
}

.infoLink, .urlElem {
    float: right;
}
.address, .urlCode {
    text-align: left;
}



.iconList {
    vertical-align: middle;
    width: 24px;
    height: 24px;
}

.box {
    padding: 15px;
    border: 1px solid #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 110%;
}
.summaryBox {
    background-color: #fefefe;
}

.welcomeBox {
    background-color: #fefefe;
    -webkit-box-shadow: 0px 0px 64px 9px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 64px 9px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 64px 9px rgba(0,0,0,0.75);
}
.welcomeBox span {
    display: block;
}
#footer {
    background-image: url('../img/geometry2.png');
    z-index:1;
    padding: 10px;
    position: fixed;
    bottom:0;
    width:100%;
    height:60px;
    box-sizing: border-box;
}

#footer span {
    display: block;
    text-align: center;
    color: #0e0e0e;
}

.addressLink {
    padding:2px;
    font-size: 110%;
    color: #0060ba;
    font-family: monospace;
    text-align: center;
    text-decoration: underline;
}

.addressLink:hover {
    color:#0060ba;
    background: #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    /*width: 120px;*/
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 3px ;
    border-radius: 6px;
    white-space: nowrap;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: -1px;
    right: 110%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent black;
}

/* Tooltip text */
.tooltip .tooltiptextleft {
    visibility: hidden;
    /*width: 120px;*/
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 3px ;
    border-radius: 6px;
    white-space: nowrap;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: -1px;
    left: 110%;
    margin-left: 3px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext, .tooltip:hover .tooltiptextleft {
    visibility: visible;
    opacity: 1;
}



.tooltip .tooltiptextleft::after {
    content: " ";
    position: absolute;
    top: 50%;
    right: 100%; /* To the left of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent black transparent transparent;
}
.classicWhite {
    background: #fff;
}

#navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #eee;
    margin-bottom: 0px;
    position: fixed;
    z-index: 10;
    top:0;
    width:100%;
}
#navbar li {
    display: inline-block;
    padding:10px;
    margin-bottom: 0px;
}
@media (min-width: 1000px)  {
    #navbar li {
        padding:25px;
    }
}
#navbar ul {
    margin-bottom: 0px;
}
#navbar span {
}
#navbar a {
    text-decoration: none;
    cursor:pointer;
}
.menuImg {
    height: 24px;
    width: 24px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    z-index: 5;
}

#ajaxResult {
    display: inline;
}

#appVersion {
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: box-shadow 0.3s;
    border: 1px solid #eee;
    position: fixed;
    bottom:10px;
    right: 10px;
    z-index:10;
}
#appVersion span{
    text-decoration:none;
}
#appVersion:hover {
    -webkit-box-shadow: 1px 5px 19px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 5px 19px -8px rgba(0,0,0,0.75);
    box-shadow: 1px 5px 19px -8px rgba(0,0,0,0.75);
}
@media (max-width: 999px) {
    #appVersion {
        bottom: 60px;
    }
}

.redSpan {
    color: #a50000;
}

#uploadBtn {
    display: none;
    position: absolute;
    z-index: -1;
}
.uploadBox{
    border: 1px solid #d1d1d1;
    cursor: pointer;
    padding:6px;
    background: rgb(255, 255, 255);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    display:inline-block;
}
.uploadBox:hover {
    background: rgb(240, 240, 240);
}
.welcomehr{
    margin-top: 10px;
}
