﻿/**********************/
/*** calendar *********/
/**********************/
.sunbg {
    text-shadow: 0.2rem 0.2rem 0.2rem #4b4b4b; }

.sunbg.night-end {
    background: linear-gradient(to bottom, #1c2b41 0%, #2d4567 28%, #3c5578 52%, #7389a1 77%, #AA9F98 100%); }

.sunbg.nautical-dawn {
    background: linear-gradient(to bottom, #1c2b41 0%, #253959 12%, #3c5578 32%, #57708e 46%, #7389a1 58%, #959fa8 69%, #aba79c 78%, #b59c7b 86%, #b4885f 92%, #984e35 97%, #482e31 100%); }

.sunbg.dawn {
    background: linear-gradient(to bottom, #39496a 0%, #766e7d 35%, #cfa084 63%, #edb264 76%, #f2ab37 84%, #e88b0a 92%, #d34600 100%); }

.sunbg.sunrise {
    background: linear-gradient(to bottom, #5a89cc 0%, #7f99b2 19%, #9da09f 40%, #caa378 59%, #fea83c 81%, #fdb20d 100%); }

.sunbg.sunrise-end {
    background: linear-gradient(to bottom, #5e7fb1 0%, #a1b3dd 46%, #dce2f2 73%, #fce1a8 88%, #f7ec86 100%); }

.sunbg.golden-hour-end {
    background: linear-gradient(to bottom, #8fb8ee 0%, #cbe2f4 40%, #dbe5eb 63%, #f9d3b8 83%, #e0b2a3 100%); }

.sunbg.solar-noon {
    background: linear-gradient(to bottom, #4e72c7 0%, #6d9ed7 34%, #a4c8d5 67%, #b4d9e1 84%, #c4d9d6 100%); }

.sunbg.golden-hour {
    background: linear-gradient(to bottom, #4c86ab 0%, #95a5bc 39%, #bfcdc9 70%, #dcd6c9 91%, #edd9c7 100%); }

.sunbg.sunset-start {
    background: linear-gradient(to bottom, #727288 0%, #8e889b 24%, #d3c2bd 67%, #f9d89a 85%, #f7a53b 100%); }

.sunbg.sunset {
    background: linear-gradient(to bottom, #484887 6%, #634c99 29%, #d19b8c 70%, #f7d391 89%, #f8c785 100%); }

.sunbg.dusk {
    background: linear-gradient(to bottom, #012455 0%, #0d295c 17%, #1b3672 33%, #38518e 49%, #707ba8 64%, #928fa7 73%, #b89f99 81%, #d2a28a 85%, #e59260 91%, #f77041 95%, #d75135 100%); }

.sunbg.nautical-dusk {
    background: linear-gradient(to bottom, #022454 0%, #052354 23%, #19316a 41%, #1c3672 46%, #203b7b 54%, #334d8c 65%, #6472a5 82%, #6c7aa7 86%, #9490a8 97%, #a398a5 100%); }

.sunbg.night {
    background: linear-gradient(to bottom, #022454 0%, #052354 46%, #19316a 67%, #1c3672 75%, #334d8c 100%); }

.sunbg.nadir {
    background: linear-gradient(to bottom, #000221 0%, #000421 100%); }

html.dashboard.calendar.boardroom main {
    width: auto;
    height: auto;
    max-height: unset;
    max-width: unset;
    position: static;
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
}

.cloud {
    position: absolute;
    height: 256px;
    width: 256px;
    background: url("/img/weather/cloud.png");
    top: 0;
    right: -768px;
    z-index: 1;
}

.cloud.fast {
    transition: right 150s linear;
}

.cloud.medium {
    transition: right 300s linear;
}

.cloud.slow {
    transition: right 450s linear;
}

.cloud.move {
    right: calc(100vw + 1024px);
}

html.dashboard.calendar.boardroom {
    font-size: 2.909vmin;
}

html.dashboard.calendar.boardroom .panel {
    border: none;
}

html.dashboard.calendar.boardroom main div.layout-flex {
    background: #434343;
    border: none;
}

html.dashboard.calendar.boardroom .panel.clock {
    flex: 0 0 8rem;
    position: relative;
    overflow: hidden;
}

html.dashboard.calendar.boardroom .panel.clock .clock-overlay {
    background-color: rgba(0,0,0,0.35);
    z-index: 10;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: visibility 2s step-start,opacity 2s linear;
}

html.dashboard.calendar.boardroom .panel.clock .clock-overlay .clock-date {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    letter-spacing: .25rem;
}

html.dashboard.calendar.boardroom .panel.clock .clock-overlay .clock-time {
    margin-top: .65rem;
    font-size: 2.45rem;
    color: white;
    letter-spacing: .25rem;
}

html.dashboard.calendar.boardroom .panel.center {
    flex: 30;
    background: #000;
    border-top: .275rem solid #777;
}

html.dashboard.calendar.boardroom .panel.calendar {
    display: flex;
    flex: 1 1 auto;
    border-top: .275rem solid #777;
    background: linear-gradient(to top, #00213d 0%, #00487F 100%);
    flex-direction: column;
}

html.dashboard.calendar.boardroom .panel.calendar .calendar-items {
    flex-direction: column;
    display: flex;
    flex: 1;
}

html.dashboard.calendar.boardroom .panel.calendar .calendar-items .header {
    font-weight: 500;
    margin-top: .75rem;
    margin-bottom: .65rem;
}

html.dashboard.calendar.boardroom .panel.calendar .calendar-items > * {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0.1rem 0.1rem 0.1rem #000;
    font-weight: 300;
    margin-top: .45rem;
    padding: 0 1rem;
}

html.dashboard.calendar.boardroom .calendar-slideshow {
    flex-direction: column;
    justify-content: flex-end;
    display: flex;
    flex: 1;
}

html.dashboard.calendar.boardroom .calendar-slideshow .logo {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: 24rem !important;
    z-index: 10;
    background: url("/img/logo/marquis.png") no-repeat center;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide {
    transition: opacity 2s linear;
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: cover !important;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.helicopter-photos4 {
    background: url("/img/backgrounds/HelicopterPhotos4.jpg");
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.helicopter-photos4.active {
    opacity: 0.4;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.night-composite1 {
    background: url("/img/backgrounds/NightComposite1.jpg");
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.night-composite1.active {
    opacity: 0.4;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-nightshot1 {
    background: url("/img/backgrounds/NightShot1.jpg");
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-nightshot1.active {
    opacity: 0.7;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-hdr1 {
    background: url("/img/backgrounds/PlantHDR1.jpg");
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-hdr1.active {
    opacity: 0.4;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-sunset1 {
    background: url("/img/backgrounds/PlantSunset1.jpg");
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.plant-sunset1.active {
    opacity: 0.35;
}

html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.helicopter-portrait {
    background: url("/img/backgrounds/HelicopterPortrait.jpg")
}
html.dashboard.calendar.boardroom .calendar-slideshow .slide.bg-img.helicopter-portrait.active {
    opacity: 0.4;
}