.bug-report-page {
	background-color: #000000D7;
	z-index: 1000;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
}

.bug-report-page-fadein {
	animation: fadeIn ease 0.3s;
	-webkit-animation: fadeIn ease 0.3s;
	-moz-animation: fadeIn ease 0.3s;
}

.bug-report-container {
	background-color: #fffffff6;
	margin: 5vh 5vw;
	width: 90vw;
	height: 90vh;
	position: fixed;
	top: 0;
	box-shadow: 0px 3px 6px #0000004D;
	opacity: 0.95;
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

@media (orientation: landscape) {
	.bug-report-container {
		border-radius: 0.5vw;
	}

	.bug-report-title {
		border-radius: 0.5vw 0.5vw 0 0;
	}

}

@media (orientation: portrait) {
	.bug-report-container {
		border-radius: 1vh;
	}

	.bug-report-title {
		border-radius: 1vh 1vh 0 0;
	}
}

.bug-report-title {
	width: 100%;
	display: inline-block;
	background-color: #707070f6;
	height: 12.5%;
	font-size: 3vw;
	color: white;
	margin: auto;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	letter-spacing: 0px;
}

.bug-report-title-text{
	display: inline-block;
	vertical-align: middle;
}

.bug-report-content {
	width: 100%;
	height: 87.5%;
	color: #4D4D4D;
}

.bug-report-caption{
	display: flex;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	padding-top: 1%;
	padding-bottom: 0.5%;
	font-size: 1.5vw;
	font-weight: bold;
}

.bug-report-row {
	width: 70%;
    height: 15%;
    margin-left: 15%;
    margin-right: 15%;
    text-align: center;
}

.bug-report-item {
	display: inline-block;
	justify-content: center;
	align-items: center;
	vertical-align: middle;
	border: 3px solid #707070;
	border-radius: 0.5vw;
	width: 22.5%;
	height: 80%;
	opacity: 0.7;
	word-spacing:9999px;
	text-align: left;
}

.bug-report-item:hover {
	cursor: pointer;
}

.bug-report-item-selected {
	background: transparent linear-gradient(111deg, #707070 0%, #4D4D4D 100%) 0% 0%;
	color: white;
	opacity: 1;
	animation: fadeIn ease 1s;
	-webkit-animation: fadeIn ease 1s;
	-moz-animation: fadeIn ease 1s;
}

.bug-report-item:nth-child(1) {
	margin-right: 2%;
}

.bug-report-item:nth-child(3) {
	margin-left: 2%;
}

.bug-report-text {
    text-align: center;
	font-size: 1.2vw;
	height: 100%;
	justify-content: center;
    align-items: center;
    vertical-align: middle;
    display: flex;
}

.bug-report-icon {
    background-repeat: no-repeat;
    display: inline;
    position: fixed;
    height: 8vw;
    width: 8vw;
}

.bug-report-icon-1 {
	background-image: url(../images/feedback/img_item1.png);
    margin-top: 1%;
    margin-left: 0.5%;
}

.bug-report-icon-1-selected {
	background-image: url(../images/feedback/img_item1_pressed.png);
    margin-top: 0.2%;
    margin-left: 0.25%;
}

.bug-report-icon-2 {
	background-image: url(../images/feedback/img_item2.png);
    margin-top: 0.5%;
    margin-left: 2%;
}

.bug-report-icon-2-selected {
	background-image: url(../images/feedback/img_item2_pressed.png);
    margin-top: 0.3%;
    margin-left: 1%;
}

.bug-report-icon-3 {
	background-image: url(../images/feedback/img_item3.png);
    margin-top: 0.5%;
    margin-left: -5%;
}

.bug-report-icon-3-selected {
	background-image: url(../images/feedback/img_item3_pressed.png);
    margin-top: 0.25%;
    margin-left: -6%;
}

.bug-report-icon-4 {
	background-image: url(../images/feedback/img_item4.png);
    margin-top: 0.5%;
    margin-left: -4%;
}

.bug-report-icon-4-selected {
	background-image: url(../images/feedback/img_item4_pressed.png);
    margin-top: 0.1%;
    margin-left: -4%;
}

.bug-report-icon-5 {
	background-image: url(../images/feedback/img_item5.png);
    margin-top: 1%;
    margin-left: 1%;
}

.bug-report-icon-5-selected {
	background-image: url(../images/feedback/img_item5_pressed.png);
    margin-top: 0.5%;
    margin-left: 1%;
}

.bug-report-icon-6 {
	background-image: url(../images/feedback/img_item6.png);
    margin-top: 0.5%;
    margin-left: 2%;
}

.bug-report-icon-6-selected {
	background-image: url(../images/feedback/img_item6_pressed.png);
    margin-top: 0%;
    margin-left: 1.5%;
}

.bug-report-comment {
	margin: 0 auto;
	width: 52%;
	height: 35%;
	background: #ffffff;
	border-radius: 0.5vw;
}

.bug-report-submit {
	margin-left: auto;
	margin-right: auto;
	width: 15%;
	height: 8%;
	background-color: white;
	border-radius: 0.5vw;
	box-shadow: 0px 4px 5px #0000001A;
}

.bug-report-submit:hover {
	cursor: pointer;
}

.bug-report-submit-disabled {
	margin-left: auto;
	margin-right: auto;
	width: 15%;
	height: 8%;
	border: 1px solid #707070;
	border-radius: 0.5vw;
	opacity: 0.5;
}

.bug-report-submit-disabled:hover {
	cursor: pointer;
}

.bug-report-submit-text {
	text-align: center;
	font-size: 1.3vw;
	height: 100%;
	justify-content: center;
    align-items: center;
    vertical-align: middle;
    display: flex;
}

.bug-report-finish {
	width: 15%;
	height: 8%;
	background-color: white;
	border-radius: 0.5vw;
	box-shadow: 0px 4px 5px #0000001A;
	opacity: 1;
	color: #707070;
	display: inline-block;
	left: 42.5%;
	bottom: 0;
	margin-bottom: 2.5vw;
	position: absolute;
}

.bug-report-finish {
	cursor: pointer;
}

.align-right {
	text-align: right;
}

.bug-report-comment-text {
	letter-spacing: 0px;
	color: #4D4D4D;
	resize: none;
	height: 85%;
	width: 44%;
	border: none;
	font-size: x-large;
	padding: 2%;
	display: inline-block;
}

.bug-report-comment-text:focus {
	outline: none !important;
}

.bug-report-comment-text::placeholder {
	color: #dadada;
	font-size: 90%;
	font-style: italic;
	
}

.bug-report-comment-photo {
	background-color: black;
	background-image: url(../images/feedback/img_item6_pressed.png);
	height: 100%;
	width: 50%;
	display: inline-block;
	border-radius: 0.5vw;
	margin: 0;
}

.bug-report-cancel {
	position: absolute;
	width: 10%;
	height: 6%;
	background-color: white;
	border-radius: 0.5vw;
	box-shadow: 0px 0px 6px #00000057;
	color: #4D4D4D;
	font-weight: bold;
	margin-left: 2.5%;
	left: 0;
}

.bug-report-cancel:hover {
	cursor: pointer;
}

.bug-report-content-page {
	width: 100%;
	height: 100%;
}

.bug-report-logo {
	position: absolute;
	max-width: 30vw;
	height: auto;
	margin-left: 25vh;
	margin-top: 5vh;
}

.bug-report-result-text {
	position: absolute;
	text-align: left;
	width: 100%;
	left: 50%;
	margin-top: 25vh;
}

.bug-report-result-title {
	font-size: 4vw;
	font-weight: bold;
}

.bug-report-result-subtitle {
	font-size: 1.5vw;
}

@keyframes fadeIn {
	0% {opacity:0.25;}
	100% {opacity:1;}
}

@-moz-keyframes fadeIn {
	0% {opacity:0.25;}
	100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
	0% {opacity:0.25;}
	100% {opacity:1;}
}
