﻿input::placeholder {
    color: white;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: white;
}

::-moz-placeholder { /* Firefox 19+ */
    color: white;
}

:-ms-input-placeholder { /* IE 10+ */
    color: white;
}

:-moz-placeholder { /* Firefox 18- */
    color: white;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: white;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
}

.label {
    color: #666666;
    font-size: 13px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.labelWithoutBold {
    color: #666666;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
}

.textArea {
    height: 60px;
    width: 98%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    resize: none;
}

.TextBoxResizeble {
    width: 100%;
    height: 80px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    resize: none;
}

.TextBox {
    height: 22px;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.textAreaBig {
    height: 200px;
    width: 98%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    resize: none;
}

.textAreaBloked {
    height: 200px;
    width: 98%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    border: 0px white;
    resize: none;
}

.textArea_RowsDifine {
    width: 98%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.textBoxBase {
    height: 23px;
    width: 150px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
}

.newMessage {
    width: 95%;
    border: 1px solid #ccc;
    text-align: center;
}

    .newMessage .messageHeader {
        text-align: left;
        background: darkorange;
        color: white;
        height: 20px;
        padding-left: 5px;
    }


.ApplicationsSimultaneousAccess {
    overflow: hidden;
    width: 100px;
    margin-left: 35px;
    background: url("../images/icons/dropdwonarrow.png") no-repeat #000 84px 1px;
}

.ApplicationsSimultaneousAccessSelect {
    border: 0;
    background: transparent;
    height: 16px;
    border: 1px solid #ffffff;
    width: 100px;
    font-size: 10px;
    -webkit-appearance: none;
    color: white;
    cursor: pointer;
}

    .ApplicationsSimultaneousAccessSelect option {
        background: black;
        cursor: pointer;
    }

.expand {
    background: url("../Images/icons/expand.png");
    width: 14px;
    height: 14px;
    border: 0;
    cursor: pointer;
}

.collapse {
    background: url("../Images/icons/collapse.png");
    width: 14px;
    height: 14px;
    border: 0;
    cursor: pointer;
}



/*
 * SimpleModal Basic Modal Dialog
 * http://simplemodal.com
 *
 * Copyright (c) 2013 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 */

#basic-modal-content {
    display: none;
}

/* Overlay */
#simplemodal-overlay {
    background-color: #000;
}

/* Container */
#simplemodal-container {
    height: 400px;
    width: 700px;
    color: #bbb;
    background-color: #ffffff;
    border: 4px solid #444;
    padding: 12px;
}

    #simplemodal-container .simplemodal-data {
        padding: 8px;
    }

    #simplemodal-container code {
        background: #141414;
        border-left: 3px solid #65B43D;
        color: #bbb;
        display: block;
        font-size: 12px;
        margin-bottom: 12px;
        padding: 4px 6px 6px;
    }

    #simplemodal-container a {
        color: #ddd;
    }

        #simplemodal-container a.modalCloseImg {
            background: url('../Images/icons/x.png') no-repeat;
            width: 25px;
            height: 29px;
            display: inline;
            z-index: 3200;
            position: absolute;
            top: -15px;
            right: -16px;
            cursor: pointer;
        }

    #simplemodal-container h3 {
        color: #84b8d9;
    }
