@charset "utf-8";

.msg-box {
    display: none;
    position: fixed;
    bottom: -100px;
    right: 0;
    left: 0;
    margin: auto;
    width: calc(100% - 20px);
    max-width: 550px;
    padding: 20px;
    border-radius: 15px;
    box-sizing: border-box;
    background: #ecf0f1;
    color: #000;
    z-index: 999999;
    transition: all 0.4s ease-in-out;
}

.msg-box .msg-text {
    display: inline-block;
    width: calc(100% - 120px);
    vertical-align: middle;
    padding: 5px 0;
    line-height: 170%;
}

.msg-box .msg-close {
    float: left;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #e74c3c;
}

.msg-box .msg-close:active,
.msg-box .msg-close:hover {
    background: #e74c3c;
    color: #ecf0f1;
}

.black {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    top: 0;
    right: 0;
    z-index: 10;
}

.blur {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(100, 100, 100, 0.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
    z-index: 10;
}

.alert {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    margin: auto;
    box-sizing: border-box;
    background: #ecf0f1;
    z-index: 20;
    padding: 0;
    width: calc(100% - 20px);
    max-width: 550px;
    opacity: 0.0;
    transition: all 0.2s ease-in-out;
}

.alert .label {
    display: block;
    margin-top: 10px;
}

.alert a {
    display: block;
    color: #e74c3c;
}

.alert .btn_secondary {
    display: inline-block;
    margin: 5px;
}

.alert input,
.alert select,
.alert textarea {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background: #ffffff;
}

.alert textarea {
    max-width: 100%;
    min-width: 100%;
    height: 90px;
    min-height: 90px;
    max-height: 120px;
    box-sizing: border-box;
    resize: none;
}

.alert .title {
    padding: 8px 15px 15px 15px;
    font-weight: bold;
    font-size: 15pt;
    text-align: right;
    border-bottom: solid 1px #000;
}

.alert .title .close {
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    padding-top: 1px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    color: #7f8c8d;
    border: solid 1px #7f8c8d;
    background: #fff;
}

.alert .title .close:hover {
    color: #E74C3C;
    border: solid 1px #E74C3C;
}

.alert .text {
    margin: 10px 0 25px 0;
    padding: 0 15px;
    text-align: justify;
    font-size: 12pt;
    font-weight: normal;
}

.alert .btn_holder {
    padding: 10px 15px;
    box-sizing: border-box;
}

.alert .btn_holder a {
    display: inline-block;
    vertical-align: middle;
    min-width: 90px;
}

.calendar_holder {
    display: block;
    border-radius: 5px;
    border: solid 1px #676662;
    overflow: hidden;
}

.calendar_title,
.calendar_list,
.calendar_row {
    text-align: center;
}

.calendar_title span,
.calendar_list span,
.calendar_row span {
    display: block;
    float: right;
    padding: 2px 0;
    box-sizing: border-box;
    border: solid 1px #676662;
    width: calc(100% / 7);
    height: 28px;
}

.calendar_title span {
    background: #67666299;
}

.calendar_list span {
    padding: 10px 0 !important;
    height: 44px !important;
    width: calc(100% / 3) !important;
}

.calendar_row span,
.calendar_list span {
    cursor: pointer;
}

.calendar_row span:hover,
.calendar_list span:hover {
    background: #e67e2233;
}

.calendar_row .selected_date {
    background: #e67e22;
    color: #fff;
    cursor: context-menu;
}

.calendar_row .empty {
    cursor: context-menu;
}

.calendar_row .empty:hover {
    background: transparent !important;
}

.calender_month {
    text-align: center;
}

.calender_month i {
    padding: 10px 8px;
    cursor: pointer;
}

.calender_month i:hover {
    color: #e67e22;
}

.calender_month .right {
    float: right;
}

.calender_month .left {
    float: left;
}

.calender_month span {
    display: inline-block;
    padding: 5px 0;
    cursor: pointer;
}

.calender_month span:hover {
    color: #e67e22;
}
