@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #ac2566;
    --secondary-color: #fff716;
  }

body, button, input {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 13px;
}

input::placeholder {
    font-size: 13px;
}
a {
    text-decoration: none;
}

.navbar-light .navbar-toggler {
    color: rgba(0,0,0,0.55);
    border: none;
}
.nav-link {
    font-size: 14px;
    font-weight: 700;
}
.footer-no {
    color: #fff;
}
.footer-down-text {
    font-size: 12px;
}

.email-error, .password-error, .password-mismatch {
    color: red;
}

.success-text {
    color: rgb(5, 202, 5);
    display: none;
}
.success-text.show {
    display: inline-block;
}

#spinner-text {
    display: none;
}
#spinner-text.show {
    display: inline-block;
}


/*coin-marquee*/
.coin-marquee-container {
    display: flex;
    width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap;
}
.coin-marquee-header {
    float: left;
    display: none;
}

.coin-marquee-wrapper--dark {
    background: #ac2566 !important;
     border-top: none !important; 
     border-bottom: none !important; 
}

.coin-marquee-wrapper {
    border-top: none !important;  
    border-bottom: none !important; 
   
}

.small-text {
    font-size:14px;
}

/*transactions*/
.transactions {
    background-color: #fff;
    border-radius: 1rem;
    overflow-y: hidden;
    padding: 0px 10px;
}
.transactions__row {
    border-bottom: 0.5px solid rgb(230, 230, 230);
    cursor: pointer;
    margin-bottom: 10px;
}
.transactions__row_one, .transactions__row_three {
    display: flex;
    justify-content: space-between;
}
.transactions_icon {
    border-radius: 50%;
    background: #ededed;
display: flex;
justify-content: center;
align-items: center;
height: 30px;
width: 30px;
}

.trans-filter-btn {
    background: transparent;
    font-weight: 600;
    color: black;
    padding: 6px 12px;
    margin: 0 10px;
    border-radius: 20px;
}
.filterActive {
    background: #ac25662e !important;
}

/*admin pages*/
.user-table tbody tr:hover {
    background-color: #ececec;
}
.user-table tr:hover td>a{
    box-shadow: none;
}
.fa-eye, .fa-pencil, .fa-times {
    color: #8d9099
}

option {
    font-size: 12px;
}

.buy-error {
    color: red;
}

.toggle-password {
    cursor: pointer;
}

tr:nth-of-type(even) { 
  background: #eee; 
}

.paginator-button {
  margin: 5px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
}

.active-paginator-button {
    background-color: #fff71673;
}

/* admin pages
.user-table {
    margin-top: 30px;
    border-spacing: 0px;
    width: 100%;
}
.user-table td, .user-table th {
    padding: 10px;
    vertical-align: top;
    text-align: center;
    border-top: 1px solid #dee2e6;
}
.user-table td>a.btn {
    padding: 8px 16px;
    margin: 10px;
}
.user-table tr:hover {
    background-color: #ececec;
}
.user-table tr:hover td>a{
    box-shadow: none;
}
.user-table thead th{
    color: #fff;
    background-color: var(--primary-color);
}

.fa {
    color: var(--primary-color);
}


.transactions-table {
    margin-top: 30px;
    border-spacing: 0px;
    width: 100%;
}
.transactions-table td, .transactions-table th {
    padding: 10px;
    vertical-align: top;
    text-align: center;
    border-top: 1px solid #dee2e6;
}
.transactions-table td>a.btn {
    padding: 8px 16px;
    margin: 10px;
}
.transactions-table tr:hover {
    background-color: #ececec;
}
.transactions-table tr:hover td>a{
    box-shadow: none;
}
.transactions-table thead th{
    color: #fff;
    background-color: var(--primary-color);
} */


.word-wrap {
    word-wrap: break-word;
}

/*Admin Single Transaction Page*/
.radio-btns {
    display: flex;
    gap: 30px;
}

@media (min-width:800px) {
    .radio-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


/* Cosmetic only */
#easyPaginate li {
    display:block;
    margin-bottom:10px;
}
.easyPaginateNav {
    margin-bottom: 30px;
}
.easyPaginateNav a {
    margin: 10px;
    
}
.easyPaginateNav a.current {
    font-weight:bold;
    background-color: #fff71673;
    padding: 5px;
    border: none;
}

.search-users {
    max-width: 350px;
    float: right;
}

.unit-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 1px 7px 5px 1px rgba(235,235,235,0.34);
-webkit-box-shadow: 1px 7px 5px 1px rgba(235,235,235,0.34);
-moz-box-shadow: 1px 7px 5px 1px rgba(235,235,235,0.34);
}

.lh-30 {
    line-height: 30px;
}

.lh-40 {
    line-height: 40px;
}

.calcInput {
    border: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    

}
.calcInput:focus {
    border:none !important;
}
#fromCurrency, #toCurrency {
    border: none !important;
    background: #fff;
    font-size: 16px !important;
}

.side-nav {
    height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width:390px) {
    .side-nav {
        display: none
    }

    .dashboard-lead-ctn {
        overflow-x: scroll;
        flex-wrap: nowrap;
    }
}

.dnav-item {
    text-decoration: none;
    border-radius: 8px;
    line-height: 35px;
    
    list-style: none;
    /*border-bottom: 0.5px solid rgb(245, 245, 245);*/
}

.dnav-item:hover {
    background: #ac25660a;
    
}

.dnav-link {
    font-size: 14px;
    font-weight: 500;
}

.dnav-icon {
    margin-right: 20px;
    font-size: 16px;
}

.dactive-item {
    background: #ac25660a;
    font-weight: 500 !important;
    
}

.cta-icon {
    padding: 10px;
    background: #fff716;
    border-radius: 500px;
}
.cta-icon-ctn {
    height: 40px;
    width: 40px;
}

/* price widget */
.css-1j1oqd3 {
    font-family: 'Minion pro';
    font-size: 20px;
}

.chakra-text {
    font-family: 'Minion pro' !important;
}

.css-1bpeahj {
    display: none !important;
}

.one-box {
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 10px;
    border-radius: 10px;
}

.dash-ctn {
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 10px;
    border-radius: 10px;
}

.crap {
    padding: 0;
}

#filterStats, #statusSelect {
    border: none !important;
    outline: none !important;
    background: #fff !important;
    color: #000 !important;
    margin-left: 15px;
    border-radius: 3px !important;
    padding: 2px 10px !important;
    height: auto !important;
    box-shadow: 0 0 0.875rem 0 rgba(33,37,41,.05);
}
  

@media screen and (max-width:400px) {
    .sidenav-toggle {
        border: none;
    background: #fff;
    }
    .sidenav-toggle i {
        font-size: 30px;
    }
    #sidebar {
        display: none;
        padding-bottom: 40px;
    }
    .sidebar-div {
        display: flex;
        justify-content: space-between;
    }
    .content {
        padding-left: 30px;
        padding-right: 30px;
    }
    .btn-small {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
      }
      .landing-heading {
        font-size: 30px;
        font-weight: 700;
        margin-top: 40px;
        line-height: 35px;
      }
      .about-landing {
        background: url(https://res.cloudinary.com/dlp04cqse/image/upload/v1689451624/woq6c6e0rhpjhhz20ydu.jpg);
        height: 306px;
        background-size: cover;
      }
    
}

 textarea {
    background: #f7f7f7 !important;
    border: 0.5px solid #d9deeb !important;
    font-size: 13px !important;
}

input:not([type="checkbox"]) {
    background: #f7f7f7 !important;
    border: 0.5px solid #d9deeb !important;
    font-size: 13px !important;
    height: 45px !important;
}
input:focus {
    border: 1px solid #ac2566 !important;
}
input::placeholder {
    color: grey !important;
}

select {
    background: #f7f7f7 !important;
    border: 0.5px solid #d9deeb !important;
    color: grey !important;
    height: 40px !important;
}
option::placeholder {
    color: grey !important;
}
.sidenav-close {
    outline: none;
    border: none;
    background: transparent;
}
.content {
    overflow-x: hidden;
}


#sidebar {
    padding-right: 0;
    margin-top: -77px;
    background: #222e3c;
    position: fixed;
    position: -webkit-sticky;
    direction: ltr;
    /*height: calc(100vh + 77px);*/
    height: 100vh;
    padding-top: 70px;
    overflow-y: scroll;
}

.sidebar-div {
    padding: 0 15px;
}

.sidebar-nav {
    flex-grow: 1;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.sidebar-item {
    font-size: 15px;
    margin: 5px 0;
}
.sidebar-icon {
    margin-right: 15px;
}

.sidebar-link:hover {
    color: rgba(233,236,239,.75);
}

.sidebar-link:hover {
    background: #222e3c;
    border-left-color: #ac2566;
    background: linear-gradient(90deg,#ac256642,#ac256724 50%,transparent);
}

.sidebar-link, a.sidebar-link {
    background: #222e3c;
    border-left: 3px solid transparent;
    color: rgba(233,236,239,.5);
    cursor: pointer;
    display: block;
    font-weight: 400;
    padding: 0.625rem 1.625rem;
    position: relative;
    text-decoration: none;
    transition: background .1s ease-in-out;
}

.sidebar-item.active .sidebar-link:hover, .sidebar-item.active>.sidebar-link {
    background: linear-gradient(90deg,#ac256642,#ac256724 50%,transparent);
    border-left: 3px solid #ac2566;
    color: #e9ecef;
}

.sidebar-dropdown .sidebar-link:hover, .sidebar-dropdown>.sidebar-link {
    background: linear-gradient(90deg,#ac256642,#ac256724 50%,transparent);
    border-left-color: #ac2566;
    color: #e9ecef;
}

.sidebar [data-bs-toggle=collapse] {
    position: relative;
}

.sidebar [aria-expanded=true]::after, .sidebar [data-bs-toggle=collapse]:not(.collapsed)::after {
    top: 1.4rem;
    transform: rotate(-135deg);
}

.sidebar [data-bs-toggle=collapse]::after {
    border: solid;
    border-width: 0 0.075rem 0.075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.2rem;
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.sidebar-dropdown .sidebar-link:before {
    content: "→";
    display: inline-block;
    left: -14px;
    position: relative;
    transform: translateX(0);
    transition: all .1s ease;
}




.sidebar-dropdown .sidebar-link {
    background: transparent;
    border-left: 0;
    color: #adb5bd;
    font-size: 90%;
    font-weight: 400;
    padding: 0.625rem 1.5rem 0.625rem 3.25rem;
}



@media screen and (min-width:400px) {
    .header-dashboard {
        margin-left: 16%;
        box-shadow: 0 0 2rem 0 rgba(33,37,41,.1);
    }
    .content{
        margin-left: 16%;
    }
    .footer-dashboard{
        margin-left: 15.6%;
    }
    .buy-form {
        width: 80%;
    }
    .btn-small {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 13px;
    }
    .landing-heading {
        font-size: 50px;
        font-weight: 700;
      }
      .landingImg {
        width: 80%;
      }
      .about-landing {
        background: url(https://res.cloudinary.com/dlp04cqse/image/upload/v1689451624/woq6c6e0rhpjhhz20ydu.jpg);
        height: 550px;
        background-size: cover;
        z-index: 300;
      }
      
}

.example-player-dimensions {
    height: 400px;
  }

  .bg-window {
    flex-direction: row-reverse !important;
  }

.bg-darker {
    background: #f5f7fb;
}

#sidebar::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	/*background-color: #F5F5F5;*/
}

#sidebar::-webkit-scrollbar
{
	width: 8px;
	/*background-color: #F5F5F5;*/
}

#sidebar::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #ac2566;
}


body::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	/*background-color: #F5F5F5;*/
}

body::-webkit-scrollbar
{
	width: 4px;
	/*background-color: #F5F5F5;*/
}

body::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #ac2566;
}
body {
    overflow-x: hidden;
}



.btn-oyem {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 14px;
}

.stat {
    align-items: center;
    background: #ac256614;
    border-radius: 50%;
    color: #ac2566;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.dash-card {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 0 0.875rem 0 rgba(33,37,41,.05);
}
.dash-card-body {
    padding: 20px;
    overflow-wrap: break-word;
}

.tooltip {
    position: relative;
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    margin-right: 40px;
    cursor: pointer;
    opacity: 1;
    font-size: 12px;
    font-weight: 600;
}

/* Style text tooltip */
.tooltipText {
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 130%;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: all .5s;
}



/*  Membuat dan style tip*/
.tooltipText::after {
    content: '';
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 40%;
    margin-left: 5%;
}



/* Hover text tooltip */
.tooltip:hover .tooltipText{
    opacity: 1;
    transform: translateY(-10px);
}

.easyPaginateNav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fw-600 {
    font-weight: 600;
}
.fw-500 {
    font-weight: 500;
}


  .span-list-p {
    font-size: 16px;
    font-weight: 600;
  }
  .list-ic li {
    position: relative;
  }
  .list-ic li .span-list {
    display: inline-block;
    font-weight: 800;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    /*
    background: #ac2566;
    color: #fff716;
    */
    background: #fff716;
    color: #ac2566;
    position: relative;
  }
  .list-ic li::before {
    content: '';
    position: absolute;
    background: #edc7d9;
    z-index: -1;
    width: 2px !important;
   
  }

.list-ic.vertical {
    padding: 0;
    margin: 0;
  }
  .list-ic.vertical li {
    list-style-type: none;
    text-align: left;
  }
  .list-ic.vertical li .span-list {
    margin-top: 31px;
    margin-bottom: 5px;
  }
  .list-ic.vertical li::before {
    top: -35px;
    left: 18px;
    height: 50px;
  }
  .list-ic li:first-child::before {
    display: none;
  }
  .list-ic .active {
    background: dodgerblue;
  }
  .list-ic .active ~ li {
    background: lightblue;
  }
  .list-ic .active ~ li::before {
    background: lightblue;
  }

  .lh-25 {
    line-height: 25px;
  }


.landingImg {
    animation: dangle 4s ease-in-out infinite;
}

 @keyframes dangle {
    0% {
        transform: translate(0);
    }
    50% {
        transform: translate(-30px,30px);
    }
    100% {
        transform: translate(0);
    }
 }

 .too-heading {
    position: relative;
  }
  
  .too-heading::before {
    content: "";
    position: absolute;
    left: -106px;
    bottom: 7px;
    width: 391px;
    height: 14px;
    transform: skew(-12deg) translateX(-50%);
    background: #fff746;
    z-index: -1;
  }

  .head-badge {
    background: #ac2566;
    border-radius: 20px;
    color: #fafafa;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
}

.faq-heading {
  font-weight: 600;
  font-size: 19px;
   --webkit-transition: text-indent 0.2s;
  text-indent: 20px;
  color: #333;
}

.faq-text {  
  font-weight: 400;
  color: #919191;
  width:95%;
  padding-left:20px;
  margin-bottom:30px;
}

.faq {
  margin: 0 auto;
  background: white;
  border-radius: 4px;
  position: relative;
}
.faq label {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 56px;
  padding-top:15px;
 
  background-color: #FAFAFA;
  border-bottom: 1px solid #E1E1E1;
  background-color: #f5f5f7;
border: none;
margin: 20px 0px;
border-radius: 7px;
}


.faq input[type="checkbox"] {
  display: none;
}

.faq .faq-arrow {
  width: 5px;
  height: 5px;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  --webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 2px solid rgba(0, 0, 0, 0.33);
  border-right: 2px solid rgba(0, 0, 0, 0.33);
  float: right;
  position: relative;
  top: -30px;
  right: 27px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

 .faq input[type="checkbox"]:checked + label > .faq-arrow {
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  --webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
 .faq input[type="checkbox"]:checked + .tos-ctn {
  display: block;
  background: rgba(255,255,255,255) !important;
  color: #4f7351;
  height: auto;
  transition: height 0.8s;
  --webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq input[type="checkbox"]:checked + label {
    display: block;
    background: rgba(255,255,255,255) !important;
    color: #4f7351;
    height: 185px;
    transition: height 0.8s;
    --webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

 .faq input[type='checkbox']:not(:checked) + label {
  display: block;
  transition: height 0.8s;
  height: 60px;
  --webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media screen and (max-width:500px) {
    .faq-heading {
        font-size: 14px;
      }
      .faq input[type='checkbox']:not(:checked) + label {
        height: 56px;
      }
      .users-table-ctn {
        overflow-x: scroll !important;
    };
}

.input-group-text {
    border: none !important;
}

.testimonials {
    flex-wrap: nowrap;
    overflow-x: scroll;
}

.testimonials::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
}

.testimonials::-webkit-scrollbar
{
	width: 8px;
    height: 6px;
}

.testimonials::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #ac2566;
}

.form-check-input {
    height: 1em !important;
}

.blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog-meta-ctn {
    padding: 15px 2px;
    border-top: 1px solid #eaeaea;
    color: #eaeaea;
}

.blog-meta-cat::before {
    content: " | ";
}

.user-dp-ctn {
    color: white;
    margin-right: 10px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}

.user-profile-dp-ctn {
    position: relative;
    color: white;
    margin-right: 10px;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
}

.edit-profile-pic-btn {
    height: 25px;
    width: 25px;
    color: white;
    background: #9f9f9f;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

#prof-pic-thumbnail, #prof-pic-thumbnail2 {
    border-radius: 50%;
}
.tier-level {
    border: 1px solid var(--secondary-color);
    background: #cdc6077a;
    font-size: 13px;
    border-radius: 50px;
    color: #fff;
    padding: 3px 5px;
}
.tier-level a {
    color: #fff;
}

/*dropdown notif */
.dropdown-menu-header {
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    padding: 0.75rem;
    text-align: center;
}

.dropdown-menu-footer {
    font-weight: 500;
    padding: 0.75rem;
    text-align: center;
}
.notif-header-ctn {
    width: 320px;
}
.notif-header-group-item {

    border-bottom: 1px solid #dee2e6;
    display: block;
}

.notif-badge {
    display: none;
}

.notif-content-shorten {
    overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* customizable snowflake styling */
.snowflake {
    color: #fff;
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px #000;
  }
   
  .snowflake,.snowflake .inner{
    animation-iteration-count:infinite;
    animation-play-state:running
}
@keyframes snowflakes-fall{
    0% {
        transform:translateY(0)
    }
    100% {
        transform:translateY(110vh)
    }
}
@keyframes snowflakes-shake{
    0%,100%{
        transform:translateX(0)
    }
    50%{
        transform:translateX(80px)
    }
}
.snowflake{
    position:fixed;
    top:-10%;
    z-index:9999;
    -webkit-user-select:none;
    user-select:none;
    cursor:default;
    animation-name:snowflakes-shake;
    animation-duration:3s;
    animation-timing-function:ease-in-out
}
.snowflake .inner{
    animation-duration:10s;
    animation-name:snowflakes-fall;
    animation-timing-function:linear
}
.snowflake:nth-of-type(0){
    left:1%;animation-delay:0s
}
.snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8) .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}.snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}.snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}.snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}.snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}.snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}.snowflake:nth-of-type(11){left:65%;animation-delay:2.5s}
  