.recording-style {
	width: 15px;
	height: 15px;
	font-size: 0;
	background-color: #f85656;
	border: 0;
    border-radius: 10px;
    display: inline-block;
    outline: none;
    opacity: 0.5;
    vertical-align: middle;
    animation-name: pulse;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.play-style {
    color: #218838;
    opacity: 0.5;
}

.paused-style {
    color: #007bff;
    opacity: 0.5;
}

.stopped-style {
    color: #dc3545;
    opacity: 0.5;
}


@keyframes pulse{
	0%{
		box-shadow: 0px 0px 2px 0px rgba(173,0,0,.3);
	}
	65%{
		box-shadow: 0px 0px 2px 8px rgba(173,0,0,.3);
	}
	90%{
		box-shadow: 0px 0px 2px 8px rgba(173,0,0,0);
	}
}

.loading {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(192, 192, 192, 0.5);
	background-image: url("img/loading.svg");
	background-repeat: no-repeat;
	background-position: center;
	z-index: 9999;
}

.input-clipboard {
	background-color: #e9ecef;
    opacity: 1;
	cursor: pointer;
	height: auto;
	min-height: 90px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.clipboard {
	margin: auto;
}

.img-label {
	padding-top: 2px;
	font-size: 8px;
}

.print-image-div {
	margin: auto;
	text-align: center;
	position: relative;
}

.remove-print-btn {
	color: #fc0505ab;
    padding: 2px;
    position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
    font-size: 12px;
}

.print-image {
	max-width: 50px;
}

.form-group {
    margin-bottom: 5px;
}

.header-btn {
	font-size: 20px;
}

.minimized-modal {
	width: 200px;
	height: 35px;
	bottom: 1px;
	left: 1px;
	position: fixed;
	z-index: 9999;
	border: 1px solid #827b7b;
    border-radius: 5px 5px 0px 0px;
	box-shadow: 0px 0px 6px #888888;
	cursor: pointer;
}

.maximize {
	font-size: 14px;
	padding: 10px !important;
}

.minimized-modal .col {
	margin: auto;
	text-align: center;
}
