/*!**********************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./frontend/index.css ***!
  \**********************************************************************/
* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    height: 100%;
}

body {
    background-color: #111;
    color: #eee;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    font-family: "Mulish", sans-serif;
    overflow: hidden;
}


.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 6px;
    flex: 1;
}

.calendar-grid-header {
    flex: 0;
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.calendar-grid > div {
    width: 100%;
    height: 100%;
    background-color: #1d1d1d;
    border-radius: 8px;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #000;
    transition: all 0.08s ease;
    cursor: pointer;
}

.calendar-grid > div.active {
    z-index: 4;
    border-top: 1px solid white;
    border-bottom: 1px solid #aaa;
    background: #ddd;
    box-shadow: 10px 10px 20px #fff3, -10px -10px 20px #fff3;
}

.calendar-grid > div.active .item-toolbar h1 {
    background: linear-gradient(to bottom, #111, #222, #444, #222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calendar-grid > div.active .item-toolbar p {
    color: #000;
    opacity: 0.7;
}

.faded {
    color: #aaa !important;
    background-color: #1a1a1a !important;
    pointer-events: none;
    opacity: 0.7;
}


.main {
    width: 100%;
    flex: 1;
    display: flex;
    min-height: 0;
    align-items: stretch;
}

.sidebar {
    position: relative;
    flex: 1;
    background-color: #161616;
    margin: 20px;
    margin-left: 0px;
    border-radius: 20px;
    border-top: 1px solid #2a2a2a;
    border-left: 1px solid #2a2a2a;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    min-height: 0;
}

.editor-overlay {
    overflow: hidden;
    position: absolute;
    width: 100%;
    border-radius: 10px;
    height: calc(100% - 40px);
    background-color: #1a1a1aaa;
    backdrop-filter: blur(20px);
    outline: 1px solid #222;
    box-shadow: 5px 5px 14px #000a;
    right: 20px;
    top: 20px;

    display: flex;
    flex-direction: column;
}

.calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74vw;
    max-width: 1400px;
}

.calendar > div {
    height: 100%;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.toolbar {
    background: linear-gradient(45deg, #222, #111);
    padding: 10px 30px;
    display: flex;
    align-items: center;
}

.toolbar a {
    color: white;
}

.toolbar img {
    border-radius: 90px;
    margin-left: 8px;
    height: 50px;
}

.toolbar > div {
    display: flex;
    align-items: center;
    flex: 1;
}

.toolbar-middle {
    justify-content: center;
}

.toolbar-right {
    justify-content: flex-end;
}


.item .item-toolbar {
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.item .item-toolbar h1 {
    font-size: 25px;

    background: linear-gradient(to bottom, #fff, #fff, #aaa, #222);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.item .item-toolbar p {
    font-size: 13px;
    opacity: 0.2;
}

.picker {
    margin: 0px 20px;
    display: flex;
    align-items: center;
}

.picker > div {
    user-select: none;
    background-color: #222;
    outline: 1px solid #333;
    height: 33px;
    width: 33px;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    cursor: pointer;
}

.picker > div:hover {
    background-color: #444;
}

.picker > p {
    margin: 0px 10px;
    display: flex;
    justify-content: center;
    background-color: #111;
    padding: 6px 12px;
    border-radius: 80px;
    outline: 1px solid #222;
    border-bottom: 1px solid #444;
    border-top: 1px solid #000;
    user-select: none;
}


.month-picker > p {
    min-width: 120px;
}

body {
    transition: all 0.1s ease;
}

.loading {
    filter: brightness(0.7);
    opacity: 0.8 !important;
    pointer-events: none !important;
}

.sidebar {
    display: flex;
    flex-direction: column;
}
.sidebar-inner {
    overflow-y: scroll;
    min-height: 0;
    max-height: 100%;
    padding: 20px;
}

.event {
    margin: 4px;
    padding: 2px 5px;
    padding-right: 30px;
    font-size: 14px;
    border-radius: 12px;
    width: calc(100% - 8px);
    background: linear-gradient(to right, color-mix(in srgb, #222 80%, var(--colour)), color-mix(in srgb, #222 50%, var(--colour)));
    position: relative;
    display: flex;
    align-content: center;
    gap: 6px;
}
.completed {
    border-radius: 90px;
    width: 18px;
    margin-left: -3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    background: #00ee44;
    color: #111;
}
.event img {
    height: 17px;
    opacity: 0.5;
}

.event::after {
    content: "";
    width: 20px;
    height: 10px;
    background-color: var(--colour);
    position: absolute;
    right: 6px;
    top: 5.5px;
    border-radius: 8px;
}

.colour-header {
    background-color: #ff66aa;
    padding: 20px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.colour-header * {
    font-size: 18px;
}

.editor-overlay .sidebar-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.editor-overlay {
    transition: all 0.4s ease;
}

.editor-overlay-hide {
    opacity: 0;
    right: -40px;
    pointer-events: none;
}

.editor-overlay .sidebar-inner > div {
    margin-bottom: 15px;
}

.editor-overlay .sidebar-inner > div > .label {
    font-size: 15px;
    padding: 10px;
    border-radius: 20px;
    margin-top: 8px;
    text-align: center;
}

input, textarea {
    width: 100%;
    border-radius: 15px;
    padding: 13px;
    color: inherit;
    font-family: inherit;
    border: 1px solid #222;
    background-color: #111;
}

.buttons {
    margin-top: auto;
}

.button, button {
    margin-top: 8px;
    padding: 13px;
    text-align: center;
    border-radius: 20px;
    border: 0px solid white;
    background-color: #222;
    color: #eee;
}

button {
    padding: 10px 16px;
    margin: 0px;
}

.sidebar-event {
    margin: -5px;
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: #111;
    outline: 1px solid #222;
    border-top: 1px solid #555;
    border-radius: 20px;
    overflow: hidden;
}

.sidebar-event > .header {
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: color-mix(in srgb, #222 60%, var(--colour));
}
.sidebar-event > .header img {
    height: 30px;
    margin-right: 5px;
    opacity: 0.5;
}
.sidebar-event > .strip {
    background: linear-gradient(to right, color-mix(in srgb, #111 40%, var(--colour)), color-mix(in srgb, #222 1%, var(--colour)));
    padding: 7px 15px;
    text-shadow: 0px 2px 3px #0003;
    font-weight: 600;
}
.sidebar-event > .header h1 {
    font-size: 26px;
    font-weight: 300;
}

.sidebar-event > .header h3 {
    font-size: 15px;
    font-weight: 800;
}

.sidebar-event .inner {
    padding: 15px;
}

.sidebar-event .inner > p {
    margin-bottom: 10px;
}

.cta {
    background-color: #eee;
    color: #111;
}

.button:hover, button:hover {
    cursor: pointer;
    filter: brightness(1.4);
    outline: 4px solid #fff1;
}

.label-dropdown {
    position: absolute;
    padding: 10px;
    flex-wrap: wrap;
    display: flex;
    background-color: #111;
    border-radius: 20px;
    gap: 3px;
z-index: 4;
}

.label-dropdown-hidden {
    opacity: 0;
    pointer-events: none;
}

.label {
    padding: 4px 8px;
    border: 1px solid var(--colour);
    font-size: 12px;
    font-weight: 600;
    background-color: color-mix(in srgb, #222 60%, var(--colour));
    border-radius: 16px;
}

.label-dropdown .label {
    cursor: pointer;
}

.week-divider {
    display: none;
}

.main {
    min-height: 0;
    max-height: 100%;
}

@media (max-width: 1200px) {
    .week-divider {
        display: inherit;
        margin: 20px 20px;
        min-height: 2px !important;
        border: 0px solid white !important;;
        background-color: #fff2 !important;
    }
    .calendar-grid-header {
        display: none !important;
    }

    .faded {
        display: none;
    }

    .calendar-grid {
        display: flex;
        flex-direction: column;
    }

    .toolbar-left {
        display: none !important;
    }
    .toolbar-middle {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        flex-direction: column;
    }
    .picker {
        margin: 3px 0px;
    }
}
body {
    max-height: 100%;
}

.main {
    max-height: 100%;
}
.calendar {
    overflow-x: scroll;
    min-height: 0;
    display: flex;
}
.close-area {
    display: none;
}
.sidebar-hidden {
    opacity: 0;
    pointer-events: none;
}
@media (max-width: 600px){
    .close-area {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(to bottom, #333, #444);
        font-size: 16px;
        padding: 24px;
    }
    .calendar {
        width: 100%;
        max-width: 100vw !important;
    }
    .sidebar {
        position: absolute;
        width: calc(100% - 40px);
        left: 20px;
        bottom: 0px;
        overflow-x: scroll;
        overflow-y: visible;
        max-height: 70vh;
        transition: all 0.2s ease;
        min-height: 70vh;
        z-index: 90;
    }
    .sidebar-hidden {
        opacity: 0;
        pointer-events: none;
        bottom: -100px;
    }

    .editor-overlay {
        width: calc(100% - 40px);
        height: calc(100% - 20px);
        bottom: 0px;
        overflow-y: scroll;
    }

    .toolbar-right h3 {
        display: none !important;
    }
}
.today {
    outline: 2px solid #666;
}

.switcharea {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .1s ease;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .1s ease;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/*# sourceMappingURL=main.css.map*/