:root{
	--color-calendar: #0c82ff;
}
.calendar_theme_v1{
	max-width: 100%;
	display: flex;
}
.calendar_theme_v1 .left{
	border-radius: 5px;
	border: 1px solid #bfbfbf;
	width: calc(60% - 1px);
	display: inline-block;
}
.calendar_theme_v1 .right{
	width: calc(40% - 1px);
    padding: 0px 10px;
}
.calendar_theme_v1 .right .title_right{
	display: inline-flex;
	justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    font-size: 15px;
}
.calendar_theme_v1 .right .title_right .timeZone{
	width: 85px;
}
.calendar_theme_v1 .right select{
	width: 50px;	
}

.calendar_theme_v1 .show_time img{
	width: 20px;
	height: 20px;
}
.calendar_theme_v1 .show_time{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 10px;
	height: 42px;
}

.calendar_theme_v1 .select_month, .calendar_theme_v1 .select_year{
    font-size: 18px;
    width: 50%;
    display: inline-block;
}
.calendar_theme_v1 .calendar{
	width: 100%;
    text-align: center;
    table-layout: fixed;
    overflow-wrap: break-word;
    font-size: 12px;
}
.calendar_theme_v1 .calendar .active{
	background: var(--color-calendar);
	color: #fff !important;
}
.calendar_theme_v1 .calendar .current_date{
	border: 1px solid var(--color-calendar);
}
.calendar_theme_v1 .show_select img{
	width: 16px;
}
.calendar td{
	cursor: pointer;
}
.calendar td.active{
	background: blue;
	color: #fff !important;
}
.calendar .disable{
	cursor: default;
	color: #e4e4e4 !important;
}
.calendar .empty{
	cursor: default;
}
.calendar th{
	font-weight: normal;
}

/*================custom_select=================*/
.calendar .select_custom .list_item_select{
	display: none;
	width: max-content;
    position: absolute;
    height: 100px;
    overflow-y: scroll;
    right: -1px;
    border: 1px solid;
    font-size: 14px;
    min-width: 100%;
    background: #fff;
    top: 100%;
}
.calendar .select_custom .list_item_select.active{
	display: block;
}
.calendar .select_custom .list_item_select p{
	text-align: center;
    padding: 5px;
	cursor: pointer;
	margin: 0;
	border: unset;
}
.calendar .timeZone .select_custom .list_item_select p{
	text-align: left;
}
.calendar .select_custom .list_item_select p:hover,.calendar .select_custom .list_item_select .active{
	color: #fff  !important;
	background: var(--color-calendar);
}

.calendar .select_custom{
	position: relative;
	border: 1px solid;
	height: 42px;
	display: flex;
}
.calendar .select_custom i{
	position: absolute;
	right: 0;
}
.calendar .select_custom .show_select{
	display: flex;
  	justify-content: space-between;
  	cursor: pointer;
  	align-items: center;
  	width: 100%;
}
.calendar .select_custom .show_select span{
	line-height: 1.5;
    overflow: hidden;
}


/*====================*/
.calendar_theme_v1 .timeZone .list_item_select{
	width: 280px;
	height: 250px;
}
.calendar_theme_v1 .timeZone .show_select{
	width: 100px;
}
.calendar_theme_v1 .timeZone .select_custom{
	height: auto;
	padding: 0px;
    border: none;
}
.calendar_theme_v1 .item_slot{
	border: 1px solid var(--color-calendar);
	border-radius: 5px;
	margin: 5px 0px;
	width: 75px;
    padding: 5px;
    cursor: pointer;
    display: inline-block;
    color: var(--color-calendar);
    text-align: center;
}
.calendar_theme_v1 .item_slot:nth-child(odd){
	float: left;
}
.calendar_theme_v1 .item_slot:nth-child(even){
	float: right;
}

.calendar_theme_v1 .item_slot.active{
	background: var(--color-calendar);
	border: 1px solid var(--color-calendar);
	color: #fff  !important;
}
.calendar_theme_v1 .left .select_custom{
	border: 1px solid #bfbfbf;
	border-left: none;
}
.calendar_theme_v1 .left .select_year .select_custom{
	border-right: none;
}
.calendar_theme_v1 .calendar>tr{
	background: #e7f1ffc7;
    color: var(--color-calendar);
}
.calendar_theme_v1 .calendar{
	border-spacing: 0;
}
.calendar_theme_v1 .calendar th,.calendar_theme_v1 .calendar td{
	padding: 2px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 3px;
}
.select_month .select_custom .show_select,.select_year .select_custom .show_select{
	justify-content: center;
}
.select_month .select_custom .show_select i,.select_year .select_custom .show_select i{
	position: absolute;
	right: 3px;
}
/*==================media=================*/
@media (max-width: 576px) {
	.calendar_theme_v1{
		flex-direction: column;
	}
	.calendar_theme_v1 .left,.calendar_theme_v1 .right{
		width: 100%;
	}
	.calendar_theme_v1 .right{
		margin-top: 10px;
		padding: 0;
	}
	.calendar_theme_v1 .right .item_slot{
		float: unset;
		margin-right: 5px;
	}
	.calendar_theme_v1 .group_select_time{
		display: none;
	}
	.calendar_theme_v1 .group_select_time.open{
		display: block;
	}
}
