﻿#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000; }

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem; }

pre.highlight,
.highlight pre {
  max-height: 30rem;
  overflow: auto;
  background: #354052;
  color: #ffffff; }

.highlight .htmlAttributeName, .highlight .razor {
  color: #ffe484; }

.highlight .htmlTagDelimiter, .highlight .htmlElementName {
  color: #ff8383; }

.highlight .htmlAttributeValue, .highlight .string {
  color: #b5f4a5; }

.highlight .keyword {
  color: #93ddfd; }

.iconlist-container {
  min-height: 800px; }

.example {
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid solid lightgray;
  border-radius: 3px 3px 0 0;
  position: relative;
  min-height: 12rem;
  display: flex;
  align-items: center;
  overflow-x: auto; }

.example-centered {
  justify-content: center; }
  .example-centered .example-content {
    flex: 0 auto; }

.example-content {
  flex: 1;
  max-width: 100%; }

.example-code {
  margin: 2rem 0;
  border-top: none; }
  .example-code pre {
    margin: 0;
    border-radius: 0 0 3px 3px; }
  .example + .example-code {
    margin-top: -2rem; }

.example-column {
  margin: 0 auto; }
  .example-column > .card:last-of-type {
    margin-bottom: 0; }

.example-column-1 {
  max-width: 20rem; }

.example-column-2 {
  max-width: 40rem; }


.spinner{
    border:8px solid silver;
    border-top:8px solid #337AB7;
    border-radius:50%;
    width:40px;
    height:40px;
    animation:spin 700ms linear infinite;
    top:40%;
    left:55%;
}

@keyframes spin {
    0%{
        transform:rotate(0deg)
    }

    100%{
        transform:rotate(360deg)
    }
}

.hide {
    display: none;
}

.slotBtn{
    width:50px;
    height:50px;
}

.overlay {
    background-color: black;
    opacity:0.5;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 100002;
}

.overlay2 {
    background-color: rgba(0,0,0,0.35);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 100002;
}

.overlay3 {
    background-color: #ffffff;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 100002;
}

.spinner2 {
    width: 40px;
    height: 40px;
    z-index: 100000000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }

    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }

    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}