@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
  margin: 0px;
  padding: 0px;
  outline: 0px;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body {
	  font-family: "Open Sans", sans-serif;
	direction: rtl;
}
button,input,select,textarea{
	font-family: "Open Sans", sans-serif!important;
}
.FormArea {
	width: 100%;
	display: flex;
	flex-direction: column;
	background: url("../images/Form-banner.png") no-repeat center top;
	padding:150px 0 0;
	background-size: 100%;
}

.area-form {
	text-align: center;
}
.FormBox{
	width: 100%;
	max-width: 670px;
	margin: 0 auto;
}

.BmiBox{
	background: #FFF;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 124, 122, 1);
	border-radius: 20px;
	padding:0 0 30px;;
}
body .BmiBox h1{
	background: rgba(0, 124, 122, 1);
	text-align: center;
	color: #FFF;
	border-radius: 20px 20px 0 0;
	font-size: 30px;
	font-weight: 800;
	padding: 20px;
	margin:0
}
.FormBox form{
	width: 100%;
	max-width: 390px;
	margin: 0 auto;
}
.Formgroup {
	margin: 20px 0 0
}
.Formgroup input[type=text]{
	width: 100%;
	height: 48px;
	border: 1px solid rgba(189, 189, 189, 1);
	border-radius: 8px;
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
	padding: 0 44px 0 0;
	font-family: "Open Sans", sans-serif;
}

.Formgroup input.weight_field {
	background: url("../images/w.svg") no-repeat 97% center;
}
.Formgroup input.height_field {
	background: url("../images/h.svg") no-repeat 97% center;
}

.Formgroup input[type=submit]{
	width: 100%;
	height: 48px;
	background: rgba(142, 120, 89, 1);
	line-height: 48px;
	color: rgba(255, 255, 255, 1);
	border-radius: 130px;
	border: 0;
	cursor: pointer;
	font-size: 20px;
	font-weight: 600;
	padding:0
}
.Formgroup input[type=submit]:hover {
	background: #000;
}


button.Btntext 
.checkbox_custom {
  display: block;
  margin:22px 0 0px;
}
button.Btntext {
    width: 100%;
    max-width: 84%;
    height: 46px;
    background: rgba(0, 124, 122, 1);
    border: 1px solid rgba(0, 124, 122, 1);
    border-radius: 130px;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    line-height: 46px;
    cursor: pointer;
    padding: 0;
}
button.Btntext:hover{
	background: #000;
}
.checkbox_custom input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox_custom {
    margin: 20px 0 0;
}
.checkbox_custom label {
	position: relative;
	cursor: pointer;
	width: 100%;
	display: flex;
	font-size: 18px;
	color: rgba(51, 51, 51, 1);
	padding: 0;
	margin: 0;
}

.checkbox_custom label::before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid rgba(211, 211, 211, 1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
	padding: 0;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-left: 15px;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	margin-top: 3px;
}

.checkbox_custom input:checked + label::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	right: 7px;
	width: 5px;
	height: 9px;
	border: solid #FFF;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.checkbox_custom input:checked + label::before {
	background: rgba(0, 124, 122, 1);
	border-radius: 4px;
	border-color: rgba(0, 124, 122, 1)
}


.cash_registers{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding:0 54px;
}
.cash_registers h2{
	font-weight: 700;
	color: rgba(0, 0, 0, 1);
	font-size: 27px;
	margin-bottom: 5px;
}
.cash_registers p a{
	font-size: 20px;
	font-weight: 600;
	color: rgba(0, 124, 122, 1);
	text-decoration: underline
}

.risk_factors{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	padding:0 54px;
	text-align: right;
}
.risk_factors h2{
	font-weight: 700;
	color: rgba(0, 0, 0, 1);
	font-size: 27px;
	margin-bottom: 5px;
}

.risk_factors ul {
	list-style-type: none;
	margin:12px 0 0
}
.risk_factors ul li {
	background: url("../images/check.svg") no-repeat right 4px!important;
	padding: 0 42px 0 0;
	font-size: 20px;
	font-weight: 600;
	color: rgba(51, 51, 51, 1);
	background-size: 20px!important;
}


.ButtonsArea {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
	padding: 0 50px;
}
.ButtonsArea button {
	width: 48%;
	background: rgba(0, 124, 122, 1);
	height: 48px;
	line-height: 48px;
	border-radius: 130px;
	cursor: pointer;
	font-size: 20px;
	color: rgba(255, 255, 255, 1);
	font-weight: 500;
	border: 1px solid rgba(0, 124, 122, 1);
	padding: 0;
}
.ButtonsArea button:hover {
	background: #FFF;
	color: rgba(0, 124, 122, 1);
	
}


/* Modal */
.modal {
  position: fixed; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start; /* or center */
  z-index: 1000; /* depending on what z-index values exist in your page, in order for the modal layer to sit on top of other content */
  overflow: auto; /* enable scrolling if needed - although this is not really necessary since we are going take care of overflow in modal-content */
  background-color: rgba(0,0,0,0.8);
}
.modal.modal-show {
  animation: fadeIn 0.1s ease-in-out forwards;
}
.modal.modal-hide {
  animation: fadeOut 0.1s ease-in-out 0.1s forwards;
}
.modal-content {
  position: relative;
  background-color: #fff;
  margin: 3rem;
  padding: 40px;
  border-radius:30px;
  width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.modal.modal-show .modal-content {
  animation: fadeInDown 0.3s ease-in-out forwards;
}
.modal.modal-hide .modal-content {
  animation: fadeOutUp 0.2s ease-in-out forwards;
}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 53px;
	line-height: 53px;
	padding: 0 20px 0 0;
	color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	user-select: none;
	font-weight: 500;
}
.modal-close:hover, .modal-close:focus {
  color: rgba(0,0,0,0.5);
}


.PopUPBody {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	align-items: center;
	text-align: center;
}
.PopUPBody h3{
	font-size: 20px;
	color: rgba(0, 0, 0, 1);
	font-weight: 600;
	margin:20px 0 28px;
}
.PopUPBody button {
	width: 100%;
	max-width: 195px;
	height: 46px;
	background: rgba(0, 124, 122, 1);
	border: 1px solid rgba(0, 124, 122, 1);
	border-radius: 130px;
	font-size: 16px;
	color: rgba(255, 255, 255, 1);
	font-weight: 600;
	line-height: 46px;
	cursor: pointer;
	padding: 0;
	
}

.PopUPBody button.Btntext{
		font-size: 20px;
	font-weight: 600;
	color: rgba(0, 124, 122, 1);
	text-decoration: underline;
	max-width: 100%;
	height: auto;
	line-height: inherit;
	border: 0;
	background: none
}


/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0); 
  }
}
@keyframes fadeOutUp {
  0% { 
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3rem);
  }
}


.nvt-bmi-calculotor .site-main{
	max-width:100%!important;
}


#privately .modal-content {
	padding:0!important;
	width:600px!important
}
#privately .modal-close {
	top: -10px!important;
	right: -10px!important;
	padding: 0;
	width: 30px!important;
	height: 30px!important;
	line-height: 30px!important;
	text-align: center;
	border-radius: 100%!important;
	font-size: 23px!important;
	background:rgba(0, 124, 122, 1)!important;
	color:#FFF!important;
}
@media(max-width: 992px) {
  .modal-content { width: 80%; }
}
@media(max-width:767px) {
  .modal-content { padding: 2rem 1rem 1rem 1rem; width: 90%; }
	.FormArea {
	padding-left: 20px;
		padding-right: 20px;
}
	.FormBox {
	max-width: 100%;
}
	#bmiChart {
	width: 100% !important;
		margin:0px 0 ;
}
	.cash_registers {
	padding: 0 20px;
}

}

@media(max-width:640px) {
		.FormBox form {
	max-width: 90%;
}
	.BmiBox h1 {
		font-size: 20px;
	}
	.risk_factors {
		padding: 0 20px;
	}
	.cash_registers h2 {
		font-size: 20px;
	}
	.cash_registers p a {
	font-size: 15px;
}
	.risk_factors h2 {
		font-size: 20px;
	}
	.risk_factors ul li {
	font-size: 16px;
	line-height: 24px;
}
	.ButtonsArea {
		padding: 0;
		margin-top: 20px;
	}
	.modal {

  justify-content: center;
  align-items:center; /* or center */

}
}

.invalid-checkbox-label:before {
  border: 2px solid red!important;
}
