/* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */

@import url('tomorrow.css');
html,
body {
    background: #fff;
    color: #000;
}

.sideaffix {
    overflow: visible;
}

/* links */

a:active, a:hover, a:visited {
    color: #0078d7;
}

a {
    color: #0050c5;
    cursor: pointer;
    text-decoration: none;
    word-wrap: break-word;
}

/* alert */
.alert-info {
    color: #074e73;
    background-color: #f4f9fe;
    border-color: #8cbfd8;
}

.alert-warning {
    color: #825e16;
    background-color: #fffcef;
    border-color: #d8bf8c;
}

.alert-danger {
    color: #821616;
    background-color: #fff2f2;
    border-color: #d88c8c;
}

/* code */

code {
    color: #9c3a3f;
    border-radius: 4px;
    padding: 3px 7px;
}

code, pre {
    background-color: #f8f8f8;
}

/* table */

.table-striped>tbody>tr:nth-of-type(odd) {
    color: #333333;
    background-color: #d3d3d3
}

tbody>tr {
    color: #424242;
    background-color: #c0c0c0
}

.table>tbody+tbody {
    border-top: 2px solid rgb(173, 173, 173)
}

/* select */

select {
    background-color: #fcfcfc;
    border-color: #aeb1b5;
}

/* 
    Following code regarding collapse container are fetched 
    or modified from the Materialize project.

    The MIT License (MIT)
    Copyright (c) 2014-2018 Materialize
    https://github.com/Dogfalo/materialize
*/

/* all collapse container */
.collapse-container.last-modified {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

/* header */
.collapse-container.last-modified>:nth-child(odd) {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

/* body */
.collapse-container.last-modified>:nth-child(even) {
    border-bottom: 1px solid #ddd;
}

span.arrow-d{
    border-top: 5px solid black
}

span.arrow-r{
    border-left: 5px solid black
}

.logo-switcher {
    background: url("../marketing/logo/SVG/Combinationmark.svg") no-repeat;
}

.hljs-meta {
	color: #097700;
}