html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

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

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.errors {
	margin-bottom:8px;
}
.errors li {
	list-style: none;
	text-align: center;
	font-size: 14px;
	color: red;
	background-color: #f5f5f5;
}
.errors .errorMessage {
	padding-left: 0px;
}

.data-table th {
	background-color:#f5f5f5;
	padding: 12px 10px;
}
.data-table td {
	padding: 12px 10px !important;
}

.header-logo-container {
	float: left;
	height: 90%;
	width: 15%;
}
.header-logo-container-text {
	width: 100%;
	font-style: italic;
	font-weight: 400;
}

.header-logo {
	background: url('/img/logo/logo.svg') no-repeat;
	background-size: contain;
	height: 100%;
	width: 100%;
	float:left;
	margin-left: 15px;
}
.header-separator {
/*	height: 90%;	
	width: 1px;
	float:left;
	border-left: 1px solid #D4D4D4;
*/	
}

.partner-logo {
/*	background: url('/img/logo/tsg_logo.png') no-repeat;*/
	background-size: contain;
	height: 40px;
	width: 100%;
	float:left;
	margin-top: 15px;
	margin-left: 15px;
}