@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap");


/* AUTH */
.auth-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-container p {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #06053b;
}
.auth-header-button {
    font-size: 16px;
    background-color: unset;
    border: none;
    color: #06053a;
}
.auth-form-container {
  width: 580px;
  border-radius: 10px;
  background-color: white;
  padding: 60px;
  padding-bottom: unset;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 6px 0px #9e9e9e82;
  box-shadow: 0px 0px 6px 0px #9e9e9e82;
  min-height: 320px;
}
.auth-bg {
  background-image: url("/assets/img/bg1.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover, contain;
}
.auth-h {
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: 38px;
  color: #06053b;
}
.pass-corr {
  display: none;
}

.pass-incorrect {
  margin: 5px 0px;
  color: #ff7272;
  display: block;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
}

.password-icon-incorrect {
  border-color: #ff7272 !important;
  background-image: url("/assets/img/auth-pass-incor.svg") !important;
}
/* login page */
.sf-login-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.auth-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 35px 35px 0px 35px;
}
form > h3 {
  margin-top: unset;
}

.login-block {
  min-height: 300px;
}
.login-form-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.login-form-other,
.form-group {
  margin: 20px 0px;
}
.sign-up-form {
  min-height: 550px;
}

/* CUSTOM CHECKBOX */

/* Base for .checkbox-label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  display: none;
}
[type="checkbox"]:not(:checked) + .checkbox-label,
[type="checkbox"]:checked + .checkbox-label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + .checkbox-label:before,
[type="checkbox"]:checked + .checkbox-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #06053b;
  border-radius: 2px;
}
[type="checkbox"]:checked + label::before {
  background: #0cadea;
  border: none;
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + .checkbox-label:after,
[type="checkbox"]:checked + .checkbox-label:after {
  content: "\2713\0020";
  position: absolute;
  top: 0.1em;
  left: 0.15em;
  font-size: 18px;
  line-height: 0.8;
  color: white;
  transition: all 0.2s;
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", Arial;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + .checkbox-label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + .checkbox-label:after {
  opacity: 1;
  transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + .checkbox-label:before,
[type="checkbox"]:disabled:checked + .checkbox-label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
[type="checkbox"]:disabled:checked + .checkbox-label:after {
  color: #999;
}
[type="checkbox"]:disabled + .checkbox-label {
  color: #aaa;
}
/* hover style just for information */
.checkbox-label:hover:before {
  border: 2px solid #4778d9 !important;
}

.btn-login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 4px 30px;
  margin-top: 15px;
  margin-bottom: 20px;
  color: white;
  background: linear-gradient(114.86deg, #005aec -38.18%, #12dfe7 110.93%);
  border-radius: 10px;
  width: -moz-max-content;
  width: fit-content;
}
.btn-close {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  padding: 4px 30px;
  margin: 10px 0px;
  background-color: #ffffff;
  border: #005aec 1px solid;
  color: #005aec;
  border-radius: 10px;
}
.input-name-icon {
  background-image: url("/assets/img/user-input-icon.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
}
.input-location-icon {
  background-image: url("/assets/img/location-input-icon.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
}
.input-mail-icon {
  background-image: url("/assets/css/images/auth-mail.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
}
.input-password-icon {
  background-image: url("/assets/css/images/auth-pass.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
}
.input-name-icon,
.input-location-icon,
.input-mail-icon,
.input-password-icon {
  padding-left: 40px !important;
}

/* PRIVACY POPUP */
.privacy-popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.privacy-content {
  margin: auto; /* 15% from the top and centered */
  background-color: #ffffff;
  padding: 10px;
  border-radius: 10px;
}

.popup-btn-group {
  display: flex;
  flex-direction: row;
}
.popup-btn-group button {
  margin: 10px;
}

.suc-pass-change {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suc-pass-change img {
  align-self: center;
}
.nya-bs-select{
  width: 100% !important;
}
.nya-bs-select button{
      height: 46px !important;
    padding: 14px 20px !important;
    border-radius: 10px !important;
    background-image: url("/assets/img/location-input-icon.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
      width: 100% !important;
    height: 34px;
    padding: 6px 12px;
    padding-left: 38px !important;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.error{
  color:#DE1F2B !important;
}
.success{
  color:#27AE60 !important;
}
.bold{
  font-weight:bold !important;
}
.auth-form-container-lg {
    width: 780px;
  border-radius: 10px;
  background-color: white;
  padding: 60px;
  padding-bottom: unset;
  margin-bottom: 30px;
}


#accountInactive,
#accountLockout,
#incorrectLogin,
#accountNotAuthorized{  
  margin-top: 18px;
}
#loginButton,
#authTypeButton{
  margin-bottom: 25px;
}
#loginButton,
#ssoLogin,
#accountInactive,
#accountLockout,
#resetPassword,
#incorrectLogin,
#checkingAuthentication,
#accountNotAuthorized, 
#password-group {  
  display: none;
}
.alertIconText{
      margin-bottom: 2px;
}
.close-img{
      margin-bottom: 2px;
}
.alertText{
    color: #ff7272;
    display: block;
    font-family: Source Sans Pro;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 18px;
}
.privacyNotice{
  display: inline-block !important;
}
.block_style {
background: #fff;
box-shadow: 0px 0px 15px rgb(143 148 150 / 10%);
border-radius: 10px;
padding: 16px 20px;
}

/*modals*/
.modal-header {
  border-bottom: none;
}

.popup-btn-group {
  display: flex;
  flex-direction: row;
}
.popup-btn-group button {
  margin-right: 10px;
}
.collapse-button {
  display: flex;
  align-items: center;
  color: #06053b50;
}
.modal-body {
  margin-bottom: 10px;
}
.modal-body > * {
  margin-bottom: 10px;
}
.more-about-problem {
  margin: 0px 0px 0px auto !important;
  border-radius: unset;
  width: 94%;
  padding: 60px 25%;
}
.more-about-problem > .modal-body {
  overflow: unset !important;
  height: -moz-max-content;
  height: fit-content;
  max-height: unset;
}
.arrow-right-modal {
  font-size: 28px;
  display: block;
  color: white;
  position: fixed;
  top: 5%;
  left: 2%;
}
.modal.fade:not(.in).more-about-problem-modal .modal-dialog {
  -webkit-transform: translate3d(25%, 0, 0);
  transform: translate3d(25%, 0, 0);
}
.more-about-problem > .modal-body h4 {
  margin: 10px 0px;
}
.more-about-problem > .modal-body h5 {
  margin: 5px 0px;
}
.more-about-problem pre {
  margin: 10px;
}
.modal-textarea {
  background: #ffffff;
  border: 0.5px solid #b4d9e4;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px;
  color: #b4d9e4;
  width: 100%;
}
.modal-textarea:focus {
  outline: unset;
  outline-color: unset;
}
.achievements-modal-data {
  padding: 10px;
  height: fit-content;
  height: -moz-max-content-;
}
.achievements-modal-data > * {
  margin-bottom: 15px;
}
.achievements-modal-data > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.color-easy-blue {
  border-radius: 10px;
  background: #0CADEA05;
}
.share-link {
  background-color: #ffffff;
  width: 90%;
  margin: 10px auto;
  padding: 20px;
  color: #06053B50;
  border-radius: 10px;
}
.achievments-modal-date-exp{
  background: #a03614 !important;
}
.achievments-modal-date {
  background: #F89A0D;
  background-blend-mode: normal;
  margin-top: 5px;
  padding: 4px 10px;
  text-align: center;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding-left: 5px;
  font-family: Source Sans Pro;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
}
.achievements-modal-share{
  padding: 10px;
  display: flex;
  align-items: center;
}
.achievements-modal-share > a { 
  margin-left: 10px;
}


.modal-login-form-other {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
.modal-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}


.modal-avatar-select-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.modal-avatar-select {
  position: relative;
  height: 100px;
  width: 100px;
}
.modal-avatar-select img{
  border-radius: 25%;
}
.modal-avatar-radio {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.personal-progress {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 10px;
}

.personal-progress-bar {
  background-color: #00000030;

  width: 80%;
  border-radius: 20px;
  height: 8px;
}
.progressbar-blue {
  top: unset;
  bottom: unset;
  height: 8px;
  background: #0CADEA;
}

footer.footer {
   height: 30px;
    background-color: rgba(242, 242, 242, 0.9);
    box-shadow: 0 5px 10px rgb(242, 242, 242);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    z-index: 4;
    width: 100%;
}
footer img{
  height: 16px;
  margin-left:5px;
}
footer p{
    font-size: 11px !important;
    margin-top: 11px;
    margin-right: 1px;
}
/* left top logo icon */
.logo{
    width: 160px;
    height: 30px;
}

/* forms / inputs */
.form-control {
    height: 46px;
    padding: 14px 20px;
    border-radius: 10px;
}