/* *************************************************************************** */
/* ファイル名：csv_download.css */
/* 説  明：購入履歴.CSVダウンロード処理　CSS */
/* 作成日：202411 J.YAGI(CYBERCOM)　[ビジネス改修]  */
/* 履  歴： */
/* ***************************************************************************  */
.csv_download_btn {
    display: flex;
    justify-content: left;
    align-items: center;
}
.csv_download_btn input {
    display: block;
    text-align: center;
	padding: 5px;
	margin :5px;
	background-color: #222;
    color: #fff;
	border-radius: 5px;
	border: solid 1px #222;
}
.csv_download_btn input:hover {
    background-color: #fff;
    color: #222!important;
    border-radius: 5px;
}
/* date-picker */
#ui-datepicker-div {
    z-index: 10001 !important;
}
/* ヘッダー */
.ui-datepicker-header {
    background-color: black !important;
    color: white !important;
}
/*障害管理(ビジネス改修)50 datepickerのcss部分修正*/
.ui-datepicker-header.ui-widget-header {
    background-color: black !important;
    background-image:none;
    color: white !important;
    border:1px solid #ddd;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year{
    width:45% !important
}
/* 日付 */
.ui-datepicker td a {
    color: #1c94c4 !important;
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 2px solid #dad55e;
    background: white;
}

article #csv-comment-1 {
    font-size: 15px;
    display: block;
	text-align: center;
}
article #csv-comment-2 {
    font-size: 15px;
    display: block;
    text-align: center;
}
article.csv_download_modal div {
    display: none;
    position:fixed;
    z-index:2;
    width:100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin:auto;
    cursor:pointer;
}
article.csv_download_modal div#csv_loading_circle {
	display: none;
	width: 100%;
    height: 100%;
    /*障害管理表(ビジネス改修)-26 スピナーローディング画像の透過対応*/
    background: rgba(0,0,0,0.6);
    border-radius: 19px;
}
article.csv_download_modal div#csv_loading_circle span#spinner {
    display: block;
	width: 40px;
    height: 40px;
    border: 4px #ddd solid;
    border-top: 4px #E50012 solid;
    border-radius: 50%;
    animation: sp-anime 0.8s infinite linear;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
@keyframes sp-anime {
    100% { 
        transform: rotate(360deg); 
    }
}
article .csv_download .csv_download_overlay {
    z-index:1;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    transition: all .3s;
}
article .csv_download div[id^="tutor"] {
    position: fixed;
    z-index: 10000;
	background-color: rgba(0,0,0,.7);
    color: #222222;
	text-align: left;
}
article .csv_download div[id^="tutor"] dl{
    background-color: #ffffff;
    width: 700px;
    max-width: 80%;
    z-index: 3;
    position: relative;
    border-radius: 20px;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
article .csv_download div[id^="tutor"] dt{
    padding: 3%;
}
article .csv_download div[id^="tutor"] label{
	font-size: 15px;
}
article .csv_download div[id^="tutor"] h5{
    padding: 3%;
}
article .csv_download [id^="tutor"] dd{
    color: #222222;
}
article .csv_select{
	width:150px;
	display: inline-block;
}
article .csv_download_modal div#period{
	padding-left: 100px;
	margin: 0;
	display: block;
	position: static;
	height: auto;
}
article.csv_download_modal div div#select{
	width:60%;
	padding: 0;
	margin: 0 auto;
	display: block;
	position: static;
	height: auto;
}
select.ui-datepicker-year,
select.ui-datepicker-month {
	padding: 3px 0;
	height: auto;
}
article dd.exec {
    display: flex;
	gap: 10px;
	margin-top: 1.5em;
	justify-content: center;
    align-items: center;
}
article a.csv-download-exec-btn {
    background: #fff;
    border-radius: 5px;
    color: #222;
    border: 1px solid #383838;
    display: flex;
    justify-content: space-around;
    border: 1px solid #222;
    align-content: center;
    flex-wrap: wrap;
    white-space: nowrap;
    padding: 6px 0;
    width: 10em;
}
article a.csv-download-exec-btn:hover {
    background: #222;
    color: #fff!important;
}
article p.exec-btn.exec-btn2 a.csv-download-exec-btn {
    border: 1px solid #e50012 !important;
    background-color: #e50012 !important;
    color: #fff !important;
}
article.csv_download_modal div h2 {
	text-align: center;
}
article.csv_download_modal div h3 {
	padding-top: 10px;
}