#lpsAnimations{
    display:none;
}

.laTaps{
  display:block;
  margin:0;
  padding:0;
  list-style:none;
  white-space: nowrap;
  transition: transform .3s;
    background-color:#f5f5f5;
  z-index:1;
}

.laTap{
    position:relative;
    display:inline-block;
    width:80%;
    height:130px;
    background:#f5f5f5;
    padding-left:140px;
    padding-top:42px;
    text-align:left;
    font-size:22px;
    font-weight:300;
    white-space: normal;
    line-height:25px;
    vertical-align:middle;
    border-right:1px solid #e0e0e0;
    transition: background .3s;
    cursor:pointer;
}
@media (min-width: 768px){
    .laTap{
        width: 45%;
    }
}
@media (min-width: 1200px){
    .laTap{
        width: 30%;
    }
}

.laTap.active,
.laTap:hover{
    background:#fff;
    border-bottom:2px solid orange;
}
.laTap img{
    position:absolute;
    top:15px;
    left:20px;
    width:100px;
    height:100px;
    border-radius: 50%;
    transform: scale(1);
    box-shadow: inset 0 0 4px rgba(0,0,0,.3);
}
.laTap img:after{
    top:0;
    left:0;
    bottom:0;
    right:0;
}
.laTap span{
    color:#ef6c00;
    font-weight: 700;
    font-size:16px;
    line-height: 25px;
}
.laTap span:after{
    position: relative;
    top: -2px;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0 0 0 5px;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'%3E%3Cpath fill='%23EF6C00' d='M8 1C4.136 1 1 4.136 1 8s3.136 7 7 7 7-3.136 7-7-3.136-7-7-7zM6.6 11.15v-6.3L10.8 8l-4.2 3.15z'/%3E%3C/svg%3E");
    vertical-align: middle;
}
.laTapsNavs{
    position:relative;
    overflow:hidden;
}
.laTapsNav{
    position:absolute;
    top:0;
    bottom:0;
    width:200px;

    opacity:0;
    transition: opacity .3s, visibility .3s;
    z-index:2;
}
.laTapsNav:hover{
    opacity: 1;
}
.laTapsNav.dirPrev{
    left:0;
    text-align: left;
    background: linear-gradient(90deg,#e0e0e0,hsla(0,0%,88%,0));
}
.laTapsNav.dirNext{
    right:0;
    text-align: right;
    background: linear-gradient(90deg,hsla(0,0%,88%,0),#e0e0e0);
}
.laTapsContents{
    display:none;
    height:0;
    width:100%;
    padding:0;
    margin:0;
    overflow:hidden;
    white-space: nowrap;
    transition: transform .3s;
    z-index:3;
}
.laTapsContentSlide{
    display:block;
    height:100%;
    width:100%;
    margin:0;
    padding:0;
    /*overflow:hidden;*/
    white-space: nowrap;
    transition: transform .3s;
    z-index:4;
}
.laTapsContents.open{
}
.laTapsContent{
    display:inline-block;
    position:relative;
    width:100%;
    height:100%;
    padding:0;
    margin:0;
    z-index:5;
}
.laTapsContent iframe{
    display:none;
    overflow:hidden;
    border:0;
}
.laTapsCloser{
    float:right;
    width:20px;
    height:20px;
    line-height:20px;
    text-align: center;
    vertical-align: middle;
}

.animation_container {
    position:absolute;
    left:-100%;
    right:-100%;
    width:1900px;
    height:800px;
    margin:auto;
    /*background-color:rgba(255, 255, 255, 1.00);*/
}
.animation_container canvas {
    position: absolute;
    display: block;
    /*background-color:rgba(255, 255, 255, 1.00);*/
}
.animation_container .dom_overlay{
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    width:1900px;
    height:800px;
    overflow:hidden;
    pointer-events:none;
}
.loader{
    width:100%;
    height:100%;
}
.spinner {
    animation: rotate 2s linear infinite;
    z-index: 10;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;

}
.spinner .path {
    stroke: rgb(239,108,0);
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

body.stop-all-transition * {
    transition: none !important;
}