/* ----------------------------------------------- PUSH --------------------------------------------- */

.freeze-frame {
	overflow: hidden!important;
}

/* btn */

.magnetic {
    margin: -55px;
    padding: 55px;
    position: fixed;
    top: calc(90vh - 55px);
    right: 3%;
    z-index: 9001;
    display: flex;
}

.magnetic.opened {
	display: none;
}

#magnet-button {
	display: flex;
}

.my-button {
	background-color: #f63a3e;
	height: 125px;
    width: 125px;
	border-radius: 100%;
	cursor: pointer;
	color: white;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 22px;
	border: none;
	align-self: center;
	position: relative;
	transition: all 0.4S ease-out;
}

.my-button:hover {
	transition: all 0.4S ease-out;
	background-color: #182D3C;
}

@keyframes scale-circle {
	from {
		transform: scale(0);
		opacity: 1;
	}
	50% {
		transform: scale(50%);
		opacity: 0.5;
	}
	75% {
		transform: scale(75%);
		opacity: 0.8;
	}
	to {
		transform: scale(100%);
		opacity: 0;
	}
}

.magnetic .circle_black {
	width: 160px;
	height: 160px;
	border: solid 1px #000;
	position: absolute;
	border-radius: 100%;
	left: 50%;
	margin-left: -80px;
	top: 50%;
	margin-top: -80px;
	z-index: -1;
	opacity: 0;
	animation: scale-circle 1.6s linear .5s infinite;
}

.magnetic .circle_red {
	width: 160px;
	height: 160px;
	border: solid 1px #ff2121;
	position: absolute;
	border-radius: 100%;
	left: 50%;
	margin-left: -80px;
	top: 50%;
	margin-top: -80px;
	z-index: -1;
	opacity: 0;
	animation: scale-circle 1.6s linear .7s infinite;
}


.my-button div.open_icon_contact {
	opacity: 1;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
    position: absolute;
}

.my-button div.open_icon_contact span:nth-of-type(1) {
	background-color: white;
	transform: rotate(0deg);
}

.my-button div.open_icon_contact span:nth-of-type(2) {
	background-color: white;
	transform: rotate(-90deg);
}

.my-button div.open_icon_contact span {
	width: 30%;
	height: 2.5px;
	display: block;
    position: absolute;
    inset: 0;
    margin: auto;
}


.my-button div.close_icon_contact {
	opacity: 0;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: column;
    position: absolute;
    
}
.my-button div.close_icon_contact span:nth-of-type(1) {
	background-color: #ff2121;
	transform: rotate(45deg);
}

.my-button div.close_icon_contact span:nth-of-type(2) {
	background-color: #ff2121;
	transform: rotate(-45deg);
}

.my-button div.close_icon_contact span {
	width: 70%;
	height: 3px;
	display: block;
    position: absolute;
    inset: 0;
    margin: auto;
}

#contact-rotating {
	animation: rotate 21s infinite linear;
	width: 75px;
	height: 75px;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}

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

.magnetic[data-open='true'] {
	animation-name: scale;
}

.magnetic[data-open='true'] .my-button {
	background-color: white;
}

.magnetic[data-open='true'] .my-button div.open_icon_contact {
	opacity: 0;
	transition-duration: 0.5s;
}

.magnetic[data-open='true'] .my-button div.close_icon_contact {
	opacity: 1;
	transition-duration: 0.5s;
}

.magnetic[data-open='false'] {
	transition: background-color 10ms linear;
}

.magnetic[data-open='false'] .my-button div.open_icon_contact {
	opacity: 1;
	transition-duration: 0.2s;
}

.magnetic[data-open='false'] .my-button div.close_icon_contact {
	opacity: 0;
	transition-duration: 0.2s;
}

@keyframes scale {
	from {
		transform: scale(0);
	}
	to {
		transform: scale(100%);
	}
}

.contact__nav {
	background-color: #172d3d;
	position: fixed;
	overflow: hidden;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	visibility: hidden;
	clip-path: circle(var(--radius) at calc(100% - 55px) 47px);
}


.contact__nav div.content_pop {
	display: flex;
    width: 80%;
    align-self: center;
}

.contact__nav div.content_pop article.left_pop {
	width: 40%;
	display: flex;
	flex-direction: column;
	border-right: 2px solid white;
	padding-right: 20px;

    height: auto;
    overflow: auto;
    max-height: 600px;
}



.contact__nav div.content_pop article.left_pop h2,
.contact__nav div.content_pop article.right_pop h2 {
	font-size: 40px;
	 font-family: itc-avant-garde-gothic-pro,sans-serif!important;
	color: white;
	margin-top: 20px;
	margin-bottom: 0;
}


.contact__nav div.content_pop article.left_pop p, ul, li {
	font-family: itc-avant-garde-gothic-pro,sans-serif!important;
	font-weight: 500;
}

.contact__nav div.content_pop article.left_pop .mkdf-social-icon-widget-holder {
	color: #212121 !important;
	margin-top: 10px;
}

.contact__nav div.content_pop article.left_pop .mkdf-social-icon-widget-holder:hover {
	color: #ff2121 !important;
	margin-top: 10px;
}

.contact__nav div.content_pop article.left_pop .mkdf-social-icon-widget-holder .mkdf-social-icon-widget {
	font-size: 24px;
	margin-right: 10px;
}

.contact__nav div.content_pop article.left_pop .adress_right_header {
	margin-top: 40px;
}

.contact__nav div.content_pop article.right_pop {
	width: 60%;
}
.contact__nav div.content_pop article.right_pop div.wpforms-container div.wpforms-field-container {
max-height: 500px;
height: auto;
overflow: auto;
    overflow-x: auto;
overflow-x: hidden;
}

.div.wpforms-container-full .wpforms-form input[type=date], div.wpforms-container-full .wpforms-form input[type=datetime], div.wpforms-container-full .wpforms-form input[type=datetime-local], div.wpforms-container-full .wpforms-form input[type=email], div.wpforms-container-full .wpforms-form input[type=month], div.wpforms-container-full .wpforms-form input[type=number], div.wpforms-container-full .wpforms-form input[type=password], div.wpforms-container-full .wpforms-form input[type=range], div.wpforms-container-full .wpforms-form input[type=search], div.wpforms-container-full .wpforms-form input[type=tel], div.wpforms-container-full .wpforms-form input[type=text], div.wpforms-container-full .wpforms-form input[type=time], div.wpforms-container-full .wpforms-form input[type=url], div.wpforms-container-full .wpforms-form input[type=week], div.wpforms-container-full .wpforms-form select, div.wpforms-container-full .wpforms-form textarea {
	background-color: #12232f!important;
    border: none!important;
    color: white!important;
}


.btn-envoie {
	padding : 5px 15px!important;
}


.contact__nav div.content_pop article.right_pop div.content_right_pop {
	max-width: 750px;
	align-self: center;
	height: 100%;
/* max-height: 600px; */
margin-right: auto;
width: 100%;
position: relative;
}

.contact__nav[data-active='true'] {
	visibility: visible;
}

.contact__nav div.content_pop article.right_pop {
	width: 70%;
	margin-left: 40px!important;
	min-height: 600px;
	height: 100%;
	display: flex;
	max-height: 650px;
	/* overflow: hidden; */
	flex-direction: column;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
    display: block;
    font-weight: 700;
    font-size: 19px!important;
    float: none;
    line-height: 1.3;
    margin: 10px 0 5px 0;
    padding: 0;
}

div.wpforms-container-full .wpforms-form input[type=submit]:hover, div.wpforms-container-full .wpforms-form input[type=submit]:focus, div.wpforms-container-full .wpforms-form input[type=submit]:active, div.wpforms-container-full .wpforms-form button[type=submit]:hover, div.wpforms-container-full .wpforms-form button[type=submit]:focus, div.wpforms-container-full .wpforms-form button[type=submit]:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:hover, div.wpforms-container-full .wpforms-form .wpforms-page-button:active, div.wpforms-container-full .wpforms-form .wpforms-page-button:focus {
 /*   background-color: #ed3636!important;
    border: 1px solid #ed3636!important; */
    cursor: pointer;
}

div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern img {
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    width: 100px!important;
}

div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern .wpforms-image-choices-image:after {
    content: "\2714";
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    background: #ed3636 !important;
    opacity: 0;
    position: absolute;
    top: -22%!important;
    left: initial!important;
    margin: -16px 0 0 -16px;
    right: -8.5%!important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.5s;
    z-index: 100!important;
}



div.wpforms-container-full .wpforms-form .wpforms-pagebreak-left .wpforms-page-button {
    margin: 0 10px 0 0;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-size : 15px;
    font-family: itc-avant-garde-gothic-pro, sans-serif!important;
	font-weight: 500;
	font-style: normal;
}


div.wpforms-container-full .wpforms-field.wpforms-field-select-style-classic select {
    padding-left: 6px;
    background-color: #12232f!important;
    border: none!important;
    color: white!important;
}

div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
    background-color: transparent!important;
    border: 1px solid #ddd!important;
    color: white!important;
    font-size: 1em;
    padding: 10px 15px;
}

.btn-envoie {
	position: absolute;
	top : 10%;
}

div.wpforms-container-full .wpforms-form .wpforms-pagebreak-right {
	text-align: center!important;
}

.mkdf-btn-text {
	font-family: 'Montserrat', sans-serif!important;
}

.contact__nav div.content_pop article.left_pop .mkdf-social-icon-widget-holder .mkdf-social-icon-widget {
    font-size: 24px;
    margin-right: 10px;
    color: white!important;
}

#circle-rotating {

    animation: rotate 21s infinite linear;
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    margin:auto;
    fill:white;
  }
  #circle-rotating svg {
      width: 100%;
      height: 100%;
    }

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



  article.right_pop div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern li .wpforms-field-label-inline {
	  position: relative;
  }

  article.right_pop div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern li .wpforms-field-label-inline:after {
	content: "";
	font-size: 22px;
	line-height: 32px;
	color: #fff;
	background: #ed3636;
	opacity: 0;
	position: absolute;
	top: 0;
	right: -16px;
	margin: -16px 0 0 -16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	transition: all 0.5s ease-in-out;
}


article.right_pop div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern li.wpforms-selected .wpforms-field-label-inline:after {
	content: "";
font-size: 22px;
line-height: 32px;
color: #fff;
background: #ed3636;
opacity: 1;
position: absolute;
top: 0;
right: -16px;
margin: -16px 0 0 -16px;
width: 32px;
height: 32px;
border-radius: 50%;
transition: all 0.5s ease-in-out;
}


  article.right_pop div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern label:not(.wpforms-error) {
	  background-color:transparent;
  }

  article.right_pop div.wpforms-container-full .wpforms-form ul.wpforms-image-choices-modern li.wpforms-selected label:not(.wpforms-error) {
	border: 1px solid #ed3636;
}

article.right_pop div.wpforms-container-full span,
article.right_pop div.wpforms-container-full p,
article.right_pop div.wpforms-container-full label {
	color: white;
	font-family: itc-avant-garde-gothic-pro, sans-serif!important;

}


article.right_pop div.wpforms-container-full label.wpforms-error {
	font-size: 16px;
	font-weight: bold;
}


article.right_pop div.wpforms-container-full .wpforms-confirmation-container-full {
	background-color: #ed3636;
}

article.right_pop .wpforms-container-full {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

article.right_pop .wpforms-container-full.ready {
	opacity: 1;
	transition: all 0.5s ease-in-out;
}


article.right_pop .wpforms-page-indicator.progress .wpforms-page-indicator-page-progress {
	background-color: #ed3636 !important;
}


/* RESPONSIVE */

@media (max-width: 1440px) {
.contact__nav div.content_pop article.left_pop h2, .contact__nav div.content_pop article.right_pop h2 {
    font-size: 30px;
    font-family: itc-avant-garde-gothic-pro,sans-serif!important;
    color: white;
    margin-top: 20px;
    margin-bottom: 0;
}


article.right_pop div.wpforms-container-full span, article.right_pop div.wpforms-container-full p, article.right_pop div.wpforms-container-full label {
    color: white;
    font-family: itc-avant-garde-gothic-pro, sans-serif!important;
    font-size: 13px;
}
}



@media (max-width: 1024px) {

}

@media (max-width: 768px) {
.contact__nav div.content_pop {
    overflow-y: scroll;
}
}

@media (max-width: 480px) {
.contact__nav div.content_pop article.left_pop h2, .contact__nav div.content_pop article.right_pop h2 {
    font-size: 25px;
    font-family: itc-avant-garde-gothic-pro,sans-serif!important;
    color: white;
    margin-top: 20px;
    margin-bottom: 0;

}

.contact__nav div.content_pop article.left_pop {
    width: 100%;
    padding: 10px 40px;
    min-height: 300px!important;
}

.contact__nav div.content_pop {
    display: flex;
    width: 100%;
    align-self: center;
    flex-direction: column;
}

.contact__nav  {
    padding: 0!important;
}
}