/*=================================================*/
/*= TUTORIALS | BASE                              =*/
/*=================================================*/

.tutorials-container {
    background: #131313a8;
    border-left: 1px solid #926333a1;
    border-right: 1px solid #926333a1;
    min-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    user-select: none;
    padding: 1em;
    box-shadow: #000000f0 0 0 5px 0px;
}
    .tutorials-options-header {
        display: flex;
        align-items: center;
    }
    .tutorials-options-footer {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
    }

/*=================================================*/
/*= TUTORIALS | BASE | MENU                       =*/
/*=================================================*/

.tutorials-options-title {
    font-size: 4em;
    padding: 0 0.2em;
    text-transform: uppercase;
    text-shadow: #000000f0 0px 0px 4px;
}
.tutorials-options-menu-container {
    flex: 1;
    display: flex;
    list-style: none;
    flex-direction: row;
}
    .tutorials-options-menu-item {
        height: 3em;
        display: flex;
        text-transform: uppercase;
    }
        .tutorials-options-menu-item-link {
            width: 100%;
            font-size: 1.1em;
            text-decoration: none;
            padding: 0 16px;
            display: flex;
            cursor: pointer;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }
            .tutorials-options-menu-item-link:link, 
            .tutorials-options-menu-item-link:visited {
                color: inherit;
            }
            .tutorials-options-menu-item-link:hover {
                background-color: rgba(54,58,62,.63);
            }
        .tutorials-options-menu-item-link.selected:after {
            content: "";
            height: 2px;
            background-color: #926333;
        }
            .tutorials-options-menu-item-link:hover:not(.selected):after {
                content: "";                
                left: 0;
                right: 0;
                bottom: 0;
                height: 2px;
                position: absolute;
                background-color: #926333;
            }

/*=================================================*/
/*= TUTORIALS | NOTES                             =*/
/*=================================================*/

.note-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #131313a8;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #926333a1;
    border-radius: 0.5em;
    box-shadow: 0 0 5px #000000e8;
}
.note-content-container {
    display: flex;
    flex-direction: column;
    background: #131313a8;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #926333a1;
    border-radius: 0.5em;
    box-shadow: 0 0 5px #000000e8;
}
    .note-content {
        display: flex;
        flex-direction: row;
    }
    .note-content.section {
        flex-direction: column;
    }
        .note-content-header {

        }
        .note-content-footer {
            padding-left: 2em;
        }
            .note-content-name {
                font-size: 16px;
                padding-right: 0.5em;
            }
            .note-content-value {
                flex: 1;
                margin: auto;
                font-size: 14px;
            }

/*=================================================*/
/*= TUTORIALS | STEPS                             =*/
/*=================================================*/

.step-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #131313a8;
    margin-bottom: 15px;
    border: 1px solid #926333a1;
    box-shadow: 0 0 5px #000000e8;
}
    .step-container-header {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
        .step-container-header > span {
            margin: auto;
        }
            .step-container-title {
                font-size: 2em;
            }
            .step-container-value {
                font-size: 1.5em;
            }
    .step-container-footer {
        padding: 1em;
        display: flex;
        flex-direction: column;
    }
        .step-content-container {
            display: flex;
            flex-direction: column;
            background: #131313a8;
            padding: 10px;
            border-left: 5px solid #926333a1;
            border-bottom: 1px solid #926333a1;
            box-shadow: 0 0 5px #000000e8;
        }
            .step-content {
                display: flex;
                flex-direction: row;
            }
            .step-content.children {
                margin-bottom: 1em;
            }
                .step-content-name {
                    font-size: 16px;
                    font-weight: 600;
                    padding-right: 0.5em;
                }
                .step-content-value {
                    flex: 1;
                    margin: auto;
                    font-size: 14px;
                }
            .step-content-image {
                margin: 1em auto;
            }

/*=================================================*/
/*= TUTORIALS | LINKS                             =*/
/*=================================================*/

.link-content-container {
    display: flex;
    flex-direction: row;
    margin: auto;
}
    .step-link {
        height: 4em;
        min-width: 8em;
        background: #232323;
        display: flex;
        padding: 8px;
        margin: 1em 10px;
        cursor: pointer;
        text-transform: uppercase;
    }
    .step-link * {
        pointer-events: none;
    }
    .step-link:hover {
        box-shadow: 0 0 5px #181818;
        background-color: rgba(54,58,62,.63);
    }
        .step-link-icon { 
            width: 3em;
            margin: auto;
        }
        .step-link-value {
            flex: 1;
            margin: auto 1em;
            text-align: center;
        }

/*=================================================*/
/*= TUTORIALS | PROPERTIES                        =*/
/*=================================================*/

.step-property-container {
    display: flex;
    flex-direction: row;
    margin: auto;
}
    .step-property {
        height: 4em;
        min-width: 8em;
        background: #232323;
        display: flex;
        padding: 8px;
        margin: 1em 10px;
        cursor: pointer;
        text-transform: uppercase;
    }    
    .step-property * {
        pointer-events: none;
    }
    .step-property:hover {
        box-shadow: 0 0 5px #181818;
        background-color: rgba(54,58,62,.63);
    }
        .step-property-icon {
            width: 3em;
            margin: auto;
        }
        .step-property-name {
            flex: 1;
            margin: auto;
            text-align: center;
        }