﻿html {
    background-color: rgb(248, 248, 248) ;
    margin: 0;
    padding: 0;
}

/**************************/

body {
    background-color: #fff;    
    color: #333;
    font-size: .85em;
    font-family: 'Roboto', Verdana, Helvetica, Sans-Serif;

    /* prevent html-border around body*/
    margin: 0; 
    padding: 0;

    /*border top stroke*/
    border-top: solid 10px #AAA;

}

    .main-content {
        padding-left: 10px;
        padding-top: 30px;
    }    

/**************************/
a {
    color: #333;
    outline: none;
    text-decoration: underline;
    cursor:pointer;

    /*spacing around link*/
    /*
    padding-left: 5px;
    padding-right: 5px;
    */
}

    a:link, a:visited,a:active{
        /*don't change color*/
        color: #333;
    }

     a:hover {
        color: #AAA;
    }

img
 {  
    /*prevent borders*/
    border-style: none;
 }

/**************************/

header, footer, hgroup,
nav, section {

    /* all set visible */
    display: block;
}   



/**************************/
/* for logo and login section*/
div .float-left {        
    float: left;
}

div .float-right {
    float: right;
}

/* Fonts */
h1, h2, h3,
h4, h5, h6 {
    color: #000;
    margin-bottom: 0;
    padding-bottom: 0;
}

h1 {
    font-weight:300;
    font-size: 2.5em;
}

h2 {
    font-weight:200;
    font-size: 2em;
}

h3 {
    font-weight:400;
    font-size: 1.2em;
}

h4 {
    font-size: 1.1em;
}

h5, h6 {
    font-size: 1em;
}

.underlinedtext {
    text-decoration: underline;
}

.italictext {
    font-style: italic;
}

.comment {
    color:gray;
}

/**************************/
/* Normal webpage */
.content-wrapper {
    margin: 0 auto;
    max-width: 960px;
}

.layout-top-normal {
    top:50px;
    background-image: url('../../images/callcenter.jpg');
    height:250px;
    width: 70%;

    border-style:solid;
    border-color: #747373;
    border-width: 0.5px;
}


.layout-image-large {
    width: 90%;
}

.layout-image-medium {
    width: 50%;
}


#renderbody {
    background-color: rgb(248, 248, 248) ;
    clear: both;
}

.clear-fix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;

    /*footer margin*/
    margin-bottom: 100px;
}


footer {

    background-color: #e2e2e2;
    font-size: .9em;
    height: 50px;

    /*full width*/
    width:100%;
    
    /*keep footer down*/
    position: fixed;
    bottom: 0px;
    left: 0px;
}

#logo {
        background-image: url("../../Images/logo.png");
        background-size:contain;
        background-repeat:no-repeat;
        display: block;
        margin: 0 auto;
        height: 100px;
        width: 120px;
}

.columnicon-columnwidth {
    width:80px;
}

.columnicon-columnwidthAndSome {
    padding-right: 2em;
    width: 90px;
}

.columnicon {
    background-size:contain;
    background-repeat:no-repeat;
    display: block;
    height: 32px;
    width: 32px;
}

#licence-revoke {
        background-image: url("../../Images/licence-revoke.png");    
}

#info {
        background-image: url("../../Images/info.png");    
}

#pdf {
        background-image: url("../../Images/pdf.png");    
}

#tenant-edit {
        background-image: url("../../Images/tenant-edit.png");
}

#tenant-info {
        background-image: url("../../Images/tenant-info.png");
}

#tenant-tenantlicences {
        background-image: url("../../Images/tenant-tenantlicences.png");
}

#tenant-users {
        background-image: url("../../Images/tenant-users.png");
}

#user-add {
        background-image: url("../../Images/user-add.png");
}

#user-delete {
        background-image: url("../../Images/user-delete.png");
}

#user-disabled {
        background-image: url("../../Images/user-disabled.png");
}

#user-edit {
        background-image: url("../../Images/user-edit.png");
}

#user-enabled {
        background-image: url("../../Images/user-enabled.png");
}

#user-invite {
        background-image: url("../../Images/user-invite.png");    
}



/*Beta text*/
#beta {
    font-size: .8em;
    margin: 0px 10px 40px;
    text-align: right;
}

/*Login section*/
#login {
    display: block;    
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 0.9em;
    text-align: right;
    
}

    #login a {
        color:#444;
        background:rgba(243, 242, 242, 0.50);
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 10px;
        text-decoration: none;        
    }

    #login a:hover {
        color:white;
        background:rgba(255, 211, 3, 0.95);
    }

/* Menu*/

#nav{
	
    font-size: 1.4em;
    font-weight: 300;

	list-style:none;
    margin-top:50px;
	margin-bottom:10px;

	/* Clear floats */
	float:left;

	width:100%;

    vertical-align:bottom;
}
    #nav ul,li{
        /*align all items*/
	    margin:0;
	    padding:0;
    }

    #nav ul{
        /* dropdown*/
	    background:#fff; 
        /* Make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	    background:rgba(255,255,255,0); 
	    
        /*no bullets*/
        list-style:none;

	    position:absolute;

         /* Hide off-screen when not needed (this is more accessible than display:none;) */
	    left:-9999px;

        z-index: -1;
    }



    #nav li{
	    float:left;
	    margin-right:5px;
	    position:relative;
    
        /* show menu on top of all items on page*/
       
    }

    #nav a{	
        display:block;
        padding:10px;
        text-decoration:none;
    }

    #nav ul li{	
	    float:none;
        cursor:pointer;    
    }


    #nav ul a{
         /* No text wrapping in items*/
	    white-space:nowrap;
    }

    #nav li:hover ul{ 
	    /* Display dropdown */	
	    left:0;
         z-index:1000; 
    }

    #nav li:hover a{ 

        
	    /* hover color entire listitem (incl. subitems) */
	    color:#fff;

        /*transparent*/
        background:rgba(3, 186, 255, 0.95);
    }

    #nav li.reseller:hover a{ 
        
	    /* hover color entire listitem (incl. subitems) */
	    color:#fff;

        /*transparent*/
        background:rgba(55, 172, 90, 0.95);
    }

    #nav li:hover ul a{ 
        /* undo hover effects?*/
	    text-decoration:none;
    }

    #nav li:hover ul li a:hover{ 
        /* hover individual link*/
        color:#fff;
	    background:rgba(9, 173, 226, 0.95);
    }

   #nav li.reseller:hover ul li a:hover{
        
	    /* hover color entire listitem (incl. subitems) */
	    color:#fff;

        /*transparent*/
        background:rgba(49, 148, 78, 0.95);
    }

/* page titles */
hgroup.title {
    padding-top: 10px;
    margin-bottom: 10px;
}

    hgroup.title h1, hgroup.title h2 {
        display: inline;
    }

    hgroup.title h1 {
        color:#5a5a5a;
    }

    hgroup.title h2 {
        color:#a3a0a0;
        margin-left: 2px;
    }

/* content */
article {
    float: left;
    width: 70%;
}

.label {
    font-weight: 100;
}



/* forms */
fieldset {
    border: none;
    margin: 0;
    padding: 0;
}

    fieldset legend {
        display: none;
    }

    fieldset ol {
        padding: 0;
        list-style: none;
    }

        fieldset ol li {
            padding-bottom: 5px;
        }

label {
    display: block;
    font-size: 0.9em;
    font-weight: 300;
}

    label.checkbox {
        display: inline;
    }

input, textarea {
    border: 1px solid #e2e2e2;
    background: #fff;
    color: #333;
    font-size: 0.9em;
    margin: 2px 0 6px 0;
    padding: 5px;
    width: 300px;
}



    input:focus, textarea:focus {
        border: 1px solid #7ac0da;
    }

    input[type="checkbox"] {
        background: transparent;
        border: inherit;
        width: auto;
    }

    input[type="submit"],
    input[type="button"],
    button {
        background-color: #d3dce0;
        border: 1px solid #787878;
        cursor: pointer;
        font-size: 0.9em;
        font-weight: 400;
        padding: 5px;
        margin-right: 8px;
        width: 300px;
    }

    td input[type="submit"],
    td input[type="button"],
    td button {
        font-size: 1em;
        padding: 4px;
        margin-right: 4px;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-top: 0.75em;
    border: 0 none;
}

    th {
        text-align: left;
        border: none 0px;
        padding-left: 0;      
    }

    
    th a {
        display: block;
        position: relative;
    }

    th a:link, th a:visited, th a:active, th a:hover {
        color: #333;
        font-weight: 500;
        text-decoration: none;
        padding: 3px;
    }

    th a:hover {
        color:rgba(11, 123, 160, 1);
    }    

    tr.pager td {
        padding: 0 0.25em 0 0;
    }

/*webgrid*/

.webgrid {
    width:100%;
}

.webgrid td
{    
    background-color: #fff;
    border: 0px;
    padding-left: 10px;
}

.webgrid-header th
{
    color: #fff;
    background-color:#5a5a5a;   
    padding-left: 10px;  


}

.webgrid-header th a 
{
    color: #fff;        
}

 
.webgrid-row-style
{
    height: 50px;
    border-bottom: 1px solid #a3a0a0;     
}

.webgrid-selected-row
{
    font-weight: bold;
}

.webgrid-alternating-row
{
    height: 50px;
    border-bottom: 1px solid #a3a0a0;  
}

.webgrid-alternating-row td
{
    background-color:#bbbbbb;
}

.webgrid-clickable
{
    cursor: pointer;
    background-color:#7ac0da;
}

.webgrid-tenantlicence-description{
    width: 300px;
}   

/* info and errors */
.message-info {
    border: 1px solid;
    clear: both;
    padding: 10px 20px;
}

.message-error {
    clear: both;
    color: #e80c4d;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.message-success {
    color: #7ac0da;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0 10px 0;
}

.error {
    color: #e80c4d;
}


/* styles for validation helpers */
.field-validation-error {
    color: #f78100;
}

.field-validation-valid {
    display: none;
}


input.input-validation-error {
    border: 1px solid #f78100;
}

input[type="checkbox"].input-validation-error {
    border: 0 none;
}

.validation-summary-errors {
    background-color: rgba(9, 173, 226, 0.25);
    color: #000;
    font-size: .9em;
    text-decoration:none
}

.validation-summary-valid {
    display: none;
}

/*support pages*/
.linkprecedingicon td{
        text-align:left;        
    }

.linkprecedingicon img{
        display: block;
        height: 32px;
        width: 32px;        
    }

.screenshots {
    margin-bottom: 40px;
    width: 100%; 
    max-width: 100%;
    }

.screenshots img{        
        image-rendering:optimizeSpeed;
        resize:both;
        vertical-align:top;
        width: 90%;
    }

.screenshots td{
        text-align:center;
        vertical-align:bottom;
        font-weight:bold;
        font-size: .9em;
        font-style:italic;
    } 








/********************
*   Mobile Styles   *
********************/
@media only screen and (max-width: 600px) {

.layout-top-normal {
    display:none;
    background-image: none;
    height:0px;
    width: 0px;
    border-style:none;
}


    /* menu */
    nav {
        margin-bottom: 5px;
    }

    ul#nav {
        margin: 0;
        padding: 0;
    }

    ul#nav li {
        margin: 0;
        padding: 0;
    }


    /* main layout
    ----------------------------------------------------------*/
    .main-content,
    .featured + .main-content {
        background-position: 10px 0;
    }

    .content-wrapper {
        padding-right: 10px;
        padding-left: 10px;
    }

    .featured .content-wrapper {
        padding: 10px;
    }

    /* page content */
    article, aside {
        float: none;
        width: 100%;
    }
     

    /* forms */
    input {
        width: 90%;
    }

    /* login page */
    #loginForm {
        border-right: none;
        float: none;
        width: auto;
    }

        #loginForm .validation-error {
            display: block;
            margin-left: 15px;
        }

    #socialLoginForm {
        margin-left: 0;
        float: none;
        width: auto;
    }


    /* footer
    ----------------------------------------------------------*/
    footer .float-left,
    footer .float-right {
        float: none;
    }

    footer {
        height: auto;
        padding: 10px 0;
    }

        footer p {
            margin: 0;
        }
}



/* block/unblock switch userlist
    
*************************/

.userlistSwitchWrap {
    position: relative;
    margin: -2.7em 0;
    float: left;
}

.userlistSwitchInput {
    position: relative;
    left: -9999px
}

.userlistSwitch {
    position: relative;
    display: block;
    width: 5.5em;
    height: 3em;
    cursor: pointer;
    border-radius: 1.5em;
    transition: 350ms;
    background: linear-gradient(rgba(#000,0.07),rgba(#fff,0)),#ddd;
}

    .userlistSwitch::after {
        position: absolute;
        content: '';
        width: 1.3em;
        height: 1.3em;
        top: 0.6em;
        left: 0.5em;
        border-radius: 50%;
        transition: 250ms ease-in-out;
        background: linear-gradient(#f5f5f5 10%,#eee);
        box-shadow: 0 0.1em 0.15em -0.05em rgba(0, 0, 0, 1) inset, 0 0.2em 0.2em -0.12em rgba(0, 0, 0, 1);
    }

    .userlistSwitch::before {
        position: absolute;
        content: '';
        width: 2.5em;
        height: 1em;
        top: 0.75em;
        left: 0.75em;
        border-radius: 0.75em;
        transition: 250ms ease-in-out;
        background: linear-gradient(rgba(#000,0.07),rgba(#fff,0.1)),#d0d0d0;
        box-shadow: 0 0.08em 0.15em -0.1em rgba(0, 0, 0, 1) inset, 0 0.05em 0.08em -0.01em rgba(0, 0, 0, 1), 0 0 0 0 rgba(72, 148, 254, 0.7) inset;
    }

input:checked + .userlistSwitch::before {
    box-shadow: 0 0.08em 0.15em -0.1em rgba(79, 83, 75, 0.5) inset, 0 0.05em 0.08em -0.01em rgba(79, 83, 75, 0.7), 3em 0 0 0 rgba(72, 148, 254, 0.7) inset;
}

input:not(:checked) + .userlistSwitch::before {
    box-shadow: 0 0.08em 0.15em 1em rgba(79, 83, 75, 1) inset, 0 0.05em 0.08em -0.01em rgba(79, 83, 75, 1), 3em 0 0 0 rgba(79, 83, 75, 1) inset;
}

input:checked + .userlistSwitch::after {
    left: 2.1em;
}

.userListSwitchDisabled {
    pointer-events: none;
    cursor: default;
    opacity: .3;
}

.hideActionLinkText {
    text-indent: -9999px;
}


/*************************/


/*
    userlist switch disabled
*/
