.lds-ring {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  margin-top: -1px;
  width: 20px;
  height: 20px;
  margin: 1px;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #bbb transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.align-text-top {
	vertical-align: text-top;
}

.align-top {
  vertical-align: top;
}

.display-inline-block {
	display: inline-block;
}

.display-inline-block-important {
	display: inline-block !important;
}

.display-hide {
	display: none;
}

.cursor-pointer {
  cursor: pointer;
}

.align-top {
  vertical-align: top;
}

.align-center {
  margin-left: auto;
  margin-right:auto;
}

.align-text-center {
	text-align: center;
}

.align-right {
  float: right;
}

.align-text-right {
	text-align: right;
}

.align-text-left {
  text-align: left;
}

.align-element-center {
	margin-left: auto;
	margin-right: auto;
}

.padding-small {
	padding: 4px;
}

.padding-left-small {
	padding-left: 4px;
}

.padding-right-small {
	padding-right: 4px;
}

.padding-top-small {
  padding-top: 4px;
}

.padding-left-right-small {
	padding-left: 4px;
	padding-right: 4px;
}

.padding-left-right-normal {
  padding-left: 12px;
  padding-right: 12px;
}

.margin-left-very-small {
  margin-left: 6px;
}

.margin-left-small {
  margin-left: 10px;
}

.margin-right-small {
  margin-right: 10px;
}

.margin-top-header-icon {
  margin-top: -8px;
}

.margin-top-small {
  margin-top: 10px;
}

.margin-top-very-small {
  margin-top: 5px;
}

.margin-top-header {
  margin-top: 26px;
}

.min-width-small {
  min-width: 200px;
}

.width-normal {
  width: 400px;
}

.pure-form label {
  margin: 0 !important;
}

.pure-form input[type="text"] {
  margin: 0 !important;
}

.pure-form input[type="password"] {
  margin: 0 !important;
}

@media only screen and (max-width: 450px) {
  .width-normal {
    width: 290px
  }
}

.max-width-normal {
  max-width: 600px;
}

.border-control table, tr, td {
  border: 0px solid black;
}

.custom-table-style tr:nth-child(odd) {
  background-color: #FFCCCC;
}

.custom-table-style td {
  padding: 8px;
  word-break: break-all;
}

.break-word {
  word-break: break-all;
}

.dummy {
  display: none;
}

.custom-restricted-width {
  /* To limit the menu width to the content of the menu: */
  display: inline-block;
  /* Or set the width explicitly: */
  /* width: 10em; */
}

.max-width-350 {
  max-width: 350px;
}

