﻿/* Ion.Calendar
// Version 2.0.1, build: 91
// © 2013 Denis Ineshin | IonDen.com
//
// Project page:    http://ionden.com/a/plugins/ion.calendar/
// GitHub page:     https://github.com/IonDen/ion.calendar
//
// Released under MIT licence:
// http://ionden.com/a/plugins/licence-en.html
// ===================================================================================================================*/


/* ic = ion.calendar prefix */

.ic__container,
.ic__week-head,
.ic__week-head td,
.ic__days,
.ic__days td,
.ic__header,
.ic__prev,
.ic__next,
.ic__datepicker {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 13px;
    cursor: default;
    text-shadow: none !important;
    background: #ebf4ff;
}


.ic__container {
    position: relative;
    /*background: #fff;*/
    height: 375px;
}

.ic__container table {
    width: 100%;
    border: 0;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
}
.new-text{
    width: 100%;
    height: 40px;
    /*float: left;*/
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    background: #3a78b9;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.new-content-text{
    width: 95%;
   /* overflow: hidden;*/
    margin: 0 auto;
    padding-top: 15px;
}

.ic__header {
    position: relative;
    background: #ebf4ff;
    height: 65px;
}

.ic__prev,
.ic__next {
    display: none;
    position: absolute;
    top: 0;
    width: 7%;
    height: 35px;
    background-color: #555;
    cursor: pointer;
}

.ic__prev:hover,
.ic__next:hover {
    background-color: #666;
}

.ic__prev div,
.ic__next div {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    border: 5px solid transparent;
}

.ic__prev {
    left: 0;
}

.ic__prev div {
    top: 13px;
    left: 50%;
    margin-left: -7px;
    border-right-color: #fff;
}

.ic__next {
    right: 0;
}

.ic__next div {
    top: 13px;
    right: 50%;
    margin-right: -7px;
    border-left-color: #fff;
}


.ic__month {
    position: absolute;
    top: 26px;
    right: 4%;
    width: 30%;
}

.ic__year {
    position: absolute;
    top: 28px;
    left: 2%;
    width: 30%;
}

.ic__header select {
    appearance:none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari 和 Chrome */
    width: 100%;
    border: 0px;
    background: none;
    padding: 2px;
    font-size: 14px;
    color: #3a78b9;
}
.ic__year select {
    color: #3a78b9;
    background: url(../images/right-ico-btn.png) no-repeat center right;
    text-align-last: center;
}
.ic__header select option{
    font-size: 14px;
    text-align: center;
}

.ic__month .ic__month-select{
    background: url(../images/right-ico-btn.png) no-repeat center right;
    text-align-last: center;
}

.ic__header select:focus {
    outline: none;
}

.ic__text{
    position: absolute;
    top: 19px;
    left: 35%;
    height: 35px;
    line-height: 35px;
    font-size: 22px;
    color: #333333;
}



.ic__week-head td {
    width: 14%;
    vertical-align: top;
    text-align: center;
    padding: 10px 0 8px;
    background: #d5e9ff;
    color: #333333;
    font-size: 9px;
    line-height: 1.333;
    text-transform: uppercase;
}

.ic__days {
    margin-top: -1px;
}

.ic__days td {
    width: 14%;
    vertical-align: top;
    text-align: center;
    padding: 11px 0 10px;
    color: #333333;
    font-size: 9px;
    line-height: 1.333;
    text-transform: uppercase;
}

.ic__days .ic__day {
    background: #ebf4ff;
    cursor: pointer;
    font-size: 15px;
}

.ic__days .ic__day:hover {
    background: #3a78b9;
    color: #fff;
    border-radius: 50%;
}

.ic__days .ic__day-empty {
    background: #ebf4ff;
}

.ic__days .ic__day_state_current {
    background: #3a78b9;
    color: #fff;
    border-radius: 50%;
}

.ic__days .ic__day_state_selected {
    background: #cce5ff;
    color: #3a78b9;
    border-radius: 50%;
}


.ic__datepicker {
    position: absolute;
    top: -9999px;
    left: -9999px;
    width: 250px;
    padding: 10px;
    border-radius: 10px;
    background: #333;
    z-index: 9999;
}
