/**********
 * Colors *
 **********

:root {
    --color-grey-dark: #95989A;
    --color-grey: #A9A9A9;
    --color-grey-light: #B8C0CA;
    --color-grey-subtle: #EAEAEA;

    --color-primary: #2196f3;
    --color-primary-dark: #134EDC;

    --color-white: #fff;
    --color-black: #2C2C2C;
}

CSS variables can not be used since we have to support IE11 -.-'
*/

html, body {
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: #FFF;
    border: 0;
    overflow: hidden;
}

#UIRoot {
    margin: 0px;
    width: 100%;
    height: 100%;
}


/**********************
 * Focus & Selections *
 **********************/

 *:focus {
    outline: 1px dotted rgba(128, 128, 128, 0.75);
}

.dijitRadioFocused, .dijitCheckBoxFocused {
    outline: 1px dotted rgba(128, 128, 128, 0.75);
}

.dijitTooltipDialog:focus {
    outline: none;
}

.flat .dcdManagerDialog .dijitMenu {
    outline: 0;
}

.noSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.allowSelect {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

fieldset {
    border: 1px solid #CCC;
    border-radius: 3px;
}

textarea {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
}


/********
 * Misc *
 ********/

 .flat .dcdCopyImgFloatRigth {
    width: 33%;
    float: right;
    margin-left: 15px;
    margin-bottom: 5px;
 }

 .flat .dcdCopyImgFloatLeft {
    width: 33%;
    float: left;
    margin-right: 15px;
    margin-bottom: 5px;
 }

 .flat .dcdColorPrimary {
    color: #2196f3;
}

.flat .fullSize {
    width: 100%;
    height: 100%;
}

.flat .dcdFlexCenter {
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;

    align-items: center;
    display: flex;
    justify-content: center;
}

.flat .displayNone {
    display: none;
}

.flat .displayIB {
    display: inline-block;
}

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

/* unfortunately having to use important because some weird dijit roules would
   overwrite this. For Example: .flat .dijitDialogPaneActionBar .dijitButton */
.flat .dcdFloatRight { float: right !important; }
.flat .dcdFloatLeft { float: left !important; }

.flat .dcdVerticalScroll {
    overflow: auto !important;
    background:
        /* Shadow covers */
        linear-gradient(white 30%, rgba(255,255,255,0)),
        linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,

        /* Shadows */
        radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.1), rgba(0,0,0,0)),
        radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.1), rgba(0,0,0,0)) 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 40px, 100% 40px, 100% 10px, 100% 10px;
    background-attachment: local, local, scroll, scroll;
    background-color: #fff;
}

.flat .dcdTransparentFix .dijit {
    background: transparent;
}

.flat .dcdFreeCall {
    font-size: 1.5em;
}

.flat .LockCover .Inner {
    padding: 20px;
    padding-left: 60px;
    font-size: 1.25em;
    text-align: left;
    background-color: #FFFFFF;
    background-image: url('../../img/ani/throbber.large.gif');
    background-repeat: no-repeat;
    background-position: 10px center;
    border-radius: 2px;
    border: 1px solid #AAA;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
}

article.release {
    padding-left: 0.5em;
}

.flat .dcdProvisioningDialog {
    width: 575px;
}

.flat .spaceBetween > * {
    margin-right: 3px;
}

.badge {
    background: #b1bec5;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: bold;
    margin-right: 8px;
}
