﻿@font-face {
    font-family: 'Gotham';
    src: url('Gotham-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Gnarrow';
    src: url('Gotham-Narrow.woff') format('woff');
}

@font-face {
    font-family: 'GothamIE8';
    src: url('Gotham-Medium.eot');
}

@font-face {
    font-family: 'GnarrowIE8';
    src: url('Gotham-Narrow.eot');
}

body{
    font-family: 'Gotham';
}

input, textarea {
    font-family: 'Gotham';
}

ul{
    margin:0px;
}

.login .page_fill{
    visibility:collapse;
    transition: visibility 0.7s;
}

.login.login_visible .page_fill{
    visibility:visible;
}

.login input, .login textarea{
    font-size:18px;
    font-family: 'Gnarrow';
}

.login .button, .infouser .button{
    font-weight:bold;
    font-size:17px;
    font-family: 'Gotham';
}

.bg_light{
    background-color:hsl(224, 21%, 90%);
}

.element_shadow{
    box-shadow: 4px 4px 2px 0px #333;
}

.element_shadow_green{
    box-shadow: 3px 3px 0px 0px hsl(120, 30%, 40%);
}
.element_shadow_blue{
    box-shadow: 3px 3px 0px 0px hsl(205, 60%, 30%);
}

.label{
    font-size:14px;
    line-height:34px;
    min-height:34px;
    font-weight:normal;
}

.button{
    font-size:14px;
    line-height:34px;
    min-height:34px;
}

.text{
    font-size:14px;
    line-height:34px;
    min-height:34px;
}

.textbox{
    font-size:16px;
    line-height:34px;
    min-height:34px;
    border-top: 3px solid #A3A7B2;
    border-left: 3px solid #A3A7B2;
}

.login_indicator{
    display:inline-block;
    position:absolute;
    right:15px;
    bottom:15px;
    height:10px;
    width:10px;
    border-radius:10px;
    animation-name: login_indicator_pulse;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

@keyframes login_indicator_pulse {
    0%   {width: 10px; height:10px; right:15px; bottom:15px;}
    20% {width: 12px; height:12px; right:14px; bottom:14px;}
    25%   {width: 10px; height:10px; right:15px; bottom:15px;}
    100%   {width: 10px; height:10px; right:15px; bottom:15px;}
}

@keyframes loading-circle {
    0%, 100% {
        animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(1800deg);
        animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }
    100% {
        transform: rotateY(3600deg);
    }
}

.text_ellipsis:hover {
    overflow: visible;
    white-space: pre-line;
    text-overflow: initial;
    width: auto;
    min-width: 100%;
    z-index: 3;
    word-wrap:break-word;
    line-height:normal;
}

.element_multiline .checkbox{
    margin-top:0px;
}

.element_multiline.label, .element_multiline.text, .text_ellipsis.label:hover, .text_ellipsis.text:hover{
    padding-top:8px;
    padding-bottom:8px;
    line-height:18px;
    min-height:0px;
}

.dropdown_selected:after {
    top:0px;
}

.folder_tree .label{
    line-height:20px;
    min-height:20px;
}

.folder_tree .text{
    line-height:20px;
    min-height:20px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.folder_tree .element_multiline.label{
    padding-top: 2px;
    padding-bottom: 2px;
    line-height: 16px;
}

.folder_tree .dropdown_selected .text:hover,.folder_tree .dropdown_selected .label:hover {
    padding-top:1px;
    padding-bottom:1px;
    line-height: 18px;
    min-height: 18px;
}

.folder_tree .dropdown_selected img{
    height:20px;
    width:20px;
}

.folder_tree .dropdown_selected::after{
    height:20px;
    width:20px;
    margin-top:0px;
}

.bg_white.clickable:hover,
.bg_white.button:hover,
.hover_white:hover{background-color: hsl(0, 0%, 90%);}

.checkbox {
    line-height: 10px;
    border: none;
    border-top: 3px solid #A3A7B2;
    border-left: 3px solid #A3A7B2;
    background-color: #DFE2EA;
    height:17px;
    width:17px;
    margin-top:8px;
    margin-right:5px;
}

.checkbox input[type="checkbox"]:checked + .checkbox_interior, .checkbox input[type="radio"]:checked + .checkbox_interior, .checkbox_checked .checkbox_interior {
    width: 6px;
    height: 9px;
    transform:rotate(45deg);
    background-color: transparent;
    border-style:solid;
    border-right-width:3px;
    border-bottom-width:3px;
    border-color:#ccc;
    border-radius:0px;
}

.checkbox_interior.bg_green{
    border-color: hsl(120, 30%, 40%);
}
.checkbox_interior.bg_blue{
    border-color: hsl(205, 100%, 30%);
}
.checkbox_interior.bg_lime{
    border-color: hsl(100, 50%, 50%);
}
.checkbox_interior.bg_azure{
    border-color: hsl(205, 70%, 40%);
}
.checkbox_interior.bg_medium{
    border-color: hsl(0, 0%, 30%);
}
.checkbox_interior.bg_black{
    border-color: hsl(0, 0%, 0%);
}

.text_black{
    color: #323232;
}

.infouser * {
    border-radius:0px;
}

/*     Grids based on a 950px high screen         */

@media (min-height:400px) {
    .scroll_800{
        height:250px;
        overflow-y: auto;
    }
}

@media (min-height:500px) {
    .scroll_800{
        height:350px;
    }
}

@media (min-height:600px) {
    .scroll_800{
        height:350px;
    }
}

@media (min-height:700px) {
    .scroll_800{
        height:550px;
    }
}

@media (min-height:800px) {
    .scroll_800{
        height:650px;
    }
}

@media (min-height:950px) {
    .scroll_800{
        height:800px;
    }
}

@media (min-height:400px) {
    .scroll_600{
        height:20px;
        overflow-y: auto;
    }
}

@media (min-height:500px) {
    .scroll_600{
        height:120px;
    }
}

@media (min-height:600px) {
    .scroll_600{
        height:220px;
    }
}

@media (min-height:700px) {
    .scroll_600{
        height:320px;
    }
}

@media (min-height:800px) {
    .scroll_600{
        height:420px;
    }
}

@media (min-height:950px) {
    .scroll_600{
        height:570px;
    }
}

@media (min-width:1400px) {
    .page_fill_contents_expand{
        width:1350px;
    }
}

@media (min-width:1600px) {
    .page_fill_contents_expand{
        width:1550px;
    }
}

@media (min-width:1800px) {
    .page_fill_contents_expand{
        width:1750px;
    }
}

.dropdown_selected.dropdown_flex{
    display:flex;
    padding-right:20px;
}

.menu_bird{
    display: inline-block;
     z-index: -1;
    right:8px;
    top:8px;
    margin-left:-17px;
}

.dropdown{
    display:inline-block;
    width:100%;
}

.background_side_left {
    position:fixed;
    display:inline-block;
    left:0px;
    top:0px;
    bottom:0px;
    right:0px;
    text-align:left;
    overflow:hidden;
    z-index:0;
}

.background_side_right {
    position:fixed;
    display:inline-block;
    right:0px;
    left:0px;
    top:0px;
    bottom:0px;
    text-align:right;
    overflow:hidden;
    z-index:0;
}

.background_side_image {
    height:100%;
}

.background_bird {
    position:absolute;
    display:inline-block;
    left:50%;
    height:500px;
    margin-left:130px;
}

.element_fill{
    left:0px;
    top:0px;
    bottom:0px;
    position:absolute;
}

.green_tick {
    height:48px;
    width:48px;
    margin-right:10px;
}

.layout_tick_message {
    display:inline-block;
    width:260px;
}

.bg_white.clickable:hover, .bg_white.button:hover{
    color: #00aeef;
    border-left-color: #00aeef;
    background-color:#f7f7f7;
}

/*      Blue theme starts here      */
@font-face {
    font-family: 'Westcon Icons';
    src: url('westcon-icons.woff') format('woff');
}
@font-face {
    font-family: 'Frutiger Bold';
    /*src: url('Frutiger-Bold.otf') format('opentype');*/
    src: url('Frutiger-Bold.woff') format('woff');
}
@font-face {
    font-family: 'Frutiger Light';
    /*src: url('Frutiger-Light.otf') format('opentype');*/
    src: url('Frutiger-Light.woff') format('woff');
}

body{
    background-color:rgb(234, 233, 237);
}

.topMenu{
    background-color:hsl(205, 70%, 40%);
}

.topMenu_notBird {
    margin-top:10px;
    vertical-align: bottom;
    z-index: 10;
    display: inline-block;
    width: auto;
}
.user_User .topMenu_notBird{
    top:0px;
}

.topMenu_bird{
    display:none;
}
.user_User .topMenu_bird {
    display: inline-block;
    right: 8px;
    top: 8px;
    margin-left: -17px;
    height: 100px;
}

.adminMenu{
    position: fixed;
    height:100%;
    text-align:center;
}

.adminMenu_logo{
    /*padding:10px 50px;*/
    width: 100%;
    max-height: 100px;
    max-width:200px;
    padding: 10px;
}

.adminMenu .menuItem {
    font-family:'Frutiger Light';
    display:inline-block;
    width:100%;
    cursor:pointer;
    background-color:#fff;
    border-left:2px solid #fff;
    color:#2c83ae;
    line-height:40px;
    padding:20px 0px 20px 20px;
    text-align:left;
}
.adminMenu .menuItem:hover {
    border-left-color:#00aeef;
    color:#00aeef;
    background-color:rgb(235, 244, 246);
}

.adminMenu .menuItem .menuItem_icon {
    display:inline-block;
    width:10%;
}
.adminMenu .menuItem .menuItem_icon:before {
    font-family:'Westcon Icons';
    font-size:30px;
}
.adminMenu .menuItem .menuItem_label{
    font-family:'Frutiger Light';
    display:inline-block;
    width:80%;
    padding-left:20px;
    font-size:14px;
    cursor:pointer;
}

.adminMenu .menuItem_selected{
    font-family:Gotham;
    color:rgb(0, 86, 150);
    background-color:rgb(235, 244, 246);
    border-left-color:hsl(205, 70%, 40%);
}

.adminMenu .menuItem_selected .menuItem_label{
    font-family:'Frutiger Bold';
}

.listItem_parent{
    display:table;
    margin-bottom:20px;
    width:100%;
}

.listItem{
    background:#fff;
    display:table-row;
    cursor:pointer;
    border-radius:10px;
}

.rowsListItem {
    padding: 5px 0;
    border-top: 1px solid #cdcdcd;
}
.logsListItem {
    border-top: 1px solid #cdcdcd !important;
}

.rowsListItem:last-child, .rowsListItem_Last {
    border-bottom: 1px solid #cdcdcd;
}

.listItem:hover, .rowsListItem:hover, .logsListItem:hover {
    background:#ddd;
}

.listItem_icon{
    display:table-cell;
    width:40px;
    text-align:center;
    padding-top:10px;
    background-color:#6a6e70;
    border-radius:3px 0px 0px 3px;
}

.listItem_icon:before {
    color:#fff;
    font-family:'Westcon Icons';
    font-size:30px;
}
.listItem_icon_alternative{
    background-color:#8a3fcf;
}
.listItem_icon_active{
    background-color:#2c83ae;
}
.listItem_icon_lockout {
    background-color: #c00;
}

.listItem_icon_alternative2{
    background-color:#74a954;
}

.listItem_icon_alternative3 {
    background-color: #00BFFF;
}

.icon_dashboard:before{
    content:'\e63e';
}

.icon_fileshare:before{
    content:'\e634';
}

.icon_group:before{
    content:'\e608';
}

.icon_user:before{
    content:'\e600';
}

.icon_console:before{
    content:'\e634';
}

.icon_company:before{
    content:'\e627';
}

.icon_administrator:before{
    content:'\e628';
}

.icon_role:before{
    content:'\e611';
}

.icon_logging:before{
    content:'\e62c';
}

.icon_preview:before{
    content:'\e632';
}

.icon_save:before{
    content:'\e63b';
}

.icon_delete:before{
    content:'\e63c';
    color:#c00;
}
.icon_delete + .subMenu_item_label{
    color:#c00;
}

.icon_copy:before{
    content:'\e63c';
}

.listItem_contents{
    display:table-cell;
    padding:0px 10px;
}

.listItem_header{
    color:#6a6e70;
    line-height:30px;
    border-bottom:1px solid #ccd1d9;
    font-size:16px;
    display:inline-block;
    width:100%;
}

.listItem_subheader{
    color:#6a6e70;
    font-size:14px;
    padding:3px 0px;
    display:inline-block;
    width:auto;
    padding-right:20px;
}

.listItem_detail{
    color:#6a6e70;
    font-size:14px;
    padding:3px 0px;
    display:inline-block;
    width:100%;
    font-family:'Frutiger Light';
}

.subMenu{
    padding:20px 20px;
    background-color:#fff;
    display:table;
    width:100%;
}

.subMenu_inner{
    display:table-row;
}

.breadcrumbs{
    font-family:'Frutiger Light';
    font-size:14px;
    display:table-cell;
    padding-top:10px;
}

.breadcrumbs_link{
    width:auto;
    cursor:pointer;
    color:#2c83ae;
    display: inline-block;
    font-family:'Frutiger Light';
}

.breadcrumbs_link:hover{
    color:#00aeef;
}

.breadcrumbs_text{
    color:#6a6e70;
    display: inline-block;
    font-family:'Frutiger Light';
}

.subMenu_items{
    text-align:right;
    display:table-cell;
}

.subMenu_item{
    display:inline-block;
    width:60px;
    color:#2c83ae;
    cursor:pointer;
    text-align:center;
}

.subMenu_item:hover{
    color:#00aeef;
}

.subMenu_item_icon{
    font-size:30px;
    font-family:'Westcon Icons';
}

.subMenu_item_label{
    display:inline-block;
    padding-top:5px;
    width:100%;
    font-size:12px;
    font-family:'Frutiger Light';
    cursor:pointer;
}

.user_User .topMenu{
    background-color:transparent;
}

.user_User {
    background-color: white;
}

body *{
    font-family:'Frutiger Bold'
}

.user_User * {
    font-family: Montserrat, sans-serif !important;
}

.text{
    font-family:'Frutiger Light'
}

.text{
    font-family:'Frutiger Light'
}

.bg_lighter{
    background-color:#f5f5f5;
}

.border_light{
    border-color:#ccc;
    border-width:1px;
}

.user_User .textbox{
    font-family:Gnarrow;
}

.textbox{
    font-family:'Frutiger Light'
}

.button{
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.26);
    border-radius: 3px;
    text-transform: uppercase;
}

.user_User .element_shadow_green, .infouser .element_shadow_green{
    box-shadow: 3px 3px 0px 0px hsl(120, 30%, 40%);
}
.user_User .button, .infouser .button{
    box-shadow: 3px 3px 0px 0px hsl(120, 30%, 40%);
    border-radius:0px;
}

.dropdown[disabled] .dropdown_options, .dropdown[disabled] .dropdown_selected:after{
    display:none;
}

.menu_burger{
    display:inline-block;
    width:20px;
    top:7px;
}

.menu_company{
    font-size:19px;
    display:inline-block;
    width:auto;
}

.burger_bun {
    display:inline-block;
    height:2px;
    width:40px;
    margin-bottom:8px;
}

.chevron_down {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wkIBDYChwMWQQAAASpJREFUaN7t2DFuwkAQheE3hBScIkVyCbqQBtHOSbgFlDkHxVyBHIOC1LlCIpBIY0sujLRePOO19f7KQvbufnaBvQBjjDHGGGOMMcYmn0RPqKpnAHMAL9VPPwBOZvYxObCqXgA8tcx7A/BnZovJgFX1lnKemcnowanYCLSUhvVGS4lYT7SUivVCS8lYD7SUju0bLWPA9omWsWD7QstQ2Hrhj1w7CLiPBUeiZWhsNFpKwEaipRRsFFoysOfq8NXrKXREH6s5kr6nZxkP+OCJzbhmBWCfenIOeBnx99Hx2o0n+D3qrajDGFtP8Hfky37iWEc3sJm9AbjeuxEe37CNMdtgv102AGeZC3huPOkvADvvrZnG2GsAn/UNiNj4Y4wxxhhjjDHGGGNsyP4B8waN7PJILZ4AAAAASUVORK5CYII=);
    background-size: contain;
    transform:initial;
    content: '';
    width: 24px;
    height: 24px;
    transform:rotate(180deg);
}

.scroller{
    height:100%;
    overflow-y:auto;
}

.page_fill_contents.login_contents {
    width: 440px;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .page_fill_contents.login_contents {
        width: 100%;
        padding: 20px;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    .page_fill_contents.login_contents {
        width: 400px;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .page_fill_contents.login_contents {
        width: auto;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .page_fill_contents.login_contents {
        width: 440px;
    }
}
@media only screen and (min-width : 992px) {
    .page_fill_contents.login_contents {
        width: 440px;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
    .page_fill_contents.login_contents {
        width: 440px;
    }
}

@media only screen and (max-width : 768px) and (orientation: landscape) {
    .page_fill_contents.login_contents {
        width: 60%;
        height: 90%;
    }

    .page_fill_contents.login_contents div {
        padding: 0;
        margin: 0;
    }
}

.adminMenu  .docMenuItem {
    padding:0px 0px 0px 40px;
}

.adminMenu  .docMenuTitle {
    padding:10px 0px 10px 20px;
}

.display_in_line {
    display: inline;
}

.nobr {
    white-space: nowrap;
}

.badge {
    display: inline-block;
    margin: 0.3em 0.5em 0.2em 0.5em;
    padding: .3em .4em;
    min-width: 1.4em;
    min-height: 1.4em;
    border-radius: 50%;
    vertical-align: middle;
    background-color: grey;
    line-height: 1;
    color: white;
    float: right;
    text-align: center;
    vertical-align: baseline;
    font-size: 0.8em;
    font-family: 'Frutiger Light';
}

.radius_icon {
    margin: 0.5em 0.5em 0.5em 0.5em;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
}