#topBtn {
    font-family: 'Michroma';
letter-spacing: 0.06em;
    display: none;
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 99;
    border: none;
    outline: none;
    /* background-color: #0F74EF; */
/* background-color: #0F74EF; */
background-color: rgb(19, 82, 240);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 5px;

}

#topBtn:hover {
   /*  background-color: rgb(255, 138, 0); */
border:2px solid rgb(255, 138, 0);

background-color: transparent;

color: rgb(255, 138, 0);

}


.paragraph_style_navigation_dark {
    color: rgb(210, 210, 210);
    font-family: 'Michroma';
    font-size: 13px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 22px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    opacity: 1.00;
    padding-bottom: 0px;
    padding-top: 0px;
    text-align: left;
    text-decoration: none;
    text-indent: 0px;
    text-transform: none;
    z-index: 3;
}


.spinner {
  margin: 20px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

  .visible
{
visibility: visible;
opacity: 0.5;
transition: opacity 1s linear;
}                
               /* Fade-Out Effect */
.hidden
{
visibility: hidden;
opacity: 0;
transition: visibility 0s 1s, opacity 1s linear;
}                


.fadeInElement {
/* 
    margin-top: 25px;
    font-size: 21px;
    text-align: center;
 */

    -webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
}

.fadeOutElement {

    -webkit-animation: fadeout 1s;/* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadeout 1s;/* Firefox < 16 */
        -ms-animation: fadeout 1s;/* Internet Explorer */
         -o-animation: fadeout 1s;/* Opera < 12.1 */
            animation: fadeout 1s;

}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .6; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .6; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .6; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .6; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: .6; }
}



@keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0;}
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0;}
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* Opera < 12.1 */
@-o-keyframes fadeout {
    from { opacity: 1; }
    to   { opacity: 0; }
}
