.calendar {
    --li-height : 60px;
    width: 330px;
    height: 360px;
}

@media screen and (max-width: 425px) {
    .calendar {
        --li-height : 53px;
        width: 330px;
        height: 360px;
    }

}

.calendar-modal {
    display: none;
    position: absolute;
    background: #fdfdfd;
    border: 1px solid #e8e8e8;
}

.calendar-modal .view {
    box-shadow: 1px 2px 3px #ddd;
}

.calendar-inner {
    position: relative;
    z-index: 1;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    perspective: 1000;
    -webkit-transform: perspective(1000px);
    transform: perspective(1000px);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.calendar-views {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.calendar .view {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    *overflow: hidden;
    -webkit-transition: .6s;
    transition: .6s;
    width: min(450px, 100%);
}

.calendar-d .view-month,
.calendar-m .view-date {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    visibility: hidden;
    z-index: 1;
}

.calendar-d .view-date,
.calendar-m .view-month {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    visibility: visible;
    z-index: 2;
}

.calendar-ct,
.calendar-hd,
.calendar-views .week,
.calendar-views .days {
    overflow: hidden;
}

.calendar-views {
    width: 100%;
}

.calendar .view,
.calendar-display,
.calendar-arrow .prev,
.calendar .date-items li {
    float: left;
    line-height: 45px;
}

.calendar-arrow,
.calendar-arrow .next {
    float: right;
    line-height: 45px;
}

.calendar-ct {
    position: relative;
}

.calendar-hd {
    position: relative;
    line-height: 22px;
    display: flex;
    font-size: 14px;
    padding-block: 7px;
    justify-content: center;
    border-block: 1px solid gray;
}

.calendar-display {
    font-size: 15px;
    text-indent: 10px;
    line-height: 33px;
}

.view-month .calendar-hd {
    padding: 10px;
}

.calendar-arrow,
.calendar-display {
    color: black;
}

.calendar li[disabled] {
    color: #bbb;
}

.calendar li.old[disabled],
.calendar li.new[disabled] {
    color: #eee;
    height: var(--li-height);
    line-height: 30px;
}

.calendar-display .m,
.calendar-views .week,
.calendar-display:hover,
.calendar-arrow span:hover {
    color: black;
}

.calendar-views .days .old,
.calendar-views .days .new {
    color: #ccc
}

.calendar-arrow span,
.calendar-views .days li[data-calendar-day],
.calendar-views .view-month li[data-calendar-month] {
    cursor: pointer;
    border: 1px solid rgb(234, 234, 234);
    border-radius: unset;
    height: var(--li-height);
    line-height: 30px;
}

.calendar li[disabled] {
    cursor: not-allowed;
    border: 1px solid rgb(234, 234, 234);
    border-radius: unset;
    height: var(--li-height);
}

.calendar-arrow {
    position: absolute;
    margin-right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-inline: 15px;
}

.calendar-arrow span {
    font: 500 26px sans-serif;
    border: none;
}

.calendar ol li {
    position: relative;
    float: left;
    text-align: center;
    border-radius: 50%;
}

.calendar .week li {
    height: var(--li-height);
    line-height: 50px;
    color: black;
}

.calendar .days li {
    width: 40px;
    height: var(--li-height);
    line-height: 30px;
}

.calendar .month-items li {
    width: 70px;
    height: 70px;
    line-height: 70px;
}

.calendar .days li[data-calendar-day]:hover,
.calendar .view-month li[data-calendar-month]:hover {
    background: #eee;
}

.calendar .calendar-views .now {
    color: #fff;
    background: #66be8c!important;
}

.calendar .calendar-views .selected {
    color: black;
    background: #fffedf!important;
}

.calendar .calendar-views .dot {
    position: absolute;
    left: 50%;
    bottom: 9px;
    margin-left: -7px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid gray;
}
.calendar .calendar-views .dot-old {
    position: absolute;
    left: 50%;
    bottom: 9px;
    margin-left: -7px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid gray;
    opacity: .3;
}

.calendar .calendar-views .cross {
    position: absolute;
    left: 50%;
    bottom: 15px;
    margin-left: -9px;
    display: inline-block;
    width: 18px;
    height: 2px;
    /* background: gray; */
    background: #d5cdcd;
    transform: rotate(45deg);
    vertical-align: middle;
  }
.calendar .calendar-views .cross-old {
    position: absolute;
    left: 50%;
    bottom: 15px;
    margin-left: -9px;
    display: inline-block;
    width: 18px;
    height: 2px;
    background: gray;
    transform: rotate(45deg);
    vertical-align: middle;
    opacity: .3;
}


.calendar .calendar-views .cross::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: gray; */
    background: #d5cdcd;
    transform: rotate(90deg);
}
.calendar .calendar-views .cross-old::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: gray;
    transform: rotate(90deg);
    /* opacity: .3;   不要*/ 
}

.calendar .calendar-views .bar {
    position: absolute;
    left: 50%;
    bottom: 15px;
    margin-left: -7px;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #d5cdcd;
    vertical-align: middle;
  }
.calendar .calendar-views .bar-old {
    position: absolute;
    left: 50%;
    bottom: 15px;
    margin-left: -7px;
    display: inline-block;
    width: 15px;
    height: 2px;
    background: #d5cdcd;
    vertical-align: middle;
    opacity: .3;
}


.calendar .calendar-views .soso {
    position: absolute;
    left: 50%;
    bottom: 10px;
    margin-left: -8px;
    width: 18px;
    height: 15px;
    background: url("../js/soso.png");
    background-size: contain;
    background-repeat: no-repeat;
}
.calendar .calendar-views .soso-old {
    position: absolute;
    left: 50%;
    bottom: 10px;
    margin-left: -8px;
    width: 18px;
    height: 15px;
    background: url("../js/soso.png");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: .3;
}
 
  /*
  .calendar .calendar-views .soso::after {
    position: absolute;
    left: 50%;
    bottom: -1px;
    margin-left: -9px;
    width: 0px;
    height: 0px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 12px solid transparent;
 } */

.calendar-views .now .dot {
    background: #fff;
}


.calendar .date-items {
    width: 300%;
    margin-left: -100%;
}

.calendar-label {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    padding: 5px 10px;
    line-height: 22px;
    color: #fff;
    background: #000;
    border-radius: 3px;
    opacity: .7;
    filter: alpha(opacity=70);
}

.calendar-label i {
    display: none;
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 0;
    margin-left: -3px;
    border: 6px solid transparent;
    border-top-color: #000;
}

.bl_form_input select option {
    color: black;
}
