
/**********
 * Dialog *
 **********/

.flat .dcdFeatureIntroLayout {
    height: 450px;
    width: 425px;
}

.flat .dcdFeatureIntroContent {
    padding: 20px;
    padding-bottom: 0;
}

.flat .dcdFeatureIntroActionBar {
    padding: 10px;
}


/********************
 * XML Live preview *
 ********************/

/* Covers the entire screen and effectively blocks user interaction */
.flat .dcdFeatureIntroCover {
    position: absolute;
    left:0;
    top:0;
    bottom: 0;
    right: 0;
    z-index: 99999999;
    cursor: not-allowed;
}

.flat .dcdFeatureIntroCoverButtons {
    bottom: 0;
    /* display: flex;
    justify-content: space-between; */
    left: 0;
    position: absolute;
    right: 0;
    padding: 20px;
}

.flat .dcdFeatureIntroCoverButton {
    background-color: #333333;
    border-radius: 5px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.9);
    box-sizing: border-box;
    color: #FFFFFF;
    cursor: pointer;
    display: inline-block;
    height: 45px;
    padding: 12px;
    text-align: center;
    transition: color 0.3s, background-color 0.3s;
    width: 180px;
}

.flat .dcdFeatureIntroCoverButton:hover {
    color:#333333;
    background-color:#FFFFFF;
}

.flat .dcdFeatureIntroCoverButton.active {
    background-color: #fff;
    color: #333;
}

.flat .dcdFeatureIntroQuitButton {
    margin-left: 80px;
}

.flat .dcdFeatureIntroQuitButton::before {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    font-family: "flat-icon";
    content: "\f00e";
}

.flat .dcdFeatureIntroSpeedButton {
    width: 50px;
    margin: 0 5px;
}

/* dynamically assigned to domElements we want to highlight */
.flat .dcdFeatureIntroHilite {
    box-shadow: inset 0px 0px 8px #34B5D0;
    outline: 2px solid #34B5D0;
    filter: saturate(200%);
    animation: hiliteThrob 1s linear infinite;
}

/* dynamically assigned to domElements we want to mouse trace */
.flat .dcdFeatureIntroTrace {
    outline: 3px dashed #34B5D0;
    filter: saturate(200%);
    animation: hiliteThrob 1s linear infinite;
}

@keyframes hiliteThrob {
    0% { box-shadow: inset 0px 0px 12px #34B5D0;}
    50% { box-shadow: inset 0px 0px 0px #34B5D0;}
    100% { box-shadow: inset 0px 0px 12px #34B5D0;}
}

/* Special overrides of tooltip when used with feature intro */

.flat .dijitTooltip.dcdFeatureIntroTooltip {}


.flat .dijitTooltip .maxWidth {
    max-width: 300px;
}


/* Faux cursor definitions */
.flat .dcdFeatureIntroCursor {
    position:absolute;
    top: 50%;
    left: 50%;
    width:50px;
    height:47px;
    background-image: url("../../img/cursors/featureintro_cursor_sprite.png");
    background-repeat: no-repeat;
    background-position: 0px 0px;
}

.flat .dcdFeatureIntroCursorLabel {
    position:absolute;
    top: 50px;
    left: 50px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    background: #333333;
    padding: 4px;
    color:#FFFFFF;
    border-radius: 3px;
    display: block;
}

.flat .dcdFeatureIntroCursorLabel:empty {
    display: none;
}

.flat .dcdFeatureIntroCursor.arrow,
.flat .dcdFeatureIntroCursor.arrow.up {
    left: -9px; top: -8px;
    background-position: 0px 0px;
}
.flat .dcdFeatureIntroCursor.arrow.down {
    background-position: -50px 0px;
}

.flat .dcdFeatureIntroCursor.pointer,
.flat .dcdFeatureIntroCursor.pointer.up {
    top: -8px; left: -21px;
    background-position: 0px -47px;
}
.flat .dcdFeatureIntroCursor.pointer.down {
    background-position: -50px -47px;
}

.flat .dcdFeatureIntroCursor.hourglass,
.flat .dcdFeatureIntroCursor.hourglass.up,
.flat .dcdFeatureIntroCursor.hourglass.idle {
    top: -21px; left: -23px;
    background-position: 0px -94px;
}

.flat .dcdFeatureIntroCursor.hourglass.down,
.flat .dcdFeatureIntroCursor.hourglass.active {
    background-position: -50px -94px;
}

.flat .dcdFeatureIntroCursor.hand,
.flat .dcdFeatureIntroCursor.hand.up {
    top: -20px; left: -23px;
    background-position: 0px -141px;
}
.flat .dcdFeatureIntroCursor.hand.down {
    background-position: -50px -141px;
}
