﻿/* User feedback lightbox and form */

#giveUserFeedbackLightboxBase {
    display: none;
    width: 100%;
    height:100%;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0px;
    left: 0px;
}

.giveUserFeedbackLightbox {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    margin-left: -300px;
    margin-top: -205px;
    background: #0070b8;
    color: #FFF;
    border: 3px solid #555555;
    display: block;
    padding: 0px;
    z-index: 99999;
    border-radius: 10px;
    -webkit-box-shadow: 10px 10px 15px -5px #000;
    -moz-box-shadow: 10px 10px 15px -5px #000;
	box-shadow: 10px 10px 15px -5px #000; 
}

.userFeedbackFormDescription {
    position: absolute;
    width: 220px;
    right: 80px;
    top: 45px;
}

.userFeedbackForm {
    padding: 20px;
}

.userFeedbackClose {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 20px;
    height: 20px;
    border-radius: 15px;
    border: 3px solid #555555;
    background: #FFFFFF url(../img/graphics/close.png) no-repeat 5px 5px;
    -webkit-box-shadow: 4px 4px 7px -2px #000;
    -moz-box-shadow: 4px 4px 7px -2px #000;
    box-shadow: 4px 4px 7px -2px #000;
    cursor: pointer;
}

.userFeedbackLink a {
    color: White;
    font-weight: bold;
    font-size: 1.5em;
}

.userFeedbackLink a:hover {
    text-decoration: underline;
}

#feedbackFormSubmit {
    color: #FFF;
    background-color: #0070b8;
    border: 1px solid #FFF;
    font-weight: bold;
    padding: 7px 15px;
    margin: 10px 0px;
    border-radius: 3px;
}

#feedbackFormSubmit:hover {
    background-color: #00529E;
}

#userFeedback table td {
    white-space: nowrap;
}

@media screen and (max-width: 700px) {
    .giveUserFeedbackLightbox {
        top: 20px;
        left: 10%;
        width: 80%;
        margin-top: 0px;
        margin-left: 0px;
    }
    
    .giveUserFeedbackLightbox textarea, 
    .giveUserFeedbackLightbox input[type="text"] {
        width: 100%;
        max-width: 250px;
	    -webkit-box-sizing: border-box;
	    -moz-box-sizing: border-box;
	    box-sizing: border-box;
    }
    
    .userFeedbackFormDescription {
        position: inherit;
        width: 100%;
        margin-top: 15px;
    }
}