/*--------------------------------------------------------------
## forms
--------------------------------------------------------------*/
.overlay-login,
.overlay-signin {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 11;
}

.overlay-login.nav-active,
.overlay-signin.nav-active {
	display: block;
}

.overlay-login__close-button {
	cursor: pointer;
}

.overlay-signin__close-button:hover,
.overlay-login__close-button:hover {
	opacity: 0.5;
}

.overlay-signin__close-button:active,
.overlay-login__close-button:active {
	opacity: 0.7;
}

.page-content {
  position: relative;
	
  width: 100%;
  min-height: 100%;

  flex: 1 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding-top: 14.5px;
  padding-bottom: 32px;
}

.page-content > img {
	position: absolute;
	top: 40px;
	right: 94px;
}

.page-content--primary-color {
  background-color: #ffffff;
}

.page-content--secondary-color {
  background-color: #f1f1f5;
}

.page-content--desktop-center {
  justify-content: center;
  align-items: flex-start;
}

/* container-narrow */
.container-narrow {
  margin: auto;

	
  display: flex;
  justify-content: center;
  align-items: center;

  max-width: 280px;
/*   height: 100%; */
}

.container-narrow__item {
  position: relative;
  flex-grow: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 40px 0 36px 0;
}

.caption {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-align: center;
  color: #060c2e;
}

/*--------------------------------------------------------------
## .form
--------------------------------------------------------------*/
.overlay-signin__close-button {
	cursor: pointer;
}

.form__input {
	min-width: 384px;
	height: 55px;

	margin-bottom: 20px;
	padding: 19px 20px;

	font-size: 14px;
	color: #696c81;

	border: none;
	border-radius: 3px;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(6, 12, 46, 0.1);
}

.form__input--last-child {
	margin-bottom: 12px;
}

.form__select {
	cursor: pointer;
	min-width: 384px;
	height: 55px;

	margin: 0;
	margin-bottom: 20px;
	padding: 17px 20px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

	font-size: 14px;
	color: #696c81;

	border: none;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(6, 12, 46, 0.1);
	outline: none;
}

.form__select-container {
	position: relative;
}

.form__select-container::after {
	content: "";
	position: absolute;
	top: 24px;
	right: 20px;
	width: 9px;
	height: 9px;
	
	cursor: pointer;
	
	background-image: url("/wp-content/themes/appnext/inc/assets/img/triangle-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
}

.form__text {
  display: inline-block;
	
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: 0.3px;
  text-align: center;
  color: #696c81;
}

.form__text-link {
	cursor: pointer;
	user-select: none;
	color: #3599e7;
}

.form__text-link:hover {
	color: #3599e7;
	text-decoration: underline;
}

.textarea {
	width: 100%;

	margin-bottom: 45px;
	padding: 16px 20px;

	font-size: 14px;
	color: #696c81;

	border: none;
	background-color: #ffffff;
	box-shadow: 0 1px 2px 0 rgba(6, 12, 46, 0.1);
	outline-offset: 0;
	outline: none;
}

.form__input--invalid {
	color: #ff0000;
}

.form__input--invalid::-webkit-input-placeholder,
.form__input--invalid::-webkit-input-placeholder {
	color: #ff0000;
}

/* .form--error */
.form__error-message, .form__error-message--email-incorrect {
	position: absolute;
	top: 87px;
	
	display: none;
	
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ff0000;
}

.form--error .form__caption {
	margin-bottom: 17px;
}

.form--error .form__error-message, .form--error .form__error-message--email-incorrect {
  margin-bottom: 25px;
	
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #ff0000;
}

.textarea::-webkit-input-placeholder,
.form__input::-webkit-input-placeholder {
	margin-right: auto;

	font-size: 14px;
	color: #696c81;
}

.textarea:focus::-webkit-input-placeholder,
.form__input:focus::-webkit-input-placeholder {
	color: #c3c4cc;
}

.form__input--invalid::-webkit-input-placeholder,
.form__input--invalid::-webkit-input-placeholder {
	color: #ff0000;
}

.form__submit.form__submit {
	cursor: pointer;
	margin-bottom: 17px;
	padding-top: 12.5px;
	padding-bottom: 12.5px;
	min-width: 190px;
	min-height: 44px;
	border-radius: 100px;
    box-shadow: 0 1px 5px 0 rgba(6, 12, 46, 0.24);
    background-color: #060c2e;
	
	  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: 0.3px;
  text-align: center;
  color: #ffffff;
  text-transform: capitalize;
  border: none;
    transition: all 0.2s ease-in-out;
}

.form__submit.form__submit:hover {
	border-radius: 100px;
    box-shadow: 0 4px 8px 0 rgba(6, 12, 46, 0.24);
    background-color: #3599e7;
}

/* sign-up */
/* .form__sign-up .form__submit.form__submit {
	min-width: 190px;
} */


/* .forgot-1,
.forgot-1 */
.forgot-1 .form__submit.form__submit {
	margin-bottom: 0;
}

.forgot-1 .form__caption.form__caption--medium {
	margin-bottom: 6px;
}

.forgot-1 .text--after-caption.text--after-caption {
	padding: 0;
	margin-bottom: 41px;
}

.forgot-1 .form__error-message {
	top: 131px;
}

.forgot-1 .form__input {
	margin-bottom: 45px;
}

/* .forgot-2 */
.forgot-2 .form__caption {
	margin-bottom: 21px;
}

.forgot-2 .form__submit.form__submit {
	margin-bottom: 0;
}

.forgot-2 .text--after-caption.text--after-caption {
	padding-left: 0;
	padding-right: 0;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 25px;
	
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: #696c81;
}

.forgot-2 .form__input {
	margin-bottom: 20px;
}

.forgot-2 .form__input--last-child {
	margin-bottom: 45px;
}

/* forgot-3 */
.forgot-3 .text--paragraph.text--paragraph {
	padding-left: 0;
	padding-right: 0;
	margin: 0 -10px 25px;
}

.forgot-3 .form__caption {
	margin-bottom: 23px;
}

/* thank-you */
.container-narrow.thank-you {
	max-width: 500px;
}

.thank-you .form__caption {
	margin-bottom: 7px;
		
    font-size: 30px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #060c2e;
}
	
.thank-you .text {
	margin-bottom: 22px;
	max-width: 260px;
}
	
.thank-you .text:last-child {
	margin-bottom: 0;
}

/* form-success */
.form-success .form__caption {
	margin-bottom: 4px;
	
    font-size: 30px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #060c2e;
}

.form-success .text.text--paragraph {
	padding: 0;
	margin: 0;
	
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.43;
  letter-spacing: 0.3px;
  text-align: center;
  color: #696c81;
}

.form__caption {
  margin-bottom: 40px;
	
    font-size: 30px;
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #060c2e;
}

.form__caption.form__caption--medium {
	margin-bottom: 21px;
}

.text {
	text-align: center;
	font-size: 14px;
/* 	letter-spacing: 0.3px; */
	color: #696c81;
}

.text:not(:last-child) {
	margin-bottom: 11px;
}

.text.text--after-caption {
	margin-bottom: 20px;
	padding-left: 24px;
	padding-right: 24px;
	text-align: center;
}

.text.text--paragraph {
	margin-bottom: 20px;
	margin-left: 10px;
	margin-right: 10px;
}

.text-link {
	position: relative;

	letter-spacing: 0.2px;
	color: #3599e7;
	text-decoration: none;
	
	transition: all 0.1s ease-in;
}

.text-link:hover {
	text-decoration: underline;
}

.text-link:hover {
	color: #3599e7;
}

.text-link:active {
	opacity: 0.7;
}

.form__middle-conteiner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 36px;
}

.form__middle-conteiner .form__checkbox {
	width: auto;
}

.form__middle-conteiner-item {
	display: inline-block;
	margin-bottom: 0;
}

.form__middle-conteiner-item a {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #3599e7;
}

/* checkbox */
.checkbox__input {
	position: absolute;
	opacity: 0;
}

.checkbox__input + .checkbox__label {
	cursor: pointer;
	position: relative;
	padding: 0;
	margin-bottom: 0;

	display: flex;
	justify-content: center;
	align-items: center;
}

.checkbox__text {
	display: flex;
	flex-direction: column;
	width: 100%;
	
	user-select: none;
	margin-bottom: 0;
	
	font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #696c81;
	word-break: normal;
}

.checkbox__text-link {
	cursor: pointer;
	user-select: none;

	color: #696c81;
	text-decoration: underline;
}

.checkbox__text-link:hover {
	opacity: 0.7;
	color: #696c81;
}

.checkbox__text-link:active {
	opacity: 0.5;
}

/* Box. */
.checkbox__input + .checkbox__label .checkbox__pointer {
	position: relative;
	flex-shrink: 0;
	margin-right: 8px;
	display: inline-block;
	vertical-align: text-top;
	
	width: 12px;
	height: 12px;

	font-size: 0;
	box-shadow: 0 1px 1px 0 rgba(6, 12, 46, 0.2);

	border-radius: 50%;
	background-color: #ffffff;
}

/* Box hover */
.checkbox__input:hover + .checkbox__label .checkbox__pointer {
	box-shadow: 0 1px 1px 0 rgba(6, 12, 46, 0.3);
}

/* active */
.checkbox__input:active + .checkbox__label .checkbox__pointer {
	box-shadow: 0 1px 1px 0 rgba(6, 12, 46, 0.4);
}

/* Disabled state .checkbox__label. */
.checkbox__input:disabled + .checkbox__label {
	cursor: auto;
}

/* Checkmark. Could be replaced with an image */
.checkbox__input:checked + .checkbox__label .checkbox__pointer::after {
	content: '';
	position: absolute;
	flex-shrink: 0;
	left: 3px;
	top: 3px;

	width: 6px;
	height: 6px;

	border-radius: 50%;
	background-color: #696c81;
}

/* btn */
.btn {
	cursor: pointer;
	user-select: none;

	display: block;

	font-size: 12px;

	font-size: 14px;
	letter-spacing: 0.3px;
	text-align: center;
	color: #ffffff;
	text-transform: uppercase;

	background-color: #060c2e;
	border: solid 0.5px rgba(255, 255, 255, 0.14);

	transition: all 0.2s ease-in;
}

.btn-big {
	min-width: 224px;
	height: 55px;
	padding: 16px 48px;
	border-radius: 25px;
}

.btn--primary {
	box-shadow: 0 2px 4px 0 rgba(6, 12, 46, 0.24);
	background-color: #060c2e;
	border: solid 0.5px rgba(255, 255, 255, 0.14);
}

.btn--primary:hover {
	box-shadow: 0 4px 8px 0 rgba(6, 12, 46, 0.24);
	background-color: #282e50;
}

.btn--primary:active {
	box-shadow: none;
	background-color: #060c2e;
}

/*--------------------------------------------------------------
  ## reset-password
--------------------------------------------------------------*/
#appnextResetpassword .container-narrow {
	max-width: 500px;
	width: 450px;
	height: 450px;
/* 	margin: 0; */
}

#appnextResetpassword .page-password-reset__frame,
#appnextResetpassword .page-password-reset__frame #resetFrame {
	width: 100%;
	height: 100%;
}

#appnextResetpassword .page-password-reset__frame #resetFrame {
	position: relative;
	top: -50px;
}


@media (max-width: 384px) {
	.forgot-1 .form__error-message.form__error-message {
    	top: 207px;
	}
}





@media (max-width: 575.98px) {
  /*--------------------------------------------------------------
  ## forms
  --------------------------------------------------------------*/
	.overlay-login__logo-link img,
	.overlay-signin__logo-link img {
		width: 130px;
		height: 27px;
	}
	
	/* container-narrow */
	.container-narrow {
		width: 100%;
		max-width: 1200px;
/* 		padding-left: 20px;
		padding-right: 20px; */
	}
	
	.container-narrow__item {
		padding-top: 100px;
	}

	/* form */
	.caption {
  		font-size: 24px;
  		font-weight: 900;
  		font-style: normal;
  		font-stretch: normal;
  		line-height: normal;
  		letter-spacing: normal;
  		text-align: center;
  		color: #060c2e;
	}

	.form__input {
		width: 100%;
		min-width: 280px;
		height: 50px;

		padding-left: 16.5px;
		padding-right: 16.5px;
	}
	
	.form__input--last-child {
		margin-bottom: 10px;
	}
	
	.form__select {
		width: 100%;
		min-width: 279px;
		height: 50px;

		padding-left: 16.5px;
		padding-right: 16.5px;
		padding-top: 15px;
		padding-bottom: 15px;
	}

	.form__input--right-icon-6 {
		position: relative;
		padding-right: 40px;
	}

	.form__submit.form__submit {
		min-width: 170px;
		min-height: 39px;
		margin-bottom: 32px;
	    padding-top: 10.5px;
    	padding-bottom: 10.5px;
	}
	
  /* .form--error */
  .form__error-message {
	display: none;
  }

  .form--error .form__caption {
	margin-bottom: 8px;
  }

  .form--error .form__error-message {
    margin-bottom: 15px;
  }
	
	.form__error-message, .form__error-message--email-incorrect {
		top: 137px;
	}
	
  /* .forgot-1 */
  .forgot-1 .form__submit.form__submit {
    margin-bottom: 0;
  }
	
  .forgot-1 .text--after-caption.text--after-caption {
	padding: 0;
    margin-bottom: 45px;
	max-width: 384px;
  }
	
	.forgot-1 .form__error-message {
    	top: 187px;
	}
	
  /* .forgot-2 */
  .forgot-2 .form__submit.form__submit {
    margin-bottom: 0;
  }
	
  .forgot-2 .text--after-caption.text--after-caption {
	margin-left: 0;
	margin-right: 0;
    margin-bottom: 25px;
  }
	
  /* forgot-3 */
  .forgot-3 .text--paragraph.text--paragraph.text--paragraph {
	padding-left: 0;
	padding-right: 0;
	margin: 0 0 22px;
  }

  .forgot-3 .form__caption {
	margin-bottom: 22px;
  }
	
  /* thank-you */
	.thank-you .form__caption {
		margin-bottom: 4px;
		
        font-size: 20px;
        font-weight: 900;
        font-style: normal;
        font-stretch: normal;
        line-height: normal;
        letter-spacing: 0.4px;
        text-align: center;
        color: #060c2e;
	}
	
	.thank-you .text {
		margin-bottom: 21px;
	}
	
	.thank-you .text:last-child {
		margin-bottom: 0;
	}
	
	/* form-success */
	.form-success .form__caption {
		margin-bottom: 7px;
	}

	.textarea {
		margin-bottom: 45px;
		padding: 16.5px;
	}

	.text.text--after-caption {
		margin-bottom: 33px;
	}

	.text.text--paragraph {
		padding-left: 50px;
		padding-right: 50px;
	}

	.text.text--paragraph:not(:last-child) {
		margin-bottom: 30px;
	}

	/* checkbox */
	.checkbox__text {
		margin-top: -4px;

		font-size: 13px;
		color: #696c81;
		word-break: normal;
	}

	/* btn */
	.btn-big {
		min-width: 240px;
		height: 50px;
		padding: 19px;
		border-radius: 30px;
	}

	.primary-select .primary-select__6-6-image {
		top: 27px;
	}
}

@media (min-width: 576px) and (max-width: 767.98px) {
  /*--------------------------------------------------------------
  ## forms
  --------------------------------------------------------------*/	
	/* container-narrow */
	.container-narrow {
		width: 384px;
	}

	/* form */
	.caption {
		font-size: 24px;
	}

	.form__input--right-icon-6 {
		position: relative;
		padding-right: 40px;
	}

	.form__submit {
		margin-bottom: 32px;
	}

	.textarea {
		margin-bottom: 45px;
		padding: 20px;
	}

	.text.text--after-caption {
		margin-bottom: 33px;
	}

	.text.text--paragraph {
		padding-left: 50px;
		padding-right: 50px;
	}

	.text.text--paragraph:not(:last-child) {
		margin-bottom: 30px;
	}

	/* checkbox */
	.checkbox__text {
		margin-top: -4px;

		font-size: 13px;
		color: #696c81;
		word-break: normal;
	}

	/* btn */
	.btn-big {
		min-width: 240px;
		height: 55px;
		padding: 19px;
		border-radius: 30px;
	}

	.primary-select .primary-select__6-6-image {
		top: 27px;
	}
}

@media (min-width: 768px) and (max-width: 991.98px) {

}

@media (min-width: 992px) and (max-width: 1199.98px) {

}

@media (min-width: 1200px) {
  /* contact-form get-in-touch */
  .form__wrapper {
	display: flex;
	flex-wrap: nowrap;
  }
	
	.form__wrapper-left {
		margin-right: 40px;
	}
	
	.form__input:last-child {
		margin-bottom: 0;
	}
	
	.form__wrapper-right {
		display: flex;
		flex-direction: column;
	}
	
	.form__wrapper {
		margin-bottom: 45px;
	}
	
	.textarea {
		height: 100%;
		margin-bottom: 0;
	}
}