body {
    margin: 0;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    /*background-color: #eee;*/
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 0.5em 0;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 2em;
}

a {
    color: inherit;
}

code {
    font-family: menlo, inconsolata, monospace;
    font-size: calc(1em - 2px);
    color: #555;
    background-color: #f0f0f0;
    padding: 0.2em 0.4em;
    border-radius: 2px;
}

@media (min-width: 400px) {
    body {
        font-size: 16px;
    }
}

img.icon {
    width: 22px;
    height: 22px;
    display: inline;
}

.cursor-pointer {
    cursor: pointer;
}

.hoverable {
	cursor: pointer;
	opacity: 0.9;
	transition: opacity 0.3s;
}

.hoverable:hover {
	opacity: 1;
}

.badge-counter {
    position: absolute;
    transform: scale(.7);
    transform-origin: top right;
    right: .5rem;
    margin-top: -.25rem;
}

.emboss {
    box-shadow: 0 0.1rem 0.25rem rgba(0,0,0,.15)!important;
    transition: all 0.3s;
}

.emboss:hover:not([disabled]){
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.code-block {
    background: black;
    border-radius: 5px;
    padding: 10px;
    color: white;
}

.bs-callout {
    margin: 20px 0;
    padding: 15px 30px 15px 15px;
    border-left: 5px solid #eee;
}
.bs-callout h4 {
    margin-top: 0;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code,
.bs-callout .highlight {
    background-color: #fff;
}

/* Themes for different contexts */
.bs-callout-danger {
    background-color: #fcf2f2;
    border-color: #dFb5b4;
}
.bs-callout-warning {
    background-color: #fefbed;
    border-color: #f1e7bc;
}
.bs-callout-info {
    background-color: #f0f7fd;
    border-color: #d0e3f0;
}
