@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap";

:root {
  --white: #fcf7ec;
  --orange: #ff6d00;
  --main-bg: #fcf7ec;
  --black: #000;
  --light-grey: #f2f2f2;
  --font-poppins: Poppins, sans-serif;
  --font-montserrat: Montserrat, sans-serif;
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-poppins);
  color: #05271c;
}

.home {
  background-color: var(--main-bg);
}

.home main {
  width: 86.4rem;
  margin: 0 auto;
  padding-top: 1.6rem;
  padding-bottom: 8rem;
  text-align: justify;
}

.home main h1 {
  font-size: 4.8rem !important;
  font-weight: 500;
  margin-bottom: 3rem;
}

.home main p a {
  color: var(--orange) !important;
}

body.modal-open {
  overflow: hidden;
}

.popup-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.popup_access {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background-color: #ffffff;
  padding: 40px;
  /* vergroot padding */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 90%;
  /* vergroot naar 90% */
  max-width: 700px;
}

.popup_access h2,
.popup_access p {
  font-size: 24px;
  /* vergroot de lettergrootte */
  margin-bottom: 20px;
  /* voeg wat marge toe aan de onderkant van de teksten */
}

.close-button {
  cursor: pointer;
  padding: 10px 20px;
}

.popup_access p>br {
  line-height: 24px;
  /* lijnhoogte voor de breaks */
  content: ' ';
  display: block;
  margin-bottom: 24px;
}

.social-login {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 8rem;
}

.social-login form {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-login form button {
  width: 90%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0 1.3rem 2.7rem -0.5rem,
    rgba(0, 0, 0, 0.3) 0 0.8rem 1.6rem -0.8rem;
  padding: 2.2rem;
  background-color: #fff;
  text-align: center;
  border: 2px solid #ff6d00;
  border-radius: 2.2rem;
  -webkit-border-radius: 2.2rem;
  -moz-border-radius: 2.2rem;
  -ms-border-radius: 2.2rem;
  -o-border-radius: 2.2rem;
  color: #000;
}

.social-login form button svg {
  width: 5rem;
  height: 5rem;
}

.social-login form button span {
  font-size: 2rem;
  margin-left: 2rem;
}

.social-login-text {
  padding-top: 5rem;
  width: 100%;
  border-bottom: 1px solid #aaa;
  position: relative;
}

.social-login-text h4 {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 2.2rem;
  background: #fcf7ec;
  margin-bottom: 0;
  padding: 2rem;
  transform: translate(-50%, -15%);
  -webkit-transform: translate(-50%, -15%);
  -moz-transform: translate(-50%, -15%);
  -ms-transform: translate(-50%, -15%);
  -o-transform: translate(-50%, -15%);
}



.access form .first_name,
.access form .last_name,
.access form .mobile,
.access form .email,
.forget-pass .email,
.login form input,
.access form input,
.forget-pass .email input {
  margin: 0;
  padding: 0;
}

.login form label,
.forget-pass .email label {
  display: inline-block;
  width: 20rem;
  text-align: right;
}

.access label {
  display: inline-block;
  width: 20rem;
  text-align: right;
}


.set-flex-whole .set-my-inputs-all textarea {
  width: 100%;
  display: block;
  text-align: left;
  border: 2px solid var(--orange);
  padding-left: 1.2rem;
  font-size: 1.75rem;
  padding: 2rem 4rem;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  resize: vertical;
  /* Hiermee kunnen gebruikers de hoogte van de textarea aanpassen */
}

.set-flex-whole .set-my-inputs-all textarea::placeholder {
  font-family: var(--font-montserrat);
  padding-left: 2rem;
}

.login .sign-up-message,
.login .forget-message,
.access .sign-in-message {
  color: var(--black);
  font-size: 1.45rem;
}

.login .sign-up-message:hover,
.login .forget-message:hover,
.access .sign-in-message:hover {
  text-decoration: underline;
}

.login button:hover {
  background-color: transparent;
  transition: 0.3s;
  color: var(--black);
}

.access button:hover {
  background-color: transparent;
  transition: 0.3s;
  color: var(--black);
}

.forget-pass button:hover {
  background-color: transparent;
  transition: 0.3s;
  color: var(--black);
}

main.forget-pass {
  margin-top: 3.2rem;
}

.forget-pass .email {
  margin-top: 6.4rem;
}

div#result {
  margin: 2rem auto;
  width: fit-content;
}

.alert {
  padding: 1rem 3rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  -ms-border-radius: 1rem;
  -o-border-radius: 1rem;
}

.alert.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.form-group input {
  height: 2.4rem;
}

.form-group button {
  background-color: var(--orange);
  color: white;
  border: none;
  width: 17.6rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  -webkit-border-radius: 0.6rem;
  -moz-border-radius: 0.6rem;
  -ms-border-radius: 0.6rem;
  -o-border-radius: 0.6rem;
}

.forget-pass button:disabled,
.form-group button:disabled,
#feedback-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.set-box-border {
  box-shadow: rgba(50, 50, 93, 0.25) 0 1.3rem 2.7rem -0.5rem, rgba(0, 0, 0, 0.3) 0 0.8rem 1.6rem -0.8rem;
  padding: 2.2rem;
  background-color: #fff;
  margin-top: 5rem;
  text-align: center;
  border: 2px solid #ff6d00;
  border-radius: 2.2rem;
  -webkit-border-radius: 2.2rem;
  -moz-border-radius: 2.2rem;
  -ms-border-radius: 2.2rem;
  -o-border-radius: 2.2rem;
}

.set-flex-whole {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0 2rem;
}

.set-flex-center {
  justify-content: center;
}

.set-w-50 {
  width: 48%;
}

.set-w-100 {
  width: 100%;
}

.set-flex-whole .set-my-inputs-all label {
  width: 100%;
  display: block;
  text-align: left;
  margin-left: 2.3rem;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.set-flex-whole .set-my-inputs-all input {
  width: 100%;
  display: block;
  text-align: left;
  border: 2px solid var(--orange);
  padding-left: 1.2rem;
  font-size: 1.75rem;
  padding: 2rem 4rem;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
}

.set-flex-whole .set-my-inputs-all input::placeholder {
  font-family: var(--font-montserrat);
  padding-left: 2rem;
}

.set-padding-top {
  padding-top: 0.4rem;
}

.login button,
.access button,
.forgot-pass button,
.reset-pass button {
  background-color: #747474;
  color: white;
  border: 2px solid #747474;
  width: 29rem;
  font-size: 2.2rem;
  font-family: var(--font-montserrat);
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  font-weight: 600;
  padding: 1.5rem 3rem;
}

.set-flex-items {
  display: flex;
}

.tutorial-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.75);
  z-index: 99999999999;
}

.tutorial-popup-container {
  width: 60%;
  background: #ffffff;
  box-shadow: rgba(50, 50, 93, 0.25) 0 1.3rem 2.7rem -0.5rem, rgba(0, 0, 0, 0.3) 0 0.8rem 1.6rem -0.8rem;
  padding: 3rem 4rem;
  text-align: center;
  border: 2px solid #ff6d00;
  border-radius: 2.2rem;
  -webkit-border-radius: 2.2rem;
  -moz-border-radius: 2.2rem;
  -ms-border-radius: 2.2rem;
  -o-border-radius: 2.2rem;
  position: relative;
  margin: 0 auto;
}

#tutorialPopupClose {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 0;
  color: #747474;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

#tutorialPopupClose:hover {
  color: #000000;
}

.tutorial-popup-container h2 {
  font-size: 2.5rem;
  line-height: normal;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
}

.tutorial-popup-container p {
  font-size: 2rem;
  line-height: normal;
  color: #05271c;
  text-align: left;
  margin-bottom: 1.5rem;
}

#acceptBtn {
  font-size: 2.2rem;
  background: #ffffff;
  border-radius: 5rem;
  outline: none;
  cursor: pointer;
  transition: 0.4s;
  height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
}

#acceptBtn:hover {
  background: #ff6d00;
  border: 2px solid #ff6d00;
  color: #ffffff;
}

.set-flex-whole .set-my-inputs-all select {
  width: 100%;
  display: block;
  text-align: left;
  border: 2px solid var(--orange);
  padding-left: 1.2rem;
  font-size: 1.75rem;
  padding: 2rem 4rem;
  border-radius: 3rem;
  -webkit-border-radius: 3rem;
  -moz-border-radius: 3rem;
  -ms-border-radius: 3rem;
  -o-border-radius: 3rem;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.set-flex-whole .set-my-inputs-all select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%),
    linear-gradient(to right, #fff, #fff);
  background-position:
    calc(100% - 2rem) 50%,
    calc(100% - 1.5rem) 50%,
    100%;
  background-size:
    0.5rem 0.5rem,
    0.5rem 0.5rem,
    4rem 100%;
  background-repeat: no-repeat;
}

.set-flex-whole .set-my-inputs-all select:focus {
  background-image:
    linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position:
    calc(100% - 1.5rem) 50%,
    calc(100% - 2rem) 50%,
    100% 0;
  background-size:
    0.5rem 0.5rem,
    0.5rem 0.5rem,
    4rem 100%;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

.set-flex-col {
  flex-direction: column;
  margin-top: 5rem;
}

.set-flex-col h4 {
  font-size: 1.8rem;

}

#confirmBtnBlock {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 50%;
  margin: 3rem auto 5rem;
}

#confirmBtnYes,
#confirmBtnNo {
  width: 15rem;
  margin: 0;
  font-size: 1.7rem;
  background: transparent;
  border: 2px solid var(--orange);
  color: #000000;
  padding: 1.5rem 3rem;
  outline: none;
  cursor: pointer;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  font-weight: 600;
  transition: 0.3s;
  font-family: var(--font-montserrat);
}

#confirmBtnYes:hover,
#confirmBtnNo:hover,
#confirmBtnYes:active,
#confirmBtnNo:active,
#confirmBtnYes:focus,
#confirmBtnNo:focus {
  background: var(--orange);
  color: #ffffff;
  outline: none;
}

#submitProb {
  padding-right: 6rem;
}

.custom-file-upload-container {
  position: relative;
}

.set-my-inputs-all input[type="file"] {
  display: none;
}

.set-flex-col .set-my-inputs-all label.custom-file-upload {
  position: absolute;
  top: 6.2rem;
  right: 1.5rem;
  width: auto;
  cursor: pointer;
  height: 5rem;
  width: 5rem;
  padding: 0;
  margin: 0;
  background-image: url(../images/icons/page/upload.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.set-flex-col .set-my-inputs-all label.custom-file-upload:hover,
.set-flex-col .set-my-inputs-all label.custom-file-upload:focus,
.set-flex-col .set-my-inputs-all label.custom-file-upload:active {
  background-image: url(../images/icons/page/upload_hover.png);
}

.display-none {
  display: none;
}

#formSubmit {
  margin: 5rem auto 2rem;
}

#uploadedImg {
  display: none;
  width: 20%;
  margin: 3rem auto 0;
  object-fit: cover;
}

@media only screen and (max-width: 868px) {
  html {
    font-size: 8px;
  }
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 7px;
  }

  .tutorial-popup-container {
    width: 75%;
  }
}

@media only screen and (max-width: 580px) {
  html {
    font-size: 6px;
  }

  .tutorial-popup-container {
    width: 90%;
  }
}

@media (max-width: 1500px) {
  nav .menu1 a {
    padding-right: 1rem;
    font-size: 1.8rem;
  }

  nav .menu2 button {
    font-size: 1.8rem;
  }
}

@media (max-width: 1200px) {

  nav .menu1,
  nav .menu2 {
    display: none;
  }

  nav {
    display: block;
    height: 7.2rem;
  }

  nav button.btn1 {
    margin-right: 0;
  }

  nav .menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--white);
    font-size: 2rem;
  }

  nav .menu-toggle i {
    margin-right: 0.8rem;
  }

  .home main {
    width: 90%;
    padding: 1.6rem;
  }

  .set-flex-items {
    flex-direction: column;
  }

  .dropdown-nav .dropdown-content-nav a {
    border-right: none;
  }
}

@media (max-width: 520px) {

  .access {
    padding-bottom: 8rem;
  }

  .alert {
    padding: 1rem;
    font-size: 1.4rem !important;
    border-radius: 0.8rem;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    -ms-border-radius: 0.8rem;
    -o-border-radius: 0.8rem;
  }

  .contact .social-icons img {
    width: 3.2rem;
  }

  nav {
    padding-left: 1.6rem;
    padding-right: 3.2rem;
  }

  footer {
    left: -1rem;
    right: -1rem;
  }

  .popup input,
  .popup button {
    width: 90%;
    height: 3.2rem;
    margin-top: 0.8rem;
  }

  .popup textarea {
    width: 90%;
    margin-top: 0.8rem;
  }

  .popup .popup-btn2,
  .popup input {
    margin-top: 0.8rem;
  }

  .popup .popup-btn1 {
    margin-top: -1.6rem;
  }

  .popup h3 {
    text-align: center;
    font-size: 1.9rem;
  }

  .login form label,
  .forget-pass .email label,
  .access form label {
    display: block;
    width: auto;
    text-align: center;
  }

  .login form input,
  .access form input,
  .forget-pass .email input {
    margin-right: 0 !important;
  }

  .set-flex-whole {
    flex-direction: column;
  }

  .set-w-50 {
    width: 100%;
  }

  .social-icons {
    flex-direction: column;
  }

  .social-icons a {
    margin: 0.8rem auto;
  }
}

/*NIKITA*/
.tutorial-popup-container input,
.tutorial-popup-container select,
.tutorial-popup-container textarea {


  border: 2px solid rgb(255, 109, 0);
  border-radius: 100px;

}

.tutorial-popup-container label {
  font-weight: 600;
  display: block;
  text-align: left;
  padding: 0px 10px;
  font-size: 15px;
}

input,
select,
textarea {
  display: block;
  /* Make them take up the full width of their container */
  width: 100%;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
  /* Default text color */
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  /* Include padding and border in the element's total width and height */
  margin-bottom: 1rem;
  /* Add some spacing below each element */
}

input[type="button"],
input[type="submit"] {
  display: block;
  width: auto !important;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
  margin: auto;
  text-align: center;
  ;
}

/* Focus State */
input[type="text"]:focus,
select:focus,
textarea:focus {
  color: #495057;
  background-color: #fff;

  outline: 0;

}

/* Disabled State */
input[type="text"]:disabled,
select:disabled,
textarea:disabled {
  background-color: #e9ecef;
  /* Light gray background for disabled elements */
  opacity: 0.65;
  cursor: not-allowed;
}

/* Placeholder Styling for text and textarea */
input[type="text"]::placeholder,
textarea::placeholder {
  color: #6c757d;
  /* Light gray placeholder text */
  opacity: 1;
  /* Override browser defaults */
}

/* Specific Styling for <select> */
select {
  appearance: none;
  /* Remove default browser styling for consistent look */
  background-image: url('data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 16 16%27 fill=%27%23343a40%27%3e%3cpath fill-rule=%27evenodd%27 d=%27M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z%27/%3e%3c/svg%3e');
  /* Custom dropdown arrow */
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.75rem 0.5625rem;
  padding-right: 2.5rem;
  /* Make space for the dropdown arrow */
}

select::-ms-expand {
  display: none;
  /* Hide the default IE/Edge dropdown arrow */
}

/* Specific Styling for <textarea> */
textarea {
  resize: vertical;
  /* Allow vertical resizing by default */
}

/* Responsive Considerations (adjust breakpoints as needed) */
@media (max-width: 768px) {

  input[type="text"],
  select,
  textarea {
    font-size: 0.9rem;
    padding: 0.6rem;
    margin-bottom: 0.8rem;
  }

  select {
    background-position: right 0.5rem center;
    padding-right: 2rem;
  }
}

/* Example of more specific styling for labels (optional) */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #343a40;
}

.upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: rgb(255, 109, 0);
  /* Blue background */
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin: 20px 10px;
}

.upload-btn img {
  width: 50px;
  padding-right: 20px
}

/* Hover effect for button */
.upload-btn:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}

/* Style for the image inside the button */
.upload-icon {
  width: 24px;
  /* Icon size */
  height: 24px;
  /* Icon size */
  margin-right: 10px;
  /* Space between the icon and text */
}

.file-upload-wrapper {
  position: relative;
  width: 100%;

}

/* Hide the actual file input */
.file-upload-wrapper input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 2px solid orange;
  border-radius: 9999px;
  background-color: #fff;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 1;
}

.file-upload-display span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-upload-icon {
  color: orange;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: 10px;
}