/* LOAD PAGE */
.loading-page {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,0.7);
  z-index: 1500; }

.loader {
  display: block;
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F18A14;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; }

.loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #0F8B73;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite; }

.loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #F18A14;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite; }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
.loader-text {
  color: #000;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 40px); }

/* /LOAD PAGE */
.toaster-page {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-content: flex-end;
  align-items: flex-end;
  position: fixed;
  top: 16px;
  right: 8px;
  padding-right: 8px;
  background-color: transparent;
  z-index: 1800;
  overflow-y: auto;
  max-height: calc(100vh - 32px); }

.toaster-page > * {
  margin-bottom: 8px; }

.toaster-page *:last-child {
  margin-bottom: 0; }

.toaster-container {
  width: calc(100% - 8px);
  max-width: 350px;
  border-radius: 7px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  border: 1px solid transparent;
  padding: 16px 24px 16px 16px;
  font-size: 13px;
  position: relative; }

.toaster-container.success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724; }

.toaster-container.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb; }

.toaster-container.info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb; }

.toaster-container.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba; }

.toaster-close {
  color: inherit;
  position: absolute;
  text-align: center;
  width: 30px;
  height: 30px;
  top: 0;
  right: 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold; }

.toaster-close:active,
.toaster-close:hover {
  color: gray; }



.balota-container.black {
background-color: #DDDDDD; }
.balota-container.blue .balota-number {
  border-color: #222222; }
