body {
    background-color: white;
    color: #0a0a0a;
    font-family: "Inter";
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: gold; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: gold; 
  }

.Gambarino {
    font-family: 'Gambarino';
}

.bgcover {
    background-size: cover;
    background-position: center center;
}

.box-shadow {
    box-shadow: 0px 0px 9px 0px #c7c7c7;
}

.text-red {
    color:#B22222;
}

.text-blue {
    color: #033D50;
}

.text-lightB {
    color: #809197;
}

.max-100 {
    max-width: 100%;
}

.w-20 {
    width: 20%;
}

.w-80 {
    width: 80%;
}

.h-90 {
    height: 90vh;
}
.h-60 {
    height: 60vh;
}

.h-80 {
    min-height: 80vh;
}

.text-blue {
    color: #043d50;
}

.label {
    display: none;
}

.logo {
    background-image: url("../img/logo.png");
    width: 2.5em;
    height: 2.5em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.loading {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: black;
    display: none;
}

.loading .loadingIcon {
    height: inherit;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../img/loading.svg");
}

.vh70 {
    height: 70vh;
}

.vh90 {
    height: 90vh;
}

.h-full {
    height: 100vh;
}

.h-fit {
    height: fit-content;
}

.green-input {
    border-color: #6fd3a4;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(25 135 84 / 44%);
}

.red-input {
    border-color: #c33a47;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(220 53 69 / 45%);
}

.fullS {
    position: fixed;
    font-size: 10em;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    padding: 10% 0 0 0;
    z-index: 1000;
}

.nav-item {
    padding: 0.5em 2.5em;
    text-align: center;
}

.nav-item.shopCart {
    margin-right: 1em;
}

.nav-link {
    cursor: pointer;
    font-weight: bold;
}
.nav-link:hover {
    color: black;
    text-shadow: 1px 1px 1px white;
}

.lang:hover {
    color: #ffc107;
    background-color: #000000;
}

.lang {
    transition: all 0.4s;
    display: none;
    background-color: #ffc107;
    padding: 0 6px;
    border-radius: 5px;
    cursor: pointer;
}

.lang .langImg {
    width: 5%;
    cursor: pointer;
    border-radius: 50%;
}

.languageOp span {
    cursor: pointer;
}

.dropdownUser a.dropdown-item {
    transition: ease-in 0.3s;
}
.dropdownUser a.dropdown-item:hover {
    color: gold;
}

#productsCount {
    top: -2em;
    left: 0%;
    background-color: #dd3333;
    color: white;
    text-align: center;
    width: 20px;
    border-radius: 50%;
    height: 20px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.prod .img {
    width: 100% !important;
    border-radius: 20px;
    margin-bottom: 1.5em;
    width: 100%;
    height: 19em;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 3px 3px #d3d3d3;
}

/* footer */

footer {
    box-shadow: 0px 0px 14px 0px #b3b3b3;
}

.wrapper {
    display: inline-flex;
    list-style: none;
}

.wrapper .icon {
    position: relative;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    margin: 10px;
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}

.wrapper .weixin:hover,
.wrapper .weixin:hover .tooltip,
.wrapper .weixin:hover .tooltip::before {
    background: #2aae67;
    color: #ffffff;
}

.wrapper .linkedin:hover,
.wrapper .linkedin:hover .tooltip,
.wrapper .linkedin:hover .tooltip::before {
    background: #1da1f2;
    color: #ffffff;
}

.wrapper .instagram:hover,
.wrapper .instagram:hover .tooltip,
.wrapper .instagram:hover .tooltip::before {
    background: #e4405f;
    color: #ffffff;
}

.wrapper .youtube:hover,
.wrapper .youtube:hover .tooltip,
.wrapper .youtube:hover .tooltip::before {
    background: #cd201f;
    color: #ffffff;
}

/* home products */

.productCategories {
    background-image: url("../img/ProductCategories.jpg");
    background-size: cover;
    background-position: center;
    height: 50vh;
    background-attachment: fixed;
    text-shadow: 1px 1px rgb(255, 255, 255);
}
h2.marketingSlogans {
    font-family: serif;
    font-size: 2em;
}

.marketingSlogans {
    color: #043d50;
}

.imgStyled {
    border-radius: 15px;
    box-shadow: 0px 0px 15px #8c8c8c;
}

.intro-home {
    height: 85vh;
}

.text-shadow{
    text-shadow: 0px 0px 1px #000000;
}

.galleryHome {
    --s: 200px; /* control the size */
    --g: 10px;  /* control the gap */
    display: grid;
    margin: calc(var(--s) + var(--g));
  }
  
  .galleryHome > img {
    grid-area: 1/1;
    width: var(--s);
    aspect-ratio: 1.15;
    object-fit: cover;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%,75% 100%,25% 100%,0 50%);
    transform: translate(var(--_x,0),var(--_y,0)) scale(var(--_t,1));
    
    transition: .4s linear;
  }
  .galleryHome > img:hover {
    z-index: 1;
    --_t: 1.2;
  }
  
  .galleryHome > img:nth-child(1) {--_y: calc(-100% - var(--g))}
  .galleryHome > img:nth-child(7) {--_y: calc( 100% + var(--g))}
  .galleryHome > img:nth-child(3),
  .galleryHome > img:nth-child(5) {--_x: calc(-75% - .87*var(--g))}
  .galleryHome > img:nth-child(4),
  .galleryHome > img:nth-child(6) {--_x: calc( 75% + .87*var(--g))}
  .galleryHome > img:nth-child(3),
  .galleryHome > img:nth-child(4) {--_y: calc(-50% - .5*var(--g))}
  .galleryHome > img:nth-child(5), 
  .galleryHome > img:nth-child(6) {--_y: calc( 50% + .5*var(--g))}

/*
.part1 {
    background: rgb(255, 237, 0);
    background: -moz-linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: -webkit-linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffed00",endColorstr="#d9922a",GradientType=1);
}

.part2 {
    background: rgb(255, 237, 0);
    background: -moz-linear-gradient(
        0deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: -webkit-linear-gradient(
        0deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: linear-gradient(
        0deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffed00",endColorstr="#d9922a",GradientType=1);
}

.part3 {
    margin-bottom: 40px;
}

.part3 {
    background: rgb(255, 237, 0);
    background: -moz-linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: -webkit-linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    background: linear-gradient(
        180deg,
        rgba(255, 237, 0, 1) 0%,
        rgba(217, 146, 42, 1) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffed00",endColorstr="#d9922a",GradientType=1);
}*/

/* Products */

.productInList {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    padding: 16px 0;
}

.product {
    height: 420px;
    margin: 30px auto;
    border-radius: 7px 7px 7px 7px;
    -webkit-box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 14px 32px 0px rgba(0, 0, 0, 0.15);
    padding: 0 !important;
}

.product .img {
    background-image: url("../img/bottle.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
}

.product .product-img {
    float: left;
    height: 420px;
    width: 50%;
    background-color: #231f20;
}

.product .product-img img {
    border-radius: 7px 0 0 7px;
}

.product-info {
    float: left;
    height: 100%;
    width: 50%;
    border-radius: 0 7px 10px 7px;
    background-color: #ffffff;
}

.product .product-text {
    height: 280px;
    width: 100%;
    padding: 10px;
}

@media (max-width: 767px) {
    .product .product-text {
        overflow-y: scroll;
    }
}

.product .product-text h1 {
    margin: 0 0 0 38px;
    padding-top: 30px;
    font-size: 34px;
    color: #474747;
}

.product-price-btn {
    text-align: center;
}

.product .product-text h1,
.product .product-price-btn p {
    font-family: "Bentham", serif;
}

.product .product-text h2 {
    margin: 0 0 47px 38px;
    font-size: 13px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #d2d2d2;
    letter-spacing: 0.2em;
}

.product .product-text p {
    overflow-y: scroll;
    max-height: 67%;
    margin: 0 0 0 38px;
    font-family: "Playfair Display", serif;
    color: #8d8d8d;
    line-height: 1.7em;
    font-size: 15px;
    font-weight: lighter;
}

.product .product-text p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

.product .product-text p::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

.product .product-text p::-webkit-scrollbar-thumb {
    background-color: #f90;
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
}

.product .product-price-btn p {
    height: 50px;
    text-align: center;
    font-family: "Trocchi", serif;
    font-size: 28px;
    font-weight: lighter;
    color: #474747;
}

.product span {
    display: inline-block;
    height: 50px;
    font-family: "Suranna", serif;
    font-size: 34px;
}

.product .product-price-btn button {
    height: 50px;
    width: 176px;
    box-sizing: border-box;
    border: transparent;
    border-radius: 60px;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    background-color: gold;
    cursor: pointer;
    outline: none;
    transition: 0.4s all;
}

.product .product-price-btn button:hover {
    background-color: goldenrod;
}

/* client review */

.clients i.fa-star {
    margin: 0 5px;
    font-size: large;
}

.gold {
    color: gold;
}

.gtco-testimonials {
    position: relative;
    margin-top: 30px;
  }
  @media (max-width: 767px) {
    .gtco-testimonials {
      margin-top: 20px;
    }
  }
  .gtco-testimonials h2 {
    font-size: 30px;
    text-align: center;
    color: #333333;
    margin-bottom: 50px;
  }
  .gtco-testimonials .owl-stage-outer {
    padding: 30px 0;
  }
  .gtco-testimonials .owl-nav {
    display: none;
  }
  .gtco-testimonials .owl-dots {
    text-align: center;
  }
  .gtco-testimonials .owl-dots span {
    position: relative;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    display: block;
    background: #fff;
    border: 2px solid #01b0f8;
    margin: 0 5px;
  }
  .gtco-testimonials .owl-dots .active {
    box-shadow: none;
  }
  .gtco-testimonials .owl-dots .active span {
    background: #01b0f8;
    box-shadow: none;
    height: 12px;
    width: 12px;
    margin-bottom: -1px;
  }
  .gtco-testimonials .card {
    background: #fff;
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    padding: 0 10px;
    border-radius: 20px;
    border: 0;
  }
  .gtco-testimonials .card .card-img-top {
    max-width: 100px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100px;
    height: 100px;
  }
  .gtco-testimonials .card h5 {
    color: #01b0f8;
    font-size: 21px;
    line-height: 1.3;
  }
  .gtco-testimonials .card h5 span {
    font-size: 18px;
    color: #666666;
  }
  .gtco-testimonials .card p {
    font-size: 18px;
    color: #555;
    padding-bottom: 15px;
  }
  .gtco-testimonials .active {
    opacity: 0.5;
    transition: all 0.3s;
  }
  .gtco-testimonials .center {
    opacity: 1;
  }
  .gtco-testimonials .center h5 {
    font-size: 24px;
  }
  .gtco-testimonials .center h5 span {
    font-size: 20px;
  }
  .gtco-testimonials .center .card-img-top {
    max-width: 100%;
    height: 120px;
    width: 120px;
  }
  .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    outline: 0;
  }
  
  .gtco-testimonials .owl-dots span {
      border: 2px solid #f5cfa2 !important;
  }
  
  .gtco-testimonials .owl-dots .active span {
      background: #f5cfa2 !important;
  }
  
  .gtco-testimonials .card h5 {
      color: black !important;
  }

/* gallery */

.desImg {
    background-image: url(../img/katB.jpg);
    height: 40vh;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-img {
    height: 40vh;
    box-shadow: 2px 2px 8px #898989;
    background-size: cover;
    background-position: center;
}
.bounce-top {
    -webkit-animation: bounce-top 1.5s infinite both;
    animation: bounce-top 1.5s infinite both;
}

.gal-1 .gallery-img {
    background-image: url("../img/gallery/1.jpeg");
}
.gal-2 .gallery-img {
    background-image: url("../img/gallery/2.jpeg");
}
.gal-3 .gallery-img {
    background-image: url("../img/gallery/3.jpeg");
}
.gal-4 .gallery-img {
    background-image: url("../img/gallery/4.jpeg");
}

/* contact us */
.contact-us .container {
    box-shadow: 0px 0px 20px 1px #d1d1d1;
    padding: 2%;
}

.contact-us .container .fa-heart {
    color: gold;
}

/**
 * ----------------------------------------
 * animation bounce-top
 * ----------------------------------------
 */
@-webkit-keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}
@keyframes bounce-top {
    0% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 1;
    }
    24% {
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-24px);
        transform: translateY(-24px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    65% {
        -webkit-transform: translateY(-12px);
        transform: translateY(-12px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    82% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    93% {
        -webkit-transform: translateY(-4px);
        transform: translateY(-4px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    25%,
    55%,
    75%,
    87% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        opacity: 1;
    }
}
.bounce-top {
    -webkit-animation: bounce-top 0.9s both;
    animation: bounce-top 0.9s both;
}
/**
 * ----------------------------------------
 * animation wobble-hor-top
 * ----------------------------------------
 */
@-webkit-keyframes wobble-hor-top {
    0%,
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    15% {
        -webkit-transform: translateX(-30px) rotate(6deg);
        transform: translateX(-30px) rotate(6deg);
    }
    30% {
        -webkit-transform: translateX(15px) rotate(-6deg);
        transform: translateX(15px) rotate(-6deg);
    }
    45% {
        -webkit-transform: translateX(-15px) rotate(3.6deg);
        transform: translateX(-15px) rotate(3.6deg);
    }
    60% {
        -webkit-transform: translateX(9px) rotate(-2.4deg);
        transform: translateX(9px) rotate(-2.4deg);
    }
    75% {
        -webkit-transform: translateX(-6px) rotate(1.2deg);
        transform: translateX(-6px) rotate(1.2deg);
    }
}
@keyframes wobble-hor-top {
    0%,
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }
    15% {
        -webkit-transform: translateX(-30px) rotate(6deg);
        transform: translateX(-30px) rotate(6deg);
    }
    30% {
        -webkit-transform: translateX(15px) rotate(-6deg);
        transform: translateX(15px) rotate(-6deg);
    }
    45% {
        -webkit-transform: translateX(-15px) rotate(3.6deg);
        transform: translateX(-15px) rotate(3.6deg);
    }
    60% {
        -webkit-transform: translateX(9px) rotate(-2.4deg);
        transform: translateX(9px) rotate(-2.4deg);
    }
    75% {
        -webkit-transform: translateX(-6px) rotate(1.2deg);
        transform: translateX(-6px) rotate(1.2deg);
    }
}
.wobble-hor-top {
    -webkit-animation: wobble-hor-top 0.8s both;
    animation: wobble-hor-top 0.8s both;
}
/**
 * ----------------------------------------
 * animation jello-horizontal
 * ----------------------------------------
 */
@-webkit-keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes jello-horizontal {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.jello-horizontal {
    -webkit-animation: jello-horizontal 0.9s both;
    animation: jello-horizontal 0.9s both;
}
/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}
.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}
