/**
 * MyASP共通スタイル
 */

span.myasp_open_status label, 
span.myasp_label_condition label,
span.myasp_auto_redirect label {
    margin-left: 0.2em;
    margin-right: 0.4em;
    line-height: 20px;
 }
 /* タグ編集 説明文 */
 ul.myasp-list li {
    text-indent: -1em;
    padding-left: 1em;
 }

 /* タグ編集 追加部分背景色 */
 .myasp-input-field {
    background-color: rgb(249, 249, 255);
 }
 .myasp-toggle-field th label {
    padding-left: 1.5em;
 }

/* タグクイック編集 追加部分背景色 */
.myasp-quick-field {
    background-color: rgb(235, 235, 245);
}

/**
 * tool-tip
 */
.myasp-tooltip {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

fieldset label span.myasp-tooltip.title {
    text-decoration:underline dotted #333 2px;/*下線を引く*/
    line-height: 1.4;
}

.myasp-description {
    display: none;
    position: absolute;
    padding: 10px;
    font-size: 12px;
    line-height: 1.6em;
    color: #fff;
    border-radius: 5px;
    background: #667;
    white-space: nowrap;
}
.myasp-description:before {
    content: "";
    position: absolute;
    top: -24px;
    left: 70px;
    border: 15px solid transparent;
    border-top: 15px solid #667;
    margin-left: -15px;
    transform: rotateZ(180deg);
}
.myasp-tooltip:hover .myasp-description {
    display: inline-block;
    top: 40px;
    left: -30px;
    z-index: 100;
}
