﻿.t-api-authorize {
	background-color: green;
	margin: 1em;
}

.t-api-cancel {
	background-color: grey;
	margin: 1em;
}

.swagger-section .swagger-ui-wrap ul#resources li.resource ul.endpoints li.endpoint ul.operations li.operation div.heading {
	overflow: auto;
	white-space: nowrap;
}

.swagger-section .swagger-ui-wrap {
	line-height: 1;
	font-family: "Droid Sans", sans-serif;
	max-width: 1085px;
	-moz-min-width: 1085px;
	-ms-min-width: 1085px;
	-o-min-width: 1085px;
	-webkit-min-width: 1085px;
	min-width: 1085px;
	margin-left: auto;
	margin-right: auto;
}

.signal-loading {
	border: 5px solid #333;
	border-radius: 30px;
	height: 30px;
	left: 50%;
	margin: -15px 0 0 -15px;
	opacity: 0;
	position: fixed;
	top: 50%;
	width: 30px;
	-moz-animation: pulsate 1s ease-out;
	-o-animation: pulsate 1s ease-out;
	-webkit-animation: pulsate 1s ease-out;
	animation: pulsate 1s ease-out;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.swagger-section .api-popup-dialog {
	width: 400px;
}

.api-popup-dialog label {
	display: block;
	padding-bottom: 5px;
}

.api-popup-input-block {
	display: inline-block;
	padding-left: 10px;
}

@keyframes pulsate {
	0% {
		-moz-transform: scale(.1);
		-ms-transform: scale(.1);
		-o-transform: scale(.1);
		-webkit-transform: scale(.1);
		transform: scale(.1);
		opacity: 0.0;
	}

	50% {
		opacity: 1;
	}

	100% {
		-moz-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-o-transform: scale(1.2);
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0;
	}
}
