@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url(https://fonts.googleapis.com/icon?family=Material+Icons|Material+Icons+Outlined);

:root {
    --blue: #007AFF;
    --lightblue: rgba(147, 187, 228, 0.5);
    --blue50: rgba(0, 122, 255, 0.75);
    --blue25: rgba(0, 122, 255, 0.25);
    --icon-button: #44474F;
    --gray1: #7D7D83;
    --gray2: #ADADB1;
    --gray3: #F5F6F7;
    --red: #EB011E;
    --green: #32D74B;
    --yellow: #EBCA67;
    --white: white;
    --black: black;
    --table-text: #1D1B20;
    --background-color: white;
    --transparent: transparent;
}

:focus {
    border: none;
}

:focus-visible {
    border: 2px solid var(--lightblue);
    outline: none;
}

input:focus-visible {
    border: none;
}

body {
    background-color: var(--background-color);
    color: var(--black);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-size: 14.5px;
    padding: 0;
    margin: 0;
    word-break: break-all;
}

.leftmargin {
    margin-left: 8px
}

.leftmargin2 {
    margin-left: 16px
}

.leftmargin3 {
    margin-left: 24px
}

.rightmargin {
    margin-right: 8px;
}

.rightmargin2 {
    margin-right: 16px;
}

.rightmargin3 {
    margin-right: 24px;
}

.topmargin {
    margin-top: 24px;
}

.topmargin2 {
    margin-top: 48px;
}

.topmargin4 {
    margin-top: 96px;
}

.bottommargins {
    margin-bottom: 6px;
}

.bottommargin {
    margin-bottom: 12px;
}

.bottommargin2 {
    margin-bottom: 24px;
}

div.fullview {
    width: 100%;
    height: 100vh;
}

div.flexcolumn {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

div.flexrow {
    display: flex;
    min-height: 40px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

div.detailrow {
    display: flex;
    min-height: 36px;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

div.inlineflex {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    gap: 24px 16px;
}

div.flexgap {
    gap: 24px 16px;
}

div.buttongap {
    gap: 12px 8px;
}

div.loginview {
    justify-items: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

div.loginpanel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    min-width: 488px;
    min-height: 520px;
}

div.content {
    padding: 24px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

div.title {
    font-weight: 500;
    font-size: 28px;
    height: 40px;
    min-height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.largefont {
    font-weight: 500;
    font-size: 28px;
    min-height: 40px;
}

div.middlefont {
    font-weight: 500;
    font-size: 20px;
    min-height: 32px;
}

div.dialogtitle {
    font-weight: 500;
    font-size: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.dialogmessage {
    word-break: normal;
}

div.buttons {
    display: flex;
    flex-direction: row;
}

div.grayblock {
    background-color: var(--gray3);
    padding: 24px;
    border-radius: 12px;
    word-break: normal;
    box-sizing: border-box;
}

div.thinpad {
    padding: 19px 24px 19px 24px;
}

div.graypanel {
    background-color: var(--gray3);
    padding: 12px 16px 28px 16px;
    border-radius: 12px;
    box-sizing: border-box;
}

div.accountlist {
    margin: 0 16px 0 16px;
}

div.accountpanel {
    margin: 28px 0 40px 0;
}

div.label {
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    margin-bottom: 4px;
}

div.fillterblock {
    padding: 16px 20px;
    border-radius: 12px;
    min-height: 72px;
    box-sizing: border-box;
}

div.dialog {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    font-size: 11pt;
    min-width: 280px;
    min-height: 176px;
    max-width: calc(100% - 96px);
    max-height: calc(100% - 96px);
    background-color: var(--background-color);
    color: var(--table-text);
    padding: 24px 24px;
    border-radius: 12px;
    box-sizing: border-box;
}

div.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

div.backtrop {
    background-color: rgba(0, 0, 0, 0.25);
}

div.navigation {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--background-color);
    width: 0;
    height: 100%;
    padding-top: 24px;
    border-radius: 0px 16px 16px 0px;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.2s linear;
}

div.navigation-opened {
    width: 30%;
}

div.scrollable {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

div.valueview {
    height: 38px;
    line-height: 38px;
    box-sizing: border-box;
    user-select: none;
}

div.valuegray {
    color: var(--gray1);
    font-weight: normal;
}

div.clicked {
    background-color: var(--gray3);
    border: 1px solid var(--blue);
}

div.confirminput {
    min-width: 600px;
}

div.floatingmenu {
    position: absolute;
    top: calc(100vh * 0.1);
    left: 48px;
    background-color: var(--background-color);
    width: 245px;
    min-width: 245px;
    max-height: calc(100vh * 0.8);
    padding: 8px 0;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 4px rgba(0, 0, 0, 0.10);
    z-index: 3;
}

.floatinglabel {
    font-size: 13.5px;
    text-align: left;
    width: 240px;
    height: 48px;
    line-height: 48px;
    background-color: var(--background-color);
    padding: 0 12px;
    box-sizing: border-box;
}

button.floatinglabel:hover:not([disabled]) {
    background-color: #F5F5F5;
}

button.floatinglabel:active:not([disabled]) {
    background-color: #D3D3D3;
}

div.dropdownbuttons {
    width: fit-content;
    height: fit-content;
    min-width: 200px;
}

div.dropdownpanel {
    position: absolute;
    background-color: var(--background-color);
    max-height: calc(100vh * 0.8);
    padding: 12px;
    border-radius: 12px;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 4px rgba(0, 0, 0, 0.10);
    z-index: 3;
}

div.bottomribon {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 13.5px;
    background-color: var(--yellow);
    color: var(--black);
    width: 100%;
    height: 0;
    min-height: 0;
    box-sizing: border-box;
    box-shadow: 2px 2px 4px 4px rgba(0, 0, 0, 0.10);
    transition: all 0.2s linear;
    z-index: 4;
}

div.bottomribon-opened {
    height: 48px;
}

div.confirmpanel {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    z-index: -1;
}

div.confirmpanel-front {
    z-index: 3;
}

div.rightpanel {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    width: 600px;
    height: 0;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 3;
}

div.widepanel {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--background-color);
    width: 100%;
    height: 0;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 3;
}

div.panel-closed {
    transition: all 0.2s linear;
    height: 0;
}

div.panel-opened {
    transition: all 0.2s linear;
    height: 100%;
}

div.panel-full {
    transition: all 0.2s linear;
    height: 100%;
    width: 100%;
}

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

div.detailrow {
    display: flex;
    flex-direction: row;
}

div.detailtext {
    color: var(--gray1);
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
}

div.ellipsisdetailtext {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 350px;
}

div.value {
    color: var(--gray1);
    overflow: hidden;
    text-align: end;
    text-overflow: ellipsis;
    word-break: keep-all;
}

div.wrapinput {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--transparent);
    box-sizing: border-box;
    min-height: 40px;
    border-bottom: 1px solid var(--gray1);
}



div.countrycode {
    max-width: 80px;
}

div.wrapinput:hover {
    border-bottom: 1px solid #1A1B20;
}

div.wrapinput:focus-within {
    border-bottom: 2px solid var(--blue);
}

div.wrapinput-readonly {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--transparent);
    box-sizing: border-box;
    min-height: 40px;
}

div.tableinput {
    border: none;
    height: 38px;
}

div.tableinput:hover {
    border: none;
}

div.tableinput:focus-within {
    border-bottom: 2px solid var(--blue);
}

div.calendarpanel {
    margin: 12px;
}

.calendar {
    background-color: var(--transparent);
    font-size: 15px;
}

div.caltitle {
    justify-items: center;
    height: 48px;
}

div.calrbeg {
    background: linear-gradient(90deg, var(--white) 50%, var(--blue50) 50%);
}

div.calrend {
    background: linear-gradient(270deg, var(--white) 50%, var(--blue50) 50%);
}

div.calrange {
    background-color: var(--blue50);
}

div.movebuttons {
    display: flex;
    flex-direction: column;
    gap: 24px 16px;
    width: 120px;
    min-width: 120px;
}

div.dummyfilter {
    height: 72px;
}

div.updated {
    color: var(--blue);
    font-weight: 500;
}

div.deleted {
    color: var(--red);
    font-weight: 500;
}

div.placeholder {
    color: var(--gray2);
    font-weight: 350;
}

div.assignmenturl {
    align-items: center;
}

div.iconcaption {
    text-align: center;
}

table.calendar {
    width: 280px;
    height: 272px;
}

tr.calendar {
    border: none;
    height: auto;
    border-collapse: collapse;
}

th.calendar {
    background-color: var(--background-color);
    color: var(--gray2);
    font-weight: normal;
    height: 56px;
    border: none;
}

.logininput {
    width: 300px;
}

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

.editlable {
    color: var(--table-text);
}

input {
    box-sizing: inherit;
    background-color: var(--transparent);
    font-size: 14.5px;
    width: 100%;
    min-height: 32px;
    border: none;
    outline: none;
    text-indent: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input.login {
    width: 100%;
    font-weight: 500;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

::placeholder {
    color: var(--gray2);
}

select {
    box-sizing: inherit;
    width: 100%;
    background-color: var(--transparent);
    border: none;
    outline: none;
    text-indent: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    border: none;
    height: 40px;
    vertical-align: top;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button:not([disabled]) {
    cursor: pointer;
}

button.blackbutton {
    font-weight: bold;
    font-size: 14.5px;
    background-color: var(--black);
    color: var(--white);
    min-width: 200px;
    border-radius: 8px;
}

button.blackbutton:disabled {
    background-color: var(--gray1);
}

button.blackbutton:active:not([disabled]) {
    background-color: var(--black);
}

.blackbutton-icon {
    color: var(--white);
    user-select: none;
}

button.bluetext {
    background-color: var(--transparent);
    color: var(--blue);
    font-weight: 500;
    padding: 0px 12px;
    border-radius: 20px;
}

button.bluetext:hover:not([disabled]) {
    background-color: #EBF5FF;
}

button.bluetext:active:not([disabled]) {
    background-color: #BDDCFF;
}

button.whitebutton {
    font-weight: bold;
    background-color: var(--white);
    color: var(--black);
    min-width: 120px;
    border-radius: 8px;
    border: 1.7px solid var(--black);
}

button.whitebutton:disabled {
    color: var(--gray2);
    border: 1.7px solid var(--gray2);
}

button.whitebutton:hover:not([disabled]) {
    background-color: var(--gray3);
}

button.whitebutton:active:not([disabled]) {
    background-color: var(--gray2);
}

button.iconbutton {
    background-color: var(--transparent);
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

button.iconbutton:hover:not([disabled]) {
    background-color: #F0F1F1;
}

button.iconbutton:active:not([disabled]) {
    background-color: #CFCFD1;
}

button.intable {
    width: 37px;
    height: 37px;
    border-radius: 18px;
}

button.indetail {
    width: 36px;
    height: 36px;
    border-radius: 18px;
}

span.transparent {
    color: rgba(0, 0, 0, 0)
}

.iconbutton-icon {
    background-color: var(--transparent);
    color: var(--icon-button);
    user-select: none;
    width: 40px;
    height: 40%;
    border-radius: 20px;
}

.iconbutton-icon-disabled {
    color: var(--gray2);
}

button.sortbutton {
    color: var(--white);
    background-color: var(--transparent);
    box-sizing: border-box;
    border-radius: 18px;
    width: 100%;
    height: 37px;
    font-weight: bold;
}

button.sortbutton:hover:not([disabled]) {
    background-color: #737D8D;
}

button.sortbutton:active:not([disabled]) {
    background-color: #5C7BA3;
}

button.smallbutton {
    background-color: var(--blue);
    color: var(--white);
    height: 24px;
    padding: 0 12px;
    border-radius: 12px;
    font-weight: bold;
    box-sizing: border-box;
}

button.smallbutton:hover:not([disabled]) {
    background-color: #1B88FF;
}

button.smallbutton:active:not([disabled]) {
    background-color: #2E92FF;
}

button.inputiconbutton {
    background-color: var(--transparent);
    color: var(--icon-button);
    user-select: none;
    width: 38px;
    height: 38px;
    border-radius: 19px;
}

button.inputiconbutton:hover:not([disabled]) {
    background-color: var(--gray3);
}

button.filterbutton {
    background-color: var(--transparent);
    color: var(--gray1);
    font-size: 13px;
    height: 24px;
    padding: 0;
}

button.filterbutton:disabled {
    color: var(--transparent);
}

.filterbutton-icon {
    color: var(--gray1);
}

.filterbutton-icon-disabled {
    color: var(--transparent);
}

button.navbutton {
    background-color: var(--transparent);
    color: var(--blue);
    font-size: 15px;
    font-weight: 550;
    width: 100%;
    height: 48px;
    padding-left: 16px;
    text-align: left;
}

button.navbutton:disabled {
    color: var(--gray1);
}

button.navbutton:hover:not([disabled]) {
    background-color: #EBECED;
}

button.navbutton:active:not([disabled]) {
    background-color: #D0D0D0;
}

button.dialogbutton {
    background-color: var(--transparent);
    color: var(--blue);
    height: 32px;
    min-width: 56px;
    padding: 0px 12px;
    border-radius: 16px;
}

button.dialogbutton:disabled {
    color: var(--gray1);
}

button.dialogbutton:focus {
    background-color: #EBF5FF;
}

button.dialogbutton:hover:not([disabled]) {
    background-color: #EBF5FF;
}

button.dialogbutton:active:not([disabled]) {
    background-color: #BDDCFF;
}

button.redtext {
    color: var(--red);
}

button.whitetext {
    color: var(--white);
}

button.redback {
    background-color: var(--red);
}

button.redback:hover:not([disabled]) {
    background-color: #ED1530;
}

button.redback:active:not([disabled]) {
    background-color: #F1475C;
}

button.blueback {
    background-color: var(--blue);
}

button.blueback:hover:not([disabled]) {
    background-color: #1B88FF;
}

button.blueback:active:not([disabled]) {
    background-color: #2E92FF;
}

button.caltitle {
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 20px;
}

button.calday {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    box-sizing: border-box;
    border: none;
    text-overflow: clip;
}

button.calday:disabled {
    color: var(--gray2);
}

button.calmonth {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    box-sizing: border-box;
    border: none;
}

button.calmonth:disabled {
    color: var(--gray2);
}

button.caltoday {
    border: 2px solid var(--blue);
}

button.calselected {
    background-color: var(--blue);
    color: var(--white);
}

button.calendar:active:not([disabled]) {
    background-color: var(--blue50);
    color: var(--white);
}

button.dropdown {
    background-color: var(--transparent);
    color: var(--black);
    font-size: 14.5px;
    text-align: start;
}

button.email {
    width: 60px;
    height: 60px;
    background-color: #007AFF;
    border-radius: 10px;
}

span.email {
    width: 48px;
    height: 48px;
    font-size: 40px;
    line-height: 48px;
    background-color: var(--transparent);
    color: var(--white);
}

button.whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #25D366;
}

img.whatsapp {
    width: 48px;
    height: 48px;
    background-color: var(--transparent);
}

button.messenger {
    width: 60px;
    height: 60px;
    background-color: #3B5998;
    border-radius: 10px;
}

img.messenger {
    width: 48px;
    height: 48px;
    background-color: var(--transparent);
}

button.teams {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 10px;
    border: 1px solid var(--black);
}

img.teams {
    width: 48px;
    height: 48px;
    background-color: var(--transparent);
}

span.smallbutton {
    font-size: 18px;
    height: 20px;
    line-height: 20px;
    box-sizing: border-box;
    vertical-align: bottom;
}

table {
    font-size: 15px;
    font-weight: 350;
    color: var(--table-text);
    table-layout: fixed;
    width: 100%;
    min-width: 100%;
    border-collapse: collapse;
}

table.information {
    table-layout: auto;
    width: 690px;
}

table.widen {
    width: calc((100% - 80px) * 8 / 5 + 80px);
    max-width: calc(300px * 8 + 80px);
}

tr {
    height: 40px;
    border-bottom: 1px solid var(--gray2);
}

th {
    background-color: var(--gray1);
    color: var(--white);
    font-weight: bold;
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

th.vertline {
    border-right: 1px solid var(--gray2);
}

th.width30p {
    width: 27%;
}

th.width40p {
    width: 34%;
}

th.width10p {
    width: 13%;
}

th.edit {
    width: calc((100% - 80px) / 5);
}

td.edit {
    width: calc((100% - 80px) / 5);
}

th.sticky {
    position: sticky;
    top: 0;
    z-index: 1;
}

th.lsticky {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 2;
}

th.rsticky {
    position: sticky;
    top: 0;
    right: 0;
    z-index: 2;
}

th.r2sticky {
    position: sticky;
    top: 0;
    right: 40px;
    z-index: 2;
}

td {
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

td.noselect {
    user-select: none;
}

td.vertline {
    border-right: 1px solid var(--gray2);
}

td.lefty {
    text-align: start;
    padding-left: 12px;
}

td.lsticky {
    position: sticky;
    left: 0;
    background-color: var(--white);
    z-index: 1;
}

td.rsticky {
    position: sticky;
    right: 0;
    background-color: var(--white);
    z-index: 1;
}

td.r2sticky {
    position: sticky;
    right: 40px;
    background-color: var(--white);
    z-index: 1;
}

div.rowreverse {
    flex-direction: row-reverse;
}

div.hiddenoverlay {
    opacity: 0;
    z-index: -1;
}

div.fullsize {
    width: 100%;
    height: 100%;
}

div.fullheight {
    height: 100%;
}

div.fullwidth {
    width: 100%;
}

div.halfwidth {
    width: 50%;
}

div.rightTableHeight {
    height: 90%;
}

div.leftTableHeight {
    height: 88%;
}

div.assigmentHistoryTableHeight {
    height: 83%;
}

div.topalign {
    align-items: flex-start;
}

div.righty {
    text-align: end;
}

div.blackout {
    background-color: rgba(0, 0, 0, 0.25);
}

span.rowreverse {
    flex-direction: row-reverse;
}

span.redtext {
    color: var(--red);
}

span.greentext {
    color: var(--green);
}

td.redtext {
    color: var(--red);
}

td.greentext {
    color: var(--green);
}

th.icon {
    width: 40px;
    max-width: 40px;
}

td.icon {
    max-width: 40px;
}

.graytext {
    color: var(--gray1);
}

.bold {
    font-weight: bold;
}

.grayback {
    background-color: var(--gray3);
}

.selected {
    background-color: var(--blue25);
}

.flexone {
    flex: 1;
}

.flexauto {
    flex: auto;
}

.flexinit {
    flex: initial;
}

.flexnone {
    flex: none;
}

.flexwrap {
    flex-wrap: wrap;
}

.footnote {
    color: var(--gray1);
    font-size: 12px;
    word-break: normal;
}

.shortheight {
    min-height: 36px;
}

div.hidden {
    display: none;
}

nav.hidden {
    display: none;
}

.hidden {
    display: none;
}

.overflowhidden {
    overflow: hidden;
}

div.fadein {
    transition: all 0.2s linear;
    opacity: 1.0;
}

div.fadeout {
    transition: all 0.2s linear;
    opacity: 0.0;
}

div.nowrap {
    white-space: nowrap;
}

div.normalwrap {
    white-space: normal;
    word-break: normal;
}

.height24 {
    height: 24px;
}

input.narrow {
    width: 60px;
}

.nvalue {
    width: 136px;
    max-width: 150px;
}

.wvalue {
    width: 224px;
    max-width: 300px;
}

.value3 {
    width: calc(100% - 40px) / 3;
    max-width: 300px;
}

.value4 {
    width: calc(100% - 40px) / 4;
    max-width: 300px;
}

.value5 {
    width: calc(100% - 40px) / 5;
    max-width: 300px;
}

.value6 {
    width: calc(100% - 40px) / 6;
    max-width: 300px;
}

.value7 {
    width: calc(100% - 40px) / 7;
    max-width: 300px;
}

@media screen and (max-width: 1088px) {
    .optional {
        display: none;
    }

    th.value {
        width: min(calc(100% - 80px) / 5, 200px);
        max-width: 200px;
    }

    td.value {
        width: min(calc(100% - 80px) / 5, 200px);
        max-width: 200px;
    }
}

@media screen and (min-width: 1088px) {
    .optional {
        display: table-cell;
    }

    th.value {
        width: min(calc(100% - 80px) / 5, 200px);
        max-width: 200px;
    }

    td.value {
        width: min(calc(100% - 80px) / 5, 200px);
        max-width: 200px;
    }
}

div.passwordinput {
    width: 280px;
    margin-top: 10px;
}

div.form-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 32px;
    margin-left: 5px;
}

div.form-row label {
    flex: 1.4;
    text-align: left;
    font-size: 1.1em;
    margin-left: 1px;
}

div.passwordtitle {
    align-items: center;
    text-align: center;
}

div.passwordpanel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    min-width: 500px;
    min-height: 520px;
}

div.changepasswordpanel {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    min-width: 488px;
    min-height: 520px;
}

div.flexgap1 {
    gap: 12px 8px;
}

input.radiocontact {
    float: left;
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
}

div.contactPhone {
    width: 70%;
}

div.contactEmail {
    width: 90%;
}

p.radiocontacttitle {
    width: 85px;
    margin-left: 10px;
}

#loginform {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

span.text-danger {
    margin-top: 5px;
    color: red;
    float: left;
}

#loading-spinner {
    display: none;
    position: fixed;
    inset: 0px;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    text-align: center;
}

.loading-img {
    max-width: 70px;
    max-height: 70px;
}

.loading-message {
    font-weight: bold;
}

.confirmpopup-error-message {
    margin-left: 300px;
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
    min-height: 18px;
    float: left;
    margin-bottom: 10px;
}

.popup-error-message {
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
    min-height: 18px;
    float: left;
    margin-bottom: 10px;
    max-width: 300px;
}

.div-error {
    border: 1.5px solid #ff0000 !important;
    border-radius: 4px;
}

.tooltip-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.info-tooltip {
    --tooltip-max-width: 276px;
}

.info-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 115%;
    right: 0;
    margin-top: 2px;
    max-width: var(--tooltip-max-width, 276px);
    width: max-content;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    text-align: left;
    background-color: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14.5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    z-index: 100;
    pointer-events: none;
    font-family: "Noto Sans JP", sans-serif;
}

.info-tooltip:hover::after,
.info-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
}

.info-icon-tooltip {
    color: #dc3545 !important;
}

.overflow-unset {
    overflow: unset !important;
}

.d-flex {
    display: flex;
}

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

.preserve-ws {
    white-space: pre-wrap;
}

.btn-close-pop-information {
    position: absolute;
    top: 0px;
    left: 0px;
    zoom: 0.8;
}

#detail_drivercontactemail {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 350px;
}
