﻿body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}


.background-image {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('Images/markus-spiske-207946-unsplash1.jpg');
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.background-mask {
    z-index: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #7631fd;
    background: -moz-linear-gradient(left, #7631fd 0%, #3fdbfc 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%,#7631fd), color-stop(100%,#3fdbfc));
    background: -webkit-linear-gradient(left, #7631fd 0%,#3fdbfc 100%);
    background: -o-linear-gradient(left, #7631fd 0%,#3fdbfc 100%);
    background: -ms-linear-gradient(left, #7631fd 0%,#3fdbfc 100%);
    background: linear-gradient(to right, #7631fd 0%,#3fdbfc 100%);
    opacity: 0.9;
}


/* NAVBAR */
@media screen and (max-width: 768px), print {
    .button.is-fullwidth-mobile {
        display: flex;
        width: 100%;
    }
}

    .navbar-menu.is-active .dropdown-trigger .button {
        color: #4a4a4a;
    }


section {
    z-index: 3;
}

.page-content {
    min-height: 50rem;
}

#wrapper {
    flex: 1;
}

.fa {
    vertical-align: middle;
}

.edit {
    cursor: pointer;
}

.footer {
    padding: 40px 15px;
    width: 100%;
    text-align: center;
}

/* FAVOURITE LIST */
.favourite-list {
    min-width: 30rem;
}

.favourite-list .dropdown-content {
    padding: 1rem;
}




/* OVERLAPPED ICONS */
.overlap-icons {
    position: relative;
    display: block;
    height: 200px;
    width: 200px;
    margin: auto;
}

    .overlap-icons img {
        position: absolute;
        left: 0px;
        width: 200px;
    }

        .overlap-icons img.is-small {
            width: 80px;
        }

        .overlap-icons img.is-medium {
            width: 120px;
        }

        .overlap-icons img.is-top-left {
            top: 0px;
            left: 0px;
            right: initial;
        }


        .overlap-icons img.is-top-right {
            top: 0px;
            left: initial;
            right: 0px;
        }

        .overlap-icons img.is-bottom-left {
            bottom: 0px;
            right: initial;
            left: 0px;
        }

        .overlap-icons img.is-bottom-right {
            bottom: 0px;
            left: initial;
            right: 0px;
        }

        .overlap-icons img.is-small.is-bottom-middle {
            bottom: 0px;
            left: 70px;
        }

        .overlap-icons img.is-small.is-middle-middle {
            bottom: 50px;
            left: 70px;
        }

        .overlap-icons img.is-medium.is-middle-middle {
            bottom: 40px;
            left: 40px;
        }

        .overlap-icons img.is-left-100 {
            left: 100px;
        }

        .overlap-icons img.is-right-100 {
            right: 100px;
        }


/* Background Circle */

.background-circle {
    width: 60px;
    height: 60px;
    font-size: 2.5em;
    line-height: 55px;
    color: white;
    text-transform: capitalize;
    background-color: #23d160;
    border-radius: 30px;
}

/** TOGGLE **/


.switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 70px;
    height: 2.25em;
    padding: 3px;
    border-radius: 5px;
}

    .switch input {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: #47a8d8;
    border-radius: inherit;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity, background;
    -moz-transition-property: opacity, background;
    -o-transition-property: opacity, background;
    transition-property: opacity, background;
}

    .switch-label:before, .switch-label:after {
        position: absolute;
        top: 50%;
        margin-top: -.5em;
        line-height: 1;
        -webkit-transition: inherit;
        -moz-transition: inherit;
        -o-transition: inherit;
        transition: inherit;
    }

    .switch-label:before {
        content: attr(data-off);
        right: 11px;
        color: #fff;
    }

    .switch-label:after {
        content: attr(data-on);
        left: 11px;
        color: white;
        text-shadow: 0 1px rgba(0, 0, 0, 0.2);
        opacity: 0;
    }

.switch-input:checked ~ .switch-label {
    background: #47a8d8;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

    .switch-input:checked ~ .switch-label:before {
        opacity: 0;
    }

    .switch-input:checked ~ .switch-label:after {
        opacity: 1;
    }

.switch-handle {
    position: absolute;
    top: 5px;
    left: 6px;
    width: 25px;
    height: 2em;
    background: white;
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}

.switch-input:checked ~ .switch-handle {
    left: 40px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-green > .switch-input:checked ~ .switch-label {
    background: #4fb845;
}

.switch-green > .switch-input ~ .switch-label {
    background: #ff3860;
}


/* CALENDAR */

div.calendarDate {
    font-size: 0.6rem;
    display: block;
    position: relative;
    width: 48px;
    height: 50px;
    background-color: #fff;
    border-radius: 0.7em;
    -moz-border-radius: 0.7em;
    box-shadow: 0 1px 0 #bdbdbd, 0 2px 0 #fff, 0 3px 0 #bdbdbd, 0 4px 0 #fff, 0 5px 0 #bdbdbd, 0 0 0 1px #bdbdbd;
    overflow: hidden;
}

    div.calendarDate * {
        display: block;
        width: 100%;
        font-size: 1em;
        font-weight: bold;
        font-style: normal;
        text-align: center;
    }

    div.calendarDate strong {
        position: absolute;
        top: 0;
        padding: 0.2em 0;
        color: #fff;
        background-color: #ec4b4b;
        border-bottom: 1px dashed #ddd;
    }

    div.calendarDate em {
        position: absolute;
        bottom: 0em;
        color: #fff;
        height: 1.4em;
        background-color: #ec4b4b;
    }

    div.calendarDate span {
        font-size: 1rem;
        letter-spacing: -0.05em;
        padding-top: 1rem;
        color: #2f2f2f;
    }

.card-toggle-section {
    display: none;
    background: white;
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
}

    .card-toggle-section.is-active {
        display: block;
    }

.card-section {
    background: white;
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
}


/* HELP SECTION */

.help-button {
    background: #0078d7 !important;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
    -moz-transition: all .1s;
    -o-transition: all .1s;
    -webkit-transition: all .1s;
    transition: all .1s;
}

    .help-button.is-active {
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

.help-window {
    position: fixed;
    background: white;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border: 5px solid #0078d7;
    width: 500px;
    height: 300px;
    bottom: 50px;
    right: 110px;
    box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
    visibility:hidden;
}

    .help-window.is-active {
        visibility:visible;
    }


.help-alert-popup {
    display: none;
    position: fixed;
    background: white;
    border-radius: 5px;
    padding: 1rem;
    width: 300px;
    height: 80px;
    bottom: 40px;
    right: 130px;
    box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
    -moz-transition: all .1s;
    -o-transition: all .1s;
    -webkit-transition: all .1s;
    transition: all .1s;
}

.help-alert-popup.is-active {
    opacity: 1;
}

    .help-alert-popup .close {
        color: lightgrey;
        position: absolute;
        top: 0px;
        right: 10px;
        cursor: pointer;
    }

    .help-alert-popup .help-chevron {
        position: absolute;
        bottom: 20px;
        right: -40px;
        height: 40px;
        width: 40px;
        overflow: hidden;
    }

        .help-alert-popup .help-chevron:before {
            content: "";
            position: absolute;
            top: 10px;
            left: -10px;
            width: 20px;
            height: 20px;
            background: white;
            transform: rotate(45deg);
            box-shadow: 0 2px 6px 0 hsla(0,0%,0%,0.2);
        }




/*Password mask styles*/

.password + .unmask {
    position: absolute;
    right: 10px;
    top: 12px;
    text-indent: -9999px;
    width: 15px;
    height: 15px;
    background: #aaa;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
}

    .password + .unmask:before {
        content: "";
        position: absolute;
        top: 4px;
        left: 4px;
        width: 7px;
        height: 7px;
        background: #e3e3e3;
        z-index: 1;
        border-radius: 50%;
    }

.password[type="text"] + .unmask:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 3px;
    height: 3px;
    background: #aaa;
    z-index: 2;
    border-radius: 50%;
}

/* DATA TABLE STYLES */
.dataTables_filter {
    display: none;
}


/* ICON CIRCLE */
.icon-circle {
    border-radius: 50% !important;
}


/* PLUGIN OVERRIDES */
.jqstooltip {
    box-sizing: content-box;
}

/* Spinner */
.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}

.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fcf;
	margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}

.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}

.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}

.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}

.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}

.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}

.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}

.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Loading container */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:white;
    z-index:99;
}

.spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -25px;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}



.droparea {
    padding: 30px;
    border: 2px dashed black;
    color: #777;
    border-color: #ddd;
    border-radius: 12px;
    text-align: center;
    margin: 16px;
    margin-top: 8px;
}

.droparea.dragover {
    background-color: #eee;
}

.header {
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.footer {
    margin-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.header h3 {
    padding-bottom: 20px;
}

td .progress {
    margin: 0;
}


div.tagsinput {
    border: 1px solid #CCC;
    background: #FFF;
    padding: 5px;
    width: 300px;
    height: 100px;
    overflow-y: auto;

    border-color: rgba(220, 220, 220, 0.3) !important;
    border-radius: 4px;
    color: #363636;
}

    div.tagsinput span.tag {
        border: 1px solid #1a70a9;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        display: block;
        float: left;
        padding: 5px;
        text-decoration: none;
        background: #1a70a9;
        color: white;
        margin-right: 5px;
        margin-bottom: 5px;
        font-family: helvetica;
        font-size: 13px;
        border-radius: 4px;
        /***/
        /*background-color: #3298dc;
        color: #fff;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #ededed;
        border-radius: 4px;
        color: #4a4a4a;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        font-size: 0.75rem;
        height: 2em;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        line-height: 1.5;
        padding-left: 0.75em;
        padding-right: 0.75em;
        white-space: nowrap;*/
    }

        div.tagsinput span.tag a {
            font-weight: bold;
            color: white;
            text-decoration: none;
            font-size: 11px;
        }

    div.tagsinput input {
        width: 80px;
        margin: 0px;
        font-family: helvetica;
        font-size: 13px;
        border: 1px solid transparent;
        padding: 5px;
        background: transparent;
        color: #000;
        outline: 0px;
        margin-right: 5px;
        margin-bottom: 5px;
    }

    div.tagsinput div {
        display: block;
        float: left;
    }

.tags_clear {
    clear: both;
    width: 100%;
    height: 0px;
}

.not_valid {
    background: #FBD8DB !important;
    color: #90111A !important;
}