:root {
    --blue: #00b7fc;
    --yellow: #ffe810;
    --white:#ffffff;
    --grey:#cccccc;
}

* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100vw;
}

body {
    background-color: var(--blue);
    font-family: Inter, sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    /* disallow text selection */
    -webkit-user-select: none;
    

}

a {
    color: var(--blue);
    text-decoration: none;
}

header {
    font-family: 'Gochi Hand', cursive;
    color: var(--yellow);
    background-color: #333;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(50,50,50,.3);
}

header .tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    padding: 0 15px;
}

header a {
    color: inherit;
    text-decoration: none;
}

header h1 {
    margin: 0;
    text-align: center;
    height: 40px;
    line-height: 40px;
    background-color: var(--blue);
    color: var(--yellow);
}

header .languages {
    font-family: sans-serif;
    text-transform: uppercase;
}

header .languages a {
    font-size: 14px;
    margin-left: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #fff;
    border: 1px solid #fff;
    text-decoration: none;
}

header .languages a.active {
    background-color: var(--yellow);
    color: #000;
}

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 6px 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    /* display: flex;
    align-items: center; */
}

footer .willeasy, footer .eu {
    flex: 1;
}

footer p {
    margin: 6px 0;
    font-size: 12px;
}

footer img {
    vertical-align: middle;
    max-width: 100px;
    margin: 0 10px;
    max-height: 40px;
}


footer a {
    color: var(--blue);
    text-decoration: none;
}

h2 {
    font-size: 26px;
}

h2 .number {
    background-color: var(--yellow);
    color: #fff;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-block;
    color: #333;
    text-align: center;
    line-height: 50px;
    color: #000;
}

h3 {
    margin-bottom: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.user-info {
    background-color: #fff;
    border-radius: 15px;
    padding: 15px;
}

#slideshow {
    display: flex;
    transform: translateX(0);
    transition: transform .3s;
    margin-top: 80px;
    padding-bottom: 110px;
}

#map {
    height: 300px;
    background: #f0f0f0;
}

.field-group label {
    padding: 5px 15px;
}

.field-group input {
    display: block;
    width: 100%;
    border-radius: 200px;
    border: 1px solid #333;
    font-size: 18px;
    padding: 15px;
    font-weight: bold;
}

.field-group {
    margin-bottom: 30px;
}

.container {
    width: 100vw;
    flex-shrink: 0;
    overflow-x: hidden;
}

.slide {
    max-width: 700px;
    padding: 15px;
    margin: 0 auto;
}

.pagination {
    display: flex;
    margin-top: 25px;
    justify-content: center;
}

.btn {
    padding: 15px 20px;
    border-radius: 5px;
    background-color: var(--yellow);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    display: inline-block;
    border: 1px solid var(--yellow);
    cursor: pointer;
    font-size: inherit;
}

.btn:focus, .btn:hover {
    border: 1px solid #000;
}

.btn.disabled {
    opacity: .5;
    cursor: not-allowed;
    pointer-events: none;
}

.title {
    background-color: rgba(255,255,255,.3);
    background-color: rgba(0,183,252,.2);
}

.title > .slide {
    padding: 20px 15px;
    display: flex;
    align-items: center;
}

.title .back a {
    background-color: var(--yellow);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
}

.title .back a:hover, .title .back a:focus {
    background-color: #000;
    color: #fff;
}


.title h2 {
    margin: 0 0 0 20px;
}



.status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.status .btn {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin: 15px;
    opacity: .8;
    transition: all .3s;
    transform: scale(.85);
    background-color: #000;
    color: #fff;
}

.status .btn.active i {
    font-size: 40px;
}

.status .btn.active {
    color: #000;
    background-color: var(--yellow);
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 50px yellow
}

.btn.send {
    width: 100%;
}

.info {
    background-color: #fff;
    padding: 5px 10px;
    font-style: italic;
}

label.text-label {
    background: var(--yellow);
    display: inline-block;
    margin-left: 20px;
    font-variant: small-caps;
    padding: 5px 10px;
}

.alert {
    color: #900;
    border-width: 1px;
    border-style: dashed;
    padding: 20px;
    background-color: #fff;
    margin: 15px 0;
    font-weight: bold;
}

.alert-danger {
    color: #900;
    border-color: #f00;
}




.choices .choice label {
    display: flex;
    justify-content: space-between;
    background-color: var(--yellow);
    align-items: center;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
    cursor: pointer;
}

.choices .choice label:not(.search):hover {
    background-color: #000;
    color: #fff;
}

.choices .choice label h3 {
    margin: 0;
    font-size: 20px;
    text-align: center;
}

.choices .choice label img.preview + h3 {
    margin-top: 15px;
}

.choices .choice input[type=radio] {
    display: none;
}

.choices .choice .place-info {
    width: 100%;
    margin-right: 15px;
}

.choices .choice .place-info h3 {
    margin: 0;
}

.choices .choice .place-info p {
    margin: 0 15px;
    text-align: center;
}

.choice form {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.choice input[type=search] {
    width: 90%;
    border: none;
    border-bottom: 1px dashed #333;
    font-size: 22px;
    padding: 8px 8px 2px;
    font-weight: bold;
    background: none;
    margin-right: 20px;
}

.choice input[type=search] + button {
    outline: none;
    border: none;
    background: none;
    font-size: 22px;
}


.domanda {
    background-color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.domanda h3 {
    margin: 0 0 15px;
}

.domanda ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.domanda li {
    margin: 0 0 10px;
}


.place-preview {
    position: relative;
    height: 300px;
    background: #fff;
}

.place-preview .place-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,.5);
    color: #fff;
    padding: 15px;
}

.place-preview .place-name h4, .place-preview .place-name p {
    margin: 0;
}

.place-preview .place-name h4 {
    font-size: 20px;
}

.place-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-preview h3 {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.9);
    padding: 10px;
    color: var(--yellow);
}

input[type=number] {
    border: 1px solid #ccc;
    padding: 3px 6px;
    font-size: 24px;
}

.filePreview {
    height: 160px;
    width: 160px;
    display: block;
    border-radius: 15px;
    background-color: #eee;
    object-fit: cover;
    display: inline-block;
    margin: 0 15px 15px 0;
}

.vote label {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    cursor: pointer;
    text-align: center;
    line-height: 40px;
    background: #eee;
    font-size: 24px;
}

.vote input {
    display: none;
}

.vote input:checked + label {
    background: var(--blue);
    color: #fff;
}



input[type=file] {
    xxdisplay: none;
}

img.preview {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
}


.thankyou {
    text-align: center;
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
}

.row {
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,.5);
    display: flex;
    color: #fff;
}

.row span:first-child {
    width: 10%;
}

.row span:nth-child(2) {
    width: 70%;
    color: #000;
    font-weight: bold;

}

.row span:last-child {
    font-weight: bold;
    width: 30%;
    text-align: right;
}

.field {
    margin-bottom: 30px;
}

.field label {
    display: block;
    margin-bottom: 5px;
}

.field input[type=text], .field input[type=email], .field input[type=number], .field input[type=password], .field textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 999px;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: bold;
}

.errorlist {
    color: #c00;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
}