@-webkit-keyframes blinker {
  from { opacity: 1.0; }
  to { opacity: 0.0; }
}
.blink {
  -webkit-animation-name: blinker;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(1.0,0,0,1.0);
  -webkit-animation-duration: 1s;
}
emboss {
  font-size: 95%;
  font-weight: 900;
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
  background-size: 100% 78% !important;
  background-repeat: no-repeat;
  background: linear-gradient(180deg, transparent 58%, gold 0) !important;
}

a[href^="https://www.froala"] {
    display: none !important;
}
.hidden {display: none;}
.rotate-90 {transform: rotate(90deg);}
.del {text-decoration: line-through;}
.rollover{cursor: pointer;}
.sm {font-size: .8em; line-height: 1.1em;}
.md {font-size: .9em; line-height: 1.2em;}
.gras, .bold {font-weight: 900;}
.adaptHeight {
    height: calc(100vh - 60px);
    overflow: auto;
}
.toolbar i {
    font-size: 8pt;
    line-height: 10pt;
}
.contrast {text-shadow: 0px 0px 2px #000;}
.high-contrast {text-shadow: 0px 0px 10px #000;}
.parallax { 
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

@media (min-width: 576px) {
  #alertModal .modal-dialog {
    margin-top: 25vh;
  }
}
/*=============================================*/
/* Scroll2top
/*=============================================*/
#back-top {
  position: fixed;
  bottom: 60px;
  right: 60px;
}
#back-top a {
  width: 60px;
  display: block;
  text-align: center;
  font: 11px/100% Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #bbb;
  /* background color transition */
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#back-top a:hover {
  color: #000;
}
/* arrow icon (span tag) */
#back-top span {
  width: 60px;
  height: 60px;
  display: block;
  margin-bottom: 7px;
  background-color: #ddd;
  background-image: url('https://i.imgur.com/7f4R9lP.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 30px 30px;
  /* rounded corners */
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  /* background color transition */
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}
#back-top a:hover span {
  background-color: #777;
}