/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 19, 2016, 1:54:16 PM
    Author     : Bo
*/

#edituseradvancedform {
    z-index: 101;
    position: relative;
    display: block;
    box-sizing: border-box;
    /*background-color: rgba(179, 179, 179, 1);     */
    background-color: whitesmoke;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);    
    /*posistion horizontal*/
    margin: auto;        
}

.edituseradvancedheadline {
    z-index: 101;     
    font-weight: bold;    
    width: 100%;
    border: 0;
    margin: 0 0 1em;    
    box-sizing: border-box;
    font-size: 1em;
    padding-top: 0em;
}

.closeedituseradvancedbutton {
    z-index: 102; 
    position: absolute;
    right: 10px;
    top: 10px;
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    background-image: url(./close-32.png);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.closeedituseradvancedbutton:hover {
    background-image: url(./close-32-hover.png);
}

#edituseradvancedform input {  
    outline: 0;
    /*background: #f2f2f2;*/
    background: white;
    width: 100%;
    border: 0;
    margin: 0 0 1em;
    padding: 0.7em;
    box-sizing: border-box;
    font-size: 1em;
}

#edituseradvancedform select {  
    outline: 0;
    /*background: #f2f2f2;*/
    background: white;
    width: 100%;
    border: 0;
    margin: 0 0 1em;
    padding: 0.7em;
    box-sizing: border-box;
    font-size: 1em;
}

#edituseradvancedform input[type="checkbox"] {      
    background: transparent;
    width: auto;    
    box-sizing: border-box;
    cursor: pointer;
    margin: 0em;
    padding: 0em;
}

#edituseradvancedform table {    
    background-color: transparent;
    margin: 1em 0 1em;    
    font-size: 1em;  
    width: 100%;    
}

#edituseradvancedform table td{
    padding-top: 0.7em;
    padding-bottom: 0.7em;
}

#edituseradvancedform table td label{
    padding-left: 0.7em;    
}

#edituseradvancedform button {
    text-transform: uppercase;
    outline: 0;
    background: #4CAF50;
    width: 100%;
    border: 0;
    padding: 0.7em;
    color: #FFFFFF;
    font-size: 1em;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
}

#edituseradvancedform button:hover, #edituseradvancedform button:active, #edituseradvancedform button:focus {
      background: #43A047;
}

#edituseradvancedform .messagestyle {
    margin: 0 0 1em;
    color: black;
    font-size: 1em;  
    width: 100%;
    text-align: left;    
}

#edituseradvancedform a {        
    color: #4CAF50;
    text-decoration: none;    
}

/* For mobile phones: */
@media only screen and (min-device-width: 0px) and (max-device-width: 767px) {
    .edituseradvancedform {
        width: 90%;
        min-width: 90%;
        height: 90%;        
        padding: 2%;        
    }
}

/* For tablets: */
@media only screen and (min-device-width: 768px) and (max-device-width: 1199px) {
    
    .edituseradvancedform {        
        width: 90%;
        min-width: 90%;
        height: 90%;        
        padding: 2%;   
    }
    
}

/* For laptops: */
@media only screen and (min-device-width: 1200px) {
    .edituseradvancedform {
        width: 33%;
        min-width: 500px;
        height: auto;        
        padding: 50px;
    }      
}
