body {
    font-family: 'Open Sans', sans-serif;
    ;
}

#editor, #htmleditor {
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    font-family: 'Source Code Pro', monospace;
    font-size: 14px;
    font-weight: 400;
    height: 340px;
    letter-spacing: normal;
    line-height: 20px;
    padding: 10px;
    tab-size: 4;
}

.card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 8px;
    border-radius: 8px;
}

.mb-16 {
    margin-bottom: 16px;
}

.dalogo {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 100px;
    z-index: 1;
}

.mt-16 {
    margin-top: 16px;
}

.flex-center {
    display: flex;
    align-items: flex-center;
}

iframe {
    width: 100%;
    min-height: 180px;
    overflow: hidden;
}

.infoText{
    font-size: 12px;
}

.sticky-top{
    position: sticky;
    top:0;
    background-color: white;
    padding-bottom: 16px;
}

.text-sm {
    font-size: 12px;
}

.tabs {
    display: flex;
    margin-left: 44px;
}

.tab {
    padding: 8px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: 1px solid #282a36;
    cursor: pointer;
}

.tab:not(.tab-active):hover {
    background-color: rgba(0, 0, 0, 0.12);
}

.tab-active {
    color: white;
    background-color: #282a36;
}

.tab-active:hover {
    filter: brightness(1.25);
}

.hide {
    display: none;
}

code {
    white-space: pre;
}