.bugreport-form-style {
    font: 95% Arial, Helvetica, sans-serif;
    max-width: 400px;
    margin: 10px auto;
    padding: 16px;
    background: #F7F7F7;
}

.bugreport-form-style h1 {
    background: #5d8eae;
    padding: 20px 0;
    font-size: 140%;
    font-weight: 300;
    text-align: center;
    color: #fff;
    margin: -16px -16px 16px -16px;
}

.bugreport-form-style input[type="text"],
.bugreport-form-style input[type="date"],
.bugreport-form-style input[type="datetime"],
.bugreport-form-style input[type="email"],
.bugreport-form-style input[type="number"],
.bugreport-form-style input[type="search"],
.bugreport-form-style input[type="time"],
.bugreport-form-style input[type="url"],
.bugreport-form-style input[type="file"],
.bugreport-form-style textarea,
.bugreport-form-style select {
    -webkit-transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    background: #fff;
    margin-bottom: 4%;
    border: 1px solid #ccc;
    padding: 3%;
    color: #555;
    font: 95% Arial, Helvetica, sans-serif;
}

.bugreport-form-style input[type="text"]:focus,
.bugreport-form-style input[type="date"]:focus,
.bugreport-form-style input[type="datetime"]:focus,
.bugreport-form-style input[type="email"]:focus,
.bugreport-form-style input[type="number"]:focus,
.bugreport-form-style input[type="search"]:focus,
.bugreport-form-style input[type="time"]:focus,
.bugreport-form-style input[type="url"]:focus,
.bugreport-form-style input[type="file"]:focus,
.bugreport-form-style textarea:focus,
.bugreport-form-style select:focus {
    box-shadow: 0 0 5px #474747;
    padding: 3%;
    border: 1px solid #474747;
}

.bugreport-form-style input[type="submit"],
.bugreport-form-style input[type="button"] {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    padding: 3%;
    background: #5d8eae;
    border-bottom: 2px solid #5d8eae ;
    border-top-style: none;
    border-right-style: none;
    border-left-style: none;
    color: #fff;
}

.bugreport-form-style input[type="submit"]:hover,
.bugreport-form-style input[type="button"]:hover {
    background: #474747;
}



.lvBugReportRequestContainer .lvBugReportRequestFormLoader {
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top: 12px solid #444444;
    width: 70px;
    height: 70px;
    animation: spin 1s linear infinite;
    visibility: hidden;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.lvBugReportRequestContainer .center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}