@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

:root {
    --font-1: "Onest", sans-serif;

    --color-primary: #289ec9FF;
    --color-primary-light: #289ec9EE;
    --color-secondary: #1b5070FF;
    --color-secondary-light: #1b5070EE;

    --color-white: #FFFFFF;

    --background-gradient: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(222,222,222,1) 100%);
    --background-gradient-theme: linear-gradient(0deg, rgba(40, 158, 201, 1) 0%, rgba(27, 80, 112, 1) 100%);
}

* {
    font-family: "Onest", sans-serif;
}

html {
    scroll-behavior: smooth;
    background: #FFF;
}
body {
    font-family: var(--font-1);
    margin: 0;
    padding: 0;
    background-color: transparent;
    overflow: hidden
}

#loader {
    z-index: 2025! important;
    position: fixed;
}
.hidden {
    display: none !important
}
.si.cursor {
    cursor: pointer;
}
.si.hide {
    display: none !important
}
.si.full.height{
    height:100%;
}
.si.flex{
    display: flex !important;
    flex-direction: column;
}
.si.grow{
    flex-grow: 1;
}
.si.overflow{
    overflow-y: auto;
    overflow-x: hidden;
}
.si.overflow.none {
    overflow: hidden !important
}
.si.padding.none {
    padding: 0 !important
}
.si.padding.minimum{
    padding: 5px !important
}

.si.padding-8{
    padding: 8px !important    
}

.si.margin.none {
    margin: 0px !important;
}
.si.margin.minimum{
    margin: 5px !important
}
.si.margin.bottom {
    margin-bottom: 16px !important
}
.si.margin.right{
    margin-right: 5px;
}
.si.underline{
    text-decoration: underline;
}
.si.centered {
    width:100%;
    height: 100%;
    display:flex;
    align-items: center;
    justify-content: center;
}

.si.spacer-8{
    height: 8px;
}

.si.spacer-16{
    height: 16px;
}



/** Colors **/
.si.color.primary{
    color: var(--color-primary) !important;
}
.si.color.secondary{
    color: var(--color-secondary) !important;
}

.si.background.primary{
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}
.si.background.primary:hover{
    background-color: var(--color-primary-light) !important;
}
.si.background.secondary{
    background-color: var(--color-secondary) !important;
    color: var(--color-white) !important;
}
.si.background.secondary:hover{
    background-color: var(--color-secondary-light) !important;
}

.highlight_data{
    color: var(--color-primary);
    font-weight: 500;
}

/* Login */
.login_container{
    height: 100vh;

    background: linear-gradient(180deg, rgba(2,108,50,1) 0%, rgba(55,165,29,1) 50%, rgba(76,176,52,1) 100%) !important; 
    color: #FFF !important;
    
}
.login{
    height: 100%;
}
#login_form{
    color: #333;
    margin: 0px auto 100px auto;
    padding: 30px;
    position: relative;
    width: 360px;
    background: #FFF;
    border-radius: 8px;
}

#login_form label{
    color: #666;
    font-weight: 400;
}
#login_form h1{
    margin-top: -1em !important
}
#login_form img:not(.google) { height:160px; }

/** Dashboard **/
.dashboard_header{
    background: rgb(255,255,255) !important;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(222,222,222,1) 100%) !important;
    height: 76px;
}

.dashboard_header h3, .authentication_header h3{
    margin-bottom: 0rem;
}
.dashboard_menu .item .content .header {
    font-weight: 700 !important;
}
.dashboard_menu .item .content .meta {
    font-weight: 200 !important;
}
.dashboard_menu .menu, #dseries .menu {
    z-index: 1000 !important;
}

/** Content **/
#si_content{
    height: calc(100vh - 76px);
    min-width: 800px;
}
.si.content.left.column{
    flex: 0 0 260px !important;
}
.si.content.right.column{
    flex: 1 0 520px !important;
    padding-bottom: 120px;
}

/** Form **/
.si.form{
    height: 100%;
}

/** Table **/
.si.table{ min-height:100% !important; border: 0 !important }
.si.table th{ text-transform: uppercase !important; }
.si.row_color_alternate{
    background-color: rgba(100, 100, 100, .03) !important;    
}

.image_placeholder{
    background-color: #EEE;
    background-size: cover !important; 
    background-repeat: no-repeat !important;
    background-position: center !important;
    text-align: center;
    border-radius: 4px;
    height: 260px;
    width: 100%;
}

/** Semantic Override **/

.ui.first.stuck.table td:first-child, .ui.first.stuck.table th:first-child {
    background: #FFF;
}

.ui.last.stuck.table td:last-child, .ui.last.stuck.table th:last-child {
    background: #FFF;
}