.main{
    margin:30px auto;
}

h1{
    margin:30px 0;
}

.hidden{
    display: none;
}

[x-cloak]{
    display:none !important
}
input:invalid,.form_alert{
    background-color: rgb(255, 242, 244);
    border: red solid 3px;
}
.no-display{
    display: none;
}
td{
    vertical-align: middle;
}
.icon_mypage{
    width: 10%;
    min-width: 25px;
    margin:10px;
}
.w-5{
    width: 5%;
}
.w-10{
    width: 10%;
}
.w-15{
    width: 15%;
}
.w-20{
    width: 20%;
}
.w-30{
    width: 30%;
}
.w-70{
    width: 70%;
}
.opacity-half:hover{
    opacity: 0.5;
}
.dark-hover:hover{
    background-color: gray;
}
tr .plus{
    color:rgb(223, 114, 114);
}
tr .minus{
    color:rgb(113, 115, 250);
}
.no-spin::-webkit-inner-spin-button,
.no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
    -moz-appearance:textfield !important;
    appearance:textfield !important;
}

.gray-box{
    background-color: rgb(240, 240, 240);
    padding: 20px 10px;
}

.white-box{
    background-color: white;
    padding:20px;
}

.step-bar{
    font-size: 80%;
	/* display: -webkit-box;
	display: -ms-flexbox;
	display: flex; */
	margin: 0 0 1em;
	padding: 0;
}

.step-bar > li {
    position:relative;
    display:block;
    width:auto;
    margin:0;
    padding:0;
    list-style: none;
    text-align: center;
    text-overflow: ellipsis;
    color: #b0bec5;
    /* -ms-flex: 1;
	-moz-flex: 1;
	-webkit-box-flex: 1;
	     flex: 1; */
}

.step-bar > li .bubble{
    display:block;
    width:20px;
    height:20px;
    margin:0 auto 0.5em;
    border-radius:1000px;
    background-color: #b0bec5;
}

.step-bar > li .bubble::after{
    position:absolute;
    top:9px;
    width:100%;
    height:3px;
    content:'';
    background-color: #b0bec5;
}
.step-bar > li:last-child .bubble::after{
    width: 0%;
    margin-right: 50%;
}

.step-bar > li.completed {
    color:black;
}

.step-bar > li.completed .bubble,
.step-bar > li.completed .bubble::after,
.step-bar > li.active .bubble,
.step-bar > li.active .bubble::after{
    background-color: black;
}

.step-bar > li.active {
    color: black;
    font-weight: bold;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    display: none;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -25px;
    margin-top: -25px;
    z-index: 1000;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 500;
    display: none;
}