@import '../default.less';
@import '../mixins.less';
//DON'T ADD IMPORTS, ABOVE ARE TO MAKE INTELLISENSE WORK

@sky: #c8d7df;
@alabaster: #f7f7f7;
@mercury: #E2E2E2;
@geyser: #c8d7df;

div.atlas-dialog
{
    display: none;

    div
    {
        border: 0;
        padding: 0;


        label
        {
            font-size: 14px;
            font-family: @title-font;
            font-weight: bold;
            line-height: 20px;
            color: @secondary-color;
            text-transform: uppercase;

            &.warning-message
            {
                padding-bottom: 15px;
            }

            float: left;

            html[dir='rtl'] &
            {
                float: right;
            }
        }

        textarea
        {
            background-color: @alabaster;
            width: 100%;
            height: 101px;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 0.17px;
            box-sizing: border-box;
            border: 1px solid @mercury;
            padding: 6px 10px 15px;
            margin: 6px 0 0;
            resize: none;

            &:focus
            {
                outline: 0;
                -webkit-appearance: none;
            }

            &::selection
            {
                background-color: @geyser;
            }

            &::-moz-selection
            {
                background-color: @geyser;
            }
        }
    }
}
