#stm_courses_curriculum {
    background-color: #f1f1f1;
    .ui-sortable-handle {
        background-color: #fff;
    }
    #section_curriculum {
        padding-top: 15px;
        background-color: #f1f1f1;
    }
    .stm-curriculum {
        &-single {
            background-color: #fff;
        }
    }
    .stm_lms_curriculum_box {
        padding: 30px;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    }
}

.stm_metaboxes_grid .stm_metaboxes_grid__inner {
    .stm-curriculum {
        .dropdown-menu {
            .no-options {
                display: none !important;
            }
        }
        &.loading {
            position: relative;
            &:before {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.6);
                z-index: 100;
            }
            &:after {
                position: absolute;
                top: 40px;
                left: 50%;
                margin-left: -30px;
                color: #000;
                font-size: 60px;
                content: "\e861";
                font-family: 'Linearicons-Free';
                speak: none;
                font-style: normal;
                font-weight: normal;
                font-variant: normal;
                text-transform: none;
                line-height: 1;
                -webkit-font-smoothing: antialiased;
                animation: spin 2s infinite;
                transform-origin: center center;
                z-index: 110;
            }
        }
        .stm-curriculum-list {
            margin-bottom: 20px;
            .stm-curriculum-single {
                padding: 15px 13px 10px 25px;
                display: flex;
                align-items: center;
                flex-wrap: nowrap;
                cursor: move;
                border-bottom: 0;
                transition: .3s ease;
                &.sortable-ghost {
                    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
                }
                &.section {
                    position: relative;
                    margin-top: 20px;
                    border-top: 3px solid #3854ce;
                    input {
                        font-size: 15px;
                        font-weight: 700;
                    }
                    &:not(:first-child) {
                        &:before {
                            content: '';
                            position: absolute;
                            height: .15rem;
                            left: -2px;
                            right: -2px;
                            top: -12px;
                        }
                    }
                }
                > div {
                    width: 50%;
                }
                &-name {
                    input {
                        margin-bottom: 0;
                        border: 0;
                        width: 100%;
                        height: 27px;
                        line-height: 27px;
                        padding: 0 0 5px;
                        border-bottom: 2px solid transparent;
                        border-radius: 0 !important;
                        &:hover {
                            border-bottom-color: #bfbfbf;
                        }
                    }
                }
                &-actions {
                    text-align: right;
                    .far,
                    .fa {
                        width: 30px;
                        height: 30px;
                        line-height: 30px;
                        background-color: #f1f1f1;
                        vertical-align: middle;
                        margin-left: 8px;
                        font-size: 10px;
                        color: #777884;
                        text-align: center;
                        border-radius: 50%;
                        cursor: pointer;
                        &:hover {
                            background-color: #3854ce;
                            color: #fff;
                        }
                    }
                    .far {
                        font-size: 13px;
                        line-height: 31px;
                    }
                }
            }
        }
        .v-select {
            margin-bottom: 15px;
        }
    }
}