﻿.w3-navbar {
    margin-top: -23px;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    /*width: 600px;*/
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
}
/*
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
*/
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip-table {
    border: 1px solid;
    border-collapse: collapse;
    width: 600px;
    color: #fff;
}

.tooltip-table td {
    border: 1px solid #4CAF50;
}
.tooltip-table th {
    border: 2px solid #4CAF50;
    padding: 3px;
}

.loader {
    border: 6px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #009688;
    /*border-bottom: 8px solid #009688;*/
    width: 32px;
    height: 32px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	z-index: -1;
	background: #ccc;
}

#img-dalle {
    background: url("../images/dalle.png");
    background-repeat: no-repeat;
    width: 563px;
    height: 400px;
    margin: 50px 0px 0px 100px;
    /*margin-left: 100px;*/
    background-size: contain;
    font-weight: bold;
}

#a-dalle {
    position: relative;
    top:-25px;
    left: 45%;
}

#b-dalle {
    position: relative;
    top: 160px;
    left: -105px;
}

#c-dalle {
    float: left;
    position: relative;
    top: 200px;
    left: 45px;
}

#d-dalle {
    position: relative;
    top: 200px;
    left: 315px;
}

#e-dalle {
    position: relative;
    top: 250px;
    left: 200px;
}

#img-refend {
    background: url("../images/refend_I.png");
    background-repeat: no-repeat;
    width: 380px;
    height: 400px;
    margin: 50px 0px 50px 100px;
    background-size: contain;
    font-weight: bold;
}

#b-refend {
     position: relative;
     top:-25px;
     left: 25px;
 }

#a-refend {
    position: relative;
    top: 150px;
    left: -110px;
}

#c-refend {
    position: relative;
    top: 350px;
    left: 70px;
}

.table-loads {
    font-size: 11px;
}

.table-loads tr {
    height: 60px;
}

.table-loads tr:last-child {
    height: 60px;
    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: #808080;
    background-color: #eeeeee;
}

.custom-input {
    text-align: right;
    width: 60px;
}

.custom-input:disabled {
    background:#ddd;
}

.tiny-box {
    /*float: left;*/
    display: inline-block;
    height: 10px;
    width: 10px;
    /*margin-bottom: 15px;*/
    border: 0px;
    clear: both;
}

.red-b {
    background-color: red;
}

.green-b {
    background-color: green;
}

.orange-b {
    background-color: orange;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:focus + .slider {
    box-shadow: 0 0 1px #4CAF50;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}