/*
    Document   : ppc
    Created on : 13 Awi 2012, 23:26:30
    Author     : Alex
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

div.formStyle
{       
    border: 1px solid #ff0000;    
    background-color: white;
    padding: 10px 10px 10px 10px;
    border-spacing: 5px 5px 5px 5px;
    -moz-box-shadow:    1px 1px 1px 1.5px rgba(68,68,68,0.6);
    -webkit-box-shadow: 1px 1px 1px 1.5px #ccc;
    box-shadow:         1px 1px 1px 1.5px #ccc;
}

body 
{
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #EDEDED;
    margin: 0 0 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;   
}

h4 { font-family: Verdana, Geneva, sans-serif }


#middle {
    width: 100%; 
    text-align: center;
    top: 10%;
    height: 1px;
    overflow: visible;
    padding-top:20px;
    min-width: 700px;
}

html
{
    height:100%;
}

#mainContent
{

    display: inline-block;        
    position: relative;
    margin-left: auto; margin-right: auto; text-align: left;
    border: 0;
    padding: 30px;



    /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#container 
{	
    background: #EDEDED; /* the auto margins (in conjunction with a width) center the page */
    border: 0px solid #000000;
    text-align: left; /* this overrides the text-align: center on the body element. */
    padding: 10px;
    margin-left:auto;
    margin-right:auto;
    overflow: visible;
}

input.formStyle{
    font : normal 12px/12px verdana, geneva, helvetica;
    padding: 1px 5px 5px 1px;
}

.button
{
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: bold 12px Verdana;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 3px 3px 3px #ABB3AB;
    -moz-box-shadow: 3px 3px 3px #ABB3AB;
    box-shadow: 3px 3px 3px #ABB3AB;
    margin-left: 1em;
    margin-right: 1em;
}
.button:hover
{
    text-decoration: none;
}
.button:active
{
    position: relative;
    top: 1px;
}

.button-disabled
{
    display: inline-block;
    outline: none;
    text-align: center;
    text-decoration: none;
    font: bold 12px Verdana;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 3px 3px 3px #ABB3AB;
    -moz-box-shadow: 3px 3px 3px #ABB3AB;
    box-shadow: 3px 3px 3px #ABB3AB;
    margin-left: 1em;
    margin-right: 1em;

    color: #636363;
    border: solid 1px #636363;
    background: #CCCCCC;
    background: -webkit-gradient(linear, left top, left bottom, from(#CCCCCC), to(#CCCCCC));
    background: -moz-linear-gradient(top,  #CCCCCC,  #CCCCCC);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#CCCCCC', endColorstr='#CCCCCC');
}

.red
{
    color: #E8F0DE;
    border: solid 1px #FF1A1A;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FF1A1A), to(#CC0000));
    background: -moz-linear-gradient(top,  #FF1A1A,  #CC0000);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF1A1A', endColorstr='#CC0000');
}
.red:hover {
    background: #000000;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#2A2E2A), to(#000000));
    background: -moz-linear-gradient(top,  #2A2E2A,  #000000);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2A2E2A', endColorstr='#000000');
}
.red:active {
    color: #C2C9C1;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#2A2E2A));
    background: -moz-linear-gradient(top,  #000000,  #2A2E2A);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#2A2E2A');
}

.blue
{
    color: #FFFFFF;
    border: solid 1px #3D7EF1;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#3D7EF1), to(#4582ed));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}
.blue:hover {
    color: #433F40;
    border: solid 1px #FFD800;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD800), to(#FFBF00));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}
.blue:active {
    color: #433F40;
    border: solid 1px #FFD800;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD800), to(#FFBF00));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}

.orange
{
    color: #FFFFFF;
    border: solid 1px #FF8C00;
    background: #ff8000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FF8000), to(#FF9933));
    background: -moz-linear-gradient(top,  #FF8000,  #FF9933);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8000', endColorstr='#FF9933');
}
.orange:hover {
   background: #000000;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#2A2E2A), to(#000000));
    background: -moz-linear-gradient(top,  #2A2E2A,  #000000);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2A2E2A', endColorstr='#000000');
}
.orange:active {
    color: #C2C9C1;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#2A2E2A));
    background: -moz-linear-gradient(top,  #000000,  #2A2E2A);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#2A2E2A');
}

.yellow
{
    color: #433F40;
    border: solid 1px #FFD800;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD800), to(#FFBF00));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}
.yellow:hover {
    color: #433F40;
    border: solid 1px #FFD800;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD800), to(#FFBF00));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}
.yellow:active {
   color: #433F40;
    border: solid 1px #FFD800;
    background: #fe0000;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFD800), to(#FFBF00));
    background: -moz-linear-gradient(top,  #3D7EF1,  #4582ed);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#3D7EF1', endColorstr='#4582ed');
}

.green
{     
    color: #E8F0DE;
    border: solid 1px #32CD32;
    background: #006400;
    background: -webkit-gradient(linear, left top, left bottom, from(#32CD32), to(#006400));
    background: -moz-linear-gradient(top,  #32CD32,  #006400);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#32CD32', endColorstr='#006400');
}
.green:hover {
    background: #000000;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#2A2E2A), to(#000000));
    background: -moz-linear-gradient(top,  #2A2E2A,  #000000);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#2A2E2A', endColorstr='#000000');
}
.green:active {
    color: #C2C9C1;
    border: solid 1px #000000;
    background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#2A2E2A));
    background: -moz-linear-gradient(top,  #000000,  #2A2E2A);
    filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#2A2E2A');
}



.comboBoxList {
    padding: 0px;
    border: 1px solid #999;
    background-color: #ffffff;
    overflow: visible;
}
.comboBoxItem {
    margin: 0px;
    padding: 2px 5px;
    font : normal 14px/14px verdana, geneva, helvetica;
    background-color: inherit;
    cursor: default;		
}
.comboBoxSelectedItem {
    background-color: #ff0000;
    font : normal 14px/14px verdana, geneva, helvetica;
    color:#FFFFFF;
}

.signUp{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #ff0000;
    padding-left: 5px;
}

#reportForm
{
    border: 1px solid #ff0000;	       

    /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.widgetDiv
{
    padding-top:10px;
    width:350px; 
    height: 350px;
    display: inline-block; 
    margin-left:10px;
    margin-right:10px; 
    float:left;
}

.widgetHeader
{
    padding-bottom: 10px;
    padding-top: 10px;
    padding-left:10px; 
    width:200px; 
    text-align:center;
    font-weight:bold;
}

textarea.messageForm
{
    border: 1px solid #888;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    resize: none;
}
.message-list{
    flex-direction: column;
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 100%;
}
.message-row{
    width: 100%;
    padding: 20px;
    display: flex;
    height: 100%;
    
}
.message{
    padding-right: 50px;
    width: calc(100% - 200px);
    font-size: 18px;
    line-height: 20px;
    text-align: left;
}
.message-no-image{
    width: 90%;
    padding: 20px;
    text-align: left;

}

.message-thumbnail{
    max-width: 100px;
    cursor: pointer;

}
.tiny-thumbnail{
    padding: 5px;
    height: 50px;
    cursor: pointer;
}
.flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.full-width {
    width: 100%;
}
.width-80{
    width: 80%;
}
.gap-10{
    gap: 10px;
}
.gap-5{
    gap: 5px;
}