/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.hidden {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* General Button Styling */
@media (max-width: 600px) {
  button {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.autism-logo {
  width: 400px;
}

/* Tablet or small screen */
@media (max-width: 768px) {
  .autism-logo {
    width: 350px;
  }
}

/* Mobile screen (smaller than 576px) */
@media (max-width: 576px) {
  .autism-logo {
    width: 300px;
  }
}
@media (max-width: 480px) {
  .autism-logo {
    width: 250px;
  }
}
@media (max-width: 320px) {
  .autism-logo {
    width: 200px;
  }
}

/* General Select Styling */
select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  color: black;
}

/* Style the placeholder (removes the 'inherit' font-size) */
select option[disabled] {
  color: gray !important;
  font-size: 16px !important; /* Force font-size for the placeholder */
}

/* Style the dropdown options */
select option {
  font-size: 16px;
  padding: 10px;
  color: black;
}

@media (max-width: 480px) {
  select {
    font-size: 14px !important;
    padding: 6px;
  }

  select option {
    font-size: 14px !important;
  }

  /* Adjust the placeholder font size for very small screens */
  select option[disabled] {
    font-size: 14px !important; /* Force font size for placeholder */
  }
}

@media (max-width: 320px) {
  select {
    font-size: 12px !important;
    padding: 5px;
  }

  select option {
    font-size: 12px !important;
  }

  /* Adjust the placeholder font size for very small screens (320px) */
  select option[disabled] {
    font-size: 12px !important; /* Force font size for placeholder */
  }
}

.textbox {
  background: #e7e6e6;
  border: 0.8pt solid #000000;
  display: block;
  min-height: 40px; /* Increased height for better visibility */
  width: 100%;
  padding: 15px; /* Increased padding for better spacing */
  box-sizing: border-box;
}

/* Styling for the text in the textbox */
.textbox p {
  margin: 0;
  font-size: 18pt; /* Larger font size for readability */
  line-height: 1.5; /* Increased line-height for better readability */
}

.textbox p.s2 {
  margin: 0;
  font-size: 18pt; /* Keep the larger font size for the center-aligned text */
  line-height: 1.5;
  text-align: center;
  color: #000000;
}

/* Responsive adjustments for larger screens (tablets and small desktops) */
@media (max-width: 1024px) {
  .textbox p {
    font-size: 16pt;
    line-height: 1.4;
  }

  .textbox p.s2 {
    font-size: 16pt;
  }
}

/* Responsive adjustments for smaller screens (tablets) */
@media (max-width: 768px) {
  .textbox p {
    font-size: 14pt; /* Slightly smaller font size for smaller tablets */
    line-height: 1.4;
  }

  .textbox p.s2 {
    font-size: 14pt; /* Keep heading size consistent */
  }
}

/* Responsive adjustments for very small screens (mobile) */
@media (max-width: 480px) {
  .textbox p.s2 {
    font-size: 16px; /* Adjust font size for mobile screens for readability */
    text-align: center; /* Ensure text is centered */
  }

  .textbox p {
    font-size: 14px; /* Adjust font size for mobile screens */
    line-height: 1.4; /* Adjust line-height for better clarity */
  }

  /* Additional padding adjustments if needed for mobile */
  .textbox {
    padding: 12px; /* Reduce padding on smaller screens */
  }
}

@media (max-width: 320px) {
  .responsive-heading {
    font-size: 12px; /* Adjusted font size for smaller screens */
    text-align: center; /* Center-align text for mobile */
  }

  .textbox p.s2 {
    font-size: 12px; /* Adjusted font size for mobile screens */
    text-align: center; /* Ensure text is centered */
  }

  .textbox p {
    font-size: 12px; /* Adjusted font size for mobile screens */
    line-height: 1.4; /* Adjust line-height for better clarity */
  }

  .textbox {
    padding: 8px; /* Reduced padding on smaller screens */
  }
}

.verification-note {
  margin-top: -30px; /* Adjust the spacing as needed */
  font-size: 14px; /* Optional: Adjust font size */
  color: #555; /* Optional: Adjust text color */
  border-bottom: 1px solid #ccc; /* Adds a light gray line under the text */
  padding-bottom: 5px; /* Adds space between text and the line */
}

@media (max-width: 320px) {
  .verification-note {
    font-size: 12px;
  }
}

/* Form Styling */
form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form label {
  font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="date"],
form .form-check-input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 5px 0 15px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form input[type="radio"] {
  margin-right: 5px;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* space between fields */
}

.form-group {
  flex: 1 1 30%; /* grow/shrink, base width 30% */
  min-width: 200px; /* optional: prevent too narrow inputs */
}
/* .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; */
/* margin-bottom: 35px; */
/* } */

/* .form-row .form-group {
  flex: 1;
} */

input[type="number"] {
  max-width: 200px;
}

.form-group input[type="radio"] {
  margin-right: 10px;
}

.form-group input[type="radio"] + label {
  margin-right: 20px;
}

@media (max-width: 600px) {
  #button-container {
    flex-direction: column;
    align-items: center;
  }

  /* button {
    width: 100%; 
    margin-bottom: 10px;
  }

  button:last-child {
    margin-bottom: 0; 
  } */
}

textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Ensures padding is included in the width */
  resize: vertical; /* Allows resizing only vertically */
}

textarea:focus {
  outline: none;
  border-color: #17a2b8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  textarea {
    font-size: 14px; /* Adjust font size for tablets and smaller devices */
    padding: 8px; /* Adjust padding for smaller screens */
  }
}

@media (max-width: 480px) {
  textarea {
    font-size: 12px; /* Further adjust font size for mobile devices */
    padding: 6px; /* Further adjust padding for mobile screens */
  }
}

/* Styling placeholder text */
textarea::placeholder {
  font-size: 16px; /* Match the default font size */
  color: #888; /* Light gray color for placeholder */
}

@media (max-width: 768px) {
  textarea::placeholder {
    font-size: 14px; /* Adjust placeholder font size for tablets */
  }
}

@media (max-width: 480px) {
  textarea::placeholder {
    font-size: 12px; /* Adjust placeholder font size for mobile devices */
  }
}

/* Base style for the h2 element */
.responsive-heading {
  /* text-align: left; */
  font-size: 22px; /* Default font size */
}

/* Media query for tablets */
@media (max-width: 768px) {
  .responsive-heading {
    font-size: 18px; /* Slightly smaller font size on tablets */
    margin-top: 20px;
  }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
  .responsive-heading {
    font-size: 14px; /* Smaller font size for mobile */
    text-align: center; /* Center-align text for mobile */
    margin-top: 20px;
  }
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* Adjusts space between radio items */
}

.radio-item {
  display: flex;
  align-items: center;
  /* gap: 5px; */
}

.radio-item label {
  cursor: pointer;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
  margin-top: 10px; /* adjust as needed */
}

.s4 {
  color: black;
  font-size: 1rem; /* Relative font size for scalability */
  line-height: 1.5; /* Sets line spacing to 1.5 times the font size */
  padding-top: 1rem; /* Padding relative to font size */
}

@media (max-width: 480px) {
  .s4 {
    font-size: 0.875rem; /* Slightly smaller font size for mobile */
    padding-top: 0.75rem; /* Adjusted padding for smaller screens */
  }
}

@media (max-width: 320px) {
  .s4 {
    font-size: 0.75rem; /* Further reduced font size for very small screens */
    padding-top: 0.5rem; /* Further adjusted padding */
  }
}

.salary-range {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-wrapper {
  width: 100%;
  position: relative;
}

.error-message {
  color: red;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* .error-placeholder {
  min-height: 1rem; 
} */

.add-more-btn {
  background-color: #17a2b8;
  color: white;
  border: none;
  /* padding: 5px 10px; */
  cursor: pointer;
}

.add-more-btn:hover,
.preview:hover {
  background-color: #0056b3; /* your desired hover color */
}
.form-row-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.remove-btn {
  background-color: red;
  color: white;
  border: none;
  margin-top: 24px;
  /* padding: 5px 10px; */
  cursor: pointer;
  display: none; /* Initially hidden */
}

.remove-btn:hover {
  background-color: darkred;
}

/* Adjustments for Specific Inputs */

/* Small Screen Adjustments */
@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
  }

  form {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  label {
    font-size: 14px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"] {
    padding: 8px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .form-group {
    font-size: 12px; /* Adjust to your desired font size */
  }

  .form-group label {
    font-size: 12px; /* Adjust label font size */
  }

  .form-group input,
  .form-group .input-group-text {
    font-size: 12px; /* Adjust input and input group text font size */
  }

  .salary-range {
    font-size: 12px; /* Adjust the salary range font size */
  }

  label {
    font-size: 12px; /* Adjusted font size for smaller screens */
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"] {
    padding: 6px; /* Reduced padding for better fit */
    font-size: 12px; /* Adjusted font size for smaller screens */
  }
}

/* Prevent Text Overlap */
form input,
form label {
  word-wrap: break-word;
}

form p {
  font-size: 14px;
  margin-top: -5px;
  color: #666;
}

@media (max-width: 320px) {
  form p {
    font-size: 12px;
  }
}

button {
  background: #17a2b8;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* button:hover {
  background: #0056b3;
} */

.employment {
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adds space between rows */
}

.employed {
  display: flex;
  flex-direction: row;
  gap: 10px; /* Adds space between form elements within a group */
}

.employed input[type="checkbox"] {
  margin-right: 10px;
}
.back-to-application {
  font-family: "Handlee", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0056b3;
  text-decoration: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

/* Icon styling */
.back-to-application i {
  margin-right: 8px; /* Space between icon and text */
}

/* Hover effect */
.back-to-application:hover {
  color: #5c6bc0;
  background: rgba(255, 255, 255, 1);
  text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .back-to-application {
    font-size: 14px; /* Smaller text for tablets */
    padding: 6px 10px;
    top: 15px !important;
    left: 15px !important;
  }
}

@media (max-width: 576px) {
  .back-to-application {
    font-size: 14px; /* Smaller text for mobile */
    padding: 5px 8px;
    top: 10px !important;
    left: 10px !important;
  }

  .back-to-application i {
    font-size: 14px; /* Smaller icon for mobile */
  }
}

@media (max-width: 320px) {
  .back-to-application {
    font-size: 12px; /* Further reduce font size for smaller screens */
  }

  .back-to-application i {
    font-size: 12px; /* Further reduce icon size for very small screens */
  }
}

#currency {
  display: inline-block; /* Keep the select field in the same line */
  width: auto; /* Don't stretch the select field */
}

#currency-employment {
  display: inline-block; /* Keep the select field in the same line */
  width: auto; /* Don't stretch the select field */
}

.salary-range {
  display: inline-flex; /* Align input fields next to each other */

  align-items: center;
}

.salary-range .input-group-text {
  padding-left: 0px; /* Reduce padding inside the input-group-text */
  padding-right: 0px;
}

/* .input-group-text {
  margin-right: 5px;
} */

.input-group-text {
  background: none !important;
  border: none !important;
}

/* Hide $ and 'to' by default, show only when printing */

/* Style the select field to make it look aligned with the input field */
#salary_desired {
  height: 40px; /* Set a fixed height */
}

@media (max-width: 767px) {
  .salary-range .form-control {
    font-size: 0.85rem; /* Adjust font size */
    padding: 0.375rem 0.75rem; /* Adjust padding */
  }
}

.required {
  color: red;
  font-weight: bold;
}

@media print {
  body {
    width: 100%;
    height: auto;
    margin-top: -90px;
  }

  .form-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
  }

  .form-group {
    flex: 1 !important;
    min-width: 45%;
    display: flex;
    flex-direction: row;
  }

  .input-group {
    display: inline-block; /* Change display to inline-block for print */
    width: auto; /* Ensure the input group doesn't break to a new line */
  }

  .form-control {
    font-size: 14px;
    width: 100%;
  }

  select {
    display: none !important;
  }

  select option[value=""]:not(:checked) {
    display: none !important;
  }

  /* select {
    display: none !important;
  } */

  select {
    color: black;
    background-color: transparent;
    border: none;
    appearance: none;
  }

  select option {
    font-size: 16px;
    padding: 10px;
    color: black;
  }

  #currency {
    display: none !important; /* Hide the select field on print */
  }

  /* #currency-employment {
    display: none !important; 
  } */
  label,
  select,
  span {
    display: inline-block; /* Ensure label, select, and the selected text are inline */
    margin-right: 5px; /* Optional: space between label and selected text */
  }

  .col-md-6 {
    width: 50% !important;
    flex: 1 !important;
    min-width: 200px;
  }

  input[type="text"],
  input[type="number"] {
    border: none;
    background: none;
    color: black;
    font-size: inherit;
    font-family: inherit;
    width: auto;
    display: inline;
  }
  button,
  .print-button,
  .back-to-application {
    display: none !important;
  }

  input[type="date"],
  input[type="date"]::-webkit-datetime-edit,
  input[type="date"]::-webkit-datetime-edit-text,
  input[type="date"]::-webkit-datetime-edit-month-field,
  input[type="date"]::-webkit-datetime-edit-day-field,
  input[type="date"]::-webkit-datetime-edit-year-field {
    display: none !important;
  }

  input::placeholder,
  textarea::placeholder {
    color: transparent !important;
  }

  input,
  textarea {
    display: none !important;
  }

  .cancel-button:checked ~ .form-group input[type="date"] {
    display: none !important;
  }
}

.underline {
  text-decoration: underline;
}

body.loading {
  overflow: hidden; /* Prevent scrolling while loading */
}

.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.spinner-wrapper {
  position: relative;
}

.spinner-image {
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}

@media (max-width: 768px) {
  .spinner-image {
    width: 15vw;
    height: 15vw;
  }
}

@media (max-width: 480px) {
  .spinner-image {
    width: 20vw;
    height: 20vw;
  }
}

.loading-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border: 5px solid #ccc;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  animation: rotate 5s linear infinite;
  transform: translate(-50%, -50%);
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.fade-out {
  opacity: 0;
}
.selected-text {
  font-size: 1rem; /* Default font size */
}

/* For small screens (phones, max-width: 480px) */
@media (max-width: 480px) {
  .selected-text {
    font-size: 0.9rem; /* Adjust font size */
  }
}

/* For larger screens (tablets, max-width: 768px) */
@media (max-width: 320px) {
  .selected-text {
    font-size: 12px; /* Slightly bigger font size */
  }
}

/* Override default title font size */
/* div:where(.swal2-container) h2:where(.swal2-title) {
  font-size: unset !important;
} */

/* Default styles */
.swal2-popup .responsive-title {
  font-size: 1.8rem;
}

.swal2-popup .responsive-content {
  font-size: 1.25rem !important;
}

/* Tablet screens (max-width: 768px) */
@media (max-width: 768px) {
  .swal2-popup .responsive-title {
    font-size: 1.5rem;
  }
  .swal2-popup .responsive-content {
    font-size: 1rem;
  }
  .swal2-popup {
    padding: 15px;
    max-width: 350px;
  }
  .swal2-confirm,
  .swal2-cancel {
    padding: 8px 15px;
  }
}

/* Mobile screens (max-width: 480px) */
@media (max-width: 480px) {
  .swal2-popup .responsive-title {
    font-size: 1.2rem;
  }
  .swal2-popup .responsive-content {
    font-size: 0.9rem;
  }
  .swal2-popup {
    padding: 10px;
    max-width: 300px;
  }
  .swal2-confirm,
  .swal2-cancel {
    padding: 6px 10px;
  }
}

/* Very small screens (max-width: 320px) */
@media (max-width: 320px) {
  .swal2-popup .responsive-title {
    font-size: 1rem;
  }
  .swal2-popup .responsive-content {
    font-size: 0.8rem;
  }
  .swal2-popup {
    padding: 8px;
    max-width: 260px;
  }
  .swal2-confirm,
  .swal2-cancel {
    padding: 5px 8px;
  }
}

/* Default size */
.datepicker {
  width: 100%; /* Make it full width on larger screens */
  padding: 8px;
  font-size: 16px;
}

/* Smaller screens */
@media (max-width: 768px) {
  .datepicker {
    width: 100%; /* Ensure it fits on smaller screens */
    padding: 10px;
    font-size: 14px;
  }
}

/* Very small screens like mobile phones */
@media (max-width: 480px) {
  .datepicker {
    width: 100%;
    font-size: 12px;
  }
}

.ui-datepicker {
  z-index: 9999 !important; /* Bring it to the front */
}

/* Additional responsiveness for small screens */
@media (max-width: 480px) {
  .ui-datepicker {
    width: 100% !important; /* Ensure it doesn't overflow off-screen */
  }
}

@media (max-width: 768px) {
  .ui-datepicker-prev,
  .ui-datepicker-next {
    font-size: 18px;
  }
}

html {
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  display: block;
  right: 30px;
  bottom: 30px;
  z-index: 11;
  animation: action 1s infinite alternate;
}

@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-15px);
  }
}

select {
  transition: all 0.3s ease;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
}

/* Highlight on focus */
select:focus {
  outline: none;
  border-color: #17a2b8;
  box-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* Smooth option hover (some browsers allow) */
select option:hover {
  background-color: #e0f7ff;
  transition: background-color 0.2s ease;
}

/* ----- Radio Buttons Animation ----- */
.radio-group {
  display: flex;
  gap: 20px;
}

.radio-item input[type="radio"] {
  width: 14px;
  height: 14px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 8px;
}

/* Checked animation */
.radio-item input[type="radio"]:checked {
  border-color: #17a2b8;
  background-color: #17a2b8;
}

.radio-item input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px; /* adjust for smaller size */
  left: 3px; /* adjust for smaller size */
  width: 8px; /* smaller inner dot */
  height: 8px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Label hover effect */
.radio-item label {
  cursor: pointer;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.radio-item input[type="radio"]:hover + label {
  color: #17a2b8;
  font-weight: 600;
}

select.form-select.custom-select {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 1rem);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  height: auto;
  transition: all 0.3s ease;
}

select.form-select.custom-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

select.form-select.custom-select:hover {
  border-color: #0a58ca;
}

@media (max-width: 576px) {
  select.form-select.custom-select {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    padding: 0.4rem 0.8rem;
  }
}

.selected-box {
  position: relative;
}

.selected-option {
  display: flex;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  background: white;
  position: relative; /* Needed for absolute arrow */
}

.selected-option input {
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  cursor: pointer;
  padding-right: 25px; /* Space for arrow */
}

.dropdown-arrow {
  position: absolute;
  right: 20px; /* Inside the field */
  top: 25px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
  pointer-events: none; /* So click passes to input/div */
  transition: transform 0.3s ease-in-out;
}

.selected-option[aria-expanded="true"] .dropdown-arrow {
  transform: translateY(-50%) rotate(-135deg);
}

.options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 1000;
  display: none;
}

.options input.search-box {
  width: 100%;
  padding: 6px 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}

.options ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.options li {
  padding: 8px 12px;
  cursor: pointer;
}

.options li:hover {
  background-color: #17a2b8;
  color: white;
}

.options.show {
  display: block;
}

.spinner-image {
  position: relative;
  width: 7rem;
  height: 7rem;
  border-top: 3px solid #17a2b8;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
}

/* Inner circles */
.spinner-image::before,
.spinner-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border-top: 3px solid transparent;
}

.spinner-image::before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-top-color: #6fc3d5;
  animation: rotate 2s linear infinite;
}

.spinner-image::after {
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-top-color: #0f6c85;
  animation: rotate 1s linear infinite;
}

/* Rotation animation */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive spinner sizes */
@media (max-width: 768px) {
  .spinner-image {
    width: 5rem;
    height: 5rem;
  }

  .spinner-image::before {
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
  }

  .spinner-image::after {
    top: 7px;
    left: 7px;
    right: 7px;
    bottom: 7px;
  }
}

@media (max-width: 480px) {
  .spinner-image {
    width: 4rem;
    height: 4rem;
  }

  .spinner-image::before {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
  }

  .spinner-image::after {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }
}

.logo {
  font-size: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.selected-flag-hidden {
  display: none;
}

.ml-1 {
  margin-left: 8px;
}

.indentation {
  text-indent: 0pt;
  text-align: left;
}

.indentation_2 {  
  padding-left: 5pt;
  text-indent: 0pt;
  line-height: 1pt;
  text-align: left;
}

.padding-left {
  padding-left: 5pt;
  text-indent: 0pt;
  text-align: left;
}

.text-indent {
  text-indent: 0pt; 
  text-align: left;
}

.opening {
  cursor: pointer;
}