@charset "UTF-8";
/* line 1, app/assets/stylesheets/shared/_decorative.scss */
.lined_text_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  width: 80%;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 12, app/assets/stylesheets/shared/_decorative.scss */
.line {
  flex-grow: 1;
  height: 2px;
  background-color: black;
}

/* line 18, app/assets/stylesheets/shared/_decorative.scss */
.lined_text {
  white-space: nowrap;
  font-weight: bold;
  font-size: 16px;
}

/* line 24, app/assets/stylesheets/shared/_decorative.scss */
.line {
  display: block;
}

/* line 28, app/assets/stylesheets/shared/_decorative.scss */
.company_edit_main_title {
  background-color: #72d7ee;
  width: 60%;
  padding: 2%;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 670px) {
  /* line 28, app/assets/stylesheets/shared/_decorative.scss */
  .company_edit_main_title {
    width: 90%;
  }
}

/* line 42, app/assets/stylesheets/shared/_decorative.scss */
.far_left {
  position: relative;
  left: -20px;
  top: 20px;
}

/* line 1, app/assets/stylesheets/shared/_forms.scss */
textarea,
input,
select,
button {
  font-family: 'Zen Maru Gothic', sans-serif !important;
}

/* line 8, app/assets/stylesheets/shared/_forms.scss */
::placeholder {
  color: #CFCFCF;
}

/* line 12, app/assets/stylesheets/shared/_forms.scss */
.clear_form {
  background: transparent;
}

/* line 16, app/assets/stylesheets/shared/_forms.scss */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

/* line 22, app/assets/stylesheets/shared/_forms.scss */
.form-label {
  width: 20%;
  padding-right: 10px;
  font-weight: bold;
}

/* line 28, app/assets/stylesheets/shared/_forms.scss */
.form-control {
  width: 80%;
  padding: 10px;
  font-size: 1.2rem;
}

/* line 34, app/assets/stylesheets/shared/_forms.scss */
form .form-control {
  width: 97%;
  margin-right: 20px;
  padding: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 43, app/assets/stylesheets/shared/_forms.scss */
.form_item_radio_field_wrapper,
.form_item_checkbox_field_wrapper {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
}

/* line 50, app/assets/stylesheets/shared/_forms.scss */
.form_item_time_field_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/* line 56, app/assets/stylesheets/shared/_forms.scss */
.form_item_time_field_wrapper span {
  margin: 0 5px;
}

/* line 60, app/assets/stylesheets/shared/_forms.scss */
.form_item_time_field_wrapper input {
  width: 35%;
}

/* line 64, app/assets/stylesheets/shared/_forms.scss */
.form_radio_button_wrapper,
.form_checkbox_button_wrapper {
  display: inline-block;
  font-size: 15px;
  width: 49%;
  background: #fff;
  border: 1px solid #00B4DE;
  color: #00B4DE;
  border-radius: 5px;
  padding: 10px 0 10px 5px;
  box-sizing: border-box;
}

/* line 77, app/assets/stylesheets/shared/_forms.scss */
.form_radio_button_wrapper input[type="radio"] {
  width: auto;
  height: auto;
  accent-color: #00B4DE;
}

/* line 83, app/assets/stylesheets/shared/_forms.scss */
.form_checkbox_button_wrapper {
  margin-bottom: 5px;
}

/* line 87, app/assets/stylesheets/shared/_forms.scss */
.form_checkbox_button_wrapper:nth-last-child(1),
.form_checkbox_button_wrapper:nth-last-child(2) {
  margin-bottom: 0;
}

/* line 92, app/assets/stylesheets/shared/_forms.scss */
.form_radio_button_wrapper:nth-child(2n-1),
.form_checkbox_button_wrapper:nth-child(2n-1) {
  margin-right: 2%;
}

/* line 97, app/assets/stylesheets/shared/_forms.scss */
.form_radio_button_wrapper:nth-child(1),
.form_radio_button_wrapper:nth-child(2) {
  margin-bottom: 5px;
}

/* line 102, app/assets/stylesheets/shared/_forms.scss */
.form_radio_button_checked,
.form_checkbox_button_checked {
  background: #00B4DE;
  color: #fff;
}

/* line 109, app/assets/stylesheets/shared/_forms.scss */
.form_item_half_field_wrapper {
  display: flex;
  align-items: center;
}

/* line 114, app/assets/stylesheets/shared/_forms.scss */
.form_item_half_field {
  width: 49%;
}

/* line 118, app/assets/stylesheets/shared/_forms.scss */
.form_item_half_symbol {
  width: 2%;
  margin: 0;
  text-align: center;
}

/* line 125, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_field_wrapper input[type="checkbox"] {
  display: none;
}

/* line 129, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_field_wrapper input[type=checkbox] + label {
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 5px;
  display: flex;
  align-items: center;
}

/* line 141, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_field_wrapper input[type=checkbox] + label::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  content: '';
  background: #00B4DE;
}

/* line 154, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_field_wrapper input[type=checkbox]:checked + label::after {
  background: #fff;
  content: '';
  display: block;
  left: 0;
  margin-top: 0;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translate(0%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* line 169, app/assets/stylesheets/shared/_forms.scss */
.checkbox_container {
  display: flex;
  align-items: center;
  margin: 10px 0;
  /* Adjust margin as needed */
  padding-left: 10px;
  /* Add padding to shift the entire container */
}

/* line 179, app/assets/stylesheets/shared/_forms.scss */
.checkbox_label {
  position: relative;
  padding-left: 30px;
  /* Space for the custom checkbox */
  cursor: pointer;
  user-select: none;
  /* Prevent text selection */
  margin-left: 10px;
  /* Add some space between the checkbox and the label */
}

/* Hide the default checkbox */
/* line 192, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox {
  display: none;
  /* Hide the default checkbox */
}

/* Custom checkbox styles */
/* line 198, app/assets/stylesheets/shared/_forms.scss */
.checkbox_label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  /* Width of custom checkbox */
  height: 20px;
  /* Height of custom checkbox */
  border: 2px solid #00B4DE;
  /* Blue border */
  border-radius: 4px;
  /* Optional: round corners */
  background-color: #fff;
  /* Background color of checkbox */
  transition: background-color 0.2s, border-color 0.2s;
}

/* Change styles when the checkbox is checked */
/* line 218, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox:checked + .checkbox_label:before {
  background-color: #00B4DE;
  /* Background color when checked */
  border-color: #00B4DE;
  /* Change border color */
}

/* line 225, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox:checked + .checkbox_label:after {
  content: '✔';
  /* Checkmark symbol */
  position: absolute;
  left: 5px;
  /* Position of checkmark */
  top: 50%;
  transform: translateY(-50%);
  color: white;
  /* Color of the checkmark */
  font-size: 16px;
  /* Adjust size of the checkmark */
}

/* line 242, app/assets/stylesheets/shared/_forms.scss */
.new_confirm_item {
  margin-top: 30px;
}

/* line 246, app/assets/stylesheets/shared/_forms.scss */
.form_item_container_inner {
  margin-top: 30px;
}

/* line 250, app/assets/stylesheets/shared/_forms.scss */
.form_item_container_inner:first-child {
  margin-top: 0;
}

/* line 254, app/assets/stylesheets/shared/_forms.scss */
.form_item_container_txt {
  margin-bottom: 30px;
  margin-top: 100px;
  padding: 15px 0;
  box-sizing: border-box;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  color: red;
  position: relative;
}

/* line 266, app/assets/stylesheets/shared/_forms.scss */
.form_item_container_txt::before {
  content: "";
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* line 277, app/assets/stylesheets/shared/_forms.scss */
.form_item_container_inner.form_item_submit {
  margin-top: 50px;
}

/* line 282, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_salary_wrapper {
  display: flex;
  align-items: center;
}

/* line 287, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_salary_radio_wrapper.form_item_field_radio_wrapper {
  width: 32%;
  margin: 0;
}

/* line 292, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_salary_radio_wrapper.form_item_field_radio_wrapper:nth-child(2) {
  margin: 0 2%;
}

/* line 296, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_salary_input_wrapper {
  display: flex;
  align-items: center;
}

/* line 301, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_salary_input_wrapper span {
  margin: 0 1%;
}

/* line 305, app/assets/stylesheets/shared/_forms.scss */
.form_search_wrapper .form_item_radio_button:checked + .form_item_radio_label {
  border: 1px solid #fff;
}

/* White box container */
/* line 311, app/assets/stylesheets/shared/_forms.scss */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Space between checkbox and text */
  background: white;
  /*padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
  width: fit-content;
}

/* Hide the default checkbox */
/* line 324, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox {
  display: none;
}

/* Custom checkbox wrapper */
/* line 329, app/assets/stylesheets/shared/_forms.scss */
.checkbox-wrapper {
  width: 25px;
  /* Adjust size as needed */
  height: 25px;
  background-color: white;
  /* White background */
  border: 3px solid #4fd1eb;
  /* Blue border */
  border-radius: 8px;
  /* Optional: rounded corners */
  position: relative;
  cursor: pointer;
}

/* Custom checkbox label (acts as the visual checkbox) */
/* line 344, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox + .custom-checkbox-label {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Custom checkmark (extends past top-right corner) */
/* line 352, app/assets/stylesheets/shared/_forms.scss */
.custom-checkbox:checked + .custom-checkbox-label::after {
  content: '✔';
  /* Unicode checkmark */
  font-size: 28px;
  /* Bigger than the box */
  color: #4fd1eb;
  /* Blue checkmark */
  position: absolute;
  top: -10px;
  /* Moves checkmark up */
  right: -5px;
  /* Moves checkmark right */
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}

@media (max-width: 670px) {
  /* line 352, app/assets/stylesheets/shared/_forms.scss */
  .custom-checkbox:checked + .custom-checkbox-label::after {
    top: -13px;
  }
}

/* Checkbox text (aligned to the right) */
/* line 376, app/assets/stylesheets/shared/_forms.scss */
.checkbox-text {
  font-size: 16px;
  color: #333;
}

/* line 382, app/assets/stylesheets/shared/_forms.scss */
.form_item_wrapper {
  margin-top: 20px;
  background: #fff;
  border-radius: 7px;
  padding: 20px;
  margin-bottom: 20px;
}

/* line 390, app/assets/stylesheets/shared/_forms.scss */
.form_item_wrapper_connect {
  margin-top: 20px;
  background: #fff;
  border-radius: 7px;
}

/* line 396, app/assets/stylesheets/shared/_forms.scss */
.form_item {
  margin-bottom: 20px;
}

/* line 400, app/assets/stylesheets/shared/_forms.scss */
.form_item:last-child {
  margin-bottom: 0;
}

/* line 404, app/assets/stylesheets/shared/_forms.scss */
.form_item_label_wrapper {
  font-size: 18px;
  color: #00B4DE;
}

/* line 409, app/assets/stylesheets/shared/_forms.scss */
.form_item_img_field_wrapper {
  text-align: center;
  padding: 30px 0;
  border: 1px dotted #707070;
  border-radius: 10px;
}

/* line 416, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_birthday_wrapper {
  display: flex;
  align-items: flex-end;
}

/* line 421, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_birthday_wrapper select:nth-child(2),
.form_item_field_birthday_wrapper select:nth-child(3) {
  margin-left: 5px;
}

/* line 426, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_wrapper {
  margin-top: 5px;
}

/* line 430, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_wrapper input {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  box-sizing: border-box;
  padding: 0 15px;
  /*margin-top: 2px;*/
}

/* line 441, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_wrapper select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: #f2f2f2;
  padding: 0 15px;
  margin-right: 2px;
}

/* line 451, app/assets/stylesheets/shared/_forms.scss */
.form_item_radio_button {
  display: none;
}

/* line 455, app/assets/stylesheets/shared/_forms.scss */
.form_item_radio_label {
  display: inline-block;
  padding: 5px 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #00B4DE;
  color: #00B4DE;
  box-sizing: border-box;
  text-align: center;
}

/* line 466, app/assets/stylesheets/shared/_forms.scss */
.form_item_radio_button:checked + .form_item_radio_label {
  background: #00B4DE;
  color: #fff;
}

/* line 471, app/assets/stylesheets/shared/_forms.scss */
.form_item_append_link_wrapper {
  text-align: center;
  color: #666666;
}

/* line 476, app/assets/stylesheets/shared/_forms.scss */
.form_item_append_inner {
  max-width: 100vw;
  width: 100%;
}

/* line 481, app/assets/stylesheets/shared/_forms.scss */
.form_item_submit {
  text-align: center;
  margin-top: 40px;
}

/* line 486, app/assets/stylesheets/shared/_forms.scss */
.form_item_submit input {
  width: 80%;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  display: inline-block;
  padding: 15px 0;
  background: #F88186;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

/* line 500, app/assets/stylesheets/shared/_forms.scss */
.form_item_submit input:hover {
  background: #D95B5F;
  /* New color when hovered */
}

/* line 505, app/assets/stylesheets/shared/_forms.scss */
.mid-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 50%;
  width: 50%;
  margin: 0 auto;
  /* Centers the div in the middle of the screen */
}

/* line 515, app/assets/stylesheets/shared/_forms.scss */
.form_buttons_group {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  /* Space between buttons */
  margin-top: 40px;
}

/* line 523, app/assets/stylesheets/shared/_forms.scss */
.delete_link {
  text-decoration: none;
  color: #56a0b8;
  margin-top: 20px;
}

/* line 529, app/assets/stylesheets/shared/_forms.scss */
.delete_link a {
  text-decoration: none;
}

/* line 533, app/assets/stylesheets/shared/_forms.scss */
.form_item_append_link_wrapper {
  margin-top: 15px;
}

/* line 537, app/assets/stylesheets/shared/_forms.scss */
.form_item_append_link_wrapper a {
  text-decoration: none;
  color: #666;
  font-size: 18px;
}

/* line 543, app/assets/stylesheets/shared/_forms.scss */
.form_item_fields_wrapper {
  margin-top: 20px;
}

/* line 547, app/assets/stylesheets/shared/_forms.scss */
.form_item_fields_wrapper:first-child {
  margin-top: 0;
}

/* Wrapper for the checkbox */
/* line 552, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_wrapper {
  margin-top: 5px;
  display: flex;
  align-items: center;
}

/* Hide the default checkbox */
/* line 559, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_wrapper input[type="checkbox"] {
  display: none;
}

/* Custom checkbox design */
/* line 564, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_label {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #00B4DE;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  margin-right: 10px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Checkmark inside the custom checkbox */
/* line 578, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_label::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 8px;
  height: 14px;
  border: solid #00B4DE;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.3s ease;
}

/* When the checkbox is checked, change background and border colors */
/* line 593, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_wrapper input[type="checkbox"]:checked + .form_item_checkbox_label {
  background-color: #00B4DE;
  border-color: #00B4DE;
}

/* Show the checkmark when checked */
/* line 599, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_wrapper input[type="checkbox"]:checked + .form_item_checkbox_label::after {
  opacity: 1;
  border-color: #fff;
}

/* Optional: Add some hover effect */
/* line 605, app/assets/stylesheets/shared/_forms.scss */
.form_item_checkbox_wrapper input[type="checkbox"]:hover + .form_item_checkbox_label {
  border-color: #007ba0;
}

/* line 609, app/assets/stylesheets/shared/_forms.scss */
.form_item_blue_checkbox_input_wrapper {
  border-color: #4fd1eb;
}

/* line 614, app/assets/stylesheets/shared/_forms.scss */
.form_item_label_img_wrapper {
  width: 45px;
  height: 45px;
  background: rgba(0, 180, 222, 0.4);
  border-radius: 50%;
  position: relative;
  margin-right: 5px;
}

/* line 623, app/assets/stylesheets/shared/_forms.scss */
.form_item_label_container {
  display: flex;
  align-items: center;
}

/* line 628, app/assets/stylesheets/shared/_forms.scss */
.form_item_label_img_wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
}

/* line 636, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_radio_wrapper {
  display: inline-block;
  width: 48%;
  margin-right: 1%;
}

/* line 642, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_radio_wrapper:first-child,
.form_item_field_radio_wrapper:nth-child(2) {
  margin-bottom: 5px;
}

/* line 647, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_radio_wrapper .form_item_radio_label {
  width: 100%;
}

/* line 651, app/assets/stylesheets/shared/_forms.scss */
.form_title {
  padding: 15px 20px;
  /*background: #00B4DE;*/
  background: #4fd1eb;
  color: #fff;
  padding: 8px 12px;
  /* Optional: slight padding */
  border-radius: 7px;
  margin: 0;
  margin-left: 5px;
}

/* line 664, app/assets/stylesheets/shared/_forms.scss */
.form_title a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* line 671, app/assets/stylesheets/shared/_forms.scss */
.form_title a:visited {
  color: #ffffff;
}

/* line 675, app/assets/stylesheets/shared/_forms.scss */
.form_title a:hover,
.form_title a:focus {
  color: #003344;
  text-decoration: underline;
}

/* line 681, app/assets/stylesheets/shared/_forms.scss */
.form_title a {
  color: #ffffff;
  padding: 2px 4px;
  border-radius: 4px;
}

/* line 687, app/assets/stylesheets/shared/_forms.scss */
.form_title a:hover {
  background-color: rgba(0, 51, 68, 0.15);
  color: #003344;
}

/* line 695, app/assets/stylesheets/shared/_forms.scss */
.form_item_field_wrapper textarea {
  width: 100%;
  height: 500px;
  border-radius: 5px;
  background: #f2f2f2;
  border: none;
  box-sizing: border-box;
}

/* line 706, app/assets/stylesheets/shared/_forms.scss */
.remove_nested_fields {
  margin-top: 10px;
}

/* line 711, app/assets/stylesheets/shared/_forms.scss */
.password_field {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

/* line 718, app/assets/stylesheets/shared/_forms.scss */
.password_field input {
  flex: 1;
  padding-right: 30px;
}

/* line 1, app/assets/stylesheets/shared/_buttons.scss */
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

/* line 8, app/assets/stylesheets/shared/_buttons.scss */
.scout_button_unpaid {
  cursor: pointer;
}

/* line 12, app/assets/stylesheets/shared/_buttons.scss */
.user_index_item_scout_button_wrapper {
  width: 100%;
}

/* line 17, app/assets/stylesheets/shared/_buttons.scss */
.toggle-password {
  position: absolute;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  width: 20px;
  height: 20px;
}

/* line 28, app/assets/stylesheets/shared/_buttons.scss */
.centered_button {
  display: flex;
  justify-content: center;
}

/* line 34, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button {
  color: white;
  border: none;
  cursor: pointer;
  height: 100%;
  border-radius: 50px;
  font-size: 12px;
  width: 100%;
}

/* line 44, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button {
  text-align: center;
}

/* line 48, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button span,
.job_apply_button a,
.job_apply_button button,
.job_apply_button input {
  max-width: 100%;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  display: inline-block;
  padding: 10px 0;
  border: none;
  cursor: pointer;
}

/* line 65, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_non_link {
  padding: 10px 0;
}

/* line 71, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button a,
.job_apply_button button,
.job_apply_button input {
  background: linear-gradient(to right, #5de0e6, #014bae);
  color: #fff !important;
}

/* line 78, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button button:hover,
.job_apply_button a:hover {
  background: linear-gradient(to right, #4ccbd6, #013a87);
}

/* line 84, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_link.disabled {
  background-color: #d3d3d3 !important;
  color: #808080 !important;
  border: 1px solid #ccc !important;
  cursor: not-allowed;
}

/* line 91, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button button.disabled {
  background-color: #d3d3d3 !important;
  color: #808080 !important;
  border: 1px solid #ccc !important;
  cursor: not-allowed;
  background: #d3d3d3 !important;
}

/* line 99, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button {
  display: block;
  width: 100%;
  text-align: center;
}

/* line 105, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button button {
  max-width: 100%;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #fff !important;
  border-radius: 50px;
  font-size: 13px;
  display: inline-block;
  padding: 10px 0;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #5de0e6, #014bae) !important;
}

/* line 120, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button button:hover {
  background: linear-gradient(to right, #4ccbd6, #013a87) !important;
}

/* line 124, app/assets/stylesheets/shared/_buttons.scss */
.job_apply_button button.disabled {
  background-color: #d3d3d3 !important;
  color: #808080 !important;
  border: 1px solid #ccc !important;
  cursor: not-allowed !important;
  background: #d3d3d3 !important;
}

/* line 1, app/assets/stylesheets/shared/_common_containers.scss */
.contents_header_title {
  background: #00B4DE;
  color: #fff;
  padding: 30px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

/* line 11, app/assets/stylesheets/shared/_common_containers.scss */
.contents_header_title::before {
  content: "";
  border-bottom: 3px solid #fff;
  width: 50px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* line 21, app/assets/stylesheets/shared/_common_containers.scss */
.contents_header_title_pale {
  background: #E5F7FC;
  color: #00B4DE;
}

/* line 26, app/assets/stylesheets/shared/_common_containers.scss */
.contents_header_title_pale::before {
  border-bottom: 3px solid #00B4DE;
}

/* line 30, app/assets/stylesheets/shared/_common_containers.scss */
.horizontal_centering_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* line 37, app/assets/stylesheets/shared/_common_containers.scss */
.centering_wrapper {
  display: flex;
  justify-content: center;
  /* Horizontally center */
  align-items: center;
  /* Vertically center */
  /* Full viewport height */
  text-align: center;
  /* Optional: center text inside the content */
}

/* line 49, app/assets/stylesheets/shared/_common_containers.scss */
.sizing_wrapper {
  max-width: 100vw;
  width: 80%;
}

/* line 55, app/assets/stylesheets/shared/_common_containers.scss */
.single_button_centering_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

/* line 63, app/assets/stylesheets/shared/_common_containers.scss */
.horizontal_justification_wrapper {
  display: flex;
  flex-direction: column;
  /*align-items: center;*/
  /* Centers the form and login link */
}

/* line 70, app/assets/stylesheets/shared/_common_containers.scss */
.bottom_padding {
  padding-bottom: 10px;
}

/* line 74, app/assets/stylesheets/shared/_common_containers.scss */
.top_margin_10 {
  margin-top: 10px;
}

/* line 78, app/assets/stylesheets/shared/_common_containers.scss */
.bottom_margin_20 {
  margin-bottom: 20px;
}

/* line 82, app/assets/stylesheets/shared/_common_containers.scss */
.bottom_margin_40 {
  margin-bottom: 40px;
}

/* line 86, app/assets/stylesheets/shared/_common_containers.scss */
.top_margin_20 {
  margin-top: 20px;
}

/* line 90, app/assets/stylesheets/shared/_common_containers.scss */
.top_margin_40 {
  margin-top: 40px;
}

/* line 94, app/assets/stylesheets/shared/_common_containers.scss */
.bottom_margin_80 {
  margin-bottom: 80px;
}

/* line 98, app/assets/stylesheets/shared/_common_containers.scss */
.bottom_padding_20 {
  padding-bottom: 20px;
}

/* line 102, app/assets/stylesheets/shared/_common_containers.scss */
.top_padding_20 {
  padding-top: 20px;
}

/* line 106, app/assets/stylesheets/shared/_common_containers.scss */
.top_padding_40 {
  padding-top: 40px;
}

/* line 110, app/assets/stylesheets/shared/_common_containers.scss */
.left_margin_20 {
  margin-left: 20px;
}

/* line 114, app/assets/stylesheets/shared/_common_containers.scss */
.sides_margin_20 {
  margin-left: 20px;
  margin-right: 20px;
}

/* line 119, app/assets/stylesheets/shared/_common_containers.scss */
.unstyled-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

/* line 125, app/assets/stylesheets/shared/_common_containers.scss */
.no_bottom_margin {
  margin-bottom: 0 !important;
}

/* line 129, app/assets/stylesheets/shared/_common_containers.scss */
.form_inner_basic {
  margin-top: 5px;
  margin-bottom: 5px;
}

/* line 134, app/assets/stylesheets/shared/_common_containers.scss */
.form_field_wrapper_basic {
  width: 100%;
}

/* line 138, app/assets/stylesheets/shared/_common_containers.scss */
.form_field_wrapper_basic input {
  width: 100%;
  height: 30px;
}

/* line 143, app/assets/stylesheets/shared/_common_containers.scss */
.banner_large_width {
  width: 90%;
}

/* line 147, app/assets/stylesheets/shared/_common_containers.scss */
.large_width {
  width: 80%;
}

/* line 151, app/assets/stylesheets/shared/_common_containers.scss */
.medium_width {
  width: 50%;
}

/* line 155, app/assets/stylesheets/shared/_common_containers.scss */
.top_lower_banner_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  list-style: none;
  background-color: white;
  padding-inline-start: 0;
}

/* line 171, app/assets/stylesheets/shared/_common_containers.scss */
.top_lower_banner_wrapper a img {
  max-width: 100vw;
  width: 100%;
}

/* line 176, app/assets/stylesheets/shared/_common_containers.scss */
.top_lower_banner_wrapper li {
  width: 100%;
  text-align: center;
}

/* line 183, app/assets/stylesheets/shared/_common_containers.scss */
.top_lower_banner_wrapper li img {
  max-width: 100vw;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* line 190, app/assets/stylesheets/shared/_common_containers.scss */
.company_padding_top {
  padding-top: 40px !important;
}

/* line 194, app/assets/stylesheets/shared/_common_containers.scss */
.company_centering_wrapper {
  display: flex;
  justify-content: center;
  /* Horizontally center */
  align-items: center;
  /* Vertically center */
  /* Full viewport height */
  text-align: center;
  margin: 0 auto;
}

/* line 208, app/assets/stylesheets/shared/_common_containers.scss */
.ends_padding_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* line 213, app/assets/stylesheets/shared/_common_containers.scss */
.ends_padding_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

/* line 218, app/assets/stylesheets/shared/_common_containers.scss */
.ends_padding_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 223, app/assets/stylesheets/shared/_common_containers.scss */
.ends_margin_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* line 228, app/assets/stylesheets/shared/_common_containers.scss */
.small_spread {
  margin-top: 10px;
}

/* line 232, app/assets/stylesheets/shared/_common_containers.scss */
.empty-message-space {
  height: 40px;
}

/* line 7, app/assets/stylesheets/pages/sessions.scss */
.session_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 100vw;
  width: 100%;
  align-items: center;
  background-image: url(/assets/cloud_background-4c74cd852f383b87e77d53402ba008a92da3b166522817a8ab379aa0d2059950.svg);
  background-size: 100%;
  background-position: center top;
}

/* line 19, app/assets/stylesheets/pages/sessions.scss */
.session_title {
  background-color: white;
  margin-top: 20px;
  border-radius: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #4fd1eb;
  font-weight: bold;
  font-size: 18px;
}

/* line 30, app/assets/stylesheets/pages/sessions.scss */
.session_new_login_wrapper {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  max-width: 100vw;
  width: 80%;
}

/* line 39, app/assets/stylesheets/pages/sessions.scss */
.session_label_wrapper {
  background-color: white;
  padding-top: 5px;
  color: #4fd1eb;
  font-size: 18px;
}

/* line 48, app/assets/stylesheets/pages/sessions.scss */
.session_form_item_submit {
  width: 75%;
  text-align: center;
  margin-top: 40px;
}

/* line 54, app/assets/stylesheets/pages/sessions.scss */
.session_form_item_submit input {
  width: 80%;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  display: inline-block;
  padding: 15px 0;
  background: #30aadd;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

/* line 68, app/assets/stylesheets/pages/sessions.scss */
.session_form_item_submit input:hover {
  background: #34a2d1;
}

/* line 72, app/assets/stylesheets/pages/sessions.scss */
.session_form_item_submit a {
  display: inline-block;
  width: 80%;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  padding: 15px 0;
  background: #30aadd;
  border: none;
}

/* line 85, app/assets/stylesheets/pages/sessions.scss */
.session_form_item_submit a:hover {
  background: #34a2d1;
}

/* line 90, app/assets/stylesheets/pages/sessions.scss */
.session_new_login_SNS_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100vw;
  width: 75%;
  background: white;
  border: 2px solid #30aadd;
  padding: 20px;
  border-radius: 15px;
}

/* line 104, app/assets/stylesheets/pages/sessions.scss */
.session_SNS_login_text {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

/* line 113, app/assets/stylesheets/pages/sessions.scss */
.session_SNS_login_text_text {
  color: #60c1e8;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

/* line 121, app/assets/stylesheets/pages/sessions.scss */
.session_SNS_underline {
  width: 80%;
  max-width: 250px;
  margin-top: -8px;
}

/* line 128, app/assets/stylesheets/pages/sessions.scss */
.session_SNS_links {
  display: flex;
  justify-content: space-around;
  width: 80%;
  max-width: 300px;
}

/* line 135, app/assets/stylesheets/pages/sessions.scss */
.session_SNS_icon_wrapper img {
  width: 70px;
  height: auto;
}

/* line 140, app/assets/stylesheets/pages/sessions.scss */
.session_new_signup_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 148, app/assets/stylesheets/pages/sessions.scss */
.session_new_signup_button {
  width: 60%;
  max-width: 400px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  background: #30aadd;
  border: none;
  font-weight: bold;
}

/* line 163, app/assets/stylesheets/pages/sessions.scss */
.session_new_signup_button:hover {
  background: #34a2d1;
}

/* line 167, app/assets/stylesheets/pages/sessions.scss */
.session_new_signup_text {
  justify-content: center;
}

/* line 171, app/assets/stylesheets/pages/sessions.scss */
.session_new_form_wrapper {
  margin-top: 40px;
}

/* line 175, app/assets/stylesheets/pages/sessions.scss */
.session_new_mail_wrapper a {
  background: #fff;
  border: 2px solid #ED6A6A;
  color: #ED6A6A;
  font-weight: bold;
}

/* line 182, app/assets/stylesheets/pages/sessions.scss */
.form_item_remember {
  text-align: center;
  margin-top: 30px;
}

/* line 187, app/assets/stylesheets/pages/sessions.scss */
.form_item_remember input[type="checkbox"] {
  display: none;
}

/* line 191, app/assets/stylesheets/pages/sessions.scss */
.form_item_remember input[type="checkbox"] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}

/* line 200, app/assets/stylesheets/pages/sessions.scss */
.form_item_remember input[type="checkbox"] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #F88186;
  background-color: #F88186;
}

/* line 215, app/assets/stylesheets/pages/sessions.scss */
.form_item_remember input[type="checkbox"]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 9px;
  margin-top: -9px;
  top: 50%;
  left: 3px;
  transform: rotate(-45deg);
  border-bottom: 3px solid;
  border-left: 3px solid;
  border-color: #fff;
}

/* line 231, app/assets/stylesheets/pages/sessions.scss */
.forgot_password_wrapper {
  text-align: left;
}

/* line 236, app/assets/stylesheets/pages/sessions.scss */
.forgot_password_text {
  color: #227ed7;
  font-size: 16px;
}

/* line 241, app/assets/stylesheets/pages/sessions.scss */
.forgot_password_link {
  color: #0066cc;
  text-decoration: underline;
  font-weight: bold;
}

/* line 247, app/assets/stylesheets/pages/sessions.scss */
.forgot_password_link:hover {
  color: #004499;
}

/* line 252, app/assets/stylesheets/pages/sessions.scss */
.session_new_login_form_wrapper {
  margin-top: 10px;
}

/***
  From Account.scss
  **/
/* line 260, app/assets/stylesheets/pages/sessions.scss */
.account_new_login_registered_wrapper {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #00B4DE;
}

/* line 267, app/assets/stylesheets/pages/sessions.scss */
.account_new_login_registered_wrapper a {
  color: #00B4DE;
}

/* line 271, app/assets/stylesheets/pages/sessions.scss */
.account_new_mail_form_wrapper {
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 7px;
}
