/* CSS Document */

header{
	background: #012868;
	padding: 10px 0;
}
header .logo{}
header .logo img{
    width: 400px;
}
header .select-lang{
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}
header .select-lang .dropdown{}
header .select-lang .dropdown .dropdown-toggle{
    background: transparent;
    border: 1px solid #ffffff;
    padding: 5px 30px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 600;
}
header .select-lang .dropdown .dropdown-toggle img{
    margin-right: 10px;
    border-radius: 5px;
}
header .select-lang .dropdown .dropdown-toggle span{
    margin-right: 5px;
}
header .select-lang .dropdown .dropdown-menu{}
header .select-lang .dropdown .dropdown-menu li{}
header .select-lang .dropdown .dropdown-menu li a{
    display: flex;
    align-items: center;
    gap: 10px;
}
header .select-lang .dropdown .dropdown-menu li a img{
    border-radius: 5px;
}
header .select-lang .dropdown .dropdown-menu li a span{}
.main{
	background-image: url("../images/eligibility-bg.webp");
	background-size: cover;
	padding: 50px 0;
}
.main .form{
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
}
.main .form .title{}
.main .form .title h2{
    font-size: 1.8em;
    text-transform: uppercase;
    font-weight: 700;
}
.main .form form{}
.main .form form .form-item{}
.main .form form .form-item label{
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    color: #202939;
    margin-bottom: 10px;
}
.main .form form .form-item select{}
.main .form form .form-item.checkbox{
	display: flex;
	gap: 10px;
}
.form-control.is-valid, .was-validated .form-control:valid{
	background-image: none !important;
}
.input-item:has(.is-invalid) .invalid-feedback{
	display: block;
}
.checkbox-wrapper * {
	box-sizing: border-box;
}
.checkbox-wrapper .checkbox-label {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.2s ease;
}
.checkbox-wrapper .checkbox-label:not(:last-child) {
	margin-right: 6px;
}
.checkbox-wrapper .checkbox-label span {
	float: left;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .checkbox-label span:first-child {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 4px;
	transform: scale(1);
	border: 1px solid #cccfdb;
	transition: all 0.2s ease;
	box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
.checkbox-wrapper .checkbox-label span:first-child svg {
	position: absolute;
	top: 3px;
	left: 2px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}
.checkbox-wrapper .checkbox-label span:last-child {
	padding-left: 8px;
	line-height: 18px;
}
.checkbox-wrapper .checkbox-label:hover span:first-child {
	border-color: #07f;
}
.checkbox-wrapper .checkbox-input {
	position: absolute;
	visibility: hidden;
}
.checkbox-wrapper .checkbox-input:checked + .checkbox-label span:first-child {
	background: #07f;
	border-color: #07f;
	animation: wave-4 0.4s ease;
}
.checkbox-wrapper .checkbox-input:checked + .checkbox-label span:first-child svg {
	stroke-dashoffset: 0;
}
.checkbox-wrapper .inline-svg {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
	user-select: none;
}
@media screen and (max-width: 640px) {
	.checkbox-wrapper .checkbox-label {
		width: 100%;
		display: inline-block;
	}
}
@-moz-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}
@-webkit-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}
@-o-keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}
@keyframes wave-4 {
	50% {
		transform: scale(0.9);
	}
}
.main .form form .form-item.secound-passport{
	display: none;
}
.main .form form .form-item .reason-items{
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.main .form form .form-item .reason-items .reason-item{width: 32%;}
.main .form form .form-item .reason-items .reason-item input[type=radio]{
    display: none;
}
.main .form form .form-item .reason-items .reason-item label{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid #b8b8b8;
    padding: 15px 5px;
    position: relative;
}
.main .form form .form-item .reason-items .reason-item label .icon{height: 49px;margin-bottom: 10px;}
.main .form form .form-item .reason-items .reason-item label .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main .form form .form-item .reason-items .reason-item label .iconsvg{
    position: absolute;
    width: 22px;
    height: 22px;
    background: #2196f3;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    top: 10px;
    left: 10px;
    opacity: 0;
    transition-duration: 0.5s;
}
.main .form form .form-item .reason-items .reason-item input[type=radio]:checked ~ label {
	border-color: #2196F3;
	box-shadow: 0px 0px 5px #2196f3;
}
.main .form form .form-item .reason-items .reason-item input[type=radio]:checked ~ label  .iconsvg{
	opacity: 1;
}
.main .form form .form-item .reason-items:has(.is-invalid) ~ .invalid-feedback{
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}
.main .form form .action{}
.main .form form .action button{
    border: none;
    width: 100%;
    background: #66c61c;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all .2s ease-in-out;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #ffff;
    text-transform: uppercase;
}
.pt-50{
	padding-top: 50px !important;
}
.pb-50{
	padding-bottom: 50px !important;
}
.bg-gray{
	background-color: #f2f2f2;
}
.text{}
.text h1{
    font-size: 36px;
}
.text h2{
    font-size: 30px;
    font-weight: 500;
}
.text h3{
    font-size: 26px;
    font-weight: 400;
}
.text p{
    font-size: 15px;
}
.text ul{
    padding: 0;
    margin: 0;
}
.text ul li{
    list-style: none;
    font-size: 15px;
}
.text ul.check-green{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.text ul.check-green li{
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
.text ul.check-green li img{
    margin-top: 1px;
}
.text .informations-item{
    padding: 10px 10px 0;
    border: 1px solid #012868;
    height: 100%;
    border-radius: 10px;
    background: #f3f4f7;
}
.text .informations-item h3{
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #012868;
    padding-bottom: 10px;
    padding-left: 40px;
    position: relative;
}
.text .informations-item h3 span{
    position: absolute;
    left: 0;
    top: -3px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #012868;
    border-radius: 100px;
}
.text .informations-item ul{padding-left: 15px;}
.text .informations-item ul li{
    list-style: disc;
    text-align: justify;
    margin-bottom: 10px;
}
.text .informations-item ul li a{
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 3px solid #0d6efd;
    color: #0d6efd;
}
.text .informations-item ul li ul li{
    list-style: circle;
}
.countries-eligible ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.countries-eligible ul li{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.countries-eligible ul li img{
    border-radius: 3px;
}
.application{}
.application .title{
    background: #0128680d;
    margin: 30px 0;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}
.application .title h1{
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
}
.application .title .text{
    width: 100%;
    max-width: 830px;
    margin: 0;
}
.application .title .note{
    margin: 0;
    font-size: 14px;
    background: #ff000026;
    padding: 2px 16px;
    font-weight: 500;
}
.application .fixed-plugin{}
.application .fixed-plugin button{}
.application .fixed-plugin button i{}
.application #smartwizard{}
.application #smartwizard .progress{}
.application #smartwizard .progress .progress-bar{}
.application #smartwizard .progress .progress-bar{}
.application #smartwizard .tab-content{
    height: unset !important;
}
.application #smartwizard .tab-content .title-block-infos{
    background: #012868;
    padding: 10px 20px;
    border-radius: 10px;
    color: #FFFFFF;
}
.application #smartwizard .tab-content .title-block-infos h2{
    margin: 0;
    font-size: 24px;
}
.application #smartwizard .tab-content .input-item{}
.application #smartwizard .tab-content .input-item label{
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.application #smartwizard .tab-content .input-item .date-dropdowns{
    display: flex;
    gap: 15px;
}
.application #smartwizard .tab-content .input-item .date-dropdowns input{
    /*display: none;*/
}
.application #smartwizard .tab-content .input-item .date-dropdowns select{
    display: block;
    width: 100%;
    padding: .48rem .75rem;
	appearance: auto;
    background-color: var(--bs-body-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}
.application #smartwizard .tab-content .input-item input{}
.application #smartwizard .tab-content .input-item .invalid-feedback{}

.application #smartwizard .tab-content .container-has-child{
    border: 1px solid #cccc;
    margin: 0 15px;
    width: calc(100% - 30px);
    padding: 5px 10px;
    border-radius: 10px;
}
.application #smartwizard .tab-content .container-has-child .container-parent{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.application #smartwizard .tab-content .container-has-child .container-parent .form-label{
    margin: 0;
    width: calc(100% - 190px);
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper{
	display: inline-flex;
	height: 28px;
	width: 170px;
	align-items: center;
	justify-content: space-evenly;
	border-radius: 5px;
	gap: 5px;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .option{
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
  border-radius: 5px;
  cursor: pointer;
  padding: 0 10px;
  transition: all 0.3s ease;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .option .dot{
  height: 15px;
  width: 15px;
  background: #d9d9d9;
  border-radius: 50%;
  position: relative;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .option .dot:before{
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  width: 9px;
  height: 9px;
  background: #198754;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper input[type="radio"]{
  display: none;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-no:checked ~ .option-no,
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-yes:checked ~ .option-yes{
  background: #198754;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-no:checked ~ .option-no .dot,
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-yes:checked ~ .option-yes .dot{
  background: #fff;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-no:checked ~ .option-no .dot:before,
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-yes:checked ~ .option-yes .dot:before{
  opacity: 1;
  transform: scale(1);
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .option span{
  font-size: 16px;
  color: #000000;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-no:checked ~ .option-no span,
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option-yes:checked ~ .option-yes span{
  color: #fff;
}
.application #smartwizard .tab-content .container-has-child:has(.is-invalid){
	border-color: #dc3545;
	background: #f1d7db;
}
.application #smartwizard .tab-content .container-has-child .container-parent .wrapper .radio-option.is-invalid ~ .option{
	background-color: #fc9a98;
}
.application #smartwizard .tab-content .container-has-child .container-child{
    display: none;
}
.application #smartwizard .tab-content .container-has-child .container-child .child-item{
    margin: 10px 0;
    border: 1px solid #0128680f;
    background: #0128680d;
    padding: 10px 0 0 0;
    border-radius: 10px;
    position: relative;
}
.application #smartwizard .tab-content .container-has-child .container-child .child-item .remove-child{
    position: absolute;
    width: 25px;
    height: 25px;
    padding: 0px;
    border: none;
    background: #dc3545;
    top: 3px;
    right: 3px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.application #smartwizard .tab-content .container-has-child .container-child .child-item .remove-child svg{
    width: 25px;
    rotate: 45deg;
}
.application #smartwizard .tab-content .container-has-child .container-child .child-item:first-child .remove-child{
	display: none;
	width: 0;
	height: 0;
}
.application #smartwizard .tab-content .container-has-child .container-child .child-item .add-other{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}
.application #smartwizard .tab-content .container-has-child .container-child .add-other{
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}
.application #smartwizard .tab-content .container-has-child .container-child .add-other button{
    border: none;
    background: #000000;
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.application #smartwizard .tab-content .container-has-child .container-child .add-other button svg{
    width: 26px;
    fill: #ffffff;
}
.application #smartwizard .tab-content .container-has-child .container-child .add-other button span{
    color: #ffffff;
}

.application #smartwizard .tab-content .container-has-child-2{
    border: 1px solid #cccc;
    margin: 0;
    padding: 5px 10px;
    border-radius: 10px;
}
.application #smartwizard .tab-content .container-has-child-2 .container-child-2{
    display: none;
}








.application #smartwizard .tab-content .passport-block{}
.application #smartwizard .tab-content .passport-block .passport-upload{}
.application #smartwizard .tab-content .passport-block .passport-upload label{
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input{
    border-radius: 10px;
    border: 2px dashed #212529;
    margin: 0;
    height: 200px;
    text-align: center;
    color: #61666b;
    text-transform: lowercase;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input input{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input p{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input .file-info{
    display: none;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input .file-info span{
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    display: block;
    color: #000000;
    margin-bottom: 10px;
}
.application #smartwizard .tab-content .passport-block .passport-upload .upload-input .file-info button{
	border: none;
	background: #ffaa00;
	padding: 5px 10px;
	border-radius: 10px;
	font-size: 14px;
}
.application #smartwizard .tab-content .passport-block .passport-upload .informations-note{
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}
.application #smartwizard .tab-content .passport-block .passport-upload:has(.is-invalid) .upload-input{
    border-color: #dc3646;
    background-color: #dc36460a;
}
.application #smartwizard .tab-content .passport-block .passport-upload:has(.is-invalid) .invalid-feedback{
    display: block;
    text-align: center;
}
.application #smartwizard .tab-content .passport-block .passport-infos{}
.application #smartwizard .tab-content .passport-block .passport-infos h2{
	position: relative;
	padding: 5px 5px 5px 65px;
	margin-bottom: 10px;
	font-size: 18px;
	border: 2px solid #212529;
	border-radius: 10px;
	background: #f3f0e4;
}
.application #smartwizard .tab-content .passport-block .passport-infos h2:before{
	content: "";
	background-image: url("../images/attention.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 55px;
	position: absolute;
	width: 55px;
	left: 5px;
	top: 0;
	bottom: 0;
}
.application #smartwizard .tab-content .passport-block .passport-infos .info-upload{
	position: relative;
	padding: 5px 5px 5px 65px;
	margin-bottom: 10px;
	border: 2px solid #212529;
	border-radius: 10px;
	background: #f3f0e4;
}
.application #smartwizard .tab-content .passport-block .passport-infos .info-upload h3{
	font-size: 18px;
}
.application #smartwizard .tab-content .passport-block .passport-infos .info-upload ul{
	margin: 0 0 5px 0;
}
.application #smartwizard .tab-content .passport-block .passport-infos .info-upload ul li{
	font-size: 12px;
}
.application #smartwizard .tab-content .passport-block .passport-infos .info-upload:before{
	content: "";
	background-image: url("../images/attention.svg");
	background-repeat: no-repeat;
	background-position: top;
	background-size: 55px;
	position: absolute;
	width: 55px;
	left: 5px;
	top: 0;
	bottom: 0;
}
.application #smartwizard .tab-content .passport-block .passport-infos .sample-picture{
    width: 100%;
    height: 400px;
    text-align: center;
}
.application #smartwizard .tab-content .passport-block .passport-infos .sample-picture img{
    height: 100%;
    border-radius: 15px;
}
.application #smartwizard .tab-content .passport-block .passport-infos .sample-selfie{
	width: 100%;
	/* height: 400px; */
	text-align: center;
}
.application #smartwizard .tab-content .passport-block .passport-infos .sample-selfie img{
	width: 100%;
	/* border-radius: 15px; */
}
.application #smartwizard .tab-content .text-agree{
    padding: 30px;
}
.application #smartwizard .tab-content .text-agree h2{
    font-size: 1.07142857rem;
    font-weight: 700;
    line-height: 1.28571429em;
    text-transform: none;
    color: rgba(0, 0, 0, .87);
}
.application #smartwizard .tab-content .text-agree p{
    margin: 0 0 1em;
    line-height: 1.4285em;
    font-size: 14px;
    font-weight: 300;
    text-align: justify;
}
.application #smartwizard .tab-content .text-agree a{
    color: #012868;
    border-bottom: 1px solid #ccc;
}
.application #smartwizard .tab-content .priority-treatment p{
	font-size: 16px;
    font-weight: 400;
}
.application #smartwizard .toolbar-bottom{
    display: flex;
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
}
.application #smartwizard .toolbar-bottom .sw-btn-prev{
    background: #022868;
    border: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    display: flex;
    gap: 5px;
    align-content: center;
    justify-content: center;
    margin: 0 0 20px;
    align-items: center;
}
.application #smartwizard .toolbar-bottom .sw-btn-prev:before{
	content: "";
	border-style: solid;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	margin-top: 2px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}
.application #smartwizard .toolbar-bottom .sw-btn-next{
    background: #022868;
    border: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    width: 200px;
    display: flex;
    gap: 5px;
    align-content: center;
    justify-content: center;
    margin: 0 0 20px;
    align-items: center;
}
.application #smartwizard .toolbar-bottom .sw-btn-next.disabled{
    display: none;
}
.application #smartwizard .toolbar-bottom .sw-btn-next:after{
	content: "";
	border-style: solid;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	margin-top: 2px;
	transform: rotate(135deg);
	-webkit-transform: rotate(315deg);
}
.application #smartwizard .toolbar-bottom #btnFinish{
    background: #308956;
    border: none;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    min-width: 200px;
    display: flex;
    gap: 5px;
    align-content: center;
    justify-content: center;
    margin: 0 0 20px;
}
.application #smartwizard .toolbar-bottom #btnFinish:before{
	content: "";
}
.application #smartwizard .toolbar-bottom #btnFinish[disabled]{
    display: none;
}

.checkbox-agree{
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px 5px;
    background: #ffffff;
}
.checkbox-agree * {
	box-sizing: border-box;
}
.checkbox-agree .cbx {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	padding: 6px 8px;
	border-radius: 6px;
	overflow: hidden;
	transition: all 0.2s ease;
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 15px;
}
.checkbox-agree .cbx:not(:last-child) {
	margin-right: 6px;
}
.checkbox-agree .cbx:hover {
	background: rgb(21 138 87 / 12%);
}
.checkbox-agree .cbx span {
	float: left;
	vertical-align: middle;
	transform: translate3d(0, 0, 0);
}
.checkbox-agree .cbx span:first-child {
	position: relative;
	width: 25px;
	height: 25px;
	border-radius: 5px;
	transform: scale(1);
	border: 1px solid #cccfdb;
	transition: all 0.2s ease;
	box-shadow: 0 1px 1px rgba(0,16,75,0.05);
}
.checkbox-agree .cbx span:first-child svg {
	position: absolute;
	top: 1px;
	left: 1px;
	fill: none;
	stroke: #fff;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 16px;
	stroke-dashoffset: 16px;
	transition: all 0.3s ease;
	transition-delay: 0.1s;
	transform: translate3d(0, 0, 0);
}
.checkbox-agree .cbx span:last-child {
}
.checkbox-agree .cbx:hover span:first-child {
	border-color: #198754;
}
.checkbox-agree .inp-cbx {
	position: absolute;
	visibility: hidden;
}
.checkbox-agree .inp-cbx:checked + .cbx span:first-child {
	background: #178956;
	border-color: #178956;
	animation: wave-4 0.4s ease;
}
.checkbox-agree .inp-cbx:checked + .cbx span:first-child svg {
	stroke-dashoffset: 0;
}
.checkbox-agree .inline-svg {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
	user-select: none;
}
@media screen and (max-width: 640px){
	.checkbox-agree .cbx{
		width: 100%;
		display: inline-block;
	}
}
@-moz-keyframes wave-4{
	50%{
		transform: scale(0.9);
	}
}
@-webkit-keyframes wave-4{
	50%{
		transform: scale(0.9);
	}
}
@-o-keyframes wave-4{
	50%{
		transform: scale(0.9);
	}
}
@keyframes wave-4{
	50%{
		transform: scale(0.9);
	}
}
.checkbox-agree:has(.is-invalid){
	border-color: #dc3646;
    background-color: #dc36460a;
}
.payment{
    margin: 50px 0;
}
.payment .title{
    border: 2px solid green !important;
    background: #f4fff4;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.payment .title h1{
    text-align: center;
    margin: 0;
}
.payment .title p{
    width: 100%;
    max-width: 670px;
    margin: 0;
    text-align: center;
}
.payment .title ul{
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.payment .title ul li{}
.payment .title ul li img{
    width: 40px;
}
.payment .title.title-failed{
    border: 2px solid #de3d3d !important;
    background: #fff5f5;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.payment .title.title-failed a{
    background: #000000;
    padding: 10px 10px;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 5px;
    width: 190px;
    text-align: center;
}
.payment.payment-message a.btn-tryagain{
    background: #000000;
    padding: 10px 10px;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 5px;
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: inline-block;
    margin: 20px auto 0;
}
.payment .card{
    padding: 0.8rem;
    background: #f3f4f7;
    border-radius: 10px;
    border: none;
}
.payment .card .title-pay{
    background: #012868;
    padding: 10px 20px;
    border-radius: 10px;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.payment .card .title-pay h2{
    margin: 0;
    font-size: 20px;
}
.payment .card .payment-form{}
.payment .card .payment-form .pay-input{}
.payment .card .payment-form .pay-input:first-child{}
.payment .card .payment-form .pay-input label{
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 5px 0;
}
.payment .card .payment-form .pay-input div{}
.payment .card .payment-form .pay-action{}
.payment .card .payment-form #card-number-wrapper{
    padding: .7rem 3.75rem .7rem .75rem;
}
.payment .card .payment-form #card-expiry-element,
.payment .card .payment-form #card-cvc-element{
    padding: .7rem .75rem;
    height: 43.59px;
}
.payment .card .payment-form #card-number-wrapper{
    padding-right: 60px;
    position: relative;
    height: 43.59px;
}
.payment .card .payment-form #card-number-wrapper #card-icon{
    position: absolute;
    top: 6px;
    right: 6px;
    width: 45px;
    height: 30px;
    border-radius: 5px;
	background-repeat: no-repeat;
    background-image: url("../images/card-icons/cards/generic.svg");
}
.payment .card .payment-form #card-number-wrapper #card-number-element{}
.payment .card .payment-form .pay-action{}
.payment .card .payment-form .pay-action button{
    width: 100%;
    border-radius: 10px;
    border: none;
    padding: 10px;
    background: #008001;
    color: #ffffff;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}
.payment .card .payment-form #error-message{
    padding: 5px;
    margin: 0 15px;
    width: calc(100% - 30px);
    background: #f1dde2;
    border: 1px solid #dc3545;
    text-align: center;
    border-radius: 10px;
    color: #dc3646;
    font-weight: 600;
}
.payment .card .payment-form #error-message:empty{
	display: none;
}
.payment .card .order-summary{
    margin: 0;
    padding: 0;
}
.payment .card .order-summary ul{
    padding: 0;
    margin-bottom: 5px;
    list-style: none;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}
.payment .card .order-summary ul li{
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #cccccc;
}
.payment .card .order-summary ul li span{}
.payment .card .order-summary li.order-total{
    font-weight: 800;
}
.payment .card .order-summary li.order-total span{}
.payment .card .order-summary ul li:first-child{
    padding-top: 0;
}
.payment .card .order-summary ul li:last-child{
    border-bottom: none;
}
.payment .card .summary-info{
    text-align: center;
    font-size: 13px;
    margin: 0;
}
.payment .secure-badge{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.payment .secure-badge li{}
.payment .secure-badge li img{
    width: 70px;
}
.payment.payment-process{
	height: calc(100vh - 450px);
    display: flex;
    align-items: center;
}

footer{
	background: #012868;
	padding: 50px 0 30px;
}
footer ul{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    height: 78px;
    align-items: center;
}
footer ul li{
    list-style: none;
}
footer ul li a{
    text-decoration: none;
    color: #ffffff;
}
.disclamer{
    background: #012868;
}
.disclamer p{
    font-size: 12px;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #446090;
    border-top: 1px solid #446090;
    color: #b7d2ff;
}
.copyright{
    background: #012868;
}
.copyright p{
    font-size: 14px;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    color: #b7d2ff;
}




