.italic {
    font-style: italic;
}

.flex-container {
  display: flex;
}

#reservation_date_select,
#tablePrix {
    max-width: 600px;
    margin: 0 auto 20px auto !important;
}

.no-border{
    border: none !important;
}

.btn-recherche{
    width: 144px;
    line-height: 20px !important;
    margin-top: 14px;
}

#reservation_date_select table tr td,
#tablePrix table tr td{
    vertical-align: middle;
    text-align: center;
}

.txt-left{
    text-align: left !important;
}

.txt-right{
    text-align: right !important;
}


.bold {
    font-weight: bold;
}

.left {
    float:left;
}

.clear {
    clear: both;
}

.center{
    text-align: center;
}

.txt-right{
    text-align: right;
}

.txt-left{
    text-align: left;
}

.cadre-chambre{
    float: left;
}

.relative{
    position: relative;
}

.overlay{
    position: absolute;
    height: 100%;
    width:100%;
    top:0;
    left:0;
    background-color: #ffffff88;
    z-index:2;
}

#dialogValideResa{
    position: absolute;
    z-index:3;
    bottom: 6%;
    background-color: #fff;
    left: 28%;
    min-width: 550px;
    box-shadow: 1px 1px 8px #555;
    border-radius: 5px;
}

.blur-content {
    -webkit-filter: url(#svg-blur);
    filter: url(#svg-blur);
}

#loading {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: absolute;
    display: block;
    z-index: 1;
    text-align: center;
}

.fc-col-header, .fc-scrollgrid-sync-table {
    margin:0;
}

.wrapper-progressBar {
    width: 100%;
    padding: 25px 0 85px 0;
}

.progressBar {
}

.progressBar li {
    list-style-type: none;
    float: left;
    width: 33%;
    position: relative;
    text-align: center;
}

.progressBar li:before {
    content: " ";
    line-height: 30px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    background-color: white
}

.progressBar li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressBar li:first-child:after {
    content: none;
}

.progressBar li.active:hover{
    cursor: pointer;
}

.progressBar li.active {
    color: dodgerblue;
}

.progressBar li.active:before {
    border-color: dodgerblue;
    background-color: dodgerblue
}

.progressBar li.active + li:after {
    background-color: dodgerblue;
}

#bouton-paypal{
    margin: 0 10px 10px;
}

#validation,
#coordonee,
#paiement,
#confirmation{
    width: 550px;
}

#coordonee tr, #coordonee td, #coordonee th,
#paiement tr, #paiement td, #paiement th,
#confirmation tr, #confirmation td, #confirmation th{
    border: none;
}

.showbox {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5%;
    background-color: #ffffffbb;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 100px;
}
.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    display: none;
}

.calendar_gite{
    width:100%;
}

.fc h2.fc-toolbar-title{
    text-transform: uppercase;
    font: 400 calc(var(--vamtam-primary-font-font-size) - 1px)/1em var(--vamtam-primary-font-font-family);
    letter-spacing: .1em;
    font-size: 1.8em;
}

.police-theme{
    font: 400 calc(var(--vamtam-primary-font-font-size) - 1px)/1em var(--vamtam-primary-font-font-family);
    font-size: 1.2em;
}

.ligne-prix{
    background-color: #f7f7f7;
}

.ligne-prix td{
    border: thick double #fff !important;
}

.ligne-prix h4{
    color: var( --vamtam-accent-color-2 ) !important;
    font: 400 calc(var(--vamtam-primary-font-font-size) - 1px)/1em var(--vamtam-primary-font-font-family);
    border-radius: 0;
    border: none;
    padding: 14px 15px;
    font-size: 1.2em;
}

.btn-recherche .rotate{
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}
@-webkit-keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}
@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

.fc .fc-daygrid-event-harness a.fc-event-start{
    left:7rem !important;
}

.fc .fc-daygrid-event-harness a.fc-event-end{
    margin-right:14rem !important;
}

.fc .fc-daygrid-event-harness a:not(.fc-event-start){
    margin-right:7rem !important;
}

.fc .fc-daygrid-event-harness a:not(.fc-event-start) .fc-event-title{
    visibility:hidden;
}

/*  Tablets in landscape mode, older desktop monitors */

@media only screen and (min-width: 1024px) and (max-width: 1365px) {
    .fc .fc-daygrid-event-harness a.fc-event-start{
        left:5rem !important;
    }

    .fc .fc-daygrid-event-harness a.fc-event-end{
        margin-right:11rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start){
        margin-right:5rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start) .fc-event-title{
        visibility:hidden;
    }

}

/*  Tablets in portrait mode, large display smartphones landscape mode */

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .fc .fc-daygrid-event-harness a.fc-event-start{
        left:3.6rem !important;
    }

    .fc .fc-daygrid-event-harness a.fc-event-end{
        margin-right:8.4rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start){
        margin-right:3.6rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start) .fc-event-title{
        visibility:hidden;
    }
	
	.flex-container {
	  display: flex;
	  flex-direction: column;
	}
}

/*  Smartphones in landscape mode */

@media only screen and (min-width: 421px) and (max-width: 767px) {
    .fc .fc-daygrid-event-harness a.fc-event-start{
        left:3rem !important;
    }

    .fc .fc-daygrid-event-harness a.fc-event-end{
        margin-right:6rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start){
        margin-right:3rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start) .fc-event-title{
        visibility:hidden;
    }
	
	.flex-container {
	  display: flex;
	  flex-direction: column;
	}
	
	.btn-recherche{
		width:200px;
	}
}

/*  Smartphones in portrait mode  */

@media only screen and (max-width: 420px) {

    #dialogValideResa{
        top:0;
        left:-5%;
        height:100%;
        box-shadow: none;
        min-width: 110% !important;
    }

    .overlay {
        position: fixed;
        height: 100%;
        width: 200vw;
        top: 0;
        left: 0;
        background-color: #ffffff;
        z-index: 2;
    }

    #validation, #coordonee, #paiement, #confirmation {
        width:100% !important;
    }

    #validation .content{
        padding:0px !important;
    }

    #validation button, #coordonee button, #paiement button, #confirmation button{
        width:100% !important;
        margin: 5px;
    }


    .fc .fc-daygrid-event-harness a.fc-event-start{
        left:1.5rem !important;
    }

    .fc .fc-daygrid-event-harness a.fc-event-end{
        margin-right:3rem !important;
    }

    .fc .fc-daygrid-event-harness a:not(.fc-event-start){
        margin-right:1.5rem !important;
    }

    .fc .fc-daygrid-event-harness .fc-event-title{
        visibility:hidden;
    }
	
	.flex-container {
	  display: flex;
	  flex-direction: column;
	}
	
	.btn-recherche{
		width:200px;
	}
}
