.calendar {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(7, minmax(14.28%, 14.28%));
    grid-template-rows: 50px;
    grid-auto-rows: auto;
    overflow: auto;
}

.calendar-container {
    box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: auto;
    overflow: hidden;
    background: #fff;
}

.calendar-header {
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(166, 168, 179, 0.12);
}

.calendar-header h5 {
    margin: 0;
    padding: 20px 0 0 0;
    font-size: 18px;
}

.calendar-header p {
    margin: 5px 0 0 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(81, 86, 93, 0.4);
}

.calendar-header button {
    background: 0;
    border: 0;
    padding: 0;
    color: rgba(81, 86, 93, 0.7);
    cursor: pointer;
    outline: 0;
}

.day {
    border-bottom: 1px solid rgba(166, 168, 179, 0.12);
    border-right: 1px solid rgba(166, 168, 179, 0.12);
    text-align: right;
    padding: 10px;
    letter-spacing: 1px;
    font-size: 12px;
    box-sizing: border-box;
    color: #98a0a6;
    position: relative;
    pointer-events: none;
    z-index: 1;
    min-height: 100px;
}

.day:nth-of-type(7n + 7) {
    border-right: 0;
}

.day:nth-of-type(n + 1):nth-of-type(-n + 7) {
    grid-row: 2;
}

.day:nth-of-type(n + 8):nth-of-type(-n + 14) {
    grid-row: 3;
}

.day:nth-of-type(n + 15):nth-of-type(-n + 21) {
    grid-row: 4;
}

.day:nth-of-type(n + 22):nth-of-type(-n + 28) {
    grid-row: 5;
}

.day:nth-of-type(n + 29):nth-of-type(-n + 35) {
    grid-row: 6;
}

.day:nth-of-type(7n + 1) {
    grid-column: 1/1;
}

.day:nth-of-type(7n + 2) {
    grid-column: 2/2;
}

.day:nth-of-type(7n + 3) {
    grid-column: 3/3;
}

.day:nth-of-type(7n + 4) {
    grid-column: 4/4;
}

.day:nth-of-type(7n + 5) {
    grid-column: 5/5;
}

.day:nth-of-type(7n + 6) {
    grid-column: 6/6;
}

.day:nth-of-type(7n + 7) {
    grid-column: 7/7;
}

.day-name {
    font-size: 12px;
    text-transform: uppercase;
    color: #99a1a7;
    text-align: center;
    border-bottom: 1px solid rgba(166, 168, 179, 0.12);
    line-height: 50px;
    font-weight: 500;
}

.day--disabled {
    color: rgba(152, 160, 166, 0.6);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23f9f9fa' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    cursor: not-allowed;
}

.task {
    border-left-width: 3px;
    padding: 8px 12px;
    margin: 10px;
    border-left-style: solid;
    font-size: 14px;
    position: relative;
}

.task--warning {
    border-left-color: #fdb44d;
    grid-column: 4 / span 3;
    grid-row: 3;
    background: #fef0db;
    align-self: center;
    color: #fc9b10;
    margin-top: -5px;
}

.task--danger {
    border-left-color: #fa607e;
    grid-column: 2 / span 3;
    grid-row: 3;
    margin-top: 15px;
    background: rgba(253, 197, 208, 0.7);
    align-self: end;
    color: #f8254e;
}

.task--info {
    border-left-color: #4786ff;
    grid-column: 6 / span 1;
    grid-row: 5;
    margin-top: 15px;
    background: rgba(218, 231, 255, 0.7);
    align-self: end;
    color: #0a5eff;
}

.task--primary {
    background: #4786ff;
    border: 0;
    border-radius: 4px;
    grid-column: 3 / span 3;
    grid-row: 4;
    align-self: end;
    color: #fff;
    box-shadow: 0 10px 14px rgba(71, 134, 255, 0.4);
}

.task__detail {
    position: absolute;
    left: 0;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid rgba(166, 168, 179, 0.2);
    color: #000;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.task__detail:after,
.task__detail:before {
    bottom: 100%;
    left: 30%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.task__detail:before {
    border-bottom-color: rgba(166, 168, 179, 0.2);
    border-width: 8px;
    margin-left: -8px;
}

.task__detail:after {
    border-bottom-color: #fff;
    border-width: 6px;
    margin-left: -6px;
}

.task__detail h2 {
    font-size: 15px;
    margin: 0;
    color: #51565d;
}

.task__detail p {
    margin-top: 4px;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 500;
    color: rgba(81, 86, 93, 0.7);
}

.class {
    font-size: 11px;
    margin-top: 10px;
    padding: 5px 10px 10px;
    text-align: left;

    background-image: linear-gradient(to right, rgba(255, 255, 255, .40), rgba(255, 255, 255, .0));
    color: #FFF;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);

    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
}

.class-private {
    background-color: #f5f5f5;
    border-left: 2px gray solid;
    color: gray;
}

.class-yoga {
    background-color: #b6cff5;
    border-left: 2px #0d3472 solid;
    color: #0d3472;
}

.class-ytu {
    background-color: #c5beee;
    border-left: 2px #595478 solid;
    color: #595478;
}

.class a {
    z-index: 0;
}


/*------------------------------------------------------------------------------------------*/
/* Responsive Elements */
/*------------------------------------------------------------------------------------------*/

/* Mobile to Tablet Portrait
===============================*/
@media (min-width: 481px) and (max-width: 767px) {
    
}

/* Landscape mobile & down
===============================*/
@media (max-width: 480px) {
    .calendar {
        display: block;
        width: 100%;
        overflow: auto;
    }

    .day {
        min-height: auto;
        text-align: left;
    }

    .day-name {
        display: none;
    }

    .day.day--disabled {

        display: none !important;

    }
}
