﻿[data-theme=light],
:root:not([data-theme=dark]) {
    --neutralPrimary: #babac0;
    --neutralPrimaryAlt: #666;
    --neutralSecondary: #a0a0a5;
    --app-box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14);
    --isDarkDisplay: none;
    --isLightDisplay: unset;
    --logoFilter: unset;
}

[data-theme=dark] {
    --neutralPrimary: #babac0;
    --neutralPrimaryAlt: #666;
    --neutralSecondary: #a0a0a5;
    --app-box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14);
    --isDarkDisplay: unset;
    --isLightDisplay: none;
    --logoFilter: invert(1);
}
    @media only screen and (prefers-color-scheme: dark) {
        :root:not([data-theme]) {
            --neutralPrimary: #babac0;
            --neutralPrimaryAlt: #666;
            --neutralSecondary: #a0a0a5;
            --app-box-shadow: 0 0 2px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.14);
            --isDarkDisplay: unset;
            --isLightDisplay: none;
            --logoFilter: invert(1);
        }
    }


@media (max-width: 1024px) {
    .viewportWarning {
        display: grid;
    }
    .mainContainer {
        display: none !important;
    }
/*    .nav {
        display: none;
        position: fixed;
        inset: 0 0 0 0;
        width: unset !important;
        padding-right: 16px !important;
        z-index: 101;
        background-color: var(--app-background-color);
        box-shadow: 1px 1px 3px 0 rgba(0,0,0,.25);
    }
        .nav.show {
            display: block;
        }*/
}
@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
    .viewportWarning {
        display: none;
    }
    .mainContainer {
        display: grid;
    }
/*    .nav {
        display: block;
        position: relative;
        top: 0;
    }
    .mobileMenu {
        display: none;
    }*/
}

@media (min-width: 1280px) {
    .hide1280 {
        display: none;
    }
}

@media (min-width: 1536px) {
    
}

/* Utility */
.isDark {
    display: var(--isDarkDisplay);
}
.isLight {
    display: var(--isLightDisplay);
}
.text-right {
    text-align: right;
}
/* ::placeholder {
    color: var(--pico-color-grey-200) !important;
} */
.floatRight {
    float: right;
}
.floatLeft {
    float: left;
}

.header .logo,
.splash svg {
    filter: var(--logoFilter);
}

    body {
        position: relative;
        /*min-width: 950px;*/
    }

    button.withIcon {
        display: grid;
        grid-template-columns: max-content max-content;
        justify-content: center;
        align-items: center;
        column-gap: 7px;
        width: max-content;
        white-space: nowrap;
    }
    button.icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: max-content;
        height: max-content;
        white-space: nowrap;
        line-height: var(--pico-line-height);
        padding: 7px 8px !important;
    }
    button.small {
        padding: 4px 8px;
    }
    button.danger {
        background-color: var(--pico-color-red-450);
        border-color: var(--pico-color-red-550);
    }
    button.danger:hover {
        background-color: var(--pico-color-red-400);
    }
    button.iconOnly {
        padding: 0;
        margin: 0;
        line-height: 0;
    }
    button.transparent {
        color: var(--pico-contrast);
        background-color: transparent;
        border-color: transparent;
        box-shadow: none;
    }
    button.transparent.danger {
        color: var(--pico-color-red-550);
    }
    button.transparent.danger:hover {
        background-color: transparent;
    }
    button.linkButton {
        background-color: unset;
        display: grid;
        grid-template-columns: min-content max-content;
        justify-self: end;
        column-gap: 3px;
        align-items: center;
        border: none;
        box-shadow: none;
        color: var(--pico-primary);
        padding: 0;
        font-weight: 600;
    }
    button.system {
        padding: 2px 7px;
        font-size: 10px;
    }
    button.system > svg {
        width: 12px;
    }
    button.system:hover {
        /* background-color: var(--pico-color-grey-400); */
    }
    button:disabled {
        box-shadow: none;
        opacity: 0.2;
    }
    .iconLink {
        display: grid;
        grid-template-columns: auto auto;
        column-gap: 5px;
    }
    .appBG {
        background-color: var(--app-background-color);
    }

    
    .actionFakeInlineInput {
        background-color: transparent;
        padding: 2px var(--pico-form-element-spacing-horizontal) 5px 5px;
        min-height: 24px;
        line-height: 24px;
        font-size: 12px;
        /* display: inline-block; */
        width: 100%;
        cursor: pointer !important;
    }
    .actionFakeInlineInput > * {
        margin: 0;
    }
    h3.actionFakeInlineInput {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 30px;
        height: 30px;
        margin-bottom: 0;
        width: fit-content;
        min-width: 250px;
    }
    .actionFakeInlineInput:hover {
        background-color: var(--pico-form-element-background-color);
        border-color: var(--pico-form-element-background-color);
    }

    input.h3, .measure.h3 {
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.175;
        margin: 0;
    }

.viewportWarning {
    position: absolute;
    inset: 0 0 0 0;
    z-index: 2147483647;
    align-content: center;
    justify-content: center;
    text-align: center;
    line-height: 2;
    background-color: var(--app-background-color);
}
.viewportWarning_Icon {
    display: grid;
    justify-content: center;
    margin-bottom: 15px;
    color: blue;
}
    .viewportWarning_Icon svg {
        /* gradient and fallback color */
        fill: url(#blueGrad) #0ff;
        box-shadow: 0 0 19px 1px rgba(0, 255, 255, .3);
    }

.scrollbar {
    overflow: auto;
    /* position: relative; */
}
        .scrollbar::-webkit-scrollbar-button:vertical:end:decrement {
            display: none;
        }

        .scrollbar::-webkit-scrollbar-button:vertical:start:increment {
            display: none;
        }
    .scrollbar::-webkit-scrollbar-button:horizontal:increment {
        background: conic-gradient(at 50% 50%,var(--pico-background-color) 0 225deg,var(--neutralSecondary) 225deg 315deg,var(--pico-background-color) 0)
    }

        .scrollbar::-webkit-scrollbar-button:horizontal:increment:hover {
            background: conic-gradient(at 50% 50%,var(--pico-background-color) 0 225deg,var(--neutralPrimaryAlt) 225deg 315deg,var(--pico-background-color) 0)
        }

    .scrollbar::-webkit-scrollbar-button:horizontal:decrement {
        background: conic-gradient(at 50% 50%,var(--pico-background-color) 45deg,var(--neutralSecondary) 0deg,var(--neutralSecondary) 135deg,var(--pico-background-color) 0)
    }

        .scrollbar::-webkit-scrollbar-button:horizontal:decrement:hover {
            background: conic-gradient(at 50% 50%,var(--pico-background-color) 45deg,var(--neutralPrimaryAlt) 0deg,var(--neutralPrimaryAlt) 135deg,var(--pico-background-color) 0)
        }

    .scrollbar::-webkit-scrollbar-button:vertical:increment {
        background: conic-gradient(at 50% 50%,var(--neutralSecondary) 45deg,var(--pico-background-color) 0,var(--pico-background-color) 315deg,var(--neutralSecondary) 0)
    }

        .scrollbar::-webkit-scrollbar-button:vertical:increment:hover {
            background: conic-gradient(at 50% 50%,var(--neutralPrimaryAlt) 45deg,var(--pico-background-color) 0,var(--pico-background-color) 315deg,var(--neutralPrimaryAlt) 0)
        }
  /*  .scrollbar::-webkit-scrollbar-button:vertical:decrement {
        background: conic-gradient(at 50% 50%,var(--pico-background-color) 135deg,var(--neutralSecondary) 0,var(--neutralSecondary) 225deg,var(--pico-background-color) 0);
    }*/

    .scrollbar::-webkit-scrollbar-button:single-button:horizontal, .scrollbar::-webkit-scrollbar-button:single-button:vertical {
        border: 5px solid var(--pico-background-color)
    }

        .scrollbar::-webkit-scrollbar-button:single-button:vertical:decrement {
            background: conic-gradient(at 50% 50%,var(--pico-background-color) 135deg,var(--neutralSecondary) 0,var(--neutralSecondary) 225deg,var(--pico-background-color) 0);
            background-repeat: no-repeat
        }

            .scrollbar::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
                background: conic-gradient(at 50% 50%,var(--pico-background-color) 135deg,var(--neutralPrimaryAlt) 0,var(--neutralPrimaryAlt) 225deg,var(--pico-background-color) 0);
                background-repeat: no-repeat
            }

    .scrollbar::-webkit-scrollbar {
        height: 18px;
        width: 18px
    }

        .scrollbar::-webkit-scrollbar:disabled {
            display: none
        }

    .scrollbar::-webkit-scrollbar-button, .scrollbar::-webkit-scrollbar-corner {
        background: var(--pico-background-color);
        cursor: pointer
    }

        .scrollbar::-webkit-scrollbar-button:vertical:decrement, .scrollbar::-webkit-scrollbar-button:vertical:decrement:hover, .scrollbar::-webkit-scrollbar-button:vertical:increment, .scrollbar::-webkit-scrollbar-button:vertical:increment:hover {
            background-repeat: no-repeat;
            height: 16px;
            width: 18px
        }

        .scrollbar::-webkit-scrollbar-button:horizontal:decrement, .scrollbar::-webkit-scrollbar-button:horizontal:decrement:hover, .scrollbar::-webkit-scrollbar-button:horizontal:increment, .scrollbar::-webkit-scrollbar-button:horizontal:increment:hover {
            background-repeat: no-repeat;
            height: 18px;
            width: 16px
        }

    .scrollbar::-webkit-scrollbar-track {
        background: var(--pico-background-color);
    }

    .scrollbar::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb:hover {
        background-clip: content-box;
        border: 6px solid var(--pico-background-color);
        border-radius: 9px
    }

    .scrollbar::-webkit-scrollbar-thumb {
        background-color: var(--neutralSecondary)
    }

        .scrollbar::-webkit-scrollbar-thumb:hover {
            background-color: var(--neutralPrimaryAlt)
        }

        .scrollbar::-webkit-scrollbar-thumb:vertical {
            min-height: 50px
        }

        .scrollbar::-webkit-scrollbar-thumb:horizontal {
            min-width: 50px
        }

    .link {
        cursor: pointer;
        font-weight: 600;
    }
    .link:hover {
        color: var(--pico-primary);
    }

    .header {
        grid-area: header;
        display: flex;
        align-items: center;
        padding: 0 15px;
        /* z-index: 100; */
    }
    .header > div {
        display: grid;
        width: 100%;
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        align-items: center;
        /*padding: 10px 15px;*/
    }  
    .headerWell {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        font-weight: 600;
    }
    .headerWell .btn {
        margin-left: 5px;
        padding: 5px 10px;
        line-height: 0;
        border-radius: 5px;
        cursor: pointer;
        border-bottom: none;
    }
    .headerWell .btn:hover {
        background-color: var(--pico-background-color);
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 1px 2px -1px;
    }
    .header .dark {opacity: .7}
    .headerIcon {
        height: 16px;
    }

    .mainContent {
        grid-area: mainContent;
        overflow: hidden;
        position: relative;
        padding: 0 15px;
    }


.nav {
    position: relative;
    grid-area: nav;
    width: 206px;
    padding: 30px 0 15px 15px;
    margin-top: 5px;
}
    .navigation > * {
        padding-left: 15px;
    }   
    .nav h6 {
        text-transform: uppercase;
        font-weight: 900;
        font-size: 11px;
    }
.nav hr {
    margin: 12px 0px;
}
.navItem {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 10px;
    align-items: center;
    margin-bottom: 15px;
    border-left: 2px solid transparent;
}
    .navItem.active {
        border-left-color: var(--pico-primary);
        color: var(--pico-primary);
        font-weight: 600;
    }
    .navItem:not(.active):hover {
        border-left-color: var(--pico-primary-light);
    }
    .navIcon {
        width: 16px;
    }
    .h3Icon {
        height: 30px;
    }
    svg.logo {
        height: 33px;
    }
    .icon {
        height: 16px;
    }
    .icon .navIcon {
        /* opacity: 0.4; */
    }

.titleBar {
    display: grid;
    grid-template-columns: auto max-content;
    padding: 28px 15px !important;
    align-items: center;
    align-content: center;
}
.titleBar.pod > div {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    margin-right: 15px;
}
.titleBar .mobileMenu {
    margin-right: 15px;
}
.titleBar > * {
    margin: 0;
}
.titleBar .search > input {
    margin: 0;
    padding-right: 30px;
}
.titleBar .search .clearSearch {
    display: inline-flex;
    margin-left: -22px;
    cursor: pointer;
}
.titleBar > h5 {
    display: flex;
    gap: 5px;
}

.pageTitle {
    display: grid;
    grid-template-columns: min-content max-content;
    column-gap: 5px;
    align-items: center;
    width: fit-content;
    white-space: nowrap;
    line-height: 15px;
}
.pageTitle h3 {
    display: inline-block;
    margin: 0;
}
.pageTitle h3 small {
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    margin-left: 5px;
}
.pageTitle h3 > .ownerName {
    display: inline-block;
    max-width: 300px;
    text-overflow: ellipsis;
    overflow: hidden;
    vertical-align: bottom;
}
.pageTitle .smallIcon {
    width: 13px;
    vertical-align: middle;
}
.pageTitle .ownerId {
    border-left: 2px double var(--pico-color);
    padding: 3px 10px;
    margin-left: 10px;
}
.clickable tbody tr {
    cursor: pointer;
}
.clickable tbody tr:hover {
    outline: 2px solid var(--pico-primary);
    outline-offset: -2px;
}


    .mainContainer {
        position: absolute;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-template-rows: 50px 1fr;
        grid-template-areas:
            "header header"
            "nav mainContent";
        inset: 0 0 0 0;
        padding: 0;
    }


.screen {
    opacity: 0;
    position: relative;
    /* border-radius: 5px; */
    display: grid;
    grid-template-rows: 77px auto;
    /* row-gap: 10px; */
    overflow: hidden !important;
    height: 100%;
}
.screen.isPaged {
    grid-template-rows: 50px auto 50px;
}
.screen.paged .searchResults {
    padding-top: 0;
}
.screen.show {    
    animation: fade-in cubic-bezier(0.165, 0.840, 0.440, 1.000) 500ms forwards;
}
    .mapScreen {
        height: 100%;
        grid-template-rows: auto 1fr;
    }
#mapCover {
    position: absolute;
    background-color: rgb(3 169 244 / 13%);
    border-radius: 11px;
    opacity: 0;
    z-index: 999;
    cursor: pointer;
    transition: opacity .3s ease;
    color: #333;
}
#mapCover:hover {
    opacity: 1;
}

    /* Styles */
.sticky {
    position: sticky;
    top: 0px;
    z-index: 2;
}
.splash {
    position: absolute;
    inset: 0 0 0 0;
    display: grid;
    align-items: center;
    justify-items: center;
    background-color: var(--app-background-color);
    z-index: 10000;
}
.float-right {
    float: right;
}

.pod {
    background-color: var(--pico-background-color);
    /* border-radius: 5px; */
    padding: 24px;
    /* box-shadow: var(--app-box-shadow), 10px 0 0 var(--app-background-color), -10px 0 0 var(--app-background-color), 0 -10px 0 var(--app-background-color), -3px -10px 0 var(--app-background-color), 3px -10px 0 var(--app-background-color); */
}
.pod.shadow {
    padding-top: 0;
    z-index: 0;
}
 /*   .pod:last-child {
        margin-bottom: 15px;
    }*/
    .pod > h4:last-child {
        margin-bottom: 0;
    }
.stickyShadow {
    position: sticky;
    top: 0;
    margin-left: -24px;
    margin-right: -24px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,0.9);
    background-color: var(--pico-background-color);
    height: 1px;
    margin-bottom: 24px;
    z-index: 1000;
}
.stickyShadowCover {
    position: absolute;
    height: 24px;
    background-color: var(--pico-background-color);
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}
thead.sticky {
    position: sticky;
    top: 0px;
    box-shadow: 0 -24px 0 var(--pico-background-color);
}
.paged thead.sticky {
    top: 25px;
}
thead.sticky::after {
    content: '';
    background-color: var(--pico-table-border-color);
    position: absolute;
    top: 32px;
    height: 2px;
    width: 100%;
}
thead th {
    box-shadow: inset 0 -1px 0 var(--pico-table-border-color);
    white-space: nowrap;
}
td {
    vertical-align: top;
}
tbody.hover > tr {
    cursor: pointer;
}
tbody.hover > tr:hover > td {
    background-color: rgba(0,0,0,.03);
}

.entry {
    display: grid;
    grid-template-columns: auto max-content;
    grid-template-areas: "chapter page";
    align-items: end;
    gap: 0 10px;
    margin-bottom: 5px;
}
  .numberOrEmail {
    grid-area: chapter;
    position: relative;
    overflow: hidden;
  }  
  .XXXnumberOrEmail::after {
    position: absolute;
    padding-left: 10px; /* customise the padding to your needs */
    /* adjust the amount of dots to your needs */
    content: " . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . "
      ". . . . . . . . . . . . . . . . . . . . . . . ";
    text-align: right; /* optional, can be removed */
  }  
  .include {
    grid-area: page;
  }
  .include svg {
    vertical-align: middle;
  }

  .ownershipHeader {
    display: grid;
    grid-template-columns: 1fr max-content;
    column-gap: 5px;
    align-content: space-between;
}
.ownerInfoTab {
    display: grid;
    grid-template-columns: max-content auto;
    /* justify-content: space-between; */
    gap: 15px;
}
.mailingAddress > div {
    display: grid;
    grid-template-columns: 47px auto;
    align-content: center;
}
.mailingAddress.edit > div {
    cursor: pointer;
}

section {
    background-color: var(--app-background-color);
    padding: 15px;
    border-radius: 7px;
}
.sectionHeader {
    display: grid;
    grid-template-columns: auto max-content;
}
dialog section {
    margin-bottom: 15px;
}

.contentPanel {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: 250px;
}
.leftDataColumn {
    min-width: 200px;
    max-width: 250px;
    padding: 0 30px 0 0;
}
.columnGridMin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45px, max-content));
}
.columnGridMax {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
}
.columnGridMax > div:last-child {
    text-align: right;
}
.ownerChooseGrid {
    display: grid;
    grid-template-columns: max-content min-content;
    column-gap: 10px;
    align-items: center;
    justify-content: space-between;
}
.buttonGrid {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 5px;
}
.contactList {
    margin: 5px 0 15px 18px;
    display: grid;
    row-gap: 5px;
}
.data {
    display: block;
    margin-bottom: 10px;
}

.info {
    font-size: 11px;
    margin: 5px 0;
    background-color: var(--app-background-color);
    padding: 10px;
    border-radius: 5px;
}
.info svg {
    display: inline;
    vertical-align: middle;
}

.tabbedSection {
    margin-top: 25px;
    display: grid;
    grid-template-rows: auto auto;
}
.tabs {
    display: grid;
    grid-auto-flow: column;
    justify-content: left;
    column-gap: 30px;
    border-bottom: 4px solid var(--app-background-color);
    margin: 0 -24px 25px;
    padding: 0 24px;
}
.tabs > div {
    padding: 6px 1px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    margin-bottom: -3px;
    font-weight: 600;
    opacity: .5;
}
.tabs > div:not(.active):hover {
    border-bottom-color: var(--pico-focus);
}
.tabs > .active {
    border-bottom-color: var(--pico-primary);
    opacity: 1;
}
table.nowrap th,
table.nowrap td {
    white-space: nowrap;
}
.noRecords {
    background-color: var(--app-background-color);
    padding: 15px;
    margin-top: 15px;
}
.empty {
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
}
.empty > .emptyStateIcon {
    margin: 10px auto;
    width: 35px;
}
.empty.noEdit {
    /* color: var(--pico-color-grey-400) !important; */
    padding: 25px;
}
.empty.noEdit h4 {
    /* color: var(--pico-color-grey-400) !important; */
}
.empty > * {
    opacity: .7;
}
.empty > button {
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}
#mapCover.empty > * {
    opacity: 1;
}

small.pill {
    background-color: var(--pico-color-amber-150);
    color: #333;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
}

.propertyEditor {
    display: grid;
    row-gap: 15px;
}
div.th {
    font-weight: bold;
}
div.editList {
    display: grid;
    grid-template-columns: max-content min-content;
    row-gap: 10px;
    column-gap: 15px;
    margin-top: 5px;
    align-items: center;
    margin-bottom: 15px;
}



.UIDimmer {
    visibility: hidden;
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
    background: var(--pico-modal-overlay-background-color);
    opacity: 0;
    line-height: 1;
    transition: opacity .25s ease-in;
    user-select: none;
    will-change: opacity;
    z-index: 2000;
}

    .UIDimmer.show {
        visibility: visible;
        opacity: 1;
    }

    .UIDimmer > .message {
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: 33px;
        text-align: center;
        width: 100%;
    }

    .UIDimmer > .loader {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 50px;
        margin: 0 0 0 -25px;
        text-align: center;
        z-index: 1000;
        transform: translateX(-50%) translateY(-50%);
    }

        .UIDimmer > .loader:before {
            position: absolute;
            content: '';
            top: 0%;
            left: 50%;
            width: 100%;
            height: 100%;
            border-radius: 500rem;
            border: 0.2em solid rgba(0, 0, 0, 0.1);
        }

        .UIDimmer > .loader:after {
            position: absolute;
            content: '';
            top: 0%;
            left: 50%;
            width: 100%;
            height: 100%;
            animation: loader 0.6s linear infinite;
            border-radius: 500rem;
            border-style: solid;
            border-width: 0.2em;
            box-shadow: 0px 0px 0px 1px transparent;
            border-color: #54c8ff #54c8ff #E4E4E4 #E4E4E4;
        }



/*ANIMATIONS*/
.fadeOut {
    animation: fade-out ease-out 1000ms forwards;
}
.fadeOutFast {
    animation: fade-out ease-out 500ms forwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }     
    to {
        opacity: 1;
    }
}
@keyframes fade-out {
    from {
        opacity: 1;
    }     
    to {
        opacity: 0;
    }
}
@keyframes loader {
    100% {
        transform: rotate(360deg);
    }
}  