@charset "utf-8";

.msg-box {
    display: block;
    width: 370px;
    position: fixed;
    bottom: -100px;
    right: 20px;
    padding: 20px;
    border-radius: 25px;
    box-sizing: border-box;
    background: #6c0fc4aa;
    color: #ecf0f1;
    z-index: 999999;
    transition: all 0.4s ease-in-out;
}

.msg-box .msg-text {
    display: block;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
}

.msg-box .msg-close {
    float: left;
    text-align: center;
    display: block;
    width: 60px;
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    cursor: pointer;
    color: #de2815;
}

.msg-box .msg-close:active,
.msg-box .msg-close:hover {
    background: #de2815;
    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;
}

.alert {
    max-width: 900px;
    border-radius: 6px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .15), inset 0 2px 2px rgba(255, 255, 255, .15);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    background: #ecf0f1;
    display: none;
    position: fixed;
    top: 10vh;
    right: 0;
    left: 0;
    z-index: 20;
    padding: 0;
    width: 370px;
    opacity: 0.0;
    transition: all 0.2s ease-in-out;
}

.alert .title {
    padding: 5px 15px;
    font-weight: bold;
    font-size: 18pt;
    text-align: center;
    position: relative;
}

.alert .title .alert_close {
    display: block;
    text-align: left;
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.alert .title .title_i {
    width: 80px;
    height: 80px;
    background: #6c0fc4;
    border-radius: 50%;
    position: absolute;
    right: 0;
    left: 0;
    top: -30px;
    margin: auto;
    font-size: 40pt;
    cursor: pointer;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .15), inset 0 2px 2px rgba(255, 255, 255, .15);
}

.alert .title .title_i i {
    padding-top: 10px;
    color: #ffffff;
}

.alert .title .alert-title {
    margin-top: 60px;
    display: block;
    color: #6c0fc4;
    font-weight: bold;
}

.alert .text {
    display: block;
    margin: 10px 0 25px 0;
    padding: 20px 15px;
    box-sizing: border-box;
    text-align: center;
    font-size: 12pt;
    color: #b0a2ca;
    font-weight: normal;
    border-bottom: 1px solid #ffffff;
}

.alert .positive-btn,
.alert .negative-btn {
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 20px);
    margin: 0 7px;
    text-align: center;
    padding: 10px 0;
    box-sizing: border-box;
    font-size: 12pt;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 2px rgba(0, 0, 0, .15), inset 0 2px 2px rgba(255, 255, 255, .15);
}

.alert .positive-btn {
    color: #ffffff;
    background: #319bd6;
    border-radius: 6px;
    margin-bottom: 30px;

}

.alert .positive-btn:hover {
    background: #3b0a9b;

}

.alert .negative-btn {
    color: #b0a2ca;
    background: #ffffff;
    border-radius: 6px;

}

.alert .negative-btn:hover {
    color: #3b0a9b;

}

.alert .label {
    display: block;
    margin-top: 5px;
    cursor: pointer;
}

.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: #34c2db33;
}

.calendar_row .selected_date {
    color: #34c2db;
    border: solid 1px #34c2db;
    background: transparent !important;
    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: #34c2db;
}

.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: #34c2db;
}
