/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Make circles that indicate the steps of the form: */
/* Hide all steps by default: */

.errezeta-error {
    color: #FFFFFF;
    text-align: center;
    font-weight: 600;
    position: relative;
	background: #00aabb;
	border-radius: .4em;
  padding: 10px;
  margin-bottom: 20px;
}
.errezeta-error:after {
  content: '';
position: absolute;
bottom: 0;
left: 50%;
width: 0;
height: 0;
border: 26px solid transparent;
border-top-color: #00aabb;
border-bottom: 0;
border-left: 0;
margin-left: -13px;
margin-bottom: -26px;
}



.errezetaForm fieldset {
    background: white;
    border: 0 none;
    padding: 20px 30px;
    width: 100%;
    /*stacking fieldsets above each other*/
    left: 0;
    top:5px;
    background: transparent;
    z-index: 2;
    padding: 0 10%
}
/*Hide all except first fieldset*/
.errezetaForm fieldset:not(:first-of-type) {
    display: none;
}
/*inputs*/
.errezetaForm input, .errezetaForm textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}
/*buttons*/
.errezetaForm .action-button {
margin-top: 8px;
}
.errezetaForm .action-button:hover, .errezetaForm .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}
.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before, #progressbar li.active:after {
    background: #27AE60;
    color: white;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance:textfield;
    background-color: rgba(0,0,0,0.04);
    border-radius: 4px;
    border: 2px solid rgba(0,0,0,0);
}

input[type=number]:focus {
    border-color: #d9047a;
}
.errezetaForm select {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin: 4px 0;
    font-size: 14px;
    font-family:'Montserrat', helvetica, sans-serif;
}

.didascalia{
  position: relative;
background: #d9047a;
border-radius: .4em;
color: #FFFFFF;
margin-top: 15px;
margin-bottom: 20px;
padding: 10px
}
.didascalia a{
  color: #FFFFFF;
}
.didascalia:after {
  content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 26px solid transparent;
	border-bottom-color: #d9047a;
	border-top: 0;
	border-left: 0;
	margin-left: -13px;
	margin-top: -26px;
}
.conferma{
  position: relative;
background: #d9047a;
border-radius: .4em;
color: #FFFFFF;
margin-top: 10px;
margin-bottom: 20px;
padding: 10px
}
.conferma a{
  color: #FFFFFF;
}
.conferma:after {
  content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 26px solid transparent;
	border-bottom-color: #d9047a;
	border-top: 0;
	border-left: 0;
	margin-left: -13px;
	margin-top: -26px;
}
.label-prenotazione {
    text-align: center;
    margin: 12px 0;
}
.check {
    text-align: left;
}

.check input {
    width: auto;
    float: left;
    margin-top: 6px;
}


.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* 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: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.label-prenotazione input:checked + .slider {
    background-color: #2196F3;
}

.label-prenotazione input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

.label-prenotazione input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.sconto {
  color: #FFFFFF !important
}
.slider.round:before {
    border-radius: 50%;
}
