/* Card */
body {
  font-family: 'Open Sans', sans-serif;
}

.card {
  width: 150px;                 /* Set width of cards */
  display: flex;                /* Children use Flexbox */
  flex-direction: column;       /* Rotate Axis */
  border: 1px solid #EF9A9A;    /* Set up Border */
  border-radius: 4px;           /* Slightly Curve edges */
  overflow: hidden;             /* Fixes the corners */
  margin: 5px;                  /* Add space between cards */
}

.card-header {
  color: #D32F2F;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid #EF9A9A;
  background-color: #FFEBEE;
  padding: 5px 10px;
}

.card-main {
  display: flex;              /* Children use Flexbox */
  flex-direction: column;     /* Rotate Axis to Vertical */
  justify-content: center;    /* Group Children in Center */
  align-items: center;        /* Group Children in Center (on cross axis) */
  padding: 15px 0;            /* Add padding to the top/bottom */
}

.material-icons {
  font-size: 36px;
  color: #D32F2F;
  margin-bottom: 5px;
}

.main-description {
  margin-top: 10px;
  color: #D32F2F;
  font-size: 12px;
  text-align: center;
}

/* Layout */
.position-loading {

  margin-top: -20px;
  margin-left: 40px;
}

/* Animation */
.dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  z-index: 15000;
}
.dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin-top: 8px;
  margin-left: 20px;
  border-radius: 50%;
  border: 6px solid darkslategrey;
  border-color: darkslategrey transparent #fff transparent;
  animation: dual-ring 1.2s linear infinite;
}
@keyframes dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.centered {
  position: fixed; /* or absolute */
  width: 120px;
  top: 50%;
  left: 50%;
  margin-top: -150px;
  margin-left: -60px;
}

.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;
}

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

.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;
}

/* Background */
.bg {
  background-color: lightslategray;
}

/* Text color */
.text-color-white {
  color: white;
}

/* Pure */
.pure-menu-heading {
  color: white !important;
}
.pure-menu-link {
  color: white !important;
}

.pure-menu-link:hover {
  color: darkslategray !important;
}

.pure-menu-link:focus {
  color: darkslategray !important;
}

a:focus { outline: none; }

@media screen and (max-width: 640px) {
  .pure-u-1-6 {
    width: 100% !important;
  }

  .pure-u-5-6 {
    width: 100% !important;
  }
}

@media screen and (min-width: 641px) {
  .pure-u-1-6 {
    min-height: 100vh !important;
  }
}



