/*@font-face {*/
/*    font-family: 'quicksandlight';*/
/*    src: url('../fonts/quicksand_light-webfont.eot');*/
/*    src: url('../fonts/quicksand_light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/quicksand_light-webfont.woff') format('woff'), url('../fonts/quicksand_light-webfont.ttf') format('truetype'), url('../fonts/quicksand_light-webfont.svg#quicksandlight') format('svg');*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/

/* #Reset & Basics (Inspired by E. Meyers)================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

::-webkit-scrollbar {
   width: 4px;
   height: 4px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: rgba(0, 170, 255, 0.692);
    cursor: pointer;
    -webkit-box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(144, 147, 153, .3);
}

::-webkit-scrollbar-track {
    border-radius: 4px;
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* #Prototype Styles================================================== */
html, body {
    width: 100%;
    height: 100%;
    --theme-background: #02b980;
    font-size: 23.9px;
    /*background-color: #1a948d;*/
}

body {
    /*background-image: url('../images/background.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-position: top center;*/
    width: 100%;
    background-size: cover;
    height: 100%;
    /*min-height: 1000px;*/
    overflow: hidden;
    font-family: 'quicksandlight', Helvetica, Arial;
    color: #FFFFFF;
    /*text-shadow: -1px -1px 4px rgba(0, 0, 0, .35);*/
    /*filter: dropshadow(color=#000000, offx=1, offy=1);*/
}

.modal-backdrop{
    width: 100%!important;
    height: 100%!important;
}

@keyframes floatdom {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-20px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatdom_1 {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-30px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatdom_2 {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes floatdom_3 {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.tabs{
    width: 156px;
    height: 23px;
    background: rgba(11,34,62,0.35);
    border-radius: 32px 32px 32px 32px;
    border: 1px solid #193F76;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 140px;
}
.tabs .tab{
    width: 52px;
    height: 100%;
    font-size: 14px;
    color: #81ADC7;
    line-height: 21px;
    text-align: center;
    cursor: pointer;
}
.tabs .tab:hover{
    color: #FFF;
}
.tabs .tab.active{
    color: #FFF;
    background: linear-gradient( 90deg, #009EE1 0%, #146ECE 70%);
    border-radius: 53px 53px 53px 53px;
}

.wo-table{
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.wo-table .wo-table-head{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 32px;
    height: 32px;
    font-weight: 500;
    color: #D1E4FA;
    background: #264388;
    font-size: 14px;
    padding: 0px 8px;
}
.wo-table .wo-table-head .cell{
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.wo-table .cell.display_left{
    justify-content: left !important;
}
.wo-table .wo-table-body{
    position: absolute;
    top: 35px;
    bottom: 0;
    width: 100%;
    overflow: auto;
    height: calc(100% - 35px);
}
.wo-table .wo-table-body .item-cont{
    height: auto!important;
}
.wo-table .wo-table-body .item{
    height: auto!important;
    line-height: 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    color: #D1E4FA;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 5px 8px;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s
}
.wo-table .wo-table-body .item:nth-child(2n) {
    /*color: #fff;*/
    /*border-radius: .1rem;*/
    /*border: .1rem solid #142242;*/
    /*-webkit-box-sizing: border-box;*/
    /*box-sizing: border-box*/
}
.wo-table .wo-table-body .item:nth-child(odd) {
    background: rgba(14,94,214,0.32);
    /*color: #fff;*/
    /*border-radius: .1rem;*/
    /*border: .1rem solid rgba(1,22,59,0);*/
    /*-webkit-box-sizing: border-box;*/
    /*box-sizing: border-box*/
}

.wo-table .wo-table-body .item:hover {
    background: rgba(1,22,59,.6);
    /*border: .1rem solid #2af0f2;*/
    /*-webkit-box-shadow: 0 0 .3rem #2af0f2;*/
    /*box-shadow: 0 0 .3rem #2af0f2;*/
    /*-webkit-box-sizing: border-box;*/
    /*box-sizing: border-box*/
}

.wo-table .wo-table-body .item .cell{
    display: flex;
    align-items: center;
    justify-content: center;
}


