/*
Theme Name: Avada Child - Pure Smile
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.avada-has-rev-slider-styles .avada-skin-rev {
	border: 0!important;
}

.uppercase, .text-uppercase {text-transform: uppercase;}


.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-main-menu>ul>li>a,
.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-header {
	transition: all .2s linear;
}

.fusion-header-wrapper .fusion-header {
	transition: all .2s linear;
}



/* MENU */
.fusion-menu .fusion-menu-item-button .menu-text {
    font-size: 18px;
}

.fusion-menu .current-menu-item a:not(:hover):after {
	border: 0!important;
}

.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-main-menu>ul>li>a,
.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-header {
	transition: all .2s linear;
}

.fusion-header-wrapper .fusion-header {
	transition: all .2s linear;
}

body:not(.fusion-header-layout-v6).fusion-top-header .fusion-main-menu>ul>li:not(.fusion-menu-item-button)>a.fusion-bottombar-highlight:not(.fusion-main-menu-icon):after {
	top: inherit!important;
	bottom: 0!important;
}

.fusion-is-sticky .fusion-logo img {
    width: 80px!important;
}

.fusion-is-sticky .fusion-menu .fusion-menu-item-button .menu-text {
    font-size: 14px;
}

.fusion-body .fusion-is-sticky.fusion-header-wrapper .fusion-header,
.fusion-is-sticky .fusion-main-menu>ul>li>a {
	height: 60px!important;
}





/* ACCUEIL */
.fusion-content-boxes .content-wrapper-background {
    min-height: 326px;
    border-radius: 20px;
}


.fusion-title.left-bordered-title,
.fusion-title.right-bordered-title {
	position: relative;
}

.fusion-title.left-bordered-title:after {
    content: "";
    position: absolute;
    top: 23px;
    left: -115px;
    width: 100px;
    height: 4px;
    background: #D9C6B0;
}

.fusion-title.right-bordered-title:after {
    content: "";
    position: absolute;
    top: 23px;
    right: -115px;
    width: 100px;
    height: 4px;
    background: #D9C6B0;
}

.fusion-title.dark-border:after {
	background: #8c6e5d;
}





.content-boxes-timeline-vertical .content-box-heading {
    text-transform: uppercase;
}

@media(max-width: 992px) {
	.right-vertical-content-boxes.fusion-content-boxes .heading .content-box-heading {
		text-align: right!important;
	}

	.fusion-content-boxes .heading .content-box-heading {
		font-size: 20px!important;
	}
}


.right-vertical-content-boxes .heading{
	justify-content: end;
    flex-direction: row-reverse;
}

.right-vertical-content-boxes .heading-with-icon .fontawesome-icon {
	margin-left: 20px!important;
	margin-right: 0!important;
}

.right-vertical-content-boxes.fusion-content-boxes .content-container {
	padding-left: 0!important;
	padding-right: 104px;
	text-align: right;
}

.right-vertical-content-boxes.fusion-content-boxes.content-boxes-timeline-vertical .content-box-column.fusion-appear .content-box-shortcode-timeline-vertical {
    right: 57px;
    left: inherit!important;
}







.fusion-carousel .fusion-carousel-item img {
    border-radius: 10px
}


table {border: 0!important;}

.table-1 tr {
	background: transparent!important;
	border: 0!important;
}

.table-1 tr td {
    border: 0!important;
    padding: 0!important;
}



.contact .fusion-column-wrapper {
	overflow: inherit!important;
}

.contact .fusion-title.left-bordered-title:after  {
	top: 9px!important;
}


@media(max-width: 992px) {
	.no-border-in-mobile .fusion-column-wrapper {
		border: 0!important;
	}
}


/* CHECKBOX CONTACT */
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
	position: absolute;
	left: -9999px;
}

[type="checkbox"]:not(:checked) + span,
[type="checkbox"]:checked + span,
[type="radio"]:not(:checked) + span,
[type="radio"]:checked + span {
	position: relative;
	padding-left: 2.5em;
	cursor: pointer;
	display: block;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + span:before,
[type="checkbox"]:checked + span:before {
	content: '';
	position: absolute;
	left: 0; top: 4px;
	width: 1.5em; height: 1.5em;
	border: 2px solid #ccc;
	background: #fff;
	border-radius: 4px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

[type="radio"]:not(:checked) + span:before,
[type="radio"]:checked + span:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	background: #fff;
	border-radius: 13px;
	box-shadow: inset 0 1px 3px rgba(0,0,0,.1);
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + span:after,
[type="checkbox"]:checked + span:after {
	content: '\f00c'!important;
	position: absolute;
	    top: 9px;
	left: 4px;
	color: #666;
	transition: all .2s;
	font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f007";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
}

[type="radio"]:not(:checked) + span:after,
[type="radio"]:checked + span:after {
	content: ''!important;
	position: absolute;
	top: 9px;
	left: 5px;
	color: #666;
	transition: all .2s;
	-moz-osx-font-smoothing: grayscale;
	height: 14px;
	width: 14px;
	background-color: #666;
	border-radius: 50%;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + span:after,
[type="radio"]:not(:checked) + span:after {
	opacity: 0;
	transform: scale(0);
}
[type="checkbox"]:checked + span:after,
[type="radio"]:checked + span:after {
	opacity: 1;
	transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + span:before,
[type="checkbox"]:disabled:checked + span:before,
[type="radio"]:disabled:not(:checked) + span:before,
[type="radio"]:disabled:checked + span:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}
[type="checkbox"]:disabled:checked + span:after,
[type="radio"]:disabled:checked + span:after {
	color: #999
}
[type="checkbox"]:disabled + span,
[type="radio"]:disabled + span {
	color: #aaa;
}
/* accessibility */
[type="checkbox"]:checked:focus + span:before,
[type="checkbox"]:not(:checked):focus + span:before ,
[type="radio"]:checked:focus + span:before,
[type="radio"]:not(:checked):focus + span:before {
	border: 2px dotted #666;
}

/* hover style just for information */
[type="checkbox"]:checked:focus + span:hover:before {
	border: 2px solid #666!important;
}





.wpcf7 .wpcf7-form-control,
.wpcf7 .wpcf7-select {
	font-size: 14px!important;
}

.wpcf7 .rgpd + .wpcf7-list-item-label{line-height: 1.3em;}

.wpcf7 .conditions {font-size: 12px;}

.wpcf7 h3 {
	color: #103b73!important;
    font-size: 16px!important;
    font-weight: 600!important;
    text-transform: uppercase!important;	
}

.wpcf7 p {margin: 0;}

.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item, {
	margin: 0 2em 0 0;
}

.wpcf7-form input[type="submit"] {
	margin: 1em 0 0!important;
}





.fusion-modal .modal-body p+h3 {
	margin-top: 1em!important;
}

.modal-body .pj {
	    color: #122337!important;
}

.wpcf7 .fusion-columns {
	margin: 0 -15px!important;
}

@media only screen and (max-width: 992px) {
	.wpcf7 .fusion-columns .fusion-column:not(.fusion-column-last) {
	    margin: 0 0 10px!important;
	}	
}


.wpcf7 .fusion-columns .fusion-column {
	padding-left: 15px!important;
	padding-right: 15px!important;
	margin-bottom: 10px;
}

.wpcf7 .rgpd {
	display: block;
	margin: 10px 0 0;
}

.wpcf7 .rgpd .wpcf7-list-item {margin: 0!important;}



.p-mb-0 p {margin: 0!important;}


.fusion-carousel-meta {display: none!important;}