@font-face {font-family:"Roboto"; font-style:normal; font-weight:normal; src:url(fonts/Roboto-Regular.ttf);}
@font-face {font-family:"Roboto"; font-style:normal; font-weight:bold; src:url(fonts/Roboto-Bold.ttf);}

html{
    line-height:unset !important;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, font, img, b, u, i, center,
dl, dt, dd, ol, ul, li, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

html, body {
    height: 100%;
}

body {
    overflow: hidden;
    font-size: 18px !important;
    font-family: Roboto;
    -webkit-text-size-adjust: 100%;
}

a {
    color: #4b9f06;
    font-weight: bold;
    text-decoration: none;
}

a.truncate {
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: bottom;
}

a:hover {
    text-decoration: underline;
}

/*********************************************************************************************
*********************************************************************************************/
a.form-button {
    display: block;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background-color: #4b9f06;
    color: white;
    font-family: Roboto;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 6px #000;
    text-decoration: none;
    cursor: pointer;
}

    a.form-button.disabled {
        pointer-events: none;
        cursor: default;
        filter: grayscale(100%);
        opacity: 0.5;
    }

    a.form-button:hover {
        text-decoration: none;
    }

/*********************************************************************************************
*********************************************************************************************/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearLeft {
    clear: left;
}

.clearRight {
    clear: right;
}

.clearBoth {
    clear: both;
}

/*********************************************************************************************
*********************************************************************************************/
#siteHeader {
    position: fixed;
    top: 0px;
    width: 100%;
    height: 70px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    z-index: 1000;
}

#siteNavigation {
    position: fixed;
    padding: 20px 20px;
    width: 285px;
    top: 70px;
    height: calc(100% - 70px);
    overflow-y: auto;
    z-index: 999;
    background-color: #f2f2f2;
}

    #siteNavigation .disabledListElem {
        pointer-events: none;
        opacity: 0.6;
    }

#siteContent {
    position: absolute;
    left: 285px;
    top: 70px;
    width: calc(100% - 285px);
    height: calc(100% - 70px);
    overflow-y: scroll;
    background-color: rgba(255, 255, 255, 1);
}

#siteBody {
    width: 100%;
    min-height: calc(100% - 60px);
}

#siteBodyCenteredContent {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

#siteFooter {
    position: absolute;
    width: 100%;
    min-width: 1000px;
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 -2px 4px rgba(0,0,0,.2);
}

/*********************************************************************************************
*********************************************************************************************/
#headerLogoClient {
    position: absolute;
    top: 5px;
    left: 20px;
	height: 60px;
}

.headerImage {
	position: relative;
	top: 50%;
    transform: translateY(-50%);
}

#headerTitle {
    position: absolute;
    top: 15px;
    left: 200px;
    right: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #888888;
    overflow: hidden;
}

#headerSession {
	position: absolute;
    top: 12px;
    right: 20px;
    font-weight: bold;
}

    #headerSession.centered {
        top: 24px;
    }

#headerLanguage {
    position: absolute;
    top: 38px;
    right: 20px;
}

    #headerLanguage.centered {
        top: 24px;
    }

#headerLanguageMenu {
    font-weight: bold;
}

/*********************************************************************************************
*********************************************************************************************/
nav ul li {
    position: relative;
    list-style-type: none;
}

.list-group {
    margin-top: 1rem;
}

.list-group:first-child {
    margin-top: 0;
}

.list-group-item {
    display: block;
    padding: .75rem .75rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    color: #495057;
    text-decoration: none;
    width: 100%;
    font-size: 20px;
}

    .list-group-item.sub-item {
        padding-left: 1.25rem;
        font-size: 18px;
    }

.list-group-item:last-child {
    margin-bottom: 0;
}

.list-group-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
}

.list-group-item.selected {
    z-index: 2;
    color: #fff;
    background-color: #4b9f06;
    border-color: #4b9f06;
}

    .list-group-item .badge {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        border-radius: 50%;
        background: #e12121;
        color: white;
        box-shadow: -2px 2px 4px white;
    }

.edit-icon {
    position: absolute;
    background: url(images/edit.png) no-repeat;
    width: 32px;
    height: 32px;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}

.edit-icon.selected {
    background-position-x: -32px;
}

    .edit-icon:hover {
        background-position-x: -64px;
    }

    .edit-icon.small {
        width: 24px;
        height: 24px;
        background-position-y: -32px;
    }

        .edit-icon.small.selected {
            background-position-x: -24px;
        }

        .edit-icon.small:hover {
            background-position-x: -48px;
        }

/*********************************************************************************************
*********************************************************************************************/
.bodyTitle {
    position: relative;
    float: left;
    width: 1180px;
    margin: 30px 10px 20px 10px;
    height: 36px;
    line-height: 36px;
    font-size: 32px;
    font-weight: bold;
    text-align: left;
    color: #444444;
}

.bodySection {
    position: relative;
    float: left;
    width: 1180px;
    margin: 30px 10px 20px 10px;
}

.bodySectionTitle {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 3px;
    color: rgb(139, 51, 29);
}

.bodySectionContent {
    margin-top: 30px;
    color: rgb(34, 34, 34);
    line-height: 1.4em;
    letter-spacing: normal;
    word-wrap: break-word;
}

.bodyClose {
    clear: both;
}

/*********************************************************************************************
*********************************************************************************************/
#footerLogoVoovio {
    position: relative;
    float: left;
    margin-top: 5px;
    margin-left: 10px;
    width: 180px;
    height: 50px;
}

.footerCopyright {
    position: relative;
    float: left;
    width: auto;
    margin-top: 16px;
    margin-left: 10px;
    color: rgba(96, 96, 96, 1);
}

#footerBannerVoovio {
    position: relative;
    float: right;
    margin-top: 5px;
    margin-left: 10px;
    width: 300px;
    height: 50px;
}

/*********************************************************************************************
*********************************************************************************************/
.dropdown {
    float: none;
    height: 22px;
    padding-right: 18px;
    font-size: 18px;
    line-height: 18px;
    background: url(images/dropdown_arrow.png) no-repeat top right;
    cursor: pointer;
}

.dropdownMenu {
    position: absolute;
    display: none;
    padding: 5px 5px 5px 4px;
    border: 1px solid #2c607b;
    background-color: #4b9f06;
    box-shadow: #2c607b 0px 6px 10px 0px;
    -webkit-box-shadow: #2c607b 0px 6px 10px 0px;
    z-index: 1000;
}

.dropdownMenu li {
	list-style: none;
	display: block;
	white-space: nowrap;
}

.dropdownMenu li a {
	color: white;
	background-color: transparent;
	text-decoration: none;
	display: block;
	padding: 5px;
	white-space: nowrap;
    cursor: pointer;
}

.dropdownMenu li a:hover {
    color: #4b9f06;
    background-color: lightgray;
    text-decoration: none;
}

.dropdownMenu li a:active {
    color: #0aad58;
    background-color: lightgray;
    text-decoration: none;
}

.dropdownMenu li a.selected {
    color: #0aad58;
    background-color: white;
    text-decoration: none;
    pointer-events: none;
    cursor: default;
}

/*********************************************************************************************
*********************************************************************************************/
.w-form {
    margin: 0 0 15px;
}

.w-field-error {
    position: relative;
    float: left;
    padding: 5px 0px;
    color: red;
    display: none;
}

.w-form-fail {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #ffdede;
    text-align: center;
}

.w-form-success {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background-color: #deffde;
    text-align: center;
}

.w-form-warning {
    margin-top: 10px;
    padding: 10px;
    background-color: #FDFEAD;
    text-align: center;
}

.w-input {
    display: block;
    height: 40px;
    padding: 8px 12px;
    font-family: Roboto;
    font-size: 18px;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
}

    .w-input:disabled {
        background-color: #eeeeee;
        pointer-events: none;
        cursor: default;
        filter: grayscale(100%);
        opacity: 0.5;
    }

    .w-input::-ms-clear {
        display: none;
    }

    .w-input.row {
        width: 100%;
        height: 28px;
        padding: 4px 6px;
        font-size: 16px;
    }

    .w-input.invalid {
        background-color: #efbaba;
        color: red;
    }

.w-label {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.428571429;
    color: #333333;
    vertical-align: middle;
    background-color: transparent;
}

.w-button {
    display: inline-block;
    padding: 9px 15px;
    background-color: #3898EC;
    color: white;
    border: 0;
    line-height: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

input.w-button {
    -webkit-appearance: button;
}

textarea {
    resize: none;
}

.passwordstrength {
    width: 350px;
    color: white;
    text-align: center;
}

/*********************************************************************************************
*********************************************************************************************/
.form-button {
    display: block;
    padding: 10px;
    border: 0;
    border-radius: 8px;
    background-color: #4b9f06;
    color: white;
    font-family: Roboto;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 6px #000;
    text-decoration: none;
    cursor: pointer;
}

.disabled {
    pointer-events: none;
    cursor: default;
    filter: grayscale(100%);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.disabledWithEvents {
    cursor: default;
    filter: grayscale(100%);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/*********************************************************************************************
*********************************************************************************************/
.report-icon {
    display: block;
    background: url(images/report.png) no-repeat;
    width: 18px;
    height: 24px;
    margin: 0 auto;
    cursor: pointer;
}

.analytics-icon {
    display: block;
    background: url(images/analytics.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    cursor: pointer;
}

.link-icon {
    display: block;
    background: url(images/link.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    cursor: pointer;
}

.delete-icon {
    display: block;
    background: url(images/delete.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    cursor: pointer;
}

.download-icon {
    display: block;
    background: url(images/download.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    cursor: pointer;
}

.star-icon {
    display: block;
    background: url(images/star.png) no-repeat;
    width: 24px;
    height: 24px;
    margin: 0 auto;
}

/*********************************************************************************************
*********************************************************************************************/
.editing-icon {
    display: inline-block;
    background: url(images/editing_icons.png) no-repeat;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

    .editing-icon.pencil {
        background-position-x: 0px;
    }

    .editing-icon.ok {
        background-position-x: -24px;
    }

    .editing-icon.cancel {
        background-position-x: -48px;
    }

/*********************************************************************************************
*********************************************************************************************/
.loadingIndicator {
    background-image: url(images/loading.gif);
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
}

.w-input.disabled {
    width:100%;
}

.w-a {
    display: block;
    width: 100%;
    height: 40px;
    padding: 8px 12px;
    line-height: 1.428571429;
}