.documentation {
    padding-top: 15rem;
}

@media (min-width: 768px) {
    .documentation-container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .documentation-container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .documentation-container {
        width: 1170px;
    }
}

@media (max-width: 990px) {
    .documentation-container {
        width: 100%;
    }
}

.documentation-container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.documentation .title {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 1rem;
}

.documentation .main {
    display: flex;
    gap: 20px;
    margin: 5rem 0;
}

.documentation .divider {
    height: 1px;
    background-color: #ccc;
    width: 100%;
}

.documentation .left {
    width: 40%;
}

.documentation .right {
    width: 60%;
    padding-bottom: 2rem;
}

.documentation .left .card span {
    font-weight: 600;
    font-size: 16px;
}

.documentation .right>div {
    display: none;
}

.documentation .right .set {
    font-size: 16px;
    flex-direction: column;
}

.documentation .right .divider {
    height: 1px;
    background-color: #dfdfdf;
    width: 100%;
    margin: 1rem 0;
}

.documentation .left .card .color-blue {
    background-color: var(--gl-blue);
}

.documentation .left .card .color-pink {
    background-color: var(--gl-pink);
}

.documentation .left .card .color-orange {
    background-color: var(--gl-orange);
}

.documentation .left .card .color-cyan {
    background-color: #00b8d4;
}

.documentation .left .card {
    padding: 35px 15px;
    margin-bottom: 1rem;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
    cursor: pointer;
}

/* NAV */

#logo-white-id {
    display: none;
    transition: 0.2s ease-in;
}

#logo-pure-white-id {
    display: none;
    transition: 0.2s ease-in;
}

#logo-blue-id {
    display: none;
    transition: 0.2s ease-in;
}

#logo-blue-id-black {
    display: none;
    transition: 0.2s ease-in;
}

#logo-color-black {
    display: block;
    transition: 0.2s ease-in;
}

.navbar-default .navbar-toggle {
    border-color: #000000;
}

.navbar-default .navbar-nav>li>a {
    color: #777 !important;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #000000;
}

.custom-nav-link::before {
    color: #682770;
}

/* END NAV */

@media (max-width: 768px) {
    .documentation .right .set {
        font-size: 12px;
    }

    .documentation .main {
        flex-direction: column;
    }

    .documentation .left {
        font-size: 12px;
    }

    .documentation .left {
        width: 100%;
    }

    .documentation .right {
        width: 100%;
    }

    .documentation .left .card span {
        font-size: 12px;
    }

    .documentation .left .card {
        padding: 20px 10px;
    }

    .navbar-default .navbar-nav>li>a {
        color: #fff !important;
    }
}

.documentation .left .card .color {
    position: absolute;
    border-radius: 0 5px 5px 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 10px;
    transition: all 0.2s ease;
}

.documentation .active .color {
    width: 20px !important;
}

.documentation .left .card:hover .color {
    width: 20px;
}


.documentation .right .set {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}