/* General */
/* --------------------------------------------------------------------- */
body{
    font: 400 14px 'Nunito', sans-serif;
    overflow-x: hidden;
}
.section{
    padding-top: 40px;
    padding-bottom: 40px;
}
.container{
    margin-left: auto;
    margin-right: auto;
}

/* Cubo de HTML */
/* --------------------------------------------------------------------- */
.cube-html{
    margin-top: 32px;
}
.cube-html-header{
    display: flex;
    justify-content: space-between;
}
.cube-html-header .title{
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.cube-html-header .title .alert{
    font-size: 10px;
    line-height: 20px;
    text-transform: uppercase;
    background-color: var(--color-tei-tangerine);
    color: white;
    border-radius: .25rem;
    padding: 2px 10px;
    font-weight: bold;
    margin-left: 10px;
}
.cube-html-header .actions{
    display: flex;
    align-items: center;
    margin-right: 15px;
}
.cube-html-header .actions .view{
    background-color: #dedede;
    padding: 3px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cube-html-header .actions .view .view-button{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7.5px 12.5px;
    font-weight: 600;
    border-radius: 8px;
}
.cube-html-header .actions .view .view-button .icon{
    margin-right: 10px;
}
.cube-html-header .actions .view .view-button.active{
    background-color: white;
}
.cube-html-header .actions .format{
    display: flex;
    align-items: center;
}
.cube-html-header .actions .format .format-button{
    background-color: transparent;
    outline: 0;
    padding: 7.5px 20px 7.5px 12.5px;
    height: 41px;
    display: flex;
    align-items: center;
}
.cube-html-header .actions .format .copy{
    padding: 7.5px 12.5px;
    font-weight: 600;
    border-radius: 8px;
}
.cube-html-body{
    display: flex;
    margin-top: 20px;
}
.cube-html-body .responsive{
    width: 100%;
    display: flex;
    align-items: center;
}
.cube-html-body .responsive iframe,
.cube-html-body .responsive .example{
    border: 1px solid #dedede;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.cube-html-body .bar{
    margin-left: 7px;
    width: 7px;
    height: 30px;
    background-color: var(--color-tei-secondary);
    border-radius: 24px;
    cursor: ew-resize;
}
/* Code manual */
/* --------------------------------------------------------------------- */
.code-manual{
    margin: 32px auto 0 auto;
    border-radius: 24px;
    padding: 16px;
    background-color: var(--color-tei-primary);
}
.code-manual .options{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.code-manual .options li label span{
    background-color: transparent;
    padding: 6px 18px;
    color: #fff;
    font-weight: bold;
    opacity: .6;
    cursor: pointer;
    border-radius: 12px;
    display: inline-block;
}
.code-manual .options li label input:checked + span{
    background-color: white;
    color: #1d1e22;
    opacity: 1;
}
.code-manual .content{
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}
/* Card logos */
/* --------------------------------------------------------------------- */
.card-logos{
    border: 1px solid #dedede;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    padding: 2rem 1rem;
    margin-top: 20px;
}
.card-logos .image{
    cursor: pointer;
    border: 2px solid transparent;
}
.card-logos .image.active{
    border-color: var(--color-tei-tangerine);
}

/* Card texts */
/* --------------------------------------------------------------------- */
.card-texts{
    border: 1px solid #dedede;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    padding: 2rem 1rem;
    margin-top: 20px;
}

/* Prims */
/* --------------------------------------------------------------------- */
pre.language-js,
pre.language-php,
pre.language-html{
    background-color: var(--color-tei-primary);
    color: white;
    padding: 16px;
    border-radius: 24px;
    width: 100%;
}
.language-php,
.language-php span.token.scope,
.language-php span.token.package{
    color: #fff;
}

/* Highlight */
/* --------------------------------------------------------------------- */
.highlight{
    font-size: 10px;
    line-height: 20px;
    background-color: var(--color-tei-tangerine);
    color: white;
    border-radius: .25rem;
    padding: 2px 10px;
    font-weight: bold;
    margin-left: 10px;
    letter-spacing: 1px;
}
