/*#################################################################################
/*timer cycle start
/*#################################################################################*/
@-webkit-keyframes time {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes mask {
    0% {
        background: #eee;
        -webkit-transform: rotate(0deg);
    }
    50% {
        background: #eee;
        -webkit-transform: rotate(-180deg);
    }
    50.01% {
        background: #87c69b;
        -webkit-transform: rotate(0deg);
    }
    100% {
        background: #87c69b;
        -webkit-transform: rotate(-180deg);
    }
}

@keyframes spin {
    1% {
        counter-reset: duration calc(var(--duration) * 1.0);
        content: counter(duration);
    }
    11% {
        counter-reset: duration calc(var(--duration) * 0.9);
        content: counter(duration);
    }
    21% {
        counter-reset: duration calc(var(--duration) * 0.8);
        content: counter(duration);
    }
    31% {
        counter-reset: duration calc(var(--duration) * 0.7);
        content: counter(duration);
    }
    41% {
        counter-reset: duration calc(var(--duration) * 0.6);
        content: counter(duration);
    }
    51% {
        counter-reset: duration calc(var(--duration) * 0.5);
        content: counter(duration);
    }
    61% {
        counter-reset: duration calc(var(--duration) * 0.4);
        content: counter(duration);
    }
    71% {
        counter-reset: duration calc(var(--duration) * 0.3);
        content: counter(duration);
    }
    81% {
        counter-reset: duration calc(var(--duration) * 0.2);
        content: counter(duration);
    }
    91% {
        counter-reset: duration calc(var(--duration) * 0.1);
        content: counter(duration);
    }
    100% {
        counter-reset: duration calc(var(--duration) * 0);
        content: counter(duration);
    }
}
/*#################################################################################
/*timer cycle end
/*#################################################################################*/
@keyframes dyn__showme {
    0% {opacity: 100%;height:1em;max-height:1em;line-height:1em;
        padding: 0 3.25em 0 3.25em;
        margin:.25em 0 4.5em 0;
    }
    99% {opacity: 100%;height:1em;max-height:1em;line-height:1em;}
    100% {opacity: 0%;height:0px;max-height:0px;line-height:0px;
      margin:0;
      display: none;}
}

@keyframes opa {
  0% {opacity:0.5} 100% {opacity:1}
  }

@-webkit-keyframes pulse{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(2.1);transform:scale(2.1)}100%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulse{0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(2.1);-ms-transform:scale(2.1);transform:scale(2.1)}100%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}

@-webkit-keyframes rotate__me {
    0%{-webkit-transform:rotate( 0deg ) scale( 1 );}
    10%{-webkit-transform:rotate( 15deg ) scale( 1 );}
    50%{-webkit-transform:rotate( -180deg ) scale( 1.4 );}
    100%{-webkit-transform:rotate( -360deg ) scale( 1 );}}
@keyframes rotate__me {
  0% {
    transform: rotate( 0deg ) scale( 1 );
  }
  10% {
    transform: rotate( 15deg ) scale( 1 );
  }
  50% {
    transform: rotate( -180deg ) scale( 1.4 );
  }
  100% {
    transform: rotate( -360deg ) scale( 1 );
  }
}

/*#################################################################################
/*timer cycle end
/*#################################################################################*/
.transition, ul.accordeon__ul li i:before, ul.accordeon__ul li i:after, p {
  transition: all 0.25s ease-in-out;
}

.flipIn, ul.accordeon__ul li, h1 {
  animation: flipdown 0.5s ease both;
}

.no-select, h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


@media (max-width: 550px) {
  body {
    box-sizing: border-box;
    transform: translate(0, 0);
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    left: 0;
  }
}
/*
p {
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2;
}
*/
ul.accordeon__ul li:nth-of-type(1) {
  animation-delay: 0.5s;
}
ul.accordeon__ul li:nth-of-type(2) {
  animation-delay: 0.75s;
}
ul.accordeon__ul li:nth-of-type(3) {
  animation-delay: 1s;
}
ul.accordeon__ul li:last-of-type {
  padding-bottom: 0;
}
ul.accordeon__ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 0;
}
ul.accordeon__ul li i:before, ul.accordeon__ul li i:after {
  content: "";
  position: absolute;
  background-color: #b70707;
  width: .33em;
  height: .75em;
}
ul.accordeon__ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}
ul.accordeon__ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}
ul.accordeon__ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}
ul.accordeon__ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%);
}
ul.accordeon__ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}
ul.accordeon__ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}
@keyframes flipdown {
  0% {
    opacity: 0;
    transform-origin: top center;
    transform: rotateX(-90deg);
  }
  5% {
    opacity: 1;
  }
  80% {
    transform: rotateX(8deg);
  }
  83% {
    transform: rotateX(6deg);
  }
  92% {
    transform: rotateX(-3deg);
  }
  100% {
    transform-origin: top center;
    transform: rotateX(0deg);
  }
}
