/* ### #### ### */
/* ### SVG ### */
/* ### ### ### */

.cls-1 {
    fill: #69c081;
}
.cls-1,
.cls-2 {
    opacity: .26;
}
.cls-3 {
    fill: #777b52;
}
.cls-4 {
    opacity: .75;
}
.cls-4,
.cls-2 {
    fill: #a4a231;
}
.cls-5 {
    fill: #a4c552;
}
.cls-6 {
    fill: url(#linear-gradient-2);
    opacity: .73;
}
.cls-7 {
    fill: #77c6e7;
}
.cls-7,
.cls-8,
.cls-9 {
    opacity: .93;
}
.cls-10 {
    fill: #bd3c8e;
}
.cls-11 {
    fill: #a49135;
}
.cls-12 {
    fill: #00a582;
}
.cls-13 {
    fill: url(#linear-gradient-3);
    opacity: .79;
}
.cls-14 {
    fill: url(#linear-gradient-11);
}
.cls-15 {
    fill: url(#linear-gradient-6);
    opacity: .62;
}
.cls-16 {
    opacity: .58;
}
.cls-17 {
    fill: #a22b79;
}
.cls-8 {
    fill: url(#linear-gradient-8);
}
.cls-18 {
    fill: #3f7f52;
}
.cls-19 {
    fill: #006598;
}
.cls-20 {
    fill: url(#linear-gradient-10);
    opacity: .53;
}
.cls-21 {
    opacity: .38;
}
.cls-22 {
    opacity: .82;
}
.cls-23 {
    fill: url(#linear-gradient-7);
    opacity: .7;
}
.cls-9 {
    fill: #78c6e4;
}
.cls-24 {
    fill: url(#linear-gradient-9);
}
.cls-25 {
    opacity: .67;
}
.cls-26 {
    fill: url(#linear-gradient);
}
.cls-27 {
    fill: #5d839e;
}
.cls-28 {
    fill: url(#linear-gradient-5);
    opacity: .43;
}
.cls-29 {
    opacity: .61;
}
.cls-30 {
    opacity: .56;
}
.cls-31 {
    opacity: .71;
}
.cls-32 {
    fill: url(#linear-gradient-4);
    opacity: .22;
}

/* ### ###### ### */
/* ### LOADER ### */
/* ### ###### ### */

.loader-container {
    /* display: none !important; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.loader {
    -webkit-clip-path : circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
    position: absolute;
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0;
    transition: all 1s ease-in;
}
.loader.show {
    -webkit-clip-path : circle(100% at 50% 50%);
    clip-path: circle(100% at 50% 50%);
}
 .loader-inner {
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; 
    opacity: .2;
    transition: .8s ease-in;
}
.loader.show .loader-inner {
    opacity: 1;
}
.loader-svg {
    display: none;
    width: 200px;
    overflow: visible;
    position: relative;
    transform: scale(0);
    animation: loader-svg-animation .5s cubic-bezier(0.17, 0.07,.3,2.2) forwards;
    animation-delay: .8s;
}

@keyframes loader-svg-animation {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.loader-svg .left,
.loader-svg .middle,
.loader-svg .right{
    opacity: .4;
    transform-origin: center ;
}
.loader-svg .left{
    animation: loader-animation 3s infinite ease-in-out;
    transform-origin: top 5px right;
}
.loader-svg .middle{
    animation: loader-animation 3s infinite ease-in-out;
    animation-delay: 1s;
}
.loader-svg .right{
    animation: loader-animation 3s infinite ease-in-out;
    transform-origin: top 60px left 0;
    animation-delay: 2s;
}

@keyframes loader-animation {
    0% {
        opacity: .4;
        transform: scale(1);
    }
    50% {
        transform: scale(1.015);
        opacity: 1;
    }
    100% {
        opacity: .4;
        transform: scale(1);
    }
}

.loader-svg-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%);
    /* background-color: #fff; */
    border-radius: 50%;
    width: 300px;
    height: 300px;
    box-shadow: 0 0 30px 0 rgba(0,0,0,.0);
    animation: loader-svg-background-animation .5s cubic-bezier(0.17, 0.07,.2,1.4) forwards;
    animation-delay: .65s;
}

@keyframes loader-svg-background-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.loader-wrapper {
    position: relative;
    margin-top: -12vh;
}
.loader-inner h1 {
    position: absolute;
    bottom: 55px;
    left: 175px;
    width: 470px;
    text-align: center;
    font-family: 'im-fell';
    font-size: 48px;
    text-transform: uppercase;
    line-height: 1.3;
    color: #fff;
}
.loader-inner h1 span {
    font-size: 34px;
    padding-left: 4px;
}
.loader-inner .logo{
    width: 859px;
}
.loader-inner .logo-stroke{
    position: absolute;
    bottom: 200px;
    right: 360px;
    width: 200px;
}




.lds-ellipsis {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin:100px auto;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--green-color);
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  