/* 
    Files imported in specific order for specificity reasons 
*/
/* Base Styling */
/* Browser Reset */
/* Box sizing rules */
*,
*::before,
*::after {
    box-sizing: border-box;
}
#page-count-container {
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    color: white;
    display: flex;
    justify-content: space-between;
}
.pdf-meta {
    display: flex;
}

.pdf-page-nav {
    background-color: transparent;
    color: white;
}

#pdf-prev {
    background-color: transparent;
    color: white;
}

#pdf-next {
    background-color: transparent;
    color: white;
}

#pdf-goto {
    background-color: transparent;
    color: white;
}

#pdf-goto-page {
    background-color: transparent;
    color: white;
    /*width: 9em;*/
    height: 2em;
}
/* Remove default padding */
ul[class],
ol[class] {
    padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}
td {
    font-weight: normal !important;
}
/* Set core body defaults */
body {
    min-height: 100vh;
    max-width: 100%;
    scroll-behavior: smooth;
    /*    overflow-x: visible;
*/
    overflow-y: scroll;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}
body:not(.modal-open) {
    padding-right: 0 !important;
}

body.modal-open {
    padding-right: 0 !important;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
    list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
    max-width: 100%;
    display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Bootstrap button disable override */
.disabled, :disabled {
    pointer-events: auto !important;
}

a:not([href]):not([tabindex]).button {
    color: white;
}

/* Variables */
/* Colours */
/* Typography Based Styling */
h1 {
    font-size: 2rem;
}

/* Type utilities */
.to-elip {
    text-overflow: ellipsis;
    overflow: hidden;
}

.desc-box {
    position: relative;
    display: block;
    padding: .75rem .5rem;
    background-color: #e2e2e2;
    font-size: .9rem;
    margin-top: .5rem;
    border-radius: .5rem;
}

    .desc-box p[contenteditable=true] {
        padding: .5rem;
        background-color: transparent;
        border-radius: .5rem;
        border: 2px solid black;
    }

.desc-box__actions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: .75rem;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

body {
    font-family: PoppinsRegular, Arial, sans-serif;
    color: #1b1b1b;
}

.site-container {
    position: relative;
}

.site-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 75px;
    top: 0;
    z-index: 8;
    border-bottom: 1px solid #e2e2e2;
    background-color: transparent;
}

.site-header__main {
    -ms-flex: 1;
    flex: 1;
}

.site-header__rhs {
    padding: 0 1rem;
}

.brand-logo {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 260px;
}

    .brand-logo img {
        position: relative;
        max-height: 75px;
        width: auto;
    }

.avatar {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-image: url(/css/assets/avatar-placeholder.gif);
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

    .avatar img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

.avatar--lrg {
    width: 110px;
    height: 110px;
}

.site-menu {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.site-menu__item {
    position: relative;
}

.site-menu__link {
    position: relative;
    padding: 1rem 2rem;
    border-radius: .5rem;
    background-color: #efefef;
    font-size: .85rem;
    font-weight: 600;
    color: #7e7e7e;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

    .site-menu__link:hover {
        background-color: #e2e2e2;
        color: black;
        text-decoration: none;
    }

    .site-menu__link.is-active {
        background-color: var(--custom-col);
        color: white;
    }

.site-content {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - 137px);
    display: -ms-flexbox;
     display: flex; 
}

.site-content__public {
    position: relative;
    min-height: calc(100vh - 137px);
    display: -ms-flexbox;
    display: flex;
}

.site-sidebar {
    min-height: calc(100vh - 75px - 137px);
    position: relative;
    /*    top: 70px;*/
    -ms-flex: none;
    flex: none;
    width: 15%;
    /*border-right: 1px solid #e2e2e2;*/
    background-color: transparent;
    overflow-y: unset;
}

.site-main {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    -ms-flex: 1;
    flex: 1;
    background-color: transparent;
    width: 85vw;
    /* width: calc(100vw - 260px);
    min-width: 400px;*/
}

.site-public {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    /*background-color: #f8f8f8;*/
    max-width: 100vw;
}

.center-container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.left-registration-container {
    position: relative;
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-pack: start;
    alignment-baseline: central;
    width: 50%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin: auto;
/*    float:left;*/
}

.right-registration-container {
    position: relative;
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-pack: end;
    justify-content: center;
    width: 30%;
    padding-top: 4rem;
    padding-bottom: 4rem;
    float: left;
}
div.right-container.subscription-card-holder
{
    display:unset !important;
}
.action-bar {
    position: relative;
    /*    top: 70px;*/
    padding-left: 1rem;
    background-color: var(--custom-col);
    color: white;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e2e2e2;
    height: 63px;
    z-index: 8;
    justify-content: space-evenly;
}

.action-bar-public {
    position: relative;
    /*    top: 0px;*/
    background-color: var(--custom-col);
    color: white;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    /*border-bottom: 1px solid #e2e2e2;*/
    z-index: 8;
}

.action-bar__title {
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: none;
    flex: none;
    font-size: 1rem;
    font-weight: 600;
    width: 90%;
}
.action-bar__title.homepage {
    display: flex !important;
    justify-content: center;
}
    .action-bar__title .icon-btn svg {
        width: 12px;
        height: 12px;
    }

.action-bar__actions {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 1rem;
    -ms-flex: 1;
    flex: 1;
}

    .action-bar__actions .icon-btn {
        margin-left: 1rem;
    }

.action-bar__rhs {
    display: -ms-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: none;
    /* border-left: 1px solid #e2e2e2; */
    /* padding-left: 1rem; */
    /* margin-left: auto; */
    grid-gap: .5rem;
    height: 100%;
    background-color: white;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: stretch;
    width: 10%;
}

    .action-bar__rhs input[type=text] {
        padding: .2rem .75rem;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid #e2e2e2;
        background-color: #efefef;
        border-radius: 0;
    }

.action-bar__description {
    /*    max-height: 130px;*/
    background-color: transparent;
    /*overflow-y: auto;*/
    white-space: pre-line;
}

.field-label{
    font-weight: bolder;
    
}

.dropdown-trigger{
    z-index: 5;
}

.grid-header{
    padding: 2px;
}

.grid-row{
    padding: 2px;
    margin-bottom: 2px;
    border-bottom: thin silver groove;
}
.label-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background-color: #e2e2e2;
    font-size: .85rem;
    padding: .25rem .5rem;
    border-radius: .25rem;
}

.label-item__addon {
    position: relative;
    border: none;
    background-color: transparent;
    padding: 0;
    margin-left: .5rem;
}

    .label-item__addon svg {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        width: 14px;
        height: 14px;
        fill: black;
    }

.archive-list-headings {
    position: relative;
    width: 100%;
    padding: 1rem 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .archive-list-headings span {
        -ms-flex: 1;
        flex: 1;
        padding: 0 1rem;
        font-size: .9rem;
        color: #7e7e7e;
    }

        .archive-list-headings span:first-of-type {
            width: 100px;
            -ms-flex: none;
            flex: none;
            padding: 0;
        }

.archive-list-headings__action {
    -ms-flex: none !important;
    flex: none !important;
    padding: 0 2rem !important;
}

.item-grid {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 1rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-around;
}

.item-grid__key {
    position: relative;
    display: none;
    width: 100%;
    padding: 1rem 0;
}

.item-grid__key span {
    -ms-flex: 1;
    flex: 1;
    padding: 0 1rem;
    font-size: .9rem;
    color: #7e7e7e;
}

.item-grid__key span:first-of-type {
    width: 100px;
    -ms-flex: none;
    flex: none;
    padding: 0;
}

.item-grid.item-grid--list .item-grid__key {
    display: -ms-flexbox;
    display: flex;
}

.item-grid--list {
    -ms-flex-direction: column;
    flex-direction: column;
}

.item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    background-color: transparent;
    color: black;
    transition: padding .2s ease-in-out, border .2s ease-in-out, background-color .2s ease-in-out;
}

.item--content {
    -ms-flex-direction: column;
    flex-direction: column;
}

.item-grid.item-grid--list .item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100px;
    margin-right: 0;
    border-radius: .5rem;
    background-color: transparent;
    overflow: hidden;
}

    .item-grid.item-grid--list .item:hover {
        background-color: #e2e2e2;
        color: black;
        text-decoration: none;
    }

    .item-grid.item-grid--list .item.item--content {
        height: 40px;
        -ms-flex-direction: row;
        flex-direction: row;
    }

.item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(126, 126, 126, 0.65);
    /* visibility: hidden; */
    opacity: 0;
    z-index: 1;
    transition: all .2s ease-in-out;
}

.item:hover > .item__overlay {
    visibility: visible;
    opacity: 1;
}

.is-selected .item__overlay {
    visibility: visible;
    opacity: 1;
    background-color: transparent !important;
}

.item-grid.item-grid--list .item__overlay {
    background-color: rgba(126, 126, 126, 0.65);
}

.item__counts {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    bottom: .75rem;
    right: .75rem;
}

.item-grid.item-grid--list .item__counts {
    bottom: 0;
    height: 100%;
}

.item.item--content.is-selected .item__counts {
    opacity: 0;
}

.item__tag {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    bottom: .75rem;
    right: .75rem;
    margin-left: .75rem;
}

.item__tag svg {
    width: 16px;
    height: 16px;
    fill: white;
    margin-right: .5rem;
}

.item__tag span {
    color: white;
    font-weight: bold;
}

.item__check {
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: 22px;
    height: 22px;
    border-radius: 50px;
    border: 4px solid white;
    background-color: transparent;
}

.is-selected .item__check {
    background-color: var(--custom-col);
}

.item__avatar {
    -ms-flex: none;
    flex: none;
    padding: 0 2.5rem;
}

.item__data {
    display: none;
}

.item-grid.item-grid--list .item__data {
    display: block;
    -ms-flex: 1;
    flex: 1;
}

.item__data.text-limit-archive-name,
.archive-list-headings span.text-limit-archive-name {
    flex: 1;
    max-width: 240px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.archiveInsertDate {
    display: inline-block;
    text-align: center;
}

.enterArchiveButton {
    white-space: nowrap;
}

.sharedArchiveDropdownButton {
    background-color: transparent !important;
}

.item__data.text-limit-archive-desc,
.archive-list-headings span.text-limit-archive-desc {
    /*    min-width: 40%;
    max-width: 300px;*/
    padding: 0 0rem 0 1.5rem;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: default;
}

.archive-list-headings span.text-limit-archive-desc {
    padding: 0 1rem;
}

.item__data.tags {
    text-overflow: ellipsis;
}

    .item__data.tags > span:not(:last-of-type):after {
        content: ', ';
    }

.item__data.filename {
    position: absolute;
    line-height: 30px;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.85);
}

.gallery-thumbnail-slider {
    padding-bottom: 40px;
    padding-top: 10px;
}

.gallery-action-bar-image {
    border: 10px solid;
    border-color: white;
    background-color: transparent;
}

.item__data.text-limit {
    max-width: 25%;
    padding-right: 1rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.item__data.filename.text-limit {
    display: block;
    max-width: 100%;
    padding: .25rem;
}

.item-grid.item-grid--list .item__data.filename {
    position: relative;
    line-height: normal;
    background-color: transparent;
    text-align: left;
}

.item__action {
    -ms-flex: none;
    flex: none;
    padding: 0 2rem;
}

.item img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
}

.item-grid.item-grid--list .item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    -ms-flex: none;
    flex: none;
    margin-right: 1rem;
}

.item--content .item-grid.item-grid--list .item img {
    width: 40px;
    height: 40px;
}

.item img:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid #e2e2e2;
}
.tableContainerDiv {
    overflow: auto;
    max-height: 50em;
}
.stickyTableHeading {
    position: sticky;
    top: -1px;
}

.item img:after {
    content: "Generating Thumbnail: " attr(alt);
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-size: .75rem;
    color: #7e7e7e;
    overflow-wrap: normal;
    overflow: hidden;
}

.item.is-selected {
    border: 2px solid var(--custom-col);
    background-color: rgba(95, 170, 163, 0.35);
    padding: .75rem;
}

.item-grid.item-grid--list .item.is-selected {
    padding: 0;
    border: none;
    background-color: rgba(95, 170, 163, 0.35);
}

.site-footer {
    width: 100%;
    background-color: var(--custom-col);
    color: white;
}

.logo-icon {
    color: white !important;
    font-size: 32px;
    padding: 10px;
}

.social-logo-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px;
}

.footer-wrapper {
}

.footer-text {
    padding-bottom: 17px;
}

.footer-link {
    color: white !important;
    text-decoration: underline;
}

.links-holder {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-padding {
/*    padding-bottom: 17px;*/
}

.content-wrapper {
/*    padding-top: 3.3vmax;
    padding-bottom: 3.3vmax;*/
    line-height: 1.8 !important;
}

.social-logo {
}

.header-nav-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-nav-item {
    color: #3c3c3a !important;
    margin-left: 1.5rem !important;
    /*text-transform: uppercase;*/
}

.f-container {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.button-container {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    position: relative;
    background-color: var(--custom-col) !important;
    color: white;
    font-weight: 600;
    font-size: .95rem;
    padding: 1rem 2.5rem;
    border-radius: .5rem;
    border: none;
}

.btn--error {
    background-color: #c93737;
}

.btn + .btn {
    margin-left: 1rem;
}

.archive-logo,
.gallery-logo {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem;
    background-color: transparent;
}

    .archive-logo img,
    .gallery-logo img {
        max-width: 100px;
        height: auto;
    }

.archive-logo__name,
.gallery-logo__name {
    font-weight: 600;
    margin-top: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    width: 100%;
    text-align: center;
}




.vertical-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    /*border-top: 1px solid #e2e2e2;*/
}

.vertical-menu__item {
    position: relative;
    width: 100%;
}
.noBottomBorder {
    border-bottom: none !important;
}
.vertical-menu__link {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #4b4b4b;
    border: none;
    /*border-bottom: 1px solid #e2e2e2;*/
    background-color: transparent;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
    .vertical-menu__link i {
        min-width: 10%;
        height: 24px;
        fill: #7e7e7e;
        margin-right: 1rem;
        transition: all .2s ease-in-out;
        max-width: 10%;
    }
    .vertical-menu__link svg {
        min-width: 10%;
        height: 24px;
        fill: #7e7e7e;
        margin-right: 1rem;
        transition: all .2s ease-in-out;
        max-width: 10%;
    }
.vertical-menu__link img {
    width: 24px;
    height: 24px;
    fill: #7e7e7e;
    margin-right: 1rem;
    transition: all .2s ease-in-out;
}

    .vertical-menu__link span {
        font-weight: 600;
        font-size: .95rem;
        max-width: 90%;
    }

    .vertical-menu__link:hover {
        background-color: #fcfbfb;
        text-decoration: none;
        color: #4b4b4b;
    }

        .vertical-menu__link:hover svg {
            fill: var(--custom-col);
        }

.vertical-menu__title {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 1rem;
    background-color: var(--custom-col);
    color: white;
    font-weight: 600;
    font-size: .95rem;
}

.folder-tree {
    position: relative;
    width: 100%;
    padding: 1rem;
}

.nested {
    padding-left: 1rem !important;
}

.tree {
    position: relative;
}

.tree__item {
    position: relative;
    padding: .25rem 0;
}

    .tree__item button {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        border: none;
        background-color: transparent;
        padding: 0 .5rem;
        border-radius: .5rem;
        transition: all .2s ease-in-out;
    }

        .tree__item button:hover, .tree__item button.is-selected {
            background-color: rgba(95, 170, 163, 0.35);
        }

        .tree__item button svg {
            width: 18px;
            height: 18px;
            fill: #7e7e7e;
            margin-right: .5rem;
        }

    .tree__item.is-active > button {
        background-color: rgba(95, 170, 163, 0.35);
    }

    .tree__item .tree {
        display: none;
        padding-left: .5rem;
    }

    .tree__item.is-open > .tree {
        display: block;
    }

.modal-dialog .modal-content {
    border-radius: 1rem;
}


.loader-container {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
    z-index: 1051;
}

    .loader-container.is-active {
        opacity: 1;
        visibility: visible;
    }

.loader-container__inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

    .loader-container__inner p {
        font-size: .85rem;
        font-weight: 600;
        color: white;
        margin: 1rem 0 0;
    }

.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-grid div {
        position: absolute;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: white;
        animation: lds-grid 1.2s linear infinite;
    }

        .lds-grid div:nth-child(1) {
            top: 8px;
            left: 8px;
            animation-delay: 0s;
        }

        .lds-grid div:nth-child(2) {
            top: 8px;
            left: 32px;
            animation-delay: -0.4s;
        }

        .lds-grid div:nth-child(3) {
            top: 8px;
            left: 56px;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(4) {
            top: 32px;
            left: 8px;
            animation-delay: -0.4s;
        }

        .lds-grid div:nth-child(5) {
            top: 32px;
            left: 32px;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(6) {
            top: 32px;
            left: 56px;
            animation-delay: -1.2s;
        }

        .lds-grid div:nth-child(7) {
            top: 56px;
            left: 8px;
            animation-delay: -0.8s;
        }

        .lds-grid div:nth-child(8) {
            top: 56px;
            left: 32px;
            animation-delay: -1.2s;
        }

        .lds-grid div:nth-child(9) {
            top: 56px;
            left: 56px;
            animation-delay: -1.6s;
        }

@keyframes lds-grid {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Upload Content Layout */
.upload-layout {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.upload-layout__main {
    -ms-flex: 1;
    flex: 1;
    padding: 1rem;
}

.upload-layout__side {
    -ms-flex: none;
    flex: none;
    width: 320px;
    border-left: 1px solid #e2e2e2;
    padding: 1rem;
}

/* Component Styling */
/* Button Styling */
.button {
    position: relative;
    padding: 1rem 2rem;
    margin: 1px;
    border-radius: .5rem;
    border: none;
    background-color: #efefef;
    font-size: 1rem;
    font-weight: 600;
    color: #7e7e7e;
    text-decoration: none;
    transition: all .2s ease-in-out;
}

.button-small {
    position: relative;
    padding: 0.5rem;
    border-radius: .5rem;
    border: none;
    background-color: #efefef;
    font-size: 1rem;
    font-weight: 400;
    color: #7e7e7e;
    text-decoration: none;
    transition: all .2s ease-in-out;
    margin: 0.5rem;
}

.button:hover {
    background-color: #e2e2e2;
    color: black;
    text-decoration: none;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .85;
}

.button--block {
    display: block;
    width: 100%;
    text-align: center;
}

.button--primary {
    background-color: var(--custom-col) !important;
    color: white;
}

    .button--primary:hover {
        background-color: #539c96;
        color: white;
    }

.button--danger {
    background-color: #ce3b3b;
    color: white;
}

    .button--danger:hover {
        background-color: #c03030;
        color: white;
    }

.button--sml {
    padding: .5rem 2rem;
}

.button--xs {
    padding: .5rem 1rem;
}

.button--icon svg {
    display: inline;
    width: 24px;
    height: 14px;
    fill: black;
    margin-right: .5rem;
}

.button--icon.button--primary svg,
.button--icon.button--danger svg {
    fill: white;
}

.icon-btn {
    position: relative;
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-pack: center;
    /* justify-content: center; */
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: transparent;
    transition: all .2s ease-in-out;
}

    .icon-btn svg {
        width: 20px;
        height: 20px;
        color: var(--custom-col);
        fill: var(--custom-col);
        pointer-events: none;
    }

    .icon-btn:hover, .icon-btn.is-active {
        background-color: #e2e2e2;
    }

    .icon-btn + .icon-btn {
        /* margin-left: 1rem; */
    }

.icon-btn--red {
    background-color: #ce3b3b;
}

    .icon-btn--red svg {
        fill: white;
    }

.icon-btn--green {
    background-color: var(--custom-col);
}

    .icon-btn--green svg {
        fill: white;
    }

.icon-btn--yellow {
    background-color: transparent;
}

    .icon-btn--yellow svg {
        fill: #dfac3e;
    }

.icon-btn--wide svg {
    width: auto;
}

.icon-btn.swiper-button-prev, .icon-btn.swiper-button-next, .icon-btn.swiper-button-start, .icon-btn.swiper-button-end {
    position: absolute;
}

.icon-btn.swiper-button-start {
    left: 10px;
    top: calc(50% + 1rem);
    margin: 0;
}

.icon-btn.swiper-button-end {
    right: 10px;
    top: calc(50% + 1rem);
}

.detail-view__data .icon-btn {
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.empty-state {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 1.5rem;
    border: 2px dashed var(--custom-col);
    border-radius: .5rem;
    background-color: transparent;
    transition: all .2s ease-in-out;
    /* Dropzone Related */
}

    .empty-state:hover {
        background-color: rgba(95, 170, 163, 0.25);
    }

    .empty-state svg {
        width: 72px;
        height: 72px;
        fill: #7e7e7e;
    }

    .empty-state span {
        font-size: 1.25rem;
        font-weight: 600;
        margin-top: 1.5rem;
        color: #7e7e7e;
    }

    .empty-state .dz-message {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: center;
        align-items: center;
    }

    .empty-state.dz-started {
        display: block;
        background-color: transparent;
    }

    .empty-state .dz-processing .dz-remove {
        display: none !important;
    }

    .empty-state .dz-error-message {
        display: none !important;
    }

/* Tooltip override for focus */
[aria-label][role~="tooltip"]:focus::before, [aria-label][role~="tooltip"]:focus::after {
    opacity: 0 !important;
    outline: none !important;
    display: none;
}

/* Form & Input Styling */
/* Input Styling */
input[type=text],
input[type=number],
input[type=password],
input[type=email],
select {
    padding: .75rem;
    border: 1px solid #e2e2e2;
    border-radius: .25rem;
}

.form-item {
    position: relative;
}

    .form-item label {
        color: #7e7e7e;
    }

    .form-item input[type=text],
    .form-item input[type=password],
    .form-item input[type=email],
    .form-item select {
        display: block;
        width: 100%;
    }

    .form-item + .form-item {
        margin-top: 1.5rem;
    }

.form-item--inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

    .form-item--inline input {
        -ms-flex: 1;
        flex: 1;
    }

    .form-item--inline button,
    .form-item--inline .button,
    .form-item--inline .icon-btn {
        -ms-flex: none;
        flex: none;
        margin-left: .5rem;
    }

.form-error {
    position: relative;
    color: #ce3b3b;
}

.form-error__item {
    position: relative;
    display: block;
    padding: .5rem 0;
    font-size: .85rem;
}

.file-input-box {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 2px dashed var(--custom-col);
    border-radius: .5rem;
    padding: 1rem;
    transition: all .2s ease-in-out;
}

    .file-input-box:hover {
        background-color: rgba(95, 170, 163, 0.25);
    }

    .file-input-box svg {
        width: 40px;
        height: 40px;
        fill: #7e7e7e;
    }

.file-input-box__label {
    font-size: 1rem;
    font-weight: 600;
    color: #7e7e7e;
}

.file-input-box input[type=file] {
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}

.image-preview {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fcfbfb;
    border-radius: .5rem;
    padding: .75rem;
}

    .image-preview img {
        max-height: 150px;
    }

.text-divider {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 1px;
    background-color: #e2e2e2;
    margin: 2.5rem 0;
}

    .text-divider span {
        background-color: transparent;
        padding: 0 .75rem;
    }

.text-divider--grey-bg span {
    /*background-color: #f8f8f8;*/
}

.form-block {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 620px;
    background-color: transparent;
    border: 1px solid #e2e2e2;
    border-radius: 1rem;
    text-align: center;
}

.form-block--full-width {
    max-width: none;
}

.form-block__header {
    position: relative;
    padding: 1.5rem 3.5rem 0;
    text-align: center;
}

    .form-block__header h1, .form-block__header h2, .form-block__header h3 {
        margin: 0;
    }

        .form-block__header h1 + p, .form-block__header h2 + p, .form-block__header h3 + p {
            margin-top: 1rem;
        }

.form-block__main {
    position: relative;
    padding: 1.5rem 3.5rem;
}

/* Tagging Specific Styling */
.tag-cloud {
    position: relative;
    padding: .75rem;
    border-radius: .25rem;
    background-color: transparent;
    border: 1px solid #e2e2e2;
}

.tag-cloud__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: .25rem;
    text-align: right;
    
}
.tag-cloud__actions button {
    z-index: 10;
}
.tag-cloud label {
    display: block;
}

.tag-cloud input[type=checkbox] {
    margin-right: .5rem;
}

.tag {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem 1.5rem;
    margin-right: .25rem;
    margin-bottom: .5rem;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 2rem;
    background-color: var(--custom-col);
    color: white;
}

    .tag .icon-btn {
        width: 20px;
        height: 20px;
        background-color: #396a66;
        margin-left: .5rem;
    }

        .tag .icon-btn svg {
            width: 14px;
            height: 14px;
            fill: white;
        }

.tag--draft {
    border: 2px solid #f5e12d;
    padding-right: .5rem;
}

/* Date picker specific */
input.datepicker {
    padding: 0;
    font-weight: bold;
    border: none;
    background-image: url(/css/assets/calendar.png);
    background-size: 14px 14px;
    background-position: calc(100% - 12px) 3px;
    background-repeat: no-repeat;
    transition: all .2s ease-in-out;
}

    input.datepicker:hover {
        color: var(--custom-col);
        cursor: pointer;
    }

/* Folder rename spcific */
.showOnRename {
    display: none !important;
}

.editPerson {
    cursor: pointer;
}
.personTag:hover {
    cursor: pointer;
}
.personTag.drawing {
    color: red;
}

.renaming .showOnRename {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.renaming .hideOnRename {
    display: none !important;
}

.renaming > [contenteditable] {
    padding: .5rem;
    background-color: transparent;
    border-radius: .5rem;
    border: 2px solid black;
    min-width: 160px;
}

/* Overflow global tooltip */
.of-tooltip {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: black;
    color: white;
    font-weight: bold;
    font-size: .85rem;
    padding: .5rem 1rem;
    border-radius: .5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

    .of-tooltip.is-active {
        opacity: 1;
        visibility: visible;
    }

/* Form message */
.form-message {
    position: relative;
    display: block;
    padding: .75rem;
    background-color: #EAEAEA;
    font-size: .85rem;
    border-radius: .75rem;
    margin-bottom: 1rem;
}

.form-message--success {
    background-color: var(--custom-col);
    color: white;
}

/* Autocomplete */
.autocomplete {
    position: relative;
    display: block;
}

    .autocomplete input {
        padding: 10px;
        font-size: 16px;
        width: 100%;
    }

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        .autocomplete-items div:hover {
            /*when hovering an item:*/
            background-color: #e9e9e9;
        }

.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

/*Specific styles for People Search*/
.psautocomplete-items {
    width: 50vw;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    position: absolute;
}

.psautocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    
}

.psautocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}

.psautocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
/* Calendar Picker Override */
.applyBtn.btn.btn-sm.btn-primary {
    background-color: var(--custom-col) !important;
}

.cancelBtn.btn.btn-sm.btn-default {
    background-color: #ce3b3b !important;
}

/* Archive List Styling */
.archive-list {
    padding: 1rem;
}

.archive-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.archive-item__image {
    -ms-flex: none;
    flex: none;
    width: 50px;
}

    .archive-item__image img {
        position: relative;
        width: 50px;
        height: 50px;
        object-fit: cover;
        object-position: center;
    }

.archive-item__detail {
    -ms-flex: 1;
    flex: 1;
}

/* Folder Tree */
.treeview > .active {
    white-space: nowrap;
}

.li-start {
    padding: .25rem 0;
    border-radius: .75rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.folder-link {
    position: relative;
    display: inline;
    width: 100%;
    padding: .25rem .75rem .25rem .25rem;
}

    .folder-link span {
        pointer-events: none;
    }

    .folder-link.is-active {
        background-color: rgba(95, 170, 163, 0.35);
        border-radius: .5rem;
    }

    .folder-link:hover {
        background-color: rgba(95, 170, 163, 0.15);
        border-radius: .5rem;
        text-decoration: none;
    }

.treeview .ic-w {
    pointer-events: none;
}

/* Folder List (larger list for tagging) */
.folder-list {
    position: relative;
    margin: 0;
    padding: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
}

.folder-list-item .folder-list {
    padding-left: 1.5rem;
}

.folder-list-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.folder-list-item__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: .5rem;
    border-bottom: 1px solid #e2e2e2;
}

    .folder-list-item__inner.contentMove {
        border-bottom: none;
    }

        .folder-list-item__inner.contentMove:hover, .folder-list-item__inner.contentMove.is-selected {
            background-color: rgba(95, 170, 163, 0.35);
            border-radius: .5rem;
            cursor: pointer;
        }

        .folder-list-item__inner.contentMove.is-disabled {
            cursor: not-allowed;
            pointer-events: none;
            opacity: .5;
        }

.folder-list-item__main {
    -ms-flex: 1;
    flex: 1;
    font-size: 1.25rem;
}

.folder-list-item__rhs {
    -ms-flex: none;
    flex: none;
}

    .folder-list-item__rhs .button {
        display: inline-block;
        margin-left: .5rem;
        margin-bottom: .5rem;
    }

/* Detail Row Styling */
.detail-row {
    position: relative;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 1rem;
}

.detail-row__label {
    font-weight: 600;
}

.detail-row__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .5rem 0;
}
.detail-row__grouped {
    justify-content: space-between;
}
.detail-row__item {
    -ms-flex: 1;
    flex: 1;
    padding: .5rem 0;
    border-radius: .5rem;
    margin-right: 1rem;
}

    .detail-row__item[contenteditable="true"] {
        background-color: transparent;
        padding: .5rem;
    }

        .detail-row__item[contenteditable="true"] + .detail-row__actions .editing {
            display: inline-block;
        }

        .detail-row__item[contenteditable="true"] + .detail-row__actions .trigger {
            display: none;
        }

.detail-row__actions {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

    .detail-row__actions .editing {
        display: none;
    }

/* Dropdown Styling */
.dropdown-container {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

    .dropdown-container > span[contenteditable="true"] {
        padding: .5rem;
        background-color: transparent;
        border-radius: .5rem;
        min-width: 160px;
    }

.dropdown {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    width: 260px;
    -ms-flex-direction: column;
    flex-direction: column;
    top: calc(100% + 1rem);
    left: calc(50% - 130px);
    background-color: transparent;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    border-radius: .5rem;
    box-shadow: 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.1);
    transition: all .2s ease-in-out;
}

    .dropdown:before {
        content: '';
        position: absolute;
        top: -16px;
        left: calc(50% - 10px);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 16px 10px;
        border-color: transparent transparent #ffffff transparent;
    }

.dropdown-container--rhs .dropdown:before {
    left: calc(100% - 45px);
}

.dropdown-container.is-open .dropdown {
    visibility: visible;
    opacity: 1;
}

.dropdown-container--rhs .dropdown {
    left: -210px;
}

.dropdown__item {
    border: none;
    background-color: white;
    border-bottom: 1px solid #e2e2e2;
    color: inherit;
    padding: .75rem;
    font-size: .85rem;
    text-align: center;
    transition: all .2s ease-in-out;
}

    .dropdown__item:first-of-type {
        border-top-right-radius: .5rem;
        border-top-left-radius: .5rem;
    }

    .dropdown__item:last-of-type {
        border-bottom-right-radius: .5rem;
        border-bottom-left-radius: .5rem;
    }

    .dropdown__item:hover {
        background-color: #e2e2e2;
    }

/* Expandable List */
.expandable-list {
    position: relative;
}

.expandable-item {
    position: relative;
    width: 100%;
    margin-bottom: .75rem;
}

.expandable-item__trigger {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    background-color: transparent;
    width: 100%;
    padding: .75rem 1.5rem;
    text-align: left;
}

.expandable-item__main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
}

    .expandable-item__main > svg {
        position: relative;
        width: 22px;
        height: 22px;
        fill: #e2e2e2;
        margin-right: 1rem;
    }

.expandable-item.is-open .expandable-item__main > svg {
    transform: rotate(90deg);
}

.expandable-item__rhs {
    -ms-flex: none;
    flex: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.expandable-item__dropdown {
    display: none;
    background-color: transparent;
}

.expandable-item.is-open > .expandable-item__dropdown {
    display: block;
}

.expandable-child {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: .75rem 1.5rem;
    background-color: transparent;
    border-top: 1px solid #e2e2e2;
}

    .expandable-child.is-chosen {
        background-color: rgba(95, 170, 163, 0.2);
        border: 1px solid var(--custom-col);
    }

.expandable-child__main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 3rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.85);
}

.expandable-child__rhs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: none;
    flex: none;
    -ms-flex-align: center;
    align-items: center;
}

.count {
    position: relative;
    border-radius: 30px;
    background-color: #7e7e7e;
    color: white;
    font-size: .85rem;
    padding: .25rem .5rem;
    margin: 0 1rem;
}

.count--light {
    background-color: #b1b1b1;
}

.notFound {
    text-align: center;
    margin-top: 100px;
    font-size: 20px;
}

/* Tab Content Styling */
.tab-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: auto;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: transparent;
}

.tab-content__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: none;
    flex: none;
    min-height: 50px;
    flex-wrap: wrap;
}

#gmap_canvas {
    min-height: 300px;
    min-width: 50%;
}
.mapouter {
    flex-grow: 10;

}

    .tab-content__tabs .tab-btn {
        -ms-flex: 1;
        flex: 1;
    }

.tab-content__main {
    -ms-flex: 1;
    flex: 1;
    padding: 1rem;
    overflow-y: unset;
}

    .tab-content__main .detail-view__data {
        margin-bottom: .5rem;
    }

    .tab-content__main .tag-cloud {
        height: 220px;
        overflow-y: auto;
    }

.tab-content__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: none;
    flex: none;
    padding: .5rem 1rem;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top: 1px solid #e2e2e2;
}

.tab-btn {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #f3f3f3;
    border: none;
    padding: 1rem .75rem;
    border-bottom: 1px solid #e2e2e2;
    transition: all .2s ease-in-out;
}

    .tab-btn:not(:last-of-type) {
        border-right: 1px solid #e2e2e2;
    }

    .tab-btn.is-active {
        border-top: 3px solid var(--custom-col);
        background-color: transparent;
        border-bottom: none;
    }

    .tab-btn:not(.is-active):hover {
        background-color: #e6e6e6;
    }

.tab-btn__inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    color: #7e7e7e;
}

    .tab-btn__inner svg {
        width: 20px;
        height: 20px;
        fill: #7e7e7e;
        stroke: #7e7e7e;
        margin-right: .75rem;
    }


.tab-btn.is-active .tab-btn__inner {
    color: var(--custom-col);
}
    .tab-btn.is-active .tab-btn__inner svg {
        fill: var(--custom-col);
        stroke: var(--custom-col);
    }

/* People List */
.people-list {
    position: relative;
    width: 100%;
}

.people-list__keys {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .75rem;
    background-color: transparent;
}

.people-list__key {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    font-size: .75rem;
    color: #7e7e7e;
    border: none;
    background-color: transparent;
    text-align: left;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
}

    .people-list__key svg {
        width: 10px;
        height: 10px;
        fill: #7e7e7e;
        margin-left: .5rem;
    }

.people-list__items {
    position: relative;
}

.people-pic {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: .75rem 1.25rem;
    width: 120px;
}

    .people-pic .icon-btn {
        margin-right: .75rem;
    }

.people-actions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    padding: .75rem;
}

.people-item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .75rem;
    background-color: transparent;
    border-top: 1px solid #e2e2e2;
}

.people-item__data {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    font-size: .85rem;
    color: black;
    overflow-wrap: normal;
}
/*# sourceMappingURL=style2.css.map */

.overflow-initial {
    overflow: initial !important;
}

.view-folder-galleries.is-active {
    background-color: rgba(95, 170, 163, 0.35);
    border-radius: .5rem;
}

.button-holder {
    display: flex;
}

.yal-sub-nav {
    position: relative;
    /*    top: 133px;*/
    height: 80px;
    display: flex;
    z-index: 8;
    /*background-color: #F8F8F8;*/
}


.flex-end {
    display: flex;
    justify-content: flex-end;
}

.hidden-last {
    display: none !important;
}

.flex-start {
    justify-content: flex-start;
}

.cover-up {
    visibility: hidden;
}

.top-border {
   /* border-top: 1px solid black;*/
}

.dark-grey {
    color: #7e7e7e;
}

.content-loader {
    height: 100%;
    background-color: var(--custom-col);
}

.content-progress-holder {
    width: 100%;
}

.content-comments {
    max-height: 400px;
    overflow-y: scroll;
}

.bold {
    font-weight: 600;
}

.color-green {
    color: var(--custom-col);
}

.dz-preview {
    z-index: 0;
}

.disable-click span {
    color: #DCDCDC;
}

.disable-click svg {
    fill: #DCDCDC;
}

    .disable-click svg:hover {
        fill: #DCDCDC;
    }

.contentActionButtons {
    background-color: transparent !important;
}

.disable-click {
    background-color: transparent;
}

    .disable-click:hover {
        background-color: transparent !important;
        cursor: not-allowed;
    }

        .disable-click:hover svg {
            fill: #DCDCDC;
        }

.disable-click-primary-button {
    opacity: 0.5;
}

    .disable-click-primary-button:hover {
        cursor: not-allowed;
    }

.disable-click:hover svg {
    fill: #DCDCDC;
}

.wide-modal {
    max-width: 700px;
}

.img-upload-preview {
    max-width: 200px;
    max-height: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    background-color: red;
    cursor: pointer;
}

.img-preview-holder {
    height: 200px;
    width: 200px;
    background-color: #fbfbfb;
    display: flex;
    align-items: center;
}

.svg-button {
    max-width: 25px;
    max-height: 25px;
    fill: white;
}

.scroll-modal {
    max-height: 70vH;
    overflow-y: scroll;
}

.z-max {
    z-index: 9999;
}

.action-bar-stick {
    /*position: sticky;*/
    top: 213px;
    z-index: 10;
    /*background-color: #F8F8F8;*/
    padding-bottom: 10px;
}

.main-body-scroll {
    /*overflow-y: scroll;*/
/*    max-height: 60vH;*/
}

.pdf-viewer {
    width: 100%;
    height: 100%;
}

.font-11 {
    font-size: 11pt;
}

.flex-2 {
    flex: 2 !important;
}


.error-partial {
    flex-direction: column;
    text-align: center;
    padding: 30px;
}

.input-color-preview {
    border: 2px solid white !important;
    border-right: 50px solid white !important;
}

#photoMetaDataArrow, #expandContentMetaData {
    cursor: pointer;
    display: inline-block;
}

.slim-column {
    max-width: 3%;
}

.column {
    width: 14%;
}

.yal-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 20px;
    margin-bottom: 60px;
}

.text-limit-gallery-desc {
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    cursor: default;
    max-width: 200px;
}

.nowrap {
    white-space: nowrap;
}


.h-100p {
    height: 100px;
}

.table-item {
    margin-right: 0;
    border-radius: .5rem;
    background-color: transparent;
    height: 100px !important;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

    .table-item:hover {
        background-color: #e2e2e2;
        color: black;
        text-decoration: none;
    }


    .table-item tr {
        margin-bottom: 20px;
    }

.table-header {
    font-size: .9rem;
    color: #7e7e7e;
    height: 50px;
}

.table-image-holder {
    width: 100px;
}

.align-center {
    /* display: flex; */
    align-items: center;
}

.modal-content-wide {
    min-width: 700px !important;
    max-width: 900px !important;
}
.modal-content-extra-wide {
    min-width: 90vw !important;
    max-width: 90vw !important;
}

button:focus {
    outline: 0 !important;
}

.friendly-name-holder {
    display: flex;
    justify-content: center;
}

.gallery-settings-form {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: transparent;
    border: 1px solid #e2e2e2;
    border-radius: 1rem;
}

.zero-z-index {
    z-index: 0;
}

.error-holder {
    max-width: 500px;
    background-color: transparent;
    padding: 30px;
    border-radius: 5px;
}

.flex-column {
    flex-direction: column;
    display: flex;
}

.swiper-button-prev, .swiper-button-next {
    z-index: 0 !important;
}

.flex-spread-align-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.small-logo {
    height: 50px !important;
}

.medium-logo {
    height: 100px !important;
}

.large-logo {
    height: 150px !important;
}

.small-font {
    font-size: large;
}

.medium-font {
    font-size: x-large;
}

.large-font {
    font-size: xx-large;
}

.width-100vh {
    width: 100vw;
        max-width: 100%;
}

.required-field {
    font-size: 10pt;
    font-weight: bold;
    font-style: italic;
}

.help-icon {
    color: white;
    margin-left: 10px;
    font-size: 1.5em;
}

.background-white {
    background-color: transparent;
}

.select-product {
    background-color: transparent;
    border-radius: 5px;
    margin-bottom: 30px;
}

.selected-product {
    border: 1px solid var(--custom-col);
}

.subscription-summary {
    background-color: transparent;
    padding: 1rem;
}

.camel-case {
    text-transform: capitalize;
}

.subscription-card {
    max-width: 200px;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
}

.subscription-card-holder {
    /* display: flex; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* flex-direction: column; */
    align-items: center;
}

.subscription-point {
    font-style: italic;
    font-size: 11pt;
}

.subscription-price {
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: var(--custom-col);
    text-underline-offset: 10px;
}

.modal-sub-header {
    font-weight: bold;
    margin-bottom: 30px;
}

.subscription-title {
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: var(--custom-col);
    text-underline-offset: 10px;
}

.pl-pr {
    padding-right: 4rem;
    padding-left: 4rem;
}

.img-container {
    position: relative;
    max-block-size: fit-content;
}

.top {
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    top: 25px;
    left: 25px;
    opacity: 0.2;
    z-index: 5;
}

.watermark {
    position: relative;
}

.watermark-wrapper {
    flex-wrap: wrap;
}

#img-wrapper {
    box-sizing: border-box;
    vertical-align: middle;
    height: 100%;
    align-self: center;
}

    .watermark::after {
        background-image: url(../css/assets/logo-grey-50.png);
        background-repeat: space;
        content: "";
        position: absolute;
        background-size: 150px;
        top: 0px;
        bottom: 0px;
        text-align: center;
        width: 100%;
    }

.watermark-featherlight .featherlight-content::after {
    content: "";
    position: absolute;
}

#watermark-div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    background-size: 150px;
    background-repeat: space;
    background-image: url(../css/assets/logo-grey-50.png);
    z-index: 1;
}
.alert{
    z-index: 1002;
}
@media only screen and (max-width: 600px) {
    .mobile-footer {
        display: block;
    }

    .mobile-footer-textbox {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
        line-height: 3;
    }

        .mobile-footer-textbox p {
            white-space: initial !important;
        }

    .mobile-gallery-header {
        max-width: 20vh;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
}

#add-filter {
    display: inline-block;
    right: 350px;
    margin-top: 25px;
    position: absolute;
    width: 150px;
}

@media (max-width: 1800px) {
    #add-filter {
        right: 250px;
    }
}

@media (max-width: 1650px) {
    #add-filter {
        right: 100px;
    }
}

@media (max-width: 1200px) {
    #add-filter {
        right: 0;
    }
}

a.highlight-content{
    border-style: solid;
    border-color: red;
    border-width: thin;
}
span.highlight-content {
    border-style: solid;
    border-color: red;
    border-width: thin
}
.unpublished-gallery {
    border-style: solid;
    border-color: red;
    border-width: thin;
    padding: 5px;
}
.static-gallery {
    border-style: solid;
    border-color: green;
    border-width: thin;
    padding: 5px;
}
.dynamic-gallery {
    border-style: solid;
    border-color: blue;
    border-width: thin;
    padding: 5px;
}

.embed-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    /* Just for demonstration, remove this part */
    opacity: 0.25;
    pointer-events: none;
}

.wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    min-height: 25vh;
    /* height: 100%; */
    /* max-height: 90vh; */
}

div.comment-depth{
    border-left: inset;
    border-color: grey;
    border-top: inset;
    padding-left: 10px;
}

.comment-text{
    white-space:pre-line;
}

#contentDescription{white-space: pre-wrap}

div.advert {
    color: var(--custom-col);
}

.pulsate {
    -webkit-animation: pulsate 3s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.5;
}

@-webkit-keyframes pulsate {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1.0;
        color: var(--custom-col);
    }

    100% {
        opacity: 0.6;
    }
}

div.institution-gallery-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
}
div.institution-gallery-grid-item {
    /* margin: 10px; */
    /* max-width: 200px; */
    /* max-height: 250px; */
    text-align: center;
    display: inline-flex;
    flex-direction: column;
}
div.institution-gallery-grid-img {
    /* max-width: 200px; */
    /* width: auto; */
    text-align: center;
    /* border-radius: 6px; */
    margin-bottom: 10px;
}
img.institution-gallery-grid-img {
    object-fit: cover;
    /* width: 200px; */
    /* max-height: 300px; */
    text-align: center;
    display: inline;
    /* height: 300px; */
    /* width: 300px; */
    border-radius: 6px;
    /* max-width: 100px; */
}
 div.institution-gallery-grid-name {
    text-align: center;
    vertical-align:bottom;

}

div.gallery-toc-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    grid-template-rows: auto;
    /*grid-gap: 1px;*/
    border-color: var(--custom-col);
    border-width: thin;
    border-style: solid
}
div.gallery-toc {
    /*background-color: var(--custom-col);*/
    /* width: 90%; */
    display: flex;
    
    margin: 0 auto 5px;
    border-collapse: collapse;
}
div.gallery-toc-item {
    padding-left: 10px;
    background-color: white;
    border-color: white;
    border-width: 2px;
    border-style: solid
}

div.gallery-toc-heading {
    text-align: center;
    width: auto;
    background-color: var(--custom-col);
    color: white;
    min-width: 25%;
    border-radius: 8px;
    font-size: larger;
    font-weight: 600;
}

div.institution-buttons-left {
    display: inline-flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
   /* text-size-adjust: 50%;*/
    min-width: 40%;
    justify-content: space-between;
}
div.institution-buttons-right {
    display: inline-flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
    /* margin-left: auto; */
    min-width: 40%;
    vertical-align: middle;
    justify-content: space-evenly;
}
div.institution-gallery-button {
    color: white;
    background-color: var(--custom-col);
/*    border-radius: .5rem;*/
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: auto;
    margin-bottom: auto;
    padding: 0.5rem;
    height: 75%;
    z-index: 2;
    display: flex;
    flex-basis: auto;
    justify-content: space-evenly;
    align-items: center;
    width: auto;
    /*    max-height:fit-content;
*/
}
.institution-gallery-button-text {
    word-wrap: normal;
    text-align: center;
    width: 100%;
    
    color: white;
    text-shadow: none;
    line-height: 22px;
}
div.institution-heading {
    display: flex;
    justify-content: space-between;
    max-width: 100vw;
    margin: 10px;
}
div.institution-description {
    white-space: pre-line;
    border-radius: 10px;
    flex-direction: column;
    display: flex;
}
div.institution-title {
    color: white;
    margin-bottom: 20px
}
div.institution-buttons-middle {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-left: auto;
    justify-content: space-evenly;
    width: 33%;
}

.institution-logo {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background-image: url(/css/assets/avatar-placeholder.gif); */
    background-position: center;
    background-size: cover;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

tr.institution-user-stats-row td{
    border: 1px solid black;
    border-collapse: collapse;
}
tr.institution-user-stats-rowheader td {
    font-weight: 600;
    border: 1px solid black;
    border-collapse: collapse;
}
tr.institution-user-stats-totalrow td {
    font-weight: 600;
    border: 1px solid black;
    border-collapse: collapse;
}

tr.institution-gallery-stats-row td {
    border: 1px solid black;
    border-collapse: collapse;
}

tr.institution-gallery-stats-rowheader td {
    font-weight: 600;
    border: 1px solid black;
    border-collapse: collapse;
}

tr.institution-gallery-stats-totalrow td {
    font-weight: 600;
    border: 1px solid black;
    border-collapse: collapse;
}

div.peopletags-list{
    margin: 1px;
    padding: 8px;
    text-align: center;
}
div.peopletags-buttons {
    padding: 8px;
    text-align: center;
}
div.canvas-wrapper {
    text-align: center;
}

@media only screen and (max-width: 800px) {
/*    header.site-header {
        display: none;
    }*/

    footer.site-footer {
        display: none;
    }
    div.left-registration-container {
        float: none;
        width: 100%;
        max-width: unset;
    }
        
    .form-block{
    max-width: unset;
                }
    div.right-registration-container {
        float: none;
        width: 100%;
    }



    .subscription-card-holder{
        display:flex;
        flex-direction: unset;
    }
}

@media only screen and (min-width: 800px) {
    /*header.site-header {
        display: flex;
    }*/

/*    footer.site-footer {
        display: flex;
    }
*/}
.cui-statusbar .cui-ctl, .cui-statusbar .cui-ctl-medium {
    display: none;
}

.people-actions-area {
    display: flex;
}

li.hidden{ display: none;}

div.pagination{
    min-width: 50px;
}


.embedpdf {
    max-width: 100%;
    max-height: 90vh;
    width: 100%;
    height: 100%;
}

.gallery-img {
    /* object-fit: contain; */
    max-height: 90vh;
    margin: auto;
    width: auto;
   /* height: 100%;*/
}
#personTagDrawingMessage {
    padding: 8px;
}
#folderAllowOCR {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}
#folderFRDuplicate {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}
#contentDuplicate {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}
#folderAllowFR {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}
#folderFRTagUnknown {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}
#allowGuestUpload {
    padding-top: 8px;
    padding-left: 12px;
    display: inline-flex;
    justify-content: space-between;
    text-align: left;
    align-content: flex-start;
    min-width: 100%;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: column;
}

.half-width {
    width: 50%;
}
.mr-3.half-width {
    text-align: center;
    max-height: 2rem;
}
.control-label.half-width { text-align: left; }

.surname-buttons {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    position: sticky;
    top: 0;
}
.surname-buttons span {
    text-align: center;
}
    .surname-buttons a { text-align: center; }
    .full-width-select { width: 100%;} 
    .show-people-notes ol { margin-bottom: 0;}

.merge-people-images-header {
    display: flex;
}
.merge-people-container {
    width: 50%  
}
.item--face{ width: auto;}

.allcontent-folder-block {
    display: flex;
    flex-direction: column;
    margin: 10px;
}
.allcontent-content-inner {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* width: 90vw; */
    margin: 10px;
}
    .allcontent-content-inner .image {
        max-height: 100px;
        width: auto;
        margin: 2px;
        width: 200px;
        height: 300px;
        text-align: center;
        background-position-x: 50%;
        background-position-y: 50%;
        background-size: contain;
        background-repeat: no-repeat;
    }
.tooltip-inner {
    white-space: pre-wrap;
}

.social-media-share {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#folderContentDisplay {
    overflow-y:auto
}

.outLimit {
    border-color: red;
    border-width: 2px;
    border-style: solid;
    opacity: 0.5;
}

.channel-content {
    align-items: center;
    display: flex;
}
.channel-notifications {
    display: flex;
    width: 100%;
    flex-direction: column;
    alignment-baseline: central;
}
.channel-notification {
    display: flex;
    flex-direction: row;
    width: 100%;
    /*max-height: 100px;*/
    margin-top: 5px
}
.channel-notification-list-item {
    border: thin silver solid;
    border-radius: 1rem;
/*    margin-top: 1rem;
    margin-bottom: 1rem;
*/
    width: 100%;
    
}
.channel-notification-details-text {
    background-color: rgba(0,0,0,0.05);
    padding: 5px;
}

.channel-notification-details {
    margin: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.channel-notification-content {
    margin: 10px;
    width: auto;
}
.channel-notification-content img {
    object-fit: contain;
    max-height: 100px;
}
channel-notification-img-more {
    
}
.channel-notification-content-single {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

span.view-all-text{
    font-size: 36px !important;
}
span.view-all-text:hover {
    text-decoration: none;
}
.channel-notification-img {
    margin: 10px;
    width: auto;
    object-fit: contain;
    /*max-height: 100px;*/
}
.channel-notification-details-header {
    width: 100%;
    display: flex;
}
.channel-notification-details-header-info {
    width: 100%;
    display: flex;
    flex-direction: column
}
.channel-notification-group {
    width: 100%;
    /* max-height: 61vh; */
    /* overflow-y: scroll; */
    padding-left: 5%;
    padding-right: 5%;
}
.channel-galleries-group {
    max-width: 70vw;
    overflow-y: auto;
}
.channel-outer {
    display: flex;
    flex-direction: row;
    width: -webkit-fill-available;
}
.channel-definition {
    display: flex;
}

.all-channel-galleries {
    width: 100%;
}
.channel-gallery{
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 5px;
}
.channel-gallery-add {
    width: 5%;
    max-height: 50px
}
.channel-gallery-add-img {
    margin-left: 10px;
    max-height: 50px
}
.channel-gallery-add-name {
    width: 70%;
    margin-left: 10px;
    max-height: 50px
}
.channel.is-active {
    background-color: var(--custom-col) !important;
    border-radius: 8px;
    color: white !important;
}
.channel {
    background-color: transparent;
    color: #4b4b4b;
}

#galleryPortalShow.is-active {
    background-color: var(--custom-col);
    color: white;
}
#galleryPortalShow:hover {
    /*background-color: transparent;*/
    text-decoration: none;
    color: #4b4b4b;
}
#galleryPortalShow {
    border-radius: 8px;
    background-color: transparent;
    color: var(--custom-col);
}
#homepageShow.is-active {
    background-color: var(--custom-col);
    color: white;
}
#homepageShow:hover {
    /*background-color: transparent;*/
    text-decoration: none;
    color: #4b4b4b;
}

#homepageShow {
    background-color: transparent;
    color: var(--custom-col);
    border-radius: 8px;
}
.channelNotificationLink {
    color: var(--custom-col);
    font-weight: bolder;
}

.channel-title {
    height: 63px;
    background-color: var(--custom-col);
    color: white;
}

.channel-actions {
    display: flex;
    max-width: 15%;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    padding: 10px;
}
.channel-actions a {
    font-size: 150%;
    color: inherit;
    text-decoration: none;
}
.channel-notification-details-text {
    display: flex;
    flex-direction: column;
}
.channel-notification-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.site-menu-flyout-tab {
    color: white;
    padding: 5px;
    background-color: var(--custom-col);
    margin-bottom: 2px;
    margin-top: 2px;
    top: 0;
    font-size: 1rem;
    font-weight: 600;
    display: none;
    max-width: 100px;
/*    position: absolute;*/
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
site-menu-flyout-tab-right {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}
#push-notifications {
    margin: auto;
    /* min-width: 50%; */
    text-align: center;
}
.push-notification-area {
    /*width: 100%;*/
    margin-left:auto;
    margin-right:auto;
    text-align: center;
    display: block;
}
#portalShareLink{
    fill: var(--custom-col);
    cursor: pointer;
}
#notifications {
    width: 100%;
}
#notification-icon{
    max-width: 60%;
    margin-left: auto;
    margin-right:auto;
}
.profile-area{
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 800px) {
    .site-menu-flyout-tab {
        display: block;
 /*       position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 100 !important*/
    }
    .site-sidebar {
         /* display: none; */
    }
    #push-notifications {
/*        position: absolute;
        top: 10px;
        left: 100px !important;
*/    }

}

.connector-details {
    /*display: flex;*/
}
.connector-details-group {
/*    display: flex;
    flex-direction: column;*/
    text-align: center;
/*    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 2px 3px 0px;
    margin: 1em;
*/}
.facebook-pages {
    margin: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 2px 3px 0px;
    margin: 1em;
}

.facebook-page {
    display: flex;
    flex-direction: column;
}

.facebook-page-header {
    display: flex;
    flex-direction: row;
}

.facebook-page-albums {
    display: flex;
    flex-direction: column;
}

.facebook-pages-title h2 {
    margin: 5px;
}

.facebook-pages-title p {
    margin: 5px;
}

.facebook-groups {
    margin: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 2px 3px 0px;
    margin: 1em;
}

.facebook-group {
    display: flex;
    flex-direction: column;
}

.facebook-group-header {
    display: flex;
    flex-direction: row;
}

.facebook-group-albums {
    display: flex;
    flex-direction: column;
}

.facebook-autopost {
    height: 100%;
    min-width: 50px;
}

.connector-autopost {
    margin-top: auto;
    margin-bottom: auto;
    vertical-align: middle;
    height: 100%;
}

.facebook-album {
    display: flex;
    flex-direction: row;
}

.facebook-albums {
    padding-left: 10%;
    display: flex;
    flex-direction: column;
}
.facebook-connector-actions {
    display: flex;
    flex-direction: column;
}
.facebook-connector-actions-info {
    display: flex;
    flex-direction: column;
}
.facebook-connector-actions-btn {
    display: flex;
    flex-direction: row;
}
.facebook-connector-actions-wrapper {
    display: flex;
    flex-direction: column;
}


.linkedin {
    margin: 15px;
    display: flex;
    flex-direction: row;
}

.linkedin-page {
    display: flex;
    flex-direction: row;
}

.linkedin-page-header {
    display: flex;
    flex-direction: row;
}

.linkedin-page-albums {
    display: flex;
    flex-direction: column;
}

.linkedin-pages-title h2 {
    margin: 5px;
}

.linkedin-pages-title p {
    margin: 5px;
}

.linkedin-groups {
    margin: 15px;
    display: flex;
    flex-direction: column;
}

.linkedin-group {
    display: flex;
    flex-direction: column;
}

.linkedin-group-header {
    display: flex;
    flex-direction: row;
}

.linkedin-group-albums {
    display: flex;
    flex-direction: column;
}

.linkedin-autopost {
    height: 100%;
    min-width: 50px;
}

.linkedin-group-autopost {
    margin-top: auto;
    margin-bottom: auto;
    vertical-align: middle;
    height: 100%;
}

.linkedin-album {
    display: flex;
    flex-direction: row;
}

.linkedin-albums {
    padding-left: 10%;
    display: flex;
    flex-direction: column;
}

.linkedin-connector-actions {
    display: flex;
    flex-direction: column;
}

.linkedin-connector-actions-info {
    display: flex;
    flex-direction: column;
}

.linkedin-connector-actions-btn {
    display: flex;
    flex-direction: row;
}

.linkedin-connector-actions-wrapper {
    display: flex;
    flex-direction: column;
}



.ui-draggable, .ui-droppable {
    background-position: top;
}

.slider-container {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.dateTicks {
    /* min-width: 100%; */
    display: flex;
    flex-direction: row;
    border-collapse: collapse;
}
#dateTickResultsWrapper {
    transform: rotate(180deg);
    /* overflow-y: auto; */
}
#dateTicksResults {
    position: sticky;
    z-index: 0;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    /* overflow-y: scroll; */
    /* transform: rotate(180deg); */
}
#resultsItems {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}
#results {
    position: relative;
}

.yearTick span {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.yearTick {
    border-left-width: 1px;
    border-left-color: black;
    border-left-style: dashed;
    border-right-width: 1px;
    border-right-color: black;
    border-right-style: dashed;
    border-collapse: collapse;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: x-small;
    text-align: center;
    display: flex;
}
.monthTick {
    border-left-width: 1px;
    border-left-color: black;
    border-left-style: dashed;
    border-right-width: 1px;
    border-right-color: black;
    border-right-style: dashed;
    border-collapse: collapse;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: x-small;
    text-align: center;
    display: flex;
}

.yearTick-start {
    border-right-width: 1px;
    border-right-color: black;
    border-right-style: dashed;
    border-collapse: collapse;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: x-small;
}

.yearTick-end {
    border-left-width: 1px;
    border-left-color: black;
    border-left-style: dashed;
    border-collapse: collapse;
    writing-mode: vertical-lr;
    text-orientation: upright;
    font-size: x-small;
}
.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 95%;
    height: 30px;
    background: #f3126d;
    outline: none;
    opacity: 0.8;
    -webkit-transition: .3s;
    transition: opacity .3s;
}

.slider:hover {
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    background-color: #c1462f;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 30px;
    height: 30px;
    background-color: #f1f856;
    cursor: pointer;
}

.results-content-item {
    margin: 2px;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.results-content-item-real {
    padding: 2px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-color: red;
    border-width: 1px;
    border-style: dotted;
}
.results-content-item-real img {
    /* margin: 5px; */
}
    .containerHeader {
        border-left-width: 1px;
        border-left-color: black;
        border-left-style: dashed;
        border-collapse: collapse;
        display: flex;
        flex-direction: column;
    }
.containerHeader-first {
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
}
.yearContainer {
    border-collapse: collapse;
    /*    writing-mode: vertical-lr;
    text-orientation: upright;
*/ font-size: x-small;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
}
.monthContainer {
    border-collapse: collapse;
/*    writing-mode: vertical-lr;
    text-orientation: upright;*/
    font-size: x-small;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
}
.dayContainer {
    height: 100%;
    width: 100px;
    flex-direction: column;
    display: flex;
}

#social-media-message {
    resize: both;
    width: 100%;
}

.connector-detail-left {
    text-align: left;
    vertical-align:
    middle;
    margin-top: auto;
    margin-bottom: auto;
}
.connector-detail {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 0px 2px 3px 0px;
    margin: 5px;
    padding: 2px;
}
.imgs-grid{
    width: 100%;
    
}
.imgs-grid-image {
    margin-left: auto;
    margin-right: auto;
    background-color: transparent !important;
}
    .connector-detail-image {
    padding: 1em;
}
.connector-detail-tick {
    vertical-align: middle;
}
.connector-detail-tick input{
    margin-top: auto;
    margin-bottom: auto;
}


.bioentries {
    width: 700px;
}
.bio-entry {
    display: flex;
    flex-direction: column
}
.bio-section {
    font-weight: 700;
    padding-top: 10px;
    padding-bottom: 10px;
}
.bio-content {
    text-align: left;
    max-width: 95%;
    padding-bottom: 10px;
    white-space:pre-wrap;
    /*padding: 20px;*/
}

.number { margin-left: auto; margin-right: auto;}

.row-highlight:hover {
    cursor: pointer;
    background-color: #efefef;
}
.row-highlight {

}


#homeNavigation {
    
}
#homeNavigation svg {
    stroke: var(--custom-col);
    height: 50px;
    width: 50px;
}
#pushNotificationsSubscribe svg {
    stroke: var(--custom-col);
    height: 50px;
    fill: var(--custom-col);
    width: 50px;
}
#pushNotificationsSubscribe {
    animation-name: pulseNotifications;
    animation-delay: 5s;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    background-color: transparent;
    border-radius: 50%;
}
#pushNotificationsUnsubscribe {
    background-color: transparent;
    border-radius: 50%;
    width: 50px;
}
#pushNotificationsUnsubscribe svg {
    stroke: red;
    fill: red;
    height: 50px;
    width: 50px;
    opacity: 0.2;
 }
#notificationsListArea {
    background-color: white;
    position: fixed;
    border: thin silver groove;
    border-radius: 1rem;
    padding: 1rem;
}
#notificationsArea{
    width: 100%;
}
#notificationsArea svg {
    stroke: var(--custom-col);
    fill: var(--custom-col);
}
@-webkit-keyframes pulseNotifications {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    1% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    2% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    3% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    4% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    5% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    6% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    7% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    8% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    9% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    10% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

#channelEventAttendees {
    display: flex;
    flex-direction: row;
}

#map {
    height: 100%;
}
#notifications {
    background-color: transparent;
    margin-left: 0.1rem;
    margin-right: 0.1rem;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
    border-radius: 0.1rem;
    max-width: 100px
}

.notificationCount.pulse {
    animation-name: pulseNotifications;
    animation-delay: 5s;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}
.notificationCounts{
    display: flex;
    flex-direction:row;
    flex-wrap: nowrap;
    width:100%;
    justify-content:space-evenly
}
.notification {
    background-color: transparent;
    min-width: 25vw;
}
.notification.unread span {
    font-weight: bold;
}
.notificationActionArea {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#notificationsList {
    max-height: 50vh;
    overflow-y: scroll;
}

.notificationDetails {
    display: flex;
    flex-direction: column;
}

.notificationsCount {
    color: var(--custom-col);
    background-color white;
    /*text-shadow: -0.1em -0.1em 0.2em #000, 0.1em 0.1em 0.2em #000, -0.1em 0.1em 0.2em #000, 0.1em -0.1em 0.2em #000;*/
}   
    .notificationsCount svg {
        fill: var(--custom-col);
}
.peopleConnectionItem {
    display: flex;
    justify-content: space-around;
    margin: 0.5rem;
}
.peopleConnectionHeader {
    display: flex;
    justify-content: space-around;
    margin: 0.5rem;
}

.connection-title {
    display: flex;
    justify-content:space-around;
}
.connection-title-item {
    margin: 0.25rem;
    display: flex;
    flex-direction: column;
    align-content: center;
}
.connection-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.connection-item {
    margin: 0.25rem;
}

.reactions {
    display: flex;
    cursor: pointer;
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.5rem;
    justify-content: center;
}

.reacted {
    font-weight: bolder;
}

.thisReaction {
    padding: 0.5rem;
}
.ogdata {
    margin: 0.5rem;
    padding: 2rem;
    border: thin silver groove;
    display: flex;
    align-items: center;
    height: 100px;
    width: auto;
    justify-content: left;
}

.folder-counts {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(126, 126, 126, 0.45);
    /* visibility: hidden; */
    opacity: 0;
    z-index: 1;
    transition: all .2s ease-in-out;
}

.institution-gallery-grid-img:hover > .folder-counts {
    visibility: visible;
    opacity: 0.8;
}
.gallery-item:hover > .folder-counts {
    visibility: visible;
    background-color: black;
    opacity: 0.8;
    border-radius: 6px;
}
.gallery-item .folder-counts {
    background-color: rgba(126, 126, 126, 0.8);
}

.institution-gallery-grid-img .folder-counts {
    background-color: rgba(126, 126, 126, 0.8);
}

.folder-folder-count {
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.25rem;
    /* position: absolute; */
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    height: 100%;
    -ms-flex-align: center;
    align-items: center;
    bottom: .75rem;
    right: .75rem;
}
.folder-reaction-count .reactions {
    
}

.folder-reaction-count {
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.25rem;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    top: .75rem;
    right: .75rem;
}
/*.institution-gallery-grid-img .folder-folder-count {
    bottom: 0;
    height: 100%;
}*/

/*.institution-gallery-grid-img:hover .folder-counts {
    opacity: 0;
}*/

.folder-gallery-count {
    background-color: transparent;
    border-radius: 0.5rem;
    padding: 0.25rem;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -ms-flex-align: center;
    align-items: center;
    bottom: .75rem;
    right: 4.75rem;
    margin-left: .75rem;
}

.folder-gallery-count svg {
    width: 16px;
    height: 16px;
    fill: black;
    margin-right: .5rem;
}

.folder-gallery-count span {
        color: black;
        font-weight: bold;
}
.folder-folder-count svg {
    width: 16px;
    height: 16px;
    fill: black;
    margin-right: .5rem;
}

.folder-folder-count span {
    color: white;
    margin-left:auto;
    margin-right:auto;
    font-weight: bold;
}

.centered-label {
    margin-top: auto;
    margin-bottom: auto;
}
.ql-container {
    /*    min-height: 200px;*/
    height: auto !important;
    overflow: scroll;
    max-height: 600px;
}

.currency-input{
    text-align: right;
}


.input-icon > input {
    padding-left: 25px;
    padding-right: 0;
    text-align: right;

}
.input-icon {
    position: relative;
    margin-top: auto;
    margin-bottom: auto;
}

.input-icon > i {
    position: absolute;
    display: block;
    transform: translate(0, -50%);
    top: 50%;
    pointer-events: none;
    width: 25px;
    text-align: center;
    font-style: normal;
    margin-top: auto;
    margin-bottom: auto;
}

.numeric-heading {
    text-align: right;
}
.currency{
    max-width: 100%;
}
.currency:disabled {
    border-width: 0;
    background-color: inherit;
}
.central-in-row {
    margin-top: auto;
    margin-bottom: auto;
}


.ql-editor .ql-align-center img{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.upload-layout__detail{
    margin-left: 20px;
}

#profile-items{
    width: 20%;
}

#profileArea{
    width: 50%;
}

#profile-menu{
    background-color: white;
    z-index: 999;
}

.ocr-highlight{
    color: red;
}

.search-year{
    background-color: var(--custom-col);
    color: white;
}

.note-merge{
    width: 50vw;
}


.constituentAction.overdue .actionAction{
    background-color: red;
}

.constituentBadge {
    border-radius: 8px;
    border: thin silver groove;
    padding: 8px;
    margin: 8px;
    color: white;
    text-decoration-line: none;
}

.consituent-form-row{
    margin-bottom: 2px;
}

p.no-access{
    text-align: center;
    font-size: x-large;
    font-style: normal;
    font-weight: bolder;
}

.updateContact{
    cursor: pointer;   
}
.addNewContact {
    cursor: pointer;
}

/*.note-toolbar{
    position: sticky !important;
    top: 0;
}*/

#editCatalogueIdInput:disabled{
    border-width: 0;
    border-style: none;
}

#updateParentFondId {
    min-width: max-content !important;
    right: 0;
}
#parentFondId {
    min-width: max-content !important;
    max-width: 100vw;
    left: 0;

}

#content-custom-data{
    width: 90%;
}