* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'notoSansJP', 'notoSansSC', 'Noto Sans JP', 'Noto Sans SC', sans-serif;
    color: black;
}

a {
    text-decoration: none;
}

.header_container {
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid gray;
    padding: 0 20px;
}

.header_container h1 a {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo {
    width: 180px;
}

.mainpage_logo {
    width: 250px;
}

main {
    background-color: rgb(248, 249, 250);
    /* background-color: rgb(252, 252, 253); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main__container {
    width: 720px;
    min-height: calc(100vh - 60px);
    background-color: white;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    margin: 0 auto;
    padding: 0 20px;
}

.button__container {
    width: 600px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* margin: 10px 0 20px 0; */
    margin: 0 auto;
    padding: 10px 0 20px 0;
}

.button__container button { 
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn__prev {
    border: 1px solid rgb(88, 88, 103);
    background-color: rgb(88, 88, 103);
    color: white;
}

.btn__prev span {
    color: white;
}

.btn__prev i {
    color: white;
    padding-right: 5px;
}

.btn__next {
    border: 1px solid #00B0F0;
    background-color: #00B0F0;
    color: white;
}

.btn__next span {
    color: white;
}

.btn__next i {
    color: white;
    padding-left: 5px;
}

/* -------------- stepper -------------- */
.stepper {
    max-width: 680px;
    padding: 20px 0 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    overflow-x: scroll;
}

.step__item {
    position: relative;
}

.step__item a {
    display: inline-block;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step__circle {
    width: 15px;
    height: 15px;
    margin: 0 2px;
    background-color: #fff;
    border: 3px solid #888;
    border-radius: 50%;
    display: inline-block;
    z-index: 1;
}

.step__circle.active {
    background-color: #00B0F0;
    border: 3px solid #00B0F0;
}

.step__text {
    display: inline-block;
    font-size: 13px;
    padding-top: 5px;
    color: #888;
    text-align: center;
}

.step__text.active {
    color:#00B0F0;
    font-size: 14px;
    font-weight: bold;
}


.step__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 7px;
    right: -30px;
    transform: translateY(-50%);
    height: 2px;
    background-color: #ccc;
    width: 60px;
}

/* .step__line {
    width: 18px;
    height: 3px;
    border: 1px solid #888;
    border-radius: 1.5px;
    background-color: #888;
    margin-bottom: 10px;
    margin-top: 5px;
} */

.stepper::-webkit-scrollbar {
    height: 10px;
}

.stepper::-webkit-scrollbar-track {
    background-color: #eee;
    border-radius: 100px;
}

.stepper::-webkit-scrollbar-thumb {
    background-color: gray;
    border-radius: 100px;
}

/* -------------- input page 共用 -------------- */
.content__container {
    width: 600px;
    margin: 0 auto;
}

.pagetitle {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items:flex-end;
    margin: 20px 0 10px;
}

.pagetitle.column {
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.maintitle {
    font-size: 24px;
    font-weight: 700;
}

.subtitle {
    font-size: 14px;
    font-weight: 400;
    padding-left: 10px;
    color: rgb(220, 53, 69);
}

.pagetitle.column > .subtitle {
    padding-left: 0;
}

.divide-line {
    border-bottom: 1px solid gray;
    margin: 15px 0;
}

.mainpage_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 50px;
}

.mainpage_container > .pagetitle {
    padding-top: 30px;
}

.input__container {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    margin-bottom: 20px;
}

.input___item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input__header {
    font-size: 16px;
    font-weight: bold;
}

.input__body {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
    font-size: 18px;
    gap: 20px;
}

input {
    height: 45px;
    font-size: 18px;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid gray;
}

select {
    height: 45px;
    font-size: 18px;
    padding: 0 8px;
    border-radius: 5px;
    border: 1px solid gray;
}


/* -------------- profile -------------- */
.input__body.name__wrapper {
    justify-content: space-between;
}

.name__wrapper input {
    width: 290px;
}

.radio__wrapper {
    margin-right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.radio__wrapper label {
    padding-left: 5px;
}

.nationality__wrapper select, 
.residence__wrapper select {
    width: 250px;
}

.date__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 10px;
    font-size: 16px;
}

.input__year {
    width: 80px;
}

.input__month, .input__day {
    width: 60px;
}

.date__wrapper span {
    margin-left: 10px;
}

#zipcode {
    width: 150px;
}

.address__wrapper input {
    width: 100%;
}

.phone__wrapper input {
    width: 100%;
}

.phone__wrapper select {
    width: 270px;
    margin-right: 5px;
}


/* -------------- profile photo -------------- */
.photo__container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn_upload {
    width: 300px;
    height: 35px;
    background-color: #fff;
    border: 1px solid #00B0F0;
    border-radius: 5px;
    color: #00B0F0;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.btn_upload:hover {
    background-color: #00B0F0;
    color: #fff;
}

#imagefile {
    display: none;
}

.img_wrap {
    width: 3cm;
    height: 4cm;
    margin: 10px 0;
    /* border: 2px dashed gray; */
    display: none;
}

.profile__preview {
    width: 3cm;
    height: 4cm;
    object-fit: cover;
}

.photo__container .btn_delete {
    width: 100px;
    height: 35px;
    border: 1px solid #00B0F0;
    border-radius: 5px;
    background-color: white;
    color: #00B0F0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
    font-weight: 500;
}

/* -------------- visa -------------- */
.visaKindSelector {
    width: 100%;
}

/* -------------- requirement -------------- */
.requirement__container select {
    width: 100%;
}


/* -------------- self promotion -------------- */
.selfpromotion__container {
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
}

.selfpromotion__textarea {
    width: 100%;
    height: 250px;
    font-size: 16px;
    line-height: 150%;
    resize: vertical;
    padding: 8px;
    margin-top: 10px;
}

.counter_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.counter_container .error_message {
    font-size: 14px;
    display: block;
}

.text-counter {
    width: 50%;
    text-align: right;
}

.text-counter strong {
    color: rgb(220, 53, 69);
    font-weight: bold;
}

.prMakeCount {
    font-size: 13px;
    font-weight: 400;
    align-self: center;
}

.prMakeCount strong {
    color: rgb(220, 53, 69);
}

.btn_open {
    border: 1px solid #00B0F0;
    background-color: #fff;
    color: #00B0F0;
    font-weight: 700;
    border-radius: 5px;
    padding: 5px 20px;
    /* width: 170px; */
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
    align-self: center;
}

.step1, .step2 {
    width: 100%;
}

.btn_open:active {
    background-color: #00B0F0;
    color: #fff;
}

.inputbox {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
}

.inputbox__left {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.inputbox__left__top {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
}

.inputbox__left__bottom {
    display: flex;
    flex-direction: row;
    margin-top: 5px;
}

#eduYear, #jobYear, #licenseYear, #languageYear {
    margin-right: 5px;
}

.edit_year {
    margin-right: 5px;
}

.error_message {
    font-size: 13px;
    font-weight: 400;
    color: rgb(220, 53, 69);
    display: none;
}

.help_message {
    font-size: 13px;
    font-weight: 400;
    color: rgb(33, 37, 41);
}

.input__itemname {
    width: 100%;
    /* margin-right: 10px; */
}

#languageName, #languageLevel {
    width: 100%;
}

.input__itemlevel {
    width: 100%;
}

.inputbox__right button {
    width: 60px;
    height: 40px;
    border: 1px solid #00B0F0;
    background-color: #fff;
    color: #00B0F0;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.inputbox__right button span {
    color: #00B0F0;
}

.inputbox__right button i {
    color: #00B0F0;
    /* margin-right: 5px; */
}

.edu_item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.button__container-modify {
    display: none;
}

.button__container-modify.active {
    display: block;
}

.button__container-normal.inactive {
    display: none;
}

.itemList {
    width: 100%;
    list-style-type: none;
    padding: 0 10px;
    margin: 0px 0;
}

.itemList li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #dbdbdb;
    border-top: none;
    position: relative;
}

.itemList li:last-of-type {
    /* border: 1px solid #dbdbdb; */
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: 10px;
}

.itemList li:first-of-type {
    border-top: 1px solid #dbdbdb;
    border-radius: 10px 10px 0 0;
}

.itemList li:hover {
    /* cursor: pointer; */
}

/* .itemList li:hover::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
    left: 0;
}

.itemList li:hover:last-child::after {
    border-radius: 0 0 10px 10px;
}

.itemList li:hover:first-child::after {
    border-radius: 10px 10px 0 0;
} */

.list__content__container {
    display: flex;
    flex-direction: row;
    width: 450px;
}

.list__content__container .date__wrapper {
    margin-right: 10px;
}

.list__content__container .date__wrapper span {
    margin: 0;
    padding: 0;
}

.list__button__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 125px;
}

/* .list__button__container div {
    width: 110px;
} */

.list__button__container button {
    /* border: none; */
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 5px;
}

.list__button__container .btn_delete {
    background-color: rgba(220, 53, 69, 0.8);
    color: white;
    border: 1px solid rgba(220, 53, 69, 0.8);
}

.list__button__container .btn_modify {
    background-color: #00B0F0;
    color: white;
    border: 1px solid #00B0F0;
}

.list__button__container .btn_confirm {
    background-color: #fff;
    color: #00B0F0;
    border: 1px solid #00B0F0;
}

.list__button__container .btn_cancel {
    background-color: #fff;
    color: rgb(220, 53, 69);
    border: 1px solid rgb(220, 53, 69);
}

.modify-mode {
    display: none;
}

.modify-mode.active {
    display: flex;
}

.normal-mode {
    display: flex;
}

.normal-mode.inactive {
    display: none;
}

.input__itemstatus {
    width: 100px;
}

.input__desc {
    width: 100%;
}

/*  */
.modal, .automake_modal {
    display: none;
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 50px;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 600px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}


.modal__container {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.modal_top {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    z-index: 2;
}

.modal_middle {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.prtextarea {
    width: 100%;
    height: 130px;
    margin: 8px 0 4px 0;
    padding: 4px 8px;
    resize: vertical;
}

.modal__container-top {
    width: 100%;
}

.modal__container-top p {
    font-size: 18px;
}

.modal__container-top textarea {
    width: 100%;
    height: 130px;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 150%;
    resize: none;
    padding: 8px;
}

.modal__container-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* .modal__container-bottom button {
    width: 90px;
    height: 40px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
} */

.modal__container-bottom .btn_cancel {
    border: 1px solid rgb(88, 88, 103);
    background-color: rgb(88, 88, 103);
}

.modal__container-bottom .btn_make {
    border: 1px solid #00B0F0;
    background-color: #00B0F0;
    margin-right: 0;
}


#processMessage {
    color: rgb(220, 53, 69);
    font-weight: 700;
    display: none;
}

.button__container-ai {
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* インデックスページ */
.input-lang { 
    min-height: 200px;
    display: flex; 
    /* justify-content: space-between; */
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.lang-radio input[type="radio"] {
    display: none;
}

.lang-radio label {
  display: block;
  width: 180px;
  background-color: #939CA4; 
  border-radius: 8px; 
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 100px;
  cursor: pointer;
}
/* .lang-radio > input[type=radio]:checked + label {  
    background-color: #00B0F0; 
} */

.lang-radio label.checkedLang {  
    background-color: #00B0F0; 
}

.policy {
    list-style-type: none;
}
.policy-personal, .policy-ai{ margin-bottom: 30px; }

.policy-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.policy-desc { height: 300px; overflow: auto; border: 1px solid #939CA4; padding: 10px; }
.policy-desc__contents {
    padding: 10px 0;
}
.policy-desc__contents table {
    border-collapse: collapse;
}

.policy-desc__contents table tr th {
    border: 1px solid black;
    padding: 5px;
    width: 180px;
}

.policy-desc__contents table tr td {
    border: 1px solid black;
    padding: 5px;
}

.policy-agreement { 
    display: flex; 
}
.policy-agreement div {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.policy-agreement input[type=checkbox] { 
    width: 16px; 
    height: 16px;
    margin-right: 5px;
}
.policy-agreement label { 
    font-size: 16px; 
    font-weight: 600; 
}
/* .policy-agreement > div:first-child { margin-right: 80px; } */
/* .policy-agreement strong { font-size: 16px; } */
/* .policy-agreement > div:last-child input[type=checkbox] { width: 18px; height: 18px; margin-right: 4px; } */
/* .policy-agreement > div:last-child label { font-size: var(--font-medium); } */
.added-item-header-mark {
    display: inline-block;
    background-color: #f00;
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px 1px;
    font-size: 12px;
    margin-left: 8px;
}

.entry-button_container { 
    display: flex; 
    justify-content: space-around;
    align-items: center; 
    padding-top: 10px;
    margin-bottom: 60px;
}

/* .entry-button_container input[type="radio"] { */
.radio-hide {
    display: none;
}

/* .entry-button_container label { */
.label {
  display: block;
  width: 270px;
  background-color: #939CA4; 
  border-radius: 8px; 
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 100px;
  cursor: pointer;
}

/* .entry-button_container label.checked {   */
.label.checked {
    background-color: #00B0F0; 
}

p.lable {
    font-size: 15px;
    margin-top: 5px;
}

.btn_template {
    display: block;
    width: 270px;
    background-color: #fff; 
    border-radius: 8px; 
    color: #00B0F0;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 100px;
    cursor: pointer;
    border: 1px solid #00B0F0;
}

/* confirm */
.preview {
    /* width: 100%; */
    width: 600px;
    height: 980px;
    display: flex;
    flex-direction: column;
}

.preview_box01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 160px;
}

.box01__left {
    /* width: calc(100% - 3cm - 5px - 82px); */
    width: calc(100% - 180px);
}

.box01__left__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 30px;
    padding-bottom: 5px;
}

.title__rirekisyo {
    font-size: 20px;
    font-weight: 500;
}

.date_rirekisyo {
    font-size: 13px;
    padding-right: 40px;
    display: flex;
    align-items: flex-end;
}

.category {
    display: flex;
    align-items: center;
    height: 100%;
}

.category_header {
    width: 60px;
    height: 100%;
    border-right: 1px dotted #000;
    font-size: 11px;
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.nationality .category_header {
    width: 90px;
}

.category_body { 
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 5px;
}

.box01__left__bottom {
    border: 2px solid #000;
    /* border-bottom: 1px solid #000; */
    border-bottom: none;
    height: calc(100% - 30px);
}

.name_kana {
    height: 39px;
    border-bottom: 1px dotted #000;
}

.name_kana .category_body {
    font-size: 14px;
}

.name_original {
    /* height: 90px; */
    height: calc(100% - 39px);
}

.name_original .category_body {
    font-size: 18px;
}

.box01__right {
    width: 180px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.box01__right .image__area {
    width: 3cm;
    height: 4cm;
    border: 1px dotted #000;
    font-size: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#profileImg {
    width: 3cm;
    height: 4cm;
    object-fit: cover;
    display: none;
}

.box01__right .image__area pre {
    padding: 0 10px;
    white-space: pre-wrap;
    display: none;
}

.preview_box02 {
    display: flex;
    flex-direction: column;
    border-left: 2px solid #000;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

.box02__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}

.box02__top__left {
    width: 420px;
    height: 100%;
    display: flex;
    flex-direction: row;
    font-size: 15px;
}

.box02__top__left .birth {
    width: calc(100% - 70px);
    border-right: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

.box02__top__left .gender {
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box02__top__right {
    width: 180px;
    height: 100%;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    display: flex;
}

.box02__top__right .nationality{
    width: 180px;
}

.box02__top__left .gender .category_header,
.box02__top__right .nationality .category_header {
    border: none;
    height: calc(100% - 28px);
}

.box02__top__left .gender .category_body,
.box02__top__right .nationality .category_body {
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
}

.box02__middle {
    display: flex;
    flex-direction: column;
}

.box02__middle .address {
    display: flex;
    flex-direction: column;
}

.address__kana {
    height: 35px;
    border-bottom: 1px dotted #000;
}

.address__kana .category_body {
    font-size: 14px;
}

.address__container {
    height: 60px;
    border-bottom: 1px solid #000;
}

.address__container .category_body {
    width: calc(100% - 60px);
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.address__zipcode {
    width: 100%;
    height: 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#residence {
    display: inline-block;
    min-width: 50px;
}

.address__ori {
    height: calc(100% - 20px);
    font-size: 15px;
    display: flex;
    align-items: center;
}

.contact {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 35px;
    border-bottom: 1px solid #000;
}

.contact__phone {
    width: calc(100% - 350px);
    display: flex;
}

.contact__phone .category_body {
    width: calc(100% - 60px);
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#country-code {
    padding-right: 10px;
}

.contact__eamil {
    width: 350px;
    display: flex;
    border-right: 1px solid #000;
}

.contact__eamil .category_body {
    width: calc(100% - 60px);
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.visa {
    display: flex;
    flex-direction: row;
    height: 48px;
}

.visa__kind {
    width: 350px;
    border-right: 1px solid #000;
    display: flex;
}

.visa__date {
    width: calc(100% - 350px);
    display: flex;
}

.visa__kind .category_body,
.visa__date .category_body {
    width: calc(100% - 60px);
    font-size: 15px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.preview_box03 {
    margin-top: 5px;
}

.preview table,
.preview2 table {
    /* width: 100%; */
    width: 600px;
    border-collapse: collapse;
    border: 2px solid #000;
    table-layout: fixed;
}

.preview table thead tr,
.preview2 table thead tr {
    height: 30px;
    border-bottom: 1px solid #000;
    font-size: 14px;
}

.preview table thead tr td,
.preview2 table thead tr td {
    text-align: center;
}

.preview table tbody tr,
.preview2 table tbody tr {
    height: 35px;
    border-bottom: 1px solid #000;
}

.preview table tbody tr:last-of-type,
.preview2 table tbody tr:last-of-type {
    border: none;
}

.table__year {
    width: 50px;
    border-right: 1px dotted #000;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

.table__month {
    width: 40px;
    border-right: 1px solid #000;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
}

.preview table tbody .table__content,
.preview2 table tbody .table__content {
    padding: 0 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
    font-size: 13.5px;
}

.preview2 {
    margin-top: 5px;
    height: 980px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.preview2-box02 thead tr {
    height: 25px;
    font-size: 14px;
}

.preview2-box02 tbody td {
    height: 35px;
    padding: 0 5px;
}

.preview2-box03 {
    /* width: 100%; */
    width: 600px;
    height: 260px;
    border: 2px solid #000;
}

.preview2-box04 {
    /* width: 100%; */
    width: 600px;
    height: 145px;
    border: 2px solid #000;
}

.preview2-box05 {
    /* width: 100%; */
    width: 600px;
    height: 115px;
    border: 2px solid #000;
}

.preview2-box03 .content__header,
.preview2-box04 .content__header,
.preview2-box05 .content__header {
    height: 30px;
    border-bottom: 1px solid #000;
    padding-left: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

#selfPR, #requirement {
    font-size: 14px;
    padding: 5px;
    height: calc(100% - 30px);
    overflow: hidden;
}

.preview__container table .start__row {
    text-align: center;
}

.preview__container table .end__row {
    text-align: right;
}

.fsSendAgreement_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pdf_info {
    font-size: 12px;
    font-weight: 400;
    color: rgb(220, 53, 69);
}

.button__container.center {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 15px;
}

#btnPdf {
    /* width: 200px; */
    border: none;
    background-color: #00B0F0;
    color: #fff;
}

.update {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    margin-bottom: 10px;
}

.update__header {
    font-size: 18px;
    border-bottom: 1px solid #939CA4;
    padding: 10px 0;
}

.update__body {
    width: 100%;
}

.update__body li {
    list-style-type: none;
    padding: 0;
}

.update__body li a {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #939CA4;
    cursor: pointer;
}

.update__body li a span,
.update__body li a i {
    color: #888;
}

.update__body li a:hover span,
.update__body li a:hover i {
    font-size: 18px;
    color: #000;
}

.category #birthMonth, .category #birthDay,
.category_body #visaMonth, .category_body #visaDay {
    display: inline-block;
    width: 20px;
    text-align: right;
}

.category #age {
    display: inline-block;
    width: 20px;
    text-align: center;
}

.category #birthYear, .category_body #visaYear {
    display: inline-block;
    width: 35px;
    text-align: right;
}


/* edu, job, license */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.write-modal {
    display: none;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 50px;
    justify-content: center;
    align-items: center; 
}

.write-modal_content {
    background-color: #fefefe;
    border: 1px solid #888;
    width: 600px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    margin: 50px auto;
}

.write-modal_content > div { 
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-button_container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.modal-button_container.single {
    justify-content: center;
}

.btn_confirm {
    background-color: #00B0F0;
    color: white;
    border: 1px solid #00B0F0;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}

.btn_confirm:active {
    opacity: 0.5;
}

.btn_delete {
    background-color: white;
    color: rgba(220, 53, 69, 0.8);
    border: 1px solid rgba(220, 53, 69, 0.8);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
}

.btn_delete:active {
    opacity: 0.5;
}

.modal_inner > div:not(.license_area, .language_area)  {
    display: flex;
}

#eduStatus, #jobStatus, #languageStatus {
    width: 100%;
    margin-left: 10px;
}

#licenseStatus {
    width: 200px;
    margin-left: 10px;
}

.cancelMark {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.cancelMark > i {
    font-size: 24px;
    cursor: pointer;
}

#btnModalopen, #btnLicenseModalopen, #btnLanguageModalopen {
    width: 45px;
    height: 45px;
    background-color: white;
    color: #00B0F0;
    border: 1px solid #00B0F0;
    border-radius: 50%;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
}

button.btn_add {
    display: flex;
    width: 45px;
    height: 45px;
    background-color: white;
    border: 1px solid #00B0F0;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

button.btn_add > i {
    font-size: 20px;
    color: #00B0F0;
}

.btn_add:hover > i {
    color: white;
}

#btnModalopen:hover, 
#btnLicenseModalopen:hover, 
#btnLanguageModalopen:hover,
.btn_add:hover {
    background-color: #00B0F0;
    color: white;
    border-color: white;
}

#btnModalopen:active, 
#btnLicenseModalopen:active, 
#btnLanguageModalopen:active,
.btn_add:active {
    opacity: 0.5;
}

.btn_sort {
    align-self: flex-end;
    margin: 0 15px 10px 0;
}

.list-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

div.license_area, div.language_area {
    display: none;
}

.btn_sort {
    height: 30px;
    padding: 0 5px;
    border: 1px solid #00B0F0;
    background-color: white;
    color: #00B0F0;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
}

/* .btn_sort:hover {
    background-color: #00B0F0;
    color: white;
    border-color:  white;
} */

.spinner__container {
    display: flex;
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal .spinner__container {
    position: absolute;
    left: 0;
    background-color: rgba(255, 255, 255, 0.4);
}

.spinner {
    display: flex;
    flex-direction: row;
}

.visually-hidden {
    display: none;
}

@keyframes changeScale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(0);
    }
}

.spinner > div {
    width: 2rem;
    height: 2rem;
    display: flex;
    margin-right: 5px;
    border-radius: 1rem;
    animation-name: changeScale;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.spinner-green {
    background-color: #198754;
}

.spinner-red {
    background-color: #dc3545;
}

.spinner-yellow {
    background-color: #ffc107;
}

.spinner-skyblue {
    background-color: #0dcaf0;
}

.spinner-dark {
    background-color: #212529;
}

.spinner_text {
    padding-top: 10px;
    display: flex;
}

.template-button_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.moveButton_container {
    width: 100%;
    text-align: center;
}

.moveButton_container > button {
    border: none;
    background-color: #fff;
    cursor: pointer;
    font-size: 15px;
    margin-top: 20px;
}

.moveButton_container > button:hover {
    text-decoration: underline;
}

.center {
    align-self: center;
}

textarea.deactivate {
    opacity: 0.5;
    cursor: not-allowed;
}

.wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.message {
    font-size: 13px;
}

.message.error {
    color: rgb(220, 53, 69);
}

.modal_bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.white {
    color: white;
}

.hide {
    display: none;
}

.button {
    min-height: 32px;
    border: 1px solid #00B0F0;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    color: #00B0F0;
    padding: 4px 15px;
    cursor: pointer;
    /* line-height: 0.5; */
}

.button.primary {
    background-color: #00B0F0;
    border-color: #00B0F0;
    color: #fff;
}

.button.danger {
    background-color: #fff;
    border-color: rgb(220, 53, 69);
    color: rgb(220, 53, 69);
}

.button.dark {
    background-color: rgb(88, 88, 103);
    border-color: rgb(88, 88, 103);
    color: #fff;
}

.button.small {
    height: 24px;
    line-height: 0.1;
}

.button.large {
    height: 40px;
    font-size: 16px;
    line-height: 1;
}

.button:hover {
    opacity: 0.7;
}

.button.back::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f053";
    padding-right: 8px;
}

.button.next::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f054";
    padding-left: 8px;
}

.button.deactivate {
    opacity: 0.5;
    cursor: not-allowed;
}

.button span, .button small {
    color: #fff;
}

.visibility {
    visibility: hidden;
}

.textarea_skill {
    padding: 4px 8px;
}

.align-right {
    align-self: flex-end;
}

.list-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.underline {
    text-decoration: underline;
    color: #00B0F0;
    cursor: pointer;
}

.underline.work_delete {
    color: #dc3545;
}

.underline:hover {
    opacity: 50%;
}

button.delete {
    color: #dc3545;
    border-color: #dc3545;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.pdf_alert {
    width: 100%;
    border-radius: 8px;
    padding: 4px 8px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 10px;
}

.alert-warning {
    border: 1px solid #f1aeb5;
    background-color: #f8d7da;
}

.pdf_alert .alert-text::after {
    content: " ";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 10px; 
    border-style: solid;
    border-color: #f8d7da transparent transparent transparent;
}

.pdf_alert img {
    width: 50%;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-left-10 {
    margin-left: 10px;
}

.margin-right-10 {
    margin-right: 10px;
}

.padding-horizontal-10 {
    padding: 0 10px;
}

.margin-top-10 {
    margin-top: 10px;
}

.flex-row .justify-end {
    justify-content: flex-end;
}

.flex-row .margin-right-auto {
    margin-right: auto;
}

.link {
    text-decoration: underline;
    color: rgb(0, 0, 255);
}

.link:hover {
    color: rgba(0, 0, 255, 0.5);
}