﻿@font-face {
    font-family: 'HostGrotesk';
    src: url('fonts/HostGrotesk-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'HostGrotesk';
    src: url('fonts/HostGrotesk-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body#darkoTheme {
    font-family: HostGrotesk;
    /*font-family: Calibri;*/
    width: 100vw;
    height: 100vh;
    position: absolute;
    color: white;
    box-sizing: border-box;
    background-color: #191927;
}

#darkoTheme button {
    font-family: HostGrotesk;
}
#darkoTheme a {
    color: #c3c3dc;
}
#darkoTheme h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: #bebdc7;
}

#darkoTheme .title.larger {
    font-size:2rem;
}

.darko-nav {
    background-color: #2d2d3b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    height: 6%;
}

.darko-nav .title {
    display: inline-block;
    transform: translateY(35%);
    height: 100%;
    font-size:1.25rem;
    letter-spacing:0.15em;
    margin-left:1em;
    font-weight:bold;
    max-height: 5vh;
}
.darko-nav li {
    display: inline-block;
    float: right;
    padding-left: 1em;
    padding-right:1em;
    /*margin-right: 1em;*/
    /*transform: translateY(35%);*/
    line-height: 450%;
    height: 100%;
    font-weight: bold;
    font-size: 0.9em;
    box-sizing: border-box;
    cursor: pointer;
    transition-duration: 0.2s;
    transition-timing-function: ease;
}
.darko-nav li:hover {
    /*background-color: rgba(155,155,255,0.1);*/
    line-height: 350%;
}
.darko-nav li:active {
    background-color: rgba(155,155,255,0.3);
    line-height: 300%;
}
.darko-nav #navUserid {
    cursor: none;
    background-color: transparent;
    line-height: 450%;
}
.darko-nav .highlighted {
    border-bottom: 5px solid grey;
}
.darko-height-100 {
    height:100%;
}
.darko-body {
    height: 98%;
    border: 1em solid #191927;
    border-bottom: none;
    box-sizing: border-box;
    background-color: #1e1e2d;
}
.darko-body-container{
    height:94%;
}
.darko-card {
    height: 100%;
    padding: 2vh;
    border: 2vh solid #191927;
    box-sizing: border-box;
    background-color: #1e1e2d;
    position: relative;
}
.darko-card-inactive {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #1e1e2d;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.darko-card-A {
    padding: 2vh 0em;
}
.darko-card-A.darko-emphasis {
    margin: 1.5em 0em;
    padding: 1.3em 0em;
    border-radius: 0.7em;
}
.darko-card-A.darko-emphasis.color-1 {
    background: rgb(101,34,45);
    background: linear-gradient(90deg, rgba(101,34,45,1) 0%, rgba(119,62,61,1) 100%);
    border-left: 1em solid red;
    border-image: linear-gradient( to left, #cf5d4b, #af1720 ) 1 100%;
}
.darko-card-A.darko-emphasis.color-1:nth-of-type(2n) {
    background: rgb(124,63,56);
    background: linear-gradient(90deg, rgba(124,63,56,1) 0%, rgba(151,96,73,1) 100%);
    border-left: 1em solid red;
    border-image: linear-gradient( to left, #de845a, #b64936 ) 1 100%;
}
.darko-card-A.darko-emphasis.color-3 {
    background: rgb(101,34,45);
    background: linear-gradient(90deg, rgba(101,34,45,1) 0%, rgba(119,62,61,1) 100%);
    border-left: 1em solid red;
    border-image: linear-gradient( to left, #cf5d4b, #af1720 ) 1 100%;
    filter: hue-rotate(-57deg);
}
.darko-card-A.darko-emphasis.color-5 {
    background: rgb(101,34,45);
    background: linear-gradient(90deg, rgba(101,34,45,1) 0%, rgba(119,62,61,1) 100%);
    border-left: 1em solid red;
    border-image: linear-gradient( to left, #cf5d4b, #af1720 ) 1 100%;
    filter: hue-rotate(231deg);
}
.darko-card-A.darko-emphasis .front {
    color:white;
    /*font-size:1.2em;*/
    letter-spacing:0.1em;
}
.darko-card-A.darko-emphasis .adminDesc {
    color:white;
}
.darko-emphasis .bar {
    display: inline;
    margin-right: 16%;
}
#adminReports .darko-emphasis::after {
    content: "popular";
    transform: rotate(-90deg) translate(1.5em, -2.2em);
    color: rgba(255,255,255,0.5);
    display: inline-block;
    float: left;
    position: relative;
}
#adminReports .darko-emphasis:hover::after {
    transform: rotate(-90deg) translate(1.5em, -3.2em);
    transition-duration: 0.3s;
    transition-timing-function: ease;
    font-weight: bold;
}
.darko-card-A i {
    width: 20%;
    float: left;
    padding: 2% 3%;
    font-size: x-large;
    box-sizing:border-box;
}
.darko-card-A a {
    width: 80%;
    display: inline-block;
    height: 100%;
    text-decoration:none;
    font-size:0.9em;
}
.darko-card-A .front {
    text-transform: uppercase;
    font-weight:bold;
    margin-bottom:0.3em;
    letter-spacing:0.05em;
    color:lightgrey;
}
.darko-card-A .adminDesc {
    opacity: 0.75;
    font-weight: 100;
}
.darko-margin-auto {
    margin:auto;
}
.responsive-width {
    width: 80%; /* default for smallest screens */
}

@media (min-width: 480px) {
    .responsive-width {
        width: 70%;
    }
}

@media (min-width: 768px) {
    .responsive-width {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .responsive-width {
        width: 40%;
    }
}

@media (min-width: 1280px) {
    .responsive-width {
        width: 30%;
    }
}
.darko-col-1 {
    width:100%;
}
.darko-col-2 {
    width: 50%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-3 {
    width: 33.33%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-4 {
    width: 25%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-15 {
    width:15%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-35 {
    width:35%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-20 {
    width:20%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-25 {
    width:25%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-30 {
    width:30%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-col-p-50 {
    width:50%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-card.darko-one-third {
    height: 33.5%;
}

.darko-card.darko-two-thirds {
    height: 66.5%;
}

.darko-footer {
    width: 100%;
    height: 2%;
    overflow: hidden;
    text-align: center;
    background-color:#191927;
}
#darkoTheme .darko-footer a {
    color: rgb(112, 112, 123);
}

.darko-card-scrollable {
    max-height: 16em;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing:border-box;
}

/*------------------------------UTILITIES-------------------------------*/
.darko-marg-top-sm {
    margin-top: 0.5em;
}
.darko-marg-top-m {
    margin-top: 1.5rem;
}
.darko-marg-top-l {
    margin-top: 5rem;
}
.darko-marg-tb-m {
    margin: 1em 0em;
}
.darko-pad-tb-m {
    padding: 1vh 0em;
}
.darko-flex-center {
    width: 100%;
    display: flex;
    justify-content: center;
}
.darko-flex-col-3 {
    display: flex;
    justify-content: space-around;
    width: 33%;
}
.darko-above {
    z-index:2;
}
.darko-txt-center {
    text-align:center;
}
.darko-w-100 {
    width:100%;
}
.darko-w-80 {
    width:80%;
}
.txt-right {
    text-align:right;
}
.darko-pad-top-sm {
    padding-top:1em;
}
.darko-pad-top-md {
    padding-top:5em;
}
/*------------------------------COLORS-------------------------------*/
#darkoTheme .color-1 {
    color: #d45c5b;
}
#darkoTheme .color-2 {
    color: #79be42;
}
#darkoTheme .color-3 {
    color: #823b97;
}
#darkoTheme .color-4 {
    color: #d4ac5b;
}
#darkoTheme .color-5 {
    color: #5b83d4;
}
.txt-peach {
    color: #d45c5b;
}

/*--------------------------HOVER EFFECTS-------------------------------*/
.darko-card-A:hover {
    border-left:0.5em solid;
    background-color: #2a2f46;
    box-sizing: border-box;
    transition-duration: 0.3s;
    cursor: pointer;
    padding-left: 1em;
    transition-timing-function: ease;
    filter: brightness(130%);
}

.darko-card-A.darko-emphasis.color-1:hover, .darko-card-A.darko-emphasis.color-3:hover, .darko-card-A.darko-emphasis.color-5:hover {
    transition-duration: 0.3s;
    transition-timing-function: ease;
    background: linear-gradient(90deg, rgba(101,34,45,1) 0%, rgba(213,123,83,0.9) 100%);
    filter:brightness(100%);
}
.darko-card-A.darko-emphasis.color-3:hover {
    filter: hue-rotate(-80deg);
}
.darko-card-A.darko-emphasis.color-5:hover {
    filter: hue-rotate(188deg);
}
.darko-inactive-message {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    opacity: 0;
    transition-timing-function: ease;
    transition-duration: 0.7s;
    background-color: #2d2d3b;
}
.darko-inactive-message:hover {
    opacity:1;
}
.darko-button-2:hover {
    cursor:pointer;
    background:rgba(185,155,255,0.1);
    color:#ccc;
}
.clickable:hover {
    cursor:pointer;
    color:white;
}
/*------------------------------Tablet/laptop styling-------------------------------*/
@media all and (max-width: 1135px) {
    .darko-card {
        padding: 0.5em;
        border: 0.5em;
    }

    .darko-card-A {
        padding: 1vh 0em;
    }
    .darko-card-A i {
        padding: 2% 0%;
        font-size: medium;
    }
    .darko-card-A.darko-emphasis .front {
        font-size: 0.9em;
    }
    #darkoTheme h4 {
        font-size: 0.9rem;
    }
}

/*------------------------------mobile styling-------------------------------*/
@media all and (max-width: 600px) {
    .darko-col-3 {
        height: unset;
        width: 100%;
    }

    .darko-height-100 {
        height: unset;
    }

    .darko-nav .title {
        font-size: 1rem;
    }

    .darko-nav {
        font-size: x-small;
    }
}


/*---------------------------OUTCOMES ANALYSIS------------------------------*/
.search-main-container {
    background-color: #191927;
}
#darkoTheme .darko-button.darko-emphasis.color-1 {
    transition-duration: 0.3s;
    transition-timing-function: ease;
    background: linear-gradient(90deg, rgb(95, 24, 47) 0%, rgba(222, 95, 82, 0.9) 100%);
    color: peachpuff;
}
#darkoTheme .darko-button.darko-emphasis.color-2 {
    transition-duration: 0.3s;
    transition-timing-function: ease;
    background: linear-gradient(90deg, rgb(75, 66, 99) 0%, rgba(152, 152, 177, 0.9) 100%);
    color: #cfcee6;
}
.search-button-group {
    width:45%;
}

#darkoTheme .color-1 {
    color: #d45c5b;
}

.darko-button {
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: small;
    /*width: 100%;*/
    font-weight: bold;
    padding: 1.5em;
    text-align: center;
    border-radius: 1em;
    box-sizing: border-box;
}
.darko-button-2 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: small;
    font-weight: bold;
    border: 2px solid #3e3e54;
    text-align: center;
    width: 44%;
    margin-left: 3%;
    display: inline-block;
    float: left;
    height: 100%;
}
.darko-button-link {
    text-transform: uppercase;
    font-weight: bold;
    font-size: small;
    letter-spacing: 0.1em;
    color: #85869c;
    cursor:pointer;
}
.darko-button-link:hover {
    filter:brightness(120%);
}
#darkoTheme .search-field-group {
    height: 2em;
}

#darkoTheme .search-field-label > label {
    width: 30%;
    display: inline-block;
    float: left;
    text-align: right;
    padding-right: 0.5em;
    box-sizing: border-box;
    color: #ccc;
    /* transform: translate(0%, 50%); */
    padding-top: 0.5em;
    clear: both;
}

#darkoTheme .search-field-group .search-field {
    width: 70%;
    float: right;
    height: 1.65em;
    line-height: 1.65em;
    border-bottom: 1px solid #8e8ea0;
    color: #8e8ea0;
    /* opacity: 0.7; */
}
#outcomesAnalysis #reportViewer1 {
    margin:0em;
    margin-top: -1.5em;
}
#outcomesAnalysis .trv-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    background-image: url(textures/highlight.png);
    background-image: none,-webkit-linear-gradient(top,rgba(255,255,255,.45) 0,rgba(255,255,255,0) 100%);
    background-image: none,-moz-linear-gradient(top,rgba(255,255,255,.45) 0,rgba(255,255,255,0) 100%);
    background-image: none,-o-linear-gradient(top,rgba(255,255,255,.45) 0,rgba(255,255,255,0) 100%);
    background-image: none,linear-gradient(to bottom,rgba(255,255,255,.45) 0,rgba(255,255,255,0) 100%);
    background-position: 50% 50%;
    /*background-color: #f3f3f4;*/
}
#outcomesAnalysis .trv-menu-large.k-widget {
    background-image: none;
}

#outcomesAnalysis #search-toggle {
    margin: 0;
    width: fit-content;
    background-color: transparent;
    /*transform: translate(0em, -0.8em);*/
    /*transform: translate(0em, 2em);*/
    color: white;
    z-index: 1;
    display: block;
    position: relative;
    cursor: pointer;
}
#outcomesAnalysis #report-container {
    background-color: #191927;
    /*border: 1em solid #191927;*/
}
#outcomesAnalysis .darko-card {
    min-height: 34vh;
    /*min-height: 23em;*/
}
#outcomesAnalysis .darko-button {
    margin-top:1vh;
}
#outcomesAnalysis .darko-card-option {
    width: 100%;
    /* height: 100%; */
    /* position: relative; */
    /* padding-top: 6em; */
    display: inline-block;
    text-align: right;
}
#outcomesF2 {
    background-color: rgb(41 41 56);
    height: auto;
    padding: 0.5em 1em 1.5em 1em;
    contain: content;
    position: absolute;
    z-index: 1000;
    width: 84%;
}
#filterDiv {
    /*height: 47.5%;*/
    height:43vh;
}
#outcomesAnalysis {
    height: 100%;
    background-color: #191927;
}

#outcomesAnalysis .darko-card .darko-card-scrollable {
    max-height:25vh;
}
/*--------------SPINNER CSS--------------------*/
#spinner {
    border-radius: 50%;
    background-color: transparent;
    border: 3px solid grey;
    border-left: 3px solid #00c7ff;
    min-height: 2em;
    min-width: 2em;
    display: inline-block;
    line-height: 4em;
    animation: spin 1s linear infinite;
}

.disallow {
    cursor: not-allowed !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*----------------------SHAME CSS--------------------------*/
#darkoTheme .search-field-group .search-field.darko-col-p-30 {
    width:30%;
    float:left;
}
#darkoTheme .search-field-group .search-field.darko-col-p-50 {
    width:48%;
    margin-left:2%;
    float:left;
}
#darkoTheme .search-field-group .search-field.darko-col-p-25 {
    width: 23%;
    float:left;
    margin-left: 2%;
}
#darkoTheme .search-field-label > label.darko-w-100 {
    width:100%;
}

/*------------------------FOUC--------------------------------*/
html {
    display: block;
}

/*------------------Searcheable Inputs------------------------*/
#darkoTheme .searchable-input-dropdown {
    display: block;
    position: relative;
    height: auto;
    top: 0%;
}
#darkoTheme .searchable-input .k-i-arrow-s {
    float: right;
    border: 5px solid #16161e;
}

#darkoTheme .searchable-input input {
    max-width: 8rem;
}

/*------------------Large Form Direct Download Format------------------------*/
#darkoTheme .darko-form-large .search-field-group {
    line-height: 2rem;
    height: 2rem;
}
