.modal_new {
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, 0.8);*/
    background: #2C3E50BD;
    animation: fadeIn .3s both;
    color: #2C3E50;
}

.modal_new p {
    font-weight: 500;
}

.modal_new label {
    font-weight: 500;
    margin-bottom: 0;
}

.modal-wrapper {
    position: relative;
    overflow: auto;
    width: 700px;
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    padding: 0 30px 20px;
    background-color: #FFF;
    animation: slideFromTop .3s both;
    border-radius: 13px;
}

.modal-wrapper .close_modal {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    z-index: 1;
}

.modal-wrapper .close_modal img {
    width: 32px;
}

#modal_welcome .modal-wrapper,
#modal_change_psw .modal-wrapper {
    overflow: inherit;
    min-height: 370px;
}

#modal_welcome .field,
#modal_change_psw .field {
    margin-bottom: 7px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#modal_welcome label,
#modal_change_psw label {
    min-width: 175px;
    min-height: 27px;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    padding-right: 15px;
}

#modal_welcome .input-btn,
#modal_change_psw .input-btn {
    display: flex;
    flex: 1;
    align-items: center;
}

#modal_welcome .btn.btn-blue,
#modal_change_psw .btn.btn-blue {
    margin-left: 6px;
    font-size: 1.2rem;
    padding: 2px 7px;
    display: flex;
    align-items: center;
}

#modal_welcome .btn.btn-blue span,
#modal_change_psw .btn.btn-blue span {
    font-size: 1rem;
    margin-left: 4px;
    line-height: 19px;
}
#modal_welcome .btn.btn-blue b,
#modal_change_psw .btn.btn-blue b {
    font-weight: 500;
}

#modal_welcome .btn,
#modal_change_psw .btn {
    font-weight: 500;
    padding: 6px 15px;
    margin: 5px 5px;
    min-width: 120px;
    border-radius: 7px;
}

#modal_welcome input[type="text"], #modal_welcome input[type="email"],
#modal_welcome input[type="password"], #modal_change_psw input[type="text"],
#modal_change_psw input[type="email"], #modal_change_psw input[type="password"] {
    border: 1px solid #D8D8D8;
    padding: 2px 10px;
    flex: 1;
    width: 100%;
    border-radius: 4px;
    color: #676767;
}

#modal_welcome .field input[disabled],
#modal_change_psw .field input[disabled] {
    background-color: #EFEFEF;
}

.modal_new[aria-hidden="true"] {
    animation-name: fadeOut;
    /* animation-direction: reverse; */
}

.modal_new[aria-hidden="true"] .modal-wrapper {
    animation-name: slideToBottom;
    /* animation-direction: reverse; */
}
.modal_new h2 {
    color: #13C172;
    font-weight: 500;
    padding: 0;
}

.modal_new .modal-body {
    padding: 0;
    max-width: 520px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideFromTop {
    from { transform: translateY(-50px); }
    to {  transform: translateY(0px); }
}

@keyframes slideToBottom {
    from { transform: translateY(0px); }
    to {  transform: translateY(50px); }
}






/* The message box is shown when the user clicks on the password field */
.list-validations #message {
    position: relative;
    color: #000;
    margin-top: 10px;
    width: 100%;
}

.list-validations #message p {
    padding: 0 5px;
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #676767;
}

/* Add a green text color and a checkmark when the requirements are right */
/*.valid {
    color: green;
}*/

.valid:before {
    position: relative;
    left: -5px;
    content: "✔";
    color: green;
}

/* Add a red text color and an "x" when the requirements are wrong */
/*.invalid {
    color: red;
}*/

.invalid:before {
    position: relative;
    left: -5px;
    content: "✖";
    color: red;
}

#modal_welcome .field.field-psw,
#modal_change_psw .field.field-psw {
    align-items: flex-start;
}

#modal_change_psw .l-btn {
    align-items: center;
}

#modal_welcome .change-password-js {
    margin-right: 0!important;
    border-radius: 4px;
}

.input-message {
    flex: 1;
}

.input-message input {
    width: 100%;
}

.modal-body form {
    /*max-width: 480px;*/
}

.msg-alert {
    color: red;
}

#modal_welcome .list-fields {
    max-width: 480px;
}

.img_welcome {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img_welcome img {
    height: 90px;
    width: 90px;
}

.img_welcome > div {
    margin-top: -45px;
    background-color: #fff;
    border-radius: 100%;
}

.modal_new.modal_style_2 h2 {
    color: #2C3E50;
    padding: 0 0 5px;
    font-weight: 600;
}

.modal_new.modal_style_2 .modal-body {
    max-width: inherit;
    margin: 0 auto;
    padding: 15px 5px 25px;
}

.modal_style_2 .l-btn .btn {
    margin: 0 5px;
    padding: 8px 22px;
    border-radius: 8px;
}

.modal_style_2 .l-btn {
    margin-top: 10px;
}

.modal_new.modal_style_2 p {
    font-weight: 400;
}

.modal_new.modal_style_2 .question_cancel {
    margin-top: 35px;
    font-weight: 500;
}

.modal_new.modal_style_2 b, .modal_new.modal_style_2 strong {
    font-weight: 500;
}

.cancellation_step_2 p.txt_1 {
    color: #194F82;
    font-weight: 500 !important;
}

.cancellation_step_2 h2 {
    margin-bottom: 0;
}

.modal_style_2 .modal-wrapper {
    width: 760px;
}

.modal_style_2 input {
    width: 100%;
    border-color: #666666;
    border-radius: 8px;
}

.modal_style_2 textarea {
    border-color: #666666;
    border-radius: 8px;
    height: 110px;
}

.modal_style_2 textarea#personnes {
    height: 125px;
}

.modal_style_2 .field {
    margin: 20px 0;
}

.modal_new.modal_style_2 label {
    margin-bottom: 5px;
}

.modal_new.modal_style_2 p.title {
    font-weight: 500;
    color: #707070;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 5px;
}

.modal_new.modal_style_2 p.title img {
    width: 15px;
    margin-right: 7px;
}

.modal_new.modal_style_2 .warning {
    color: #707070;
    text-transform: none;
}


.modal_new.modal_style_2 input[type=submit] {
    width: max-content;
    min-width: 150px;
}


.modal_new.modal_style_2 .cancellation_success h2 {
    color: #13C172;
    font-weight: 500;
    text-align: center;
}

.modal_new.modal_style_2 .cancellation_success p {
    font-size: 1.6rem;
}

#modal_delete_guest .orange {
    color: #FE5219;
    font-weight: 500;
}
#modal_delete_guest .l-btn {
    margin-top: 20px;
}

#modal_upsell .modal-body {
    max-width: 100%;
}

#modal_upsell .modal-wrapper {
    padding: 20px 30px 20px;
}

#modal_upsell .request .wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal_upsell h2 {
    color: #2C3E50;
    font-size: 2.2rem;
    margin-top: 0;
}

#modal_upsell .img_cabine {
    width: 280px;
}

#modal_upsell .infos {
    padding: 10px 0 10px 20px;
}

#modal_upsell .l-btn {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.submit_upsell {
    display: flex;
    align-items: center;
}

.submit_upsell .icon {
    margin-left: 18px;
}

#modal_upsell .l-btn .btn {
    padding: 6px 10px;
    display: flex;
}

#modal_add_assurance h2 {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

#modal_add_assurance span.icon-assurance {
    font-size: 3.5rem;
}

#modal_add_assurance .total {
    color: #FE5219;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 3px;
}

#modal_add_assurance .infos a {
    color: #2F77A7;
    text-decoration: underline;
}

#modal_add_assurance .infos a:focus {
    outline: none;
}

#modal_add_assurance .btn {
    border-radius: 6px;
    display: flex;
    align-items: center;
}

#modal_add_assurance .btn .icon {
    margin-left: 15px;
}

#modal_add_assurance h4 {
    font-size: 1.9rem;
}
#modal_add_assurance p {
    color: #7A7A7A;
}

#modal_add_assurance .l-icon {
    width: auto;
}

#modal_check_in.modal_new {
    color: #848484;
}

#modal_check_in .modal-wrapper {
    background: transparent;
    padding: 0;
    width: 1000px;
}

#modal_check_in .modal-wrapper .close_modal {
    right: 16px;
}

#modal_check_in.modal_new h2 {
    color: #2C3E50;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

#modal_check_in.modal_new h3 {
    font-weight: 600;
}

#modal_check_in.modal_new h2 span {
    padding: 0;
}

#modal_check_in.modal_new h2 img {
    width: 35px;
    margin-right: 4px;
    margin-top: -8px;
}

#modal_check_in.modal_new .modal-body {
    max-width: inherit;
    background-color: #FFF;
    border-radius: 13px;
    padding: 1px 25px 20px 45px;
    margin: 0 10px;
}

#modal_check_in .l-btn {
    justify-content: space-between;
}

#modal_check_in .l-btn > div:first-child {
    flex: 1;
}

#modal_check_in .l-btn > div:last-child {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#modal_check_in .l-btn .btn {
    border-width: 3px;
    border-radius: 8px;
    min-height: 58px;
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: min-content;
    padding-right: 45px;
}

#modal_check_in .l-btn .btn.btn-arrow {
    padding-right: 12px;
    flex-wrap: nowrap;
}

#modal_check_in .l-btn .btn.btn-arrow svg {
    margin-left: 30px;
    transform: rotate(180deg);
}

#modal_check_in .l-btn .btn.btn-arrow:hover svg path {
    fill: #2C3E50;
}

#modal_check_in .l-btn .btn.btn-blue-inverse {
    margin-right: 10px;
}

#modal_check_in .btn span.litle {
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
}

#modal_check_in .one-custom .l-btn .btn-green {
    display: none;
}

#modal_check_in .l-btn .btn.btn-orange,
#modal_check_in .l-btn .btn.btn-green {
    border-width: 1px;
    border-radius: 20px;
    min-height: inherit;
    flex-wrap: wrap;
    padding-right: 5px;
    width: 100%;
    justify-content: space-between;
}

#modal_check_in .one-custom {
    color: #2C3E50;
}

#modal_check_in .one-custom .l-btn .btn-orange {
    margin-bottom: 0;
}

#modal_check_in .btn.btn-download2 > span, #modal_check_in .btn.btn-blue > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
}

#modal_check_in .l-btn .btn.btn-download2 {
    border-radius: 8px;
    width: max-content;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 58px;
}

#modal_check_in .list-payments {
    max-height: 215px;
    overflow-y: auto;
}


.list-addons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 680px;
    margin: 17px auto 0;
}

.list-addons .addon {
    width: 48%;
    margin-bottom: 20px;
    background-color: #F5F5F5;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-container .obligatory {
    position: absolute;
    left: -34px;
    top: 13px;
    transform: rotate(336deg);
    display: flex;
    justify-content: center;
}

.image-container .obligatory span {
    background-color: #ea0000;
    color: #fff;
    padding: 2px 47px 3px 47px;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 500;

}

.title-addon {
    background-color: #2C3E50;
    color: white;
    font-size: 15px;
    font-weight: 500;
    padding: 6px 0;
}

.price-container {
    font-size: 22px;
    margin: auto 0 10px;
}

.old-price {
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 600;
}

.new-price {
    color: #EC0404;
    font-weight: 600;
    font-size: 28px;
}

#modal_upsell_group .modal-wrapper {
    width: 900px;
}

#modal_upsell_group.modal_new .modal-body {
    max-width: 100%;
}

#modal_upsell_group.modal_new h2 {
    color: #2C3E50;
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

#modal_upsell_group.modal_new h3 {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
}

#modal_upsell_group.modal_new p {
    font-size: 1.3rem;
    margin-bottom: 4px;
    line-height: 1.3em;
    padding: 0 15px;
    text-align: left;
}

#modal_upsell_group.modal_new .btn.btn-orange {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 1.6rem;
}

#modal_upsell_group.modal_new .btn.btn-orange:hover {
    background-color: #FFF;
}


#modal_upsell_group.modal_new .sent_ok {
    margin-top: 30px;
}

#modal_upsell_group.modal_new .modal-body.request_success {
    text-align: center;
}

#modal_upsell_group.modal_new .modal-body.request_success h2 {
    color: #13C172;
}

#modal_upsell_group.modal_new .l-btn {
    margin-top: 0;
}

#modal_upsell_group.modal_new .logo {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 60px;
}

.select-addons {
    font-size: 2rem;
    text-decoration: underline;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

#modal_upsell_group .contact, #modal_upsell_group .contact a {
    font-size: 2.2rem;
    font-weight: 700;
}

/* MODAL DOB */

.modal_new.modal_style_dob .form-row:last-child {
	display: flex;
	justify-content: center;
}

.modal_new.modal_style_dob .modal-wrapper {
	width: 600px;
}

.modal_new.modal_style_dob .title {
	font-weight: 600;
	padding: 0;
	margin-top: 50px;
	text-transform: none;
}

.modal_new.modal_style_dob h2 {
    color: #fe5219;
    padding: 0 0 5px;
    font-weight: 400;
	text-align: left;
	font-size: 23px;
}

.modal_new.modal_style_dob p {
	color: #194F82;
	font-size:21px;
	font-weight: 400;
}

#modal_upsell_group.modal_new .request_success p {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.modal_new.modal_style_dob .form-row {
    display: flex;
    gap: 15px;
	margin-left: 0;
	margin-right: 0;
}

.modal_new.modal_style_dob  .form-group {
    display: flex;
    flex-direction: column;
    width: 65px;
}

.modal_new.modal_style_dob label {
	color: #194F82;
	font-weight: 400;
}

.modal_new.modal_style_dob input {
	height: 35px;
	background: #EDF7FF 0% 0% no-repeat padding-box;
	border: 2px solid #184F81;
	border-radius: 6px;
	opacity: 1;
	font-size: 14px;
}

.modal_new.modal_style_dob input[type=number] {
    -moz-appearance: textfield;
}
 
.modal_new.modal_style_dob input::-webkit-inner-spin-button,
.modal_new.modal_style_dob input::-webkit-outer-spin-button { 
	-webkit-appearance: none;
	margin:0;
}
 
.modal_new.modal_style_dob input::-o-inner-spin-button,
.modal_new.modal_style_dob input::-o-outer-spin-button { 
	-o-appearance: none;
	margin:0
}

.modal_new.modal_style_dob .save_dob {
	margin-top: 30px;
}