/* Optional: Makes the sample page fill the window. */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background:#111;
}
.regular-font{
  font-family: sans-serif;
  font-weight: normal;
  font-style: normal; 
}
.clickable{
  cursor:pointer;
}
#main {
  width: 100%;
  height: 100%;
}

.padding-5px {
  padding: 5px;
}

 
.full-width {
  width: 100%;
}

.full-height {
  height: 100%
}

.full-view {
  width: 100%;
  height: 100%
}
.overflow{
  overflow: auto !important;
}
.center {
  margin: 0 auto;
}

.fixed {
  position: fixed !important;
}
.relative{
  position: relative !important;
}
.top {
  position: absolute;
  top: 0px;
  bottom: auto;
  ;
}

.bottom {
  position: absolute;
  top: auto;
  bottom: 0px;
}

.top.right,
.bottom.right {
  right: 0px;
  left: auto;
}

.top.left,
.bottom.left {
  right: auto;
  left: 0px;
}

.onBlur {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.no-margin {
  margin: 0px !important;
}

.no-padding {
  padding: 0px !important;
}

.animated.delay-01 {
  animation-delay: 0.1s !important;
}
.animated.delay-02 {
  animation-delay: 0.2s !important;
}
.animated.delay-03 {
  animation-delay: 0.3s !important;
}
.animated.delay-04 {
  animation-delay: 0.4s !important;
}
.animated.delay-05 {
  animation-delay: 0.5s !important;
}

.animated.delay-1 {
  animation-delay: 1s !important;
}

.animated.delay-2 {
  animation-delay: 2s !important;
}

.animated.delay-3 {
  animation-delay: 3s !important;
}

.animated.delay-4 {
  animation-delay: 4s !important;
}

.animated.delay-5 {
  animation-delay: 5s !important;
}


.animated.delay-01 {
  animation-delay: 0.1s !important;
}

.animated.delay-02 {
  animation-delay: 0.2s !important;
}

.animated.delay-03 {
  animation-delay: 0.3s !important;
}

.animated.delay-04 {
  animation-delay: 0.4s !important;
}

.animated.delay-05 {
  animation-delay: 0.5s !important;
}


.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

 
.animated.float {
  animation: float 2s ease-in-out infinite;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-5px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}

.ui-icon {
  background-image: url(../resources/assets/ui-icon.png);
  height: 32px;
  width: 32px;
  background-size: cover;
  background-repeat: no-repeat;
}

.ui-icon._16px {
  height: 16px !important;
  width: 16px !important;
}

.ui-icon.heart {
  background-position: 0px 0px;
}

.ui-icon.mana:not(._16px) {
  background-position: -32px 0px;
}

.ui-icon.mana._16px {
  background-position: -16px 0px;
}

.ui-icon.soul:not(._16px) {
  background-position: -64px 0px;
}

.ui-icon.soul._16px {
  background-position: -32px 0px;
}

.btn-floating .inner.circle {
  border: thin solid #111;
  position: absolute;
  margin: 0 auto;
  height: 90%;
  width: 90%;
  left: 5%;
  top: 5%;
}

.btn-floating.btn-large .inner.circle i {
  line-height: 50px;
}

.btn-floating:not(.btn-large) .inner.circle i {
  line-height: 30px;
}
.small-text{
  font-size:0.8rem;
}
.right-text{
  text-align: right;
}
.left-text{
  text-align: left;
}
.center-text{
  text-align: center;
}
.ribbon {
  font-size: 16px !important;
  /* This ribbon is based on a 16px font side and a 24px vertical rhythm. I've used em's to position each element for scalability. If you want to use a different font size you may have to play with the position of the ribbon elements */
 
  width: 50%;
     
  position: relative;
  background: #ba89b6;
  color: #fff;
  text-align: center;
  padding: 1em 2em; /* Adjust to suit */
  margin: 2em auto 3em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */
 }
 .ribbon:before, .ribbon:after {
  content: "";
  position: absolute;
  display: block;
  bottom: -1em;
  border: 1.5em solid #986794;
  z-index: -1;
 }
 .ribbon:before {
  left: -2em;
  border-right-width: 1.5em;
  border-left-color: transparent;
 }
 .ribbon:after {
  right: -2em;
  border-left-width: 1.5em;
  border-right-color: transparent;
 }
 .ribbon .ribbon-content:before, .ribbon .ribbon-content:after {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: #804f7c transparent transparent transparent;
  bottom: -1em;
 }
 .ribbon .ribbon-content:before {
  left: 0;
  border-width: 1em 0 0 1em;
 }
 .ribbon .ribbon-content:after {
  right: 0;
  border-width: 1em 1em 0 0;
 } 
 .ml-2 {
   margin-left:2px;
 }
 .mr-2 {
  margin-right:2px;
}
.mr-5 {
  margin-right:5px;
}
.mb-2{
  margin-bottom: 2px;
}

.mb-4{
  margin-bottom: 4px;
}
.mb-5{
  margin-bottom: 5px;
}
.mb-6{
  margin-bottom: 6px;
}
.mb-7{
  margin-bottom: 7px;
}
.mb-8{
  margin-bottom: 8px;
}



.table-battle-menu td{
padding:5px;
}


 
.badge{
  border-radius: 2px;
    padding: 2px;
    margin: 2px 5px;
}