.page-docs.colors-palette {
    .number {
        display: inline-block;
        border-radius: 50%;
        height: 25px;
        width: 25px;
        text-align: center;
        background: #333;
        position: relative;
        top: 6px;

        > span {
            position: absolute;
            top: 3px;
            left: 9px;
        }
    }

    .doc-block.index {
        background: none;
        margin-bottom: 30px;
        border: none;
        padding: 0 0 10px;
        border-bottom: solid 1px #ddd;

        ul.index-of-contents {
            > li {
                padding-left: 0;

                &:first-of-type {
                    margin-top: 0px;
                }
            }
        }
    }

    .like-h1 {
        font-size: 26px
    }

    .like-h2 {
        font-size: 20px
    }

    .doc-block {
        background: white;
        padding-top: 10px;
        margin-left: 20px;
        margin-bottom: 0px;


        .block-head {
            position: static;
            font-weight: normal;
            text-transform: unset;
            margin-bottom: 20px;
            margin-left: -35px;
            padding-bottom: 10px;
            p {
                margin-top: 5px;
                > small {
                    padding-left: 35px;
                }
            }

            .number {
                font-size: 13px;
                background: white;
                border: solid 1px #333;
                color: #333;

                > span {
                    position: absolute;
                    left: 8px;
                }
            }
        }
    }

    .palletes {
        margin: 20px 0;

        .row {
            margin: 0;
        }

        .palette-header h4 {
            text-transform: uppercase;
            font-size: 13px;
        }
    }

    .single-palette {
        color: #555;
        font-size: 13px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding-bottom: 40px;
        > .row .col {
            flex:1;
            width: 50%;
        }
        .color-group {
            max-width: 240px;
            border-radius: 10px;
            margin: 10px 20px 20px 0;
            box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.44) 0px 1px 2px;
            > .row {
                justify-content: space-evenly;
            }
        }

        .color-cell {
            height: 60px;
            width: 100px;
        }

        .variable {
            text-align: center;
            padding: 5px 5px 3px;
        }
        .color-code {
            padding: 6px 5px 4px;
        }
        .color-pair {
            border-bottom: solid 1px #eeeeee;
            border-top: solid 1px #eeeeee;
        }
    }

    /* Segundo bloque de paletas */
    #block-2 {
        .palletes {
            max-width: 780px;
        }
        .palette-header h4 {
            margin-bottom: 10px;
        }
        .single-palette {
            padding-bottom: 0;
            margin-bottom: 40px;
            border-radius: 10px;
            box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 44%);
            .color-group {
                flex-grow: 1;
                border-radius: 0;
                box-shadow: none;
                margin-right: 0;
                max-width: unset;
                margin-bottom: 0;
                .variable {
                    display: none;
                }
                .color-cell {
                    flex-grow: 1;
                }
            }
            .color-group:first-of-type .color-code .code-cell:nth-child(1) {
                display: none;
            }
        }
    }
}
