.stat-set.content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 50px);
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stat-set .card-wp {
    max-width: 1000px;
    /* width: 90vw; */
    width: 100%;
    /* padding: 20px; */
}
.stat-set .card {
    padding-bottom: 20px;
    position: relative;
    width: auto;
    flex-direction: column;
}
.stat-set form > div{
    display: flex;
    flex-direction: column;
    padding: 5px 35px 3px 30px;
}
.stat-set fieldset {
    border: none;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.stat-set fieldset label {
    color: #929292;
    padding-bottom: 5px;
    width: 200px;
}
.stat-set form > div > label {
    color: #888;
    padding-bottom: 9px;
    font-weight: bold;
}
.stat-set form > div > div > label {
    color: #888;
    padding-bottom: 9px;
}
.stat-set input[name="locName"] {
    margin-top: 10px;
}
.stat-set .checkbox{
    height: 40px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}
.stat-set .checkbox > label{
    padding: 0px;
    padding-left: 10px;
}
.stat-set .checkbox.disabled > label {
    color: #d6d6d6;
}
.stat-set .missing{
    border: 3px solid red !important;
    box-shadow: 0px 0px 20px red;
}
.stat-set label.missing {
    color: red;
    border: none !important;
    box-shadow: none;
}
.stat-set form input[type="checkbox"] {
    color: var(--col-blue-2);
    width: 1.18rem;
    height: 1.18rem;
    margin: 0px;
    /* margin-bottom: 20px; */
}
body:not(.activate) .stat-set .activate{
    display: none;
}
body.activate .stat-set .station-name{
    display: none;
}
.stat-set .station-name {
    width: 100%;
    max-width: 1000px;
    padding: 0px 20px;
    position: relative;
    box-sizing: border-box;
}
.stat-set .station-name h3 {
    text-align: center;
    /* color: var(--col-blue-2); */
    color: white;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 2rem;
    /* font-family: Arial; */
    background: var(--col-blue-2);
    border-radius: 50px;
    padding: 10px 0px;
    margin: 50px 0px 20px 0px;
}
.stat-set .station-name div{
    text-align: center;
    color: white;
    background: #ccc8;
    border-radius: 20px;
    padding: 10px 20px;
}
.stat-set div.submit{
    padding-top: 20px;
}
.stat-set .switch {
    margin-top: 8px;
    margin-bottom: 20px;
    padding: 0px;
}
.stat-set .switch input[type="radio"]{
    display: none;
}
.stat-set .warning{
    /* padding: 0px 15px; */
    /* padding-bottom: 20px; */
    color: red;
    /* text-align: center; */
    line-height: 2rem;
}
.stat-set .switch >div:not(:hover) {
    /*transition: background 0.0s 0.5s;*/
}
.stat-set .switch > div, .stat-set .switch > div:first-child::before {
    border-radius: 50px;
}
.stat-set .switch >div.selected:hover {
    /*transition: background 0.3s 0.0s;*/
    /*background: #51a8f9;*/
}
.stat-set form .activate{
    margin-top: 20px;
}
.stat-set div.disclaimer {
    color: #ba2323;
    text-align: center;
    padding-bottom: 20px;
}

.stat-set div.data-info {
    color: #aaa;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1rem;
}

.stat-set .info-tooltip{
    position: relative;
    width: max-content;
    padding-bottom: 0px;
}
.stat-set .info-tooltip span{
    position: absolute;
    width: 300px;
    left: calc(105% + 20px);
    top: -0.9rem;
    font-size: 1rem;
    background: #888;
    border-radius: 7px;
    padding: 5px 7px;
    font-weight: 500;
    color: #fff;
    z-index: 10;
}
.stat-set .info-tooltip span::after { /* arrow*/
  content: " ";
  position: absolute;
  top: 50%; /* At the bottom of the tooltip */
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #888 transparent transparent;
}

.stat-set .info-tooltip:not(:hover) span{
    display: none;
}
.stat-set .info-tooltip::after{
    content: "i";
    font-weight: bolder;
    /* font-family: -webkit-pictograph; */
    font-size: 0.6rem;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    padding-top: 2px;
    box-sizing: border-box;
    background: #888;
    display: inline-block;
    color: white;
    text-align: center;
    position: absolute;
    top: 3.5px;
    right: -20px;
} 

.stat-set .spacer {
    width: 100%;
    height: 20px;
}

.stat-set #map{
    height: 500px;
    border-radius: 7px;
    margin-bottom: 10px;
}

#advancedSettingsSelector{
    margin-left: 30px;
    text-decoration: none;
    font-size: 18px;
    color: #003d67;
    cursor: pointer;
}

#advancedSettings {
    display: none;
    font-family: Arial;
}

input[type="number"] {
    font-size: 1rem;
    padding-left: 8px;
    border: 0;
    float: right;
    border-bottom: 2px solid var(--col-blue-2);
}

@media (max-width: 800px){
    .stat-set .info-tooltip span{
        top: 120% !important;
        right: -174px;
        left: auto;
    }
    .stat-set .info-tooltip span::after { /* arrow*/top: auto;bottom: 100%;right: 50%;border-color: transparent transparent #888 transparent;}
}
@media (max-width: 610px){
    .stat-set form > div{
        padding: 5px 17px 3px 15px;
    }
    .stat-set .card-wp{
        padding: 10px 10px;
    }
}