.dark {
    background: black;
    opacity: 0.6;
}

.roundedCorners {
    border-radius: 20px;
    border: 2px solid;
    padding: 20px;
    width: 200px;
    height: 150px;
}

.justRoundedCorners {
	border-radius: 20px;
    border: 1px solid;
    padding: 5px;
}

.addMargin {
	margin: 7px;
}

.full-height {
    height: 100%;
}

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

.myTable {
    background-color: rgba(255, 255, 255, 200);
    table-layout: fixed;
}

.button {
    display: block !important;
    margin-bottom: 0px;
    border: 0px;
}

.table{  
	display: table;
}
.tr {
	display: table-row;
}
.td {
	display: table-cell;
}

#spinner:not([hidden]) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  
  touch-action: none;
  z-index: 2;
}

#spinner::after {
  content: "";
  width: 80px;
  height: 80px;
  border: 2px solid #f3f3f3;
  border-top: 3px solid #f25a41;
  border-radius: 100%;
  will-change: transform;
  animation: spin 1s infinite linear
}

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