@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*, table, input, button, div {
    font-family: 'Nunito', sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
}

body {
    padding: 22px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

section.cards {
    height: 100%;
    width: 100%;
}

section.cards .card {
    height: 100%;
    width: 100%;
    position: relative;
    display: none;
}
section.cards .card.active {
    display: block;
}

.quest {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 14px;
    text-align: center;
    line-height: 22px;
}

header .cursors {
    width: 100%;
    padding: 28px 0 24px 0;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
}
header .cursors .cursor {
    cursor: pointer;
    height: 4px;
    background-color: #F1F3F4;
    width: auto;
    flex: auto;
}
header .cursors .cursor.active {
    background-color: #007B2B;
}

.spanner {
    width: 100%;
    display: flex;
    gap: 6px;
    justify-content: space-between;
    align-items: center;
}
.spanner .spanned {
    flex: 1;
}

.btn {
    font-size: 18px;
    font-weight: bold;
    background-color: #F1F3F4;
    border: none;
    border-radius: 6px;
    height: 48px;
    color: #000000;
}
.btn.down {
    background-color: #007B2B;
    color: white;
}

.bottoms {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    text-align: center;
}

.btn-action {
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(90deg, #1BA050 0%, #0C6060 100%);
    padding-left: 45px;
    padding-right: 45px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
}

.btn-action.disabled {
    background: #868686;
}

input[type="text"], input[type="email"] {
    height: 40px;
    border-radius: 6px;
    border: 1px solid #000000;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 18px;
}

div.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 8px;
}
div.centered .trequarti {
    width: 75%;
}

.pop-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
}
.pop-overlay.active {
    display: flex;
}

div.pop-overlay .popup {
    width: 100%;
    height: 100%;
    font-size: 9px;
    padding: 25px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
div.pop-overlay .popup .pop-cosenza,
div.pop-overlay .popup .pop-montalto {
    width: 100%;
    height: 90%;
    overflow-y: scroll;
    display: none
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* Previene un orizzontale scrollbar */
    overflow-x: hidden;
}

a {
    color: #007B2B;
    text-decoration: none;
}

.form-group {
    width: 100%;
    text-align: left;
}
.form-group > input {
    width: 100%;
}
.hidden {
    display: none;
}

label {
    font-size: 14px;
}

div.loghi {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
div.loghi > svg {
    display: none;
    width: auto;
    height: 60px;
}
div.loghi.x > svg {
    display: inline-block;
}
div.loghi.all #loghi-all, div.loghi.all #loghi-tecnorete  {
    display: inline-block;
}
div.loghi.cosenza #loghi-cs  {
    display: inline-block;
}
div.loghi.montalto #loghi-montalto, div.loghi.montalto #loghi-tecnorete  {
    display: inline-block;
}
a.btn-call {
    display: inline-block;
    padding: 6px 20px;
    background-color: #007B2B;
    color: white;
    border: none;
    outline: none;
}