.supportReply {
    color: green;
}

.replyBody {
    padding-left: 1em;
}

.commentsFrame {
    height: 200px;
    overflow-y: auto;
    background-color: lightgrey
}

.commentsFromJSP {
    height: 200px;
    overflow-y: auto;
    background-color: lightgrey
}

.commentsWidth {
    width: 400px;
}

.infoCaption {
    font-weight: bold;
    font-size: larger;
    padding-bottom: 1em;
}

.newCommentLabel {
    font-weight: bold;
    color: blue;
}

.labelQuestion {
    font-size: smaller;
}

.answer {
    padding-bottom: 0.5em;
}

.supportAuthor {
    font-weight: bold;
}

.userAuthor {
    font-weight: bold;
}

.userReply {
    color: black;
}

.attachments {
    padding-left: 10px;
}

.loader-container {
    display: none;
	width: 100%;
	height: 3px;
	background-color: #f3f3f3;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
	margin: 5px 0;
  }
  
  .loader-bar {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
  }
  
  .loader-runner {
	width: 30%;
	height: 100%;
	background-color: #0b5fff;
	position: absolute;
	animation: loader-animation 1s infinite linear;
	border-radius: 30px;
  }
  
  @keyframes loader-animation {
	0% {
	  left: -30%;
	}
	50% {
	  left: 35%;
	}
	100% {
	  left: 100%;
	}
  }