/*html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}*/

.tag {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid black;
    display: inline-block
}

.tag-white {
    background-color: #fff;
    border: 1px solid black;
}

.tag-black {
    background-color: #333;
    color: white;
}

.tag-red {
    background-color: #F84E41;
    color: white;
}

.tag-green {
    background-color: #29D568;
    color: white;
}

.tag-blue {
    background-color: #5656EF;
    color: white;
}

.tag-cyan {
    background-color: #41E2C7;
}

.tag-pink {
    background-color: #F872B0;
}

.tag-yellow {
    background-color: #FFE32D;
}

/*.thumbnail {
    max-width: 100px;
    max-height: 100px;
    overflow: hidden;*/ /* サイズを超えた部分を非表示にする */
/*display: inline-block
}

    .thumbnail img {
        width: 100%;*/ /* 画像を親要素の幅いっぱいに広げる */
/*height: auto;*/ /* アスペクト比を保持して高さを自動調整する */
/*}*/

.loadingSpinner {
    width: 50px;
    height: 50px;
    display: grid;
    animation: s4 4s infinite;
}

    .loadingSpinner::before,
    .loadingSpinnerButton::before {
        content: "";
        grid-area: 1/1;
        border: 8px solid;
        border-radius: 50%;
        border-color: #212529 #212529 #0000 #0000;
        mix-blend-mode: darken;
        animation: s4 1s infinite linear;
    }

.loadingSpinnerButton::before {
    border-color: #f8f9fa #f8f9fa #0000 #0000;
}

@keyframes s4 {
    100% {
        transform: rotate(1turn)
    }
}

.height_600-max {
    max-height: 600px;
}

div[id^="inflowId_"] select:focus {
    background-color: var(--color2) !important;
}

div[id^="inflowId_"] select > option:first-child,
select#StartingMonth > option:first-child {
	color: initial;
}

.toast {
    display: none;
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15);
    border: 1px solid rgba(0,0,0,.1);
    text-align: center
}

    .toast > .toast-body {
        padding: 10%;
        cursor: pointer;
    }

ul.pagination_list > li.pagination_item.active span {
	color: white;
	background-color: var(--sysColor1);
}

li.PagedList-skipToFirst > a.pagination_link::Before,
li.PagedList-skipToFirst > a.pagination_link::After,
li.PagedList-skipToPrevious > a.pagination_link::Before,
li.PagedList-skipToNext > a.pagination_link::Before,
li.PagedList-skipToLast > a.pagination_link::Before,
li.PagedList-skipToLast > a.pagination_link::After {
	content: "";
	width: 8px;
	height: 8px;
	display: block;
	border: solid var(--color1) 2px;
	border-top: none;
	border-right: none;
	transform: rotate(45deg);
	position: absolute;
	top: 32%;
	left: 31%;
}

li.PagedList-skipToLast > a.pagination_link::Before,
li.PagedList-skipToLast > a.pagination_link::After,
li.PagedList-skipToNext > a.pagination_link::Before {
	border-left: none;
	border-bottom: none;
	border-top: solid var(--color1) 2px;
	border-right: solid var(--color1) 2px;
	left: 17%;
}

li.PagedList-skipToFirst > a.pagination_link::After {
	left: 54%;
}

li.PagedList-skipToPrevious > a.pagination_link::Before {
	left: 39%;
}

li.PagedList-skipToLast > a.pagination_link::After {
	left: 40%;
}

li.PagedList-skipToNext > a.pagination_link::Before {
	left: 29%;
}

div.pagination_box:not(:has(li:not(.active))) {
	display: none;
}