.colorful-status__container {
    background-size: cover;
    background-position: center;
    cursor: text;
    font-size: 30px;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
    text-align: center;
    transition: background-image 300ms;
    height: 350px;
    width: 100%;

    .colorful-status__inner {
        padding: 20px;
        position: absolute;
        line-height: 34px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: color 300ms;
        width: 100%;
        word-wrap: break-word;

        &:focus {
            outline: 0px solid transparent;
        }

        @media only screen and (max-width:$xsmall) {
            font-size: 18px;
            line-height: inherit;
        }
    }

    .colorful-status__placeholder {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        color: #999;
        user-select: none;
        opacity: 0.7;
        transition: color 300ms;
        line-height: 34px;
    }
}

.colorful-status__color {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 30px;

    span.joms-left {
        position: absolute;
        left: 0;

        i.fa {
            left: 25%;
        }
    }

    span.joms-right {
        position: absolute;
        right: 0;

        i.fa {
            right: 25%;
        }
    }

    span.joms-direction {
        display: none;
        height: 25px;
        width: 25px;
        border: solid 1px #ddd;
        border-radius: 5px;
        cursor: pointer;
        background-color: #f5f5f5;
        transition: box-shadow 300ms;

        i.fa {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        &:hover {
            box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
        }
    }

    ul.colorful-status__color-list {
        white-space: nowrap;
        overflow: hidden;
        position: absolute;
        left: 30px;
        right: 30px;

        li {
            display: inline-block;
            margin-right: 5px;
            background-size: cover;
            cursor: pointer;
            border-radius: 5px;

            &.active {
                border: solid 3px #ddd;
            }
        }

        li:last-child {
            margin-right: 0;
        }
    }

    .colorful-status__color-selector {
        height: 25px;
        width: 25px;
        border: solid 2px #cecece;
    }
}