/*font sito */
/*@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&display=swap');
body, button, input, textarea{
    /*font-family: "Nunito Sans", sans-serif;*/
    font-family:"Inter",sans-serif;
    font-weight: 400;
}
/*h1, h2, h3, h4{
	font-family: 'Merriweather', sans-serif;
}*/
body button, button{
    border-radius:var(--bs-border-radius);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}
p {
    line-height: 1.65;
}

/*color scheme */
:root
{
    --first-color: #0E1E37;
    --second-color:#19255C;
    --third-color:#2C3D5B;
    --fourth-color:#7C8594;
    --fifth-color:#C3C3C3;
    --sixth-color:#DEDEE6;

    --dark-first:#010305;
    --dark-second:#040910;
    --dark-third:rgb(52, 52, 52);
    /*overriding bootstrap colors*/
    --bs-primary:var(--first-color);
    --bs-secondary:var(--third-color);

    /* Semantic theme variables — dark default */
    --surface-0: var(--dark-second);
    --text-strong: #F4F5F8;
    --text-muted: rgba(255,255,255,0.78);
    --text-dim: rgba(255,255,255,0.55);
    --border-soft: rgba(255,255,255,0.06);
    --border-med: rgba(255,255,255,0.12);
    --input-bg: rgba(255,255,255,0.04);
    --nav-scrolled: rgba(4,9,16,0.88);
    --accent: #DEDEE6;
    --accent-soft: rgba(222,222,230,0.14);
}

[data-bs-theme="light"] {
    --surface-0: #F6F7FA;
    --text-strong: #0E1E37;
    --text-muted: rgba(14,30,55,0.78);
    --text-dim: rgba(14,30,55,0.55);
    --border-soft: rgba(14,30,55,0.08);
    --border-med: rgba(14,30,55,0.14);
    --input-bg: #F6F7FA;
    --nav-scrolled: rgba(255,255,255,0.94);
    --accent: #2C3D5B;
    --accent-soft: rgba(44,61,91,0.10);
}

/*navbar*/
.navbar{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index:999;
}
@media (max-width: 575.98px) {
    .desktop
    {
        display:none;
    }
    .mobile
    {
        display:block;
    }
}
@media(max-width:768px)
{
    #navbarMobile
    {
        height:90px;
    }
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .desktop
    {
        display:none;
    }
    .mobile
    {
        display:block;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .desktop
    {
        display:none;
    }
    .mobile
    {
        display:block;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .desktop
    {
        display:block;
    }
    .mobile
    {
        display:none;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .desktop
    {
        display:block;
    }
    .mobile
    {
        display:none;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .desktop
    {
        display:block;
    }
    .mobile
    {
        display:none;
    }
}

/*navbar */
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
	.dropdown-menu li{
		position: relative;
	}
	.dropdown-menu .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.dropdown-menu .submenu-left{ 
		right:100%; left:auto;
	}

	.dropdown-menu > li:hover{ background-color: #f1f1f1 }
	.dropdown-menu > li:hover > .submenu{
		display: block;
	}
}	
#btnShowCategory
{
    width:100%;
}
.linkNav a
{
    text-decoration: none;
}
.menuMobileNav
{
    display:none;
    min-width:70vw;
    z-index:9999;
    position:fixed;
    top:0;
    left:0;
    height:100vh;
    overflow-y:auto;
    overflow-x:hidden;
}

/*caricamento asincrono delle immagini*/
.loadingImage{
	position: relative;
    background: #f3f3f3;
    overflow: hidden;
    display: inline-block;
    width: 100%;
	height:200px;
}
.loadingImage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f3f3f3 25%, #e0e0e0 50%, #f3f3f3 75%);
    background-size: 200% 100%;
    animation: loadingShimmer 1.5s infinite linear;
}
@keyframes loadingShimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

.rowLinkNav
{
    padding:2%;
}
#navbarDropDown
{
    width:100%;
}
.dropdown button
{
    width:100%;
    padding:1%;
    border:none;
}

.logoNavbar
{
    height:130px;
    width:auto;
}
#navMobile button
{
    border:none;
    background:none;
    padding:2%;
    text-align:center;
    font-size: 1.3rem;
}
.menuMobileNav button
{
    background: none;
    border: none;
}
.closeButton
{
    padding:2%;
    text-align:center;
    color:var(--dark-second);
    font-size: 2rem;
    font-weight: lighter;
}
.menuMobileNav .collegamenti
{
    width:100%;
    padding:5%;
}
.menuMobileNav .collegamenti li
{
    line-height: 2rem;
    text-align:center;
    padding-top:2%;
    padding-bottom:2%;
}
.menuMobileNav .collegamenti li a
{
    text-decoration: none;
}
.btnSotto
{
    position:fixed;
    bottom:0;
    left:2vw;
    width:70vw;
    padding:2%;
    text-align:center;
}
.menuMobileNav .collegamenti {
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.menuMobileNav .collegamenti li a:hover
{
    border-bottom:3px solid;
}

.navbar .col button
{
    background:none;
    border:none;
}
#saveNavProd a
{
    text-decoration: none;
}
#navMobile
{
    max-height:100px;
}
#imgNavMob
{
    width:auto;
    max-height:90px;
}
body
{
    overflow-x:hidden;
}

/**
loader

<div id="loader"><img src='src/img/logoQuadrato.svg' id="logoLipo"></div>
*/

#loader
{
    width:100vw;
    height:100vh;

    display:flex;
    justify-content: center;
    align-items: center;
    z-index:9999;
    position:fixed;
    top:0;
    left:0;
    flex-direction: column;
    background:var(--bs-secondary-bg);
}
#loader #logoLipo
{
    width:15rem;
    height:auto;
    -webkit-animation: pulsate-bck 1s ease-in-out infinite both;
	animation: pulsate-bck 1s ease-in-out infinite both;
}


/*notifiche per errori e successo */
.notificaResponse{
    display:none;
    position:fixed;
    top:1rem;
    right:1rem;
    z-index:1001;
    border-radius:var(--bs-border-radius);
    padding:1rem;
    max-width:500px;
}
.notificaResponse .hNot{
    display:flex;
    flex-direction: row;
    justify-content:space-between;
    gap:10px;
}
.notificaResponse.success{
    border-left:10px solid var(--bs-green);
}
.notificaResponse.error{
    border-left:10px solid var(--bs-red);
}
.notificaResponse button{
    background:none;
    border:none;
    font-size:20px;
    height:20px;
}

/*animazioni*/
 @-webkit-keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes pulsate-bck {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
    50% {
      -webkit-transform: scale(0.9);
              transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
/* ----------------------------------------------
 * Generated by Animista on 2024-2-17 14:40:53
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-blurred-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-blurred-top {
    0% {
      -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
              transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
      -webkit-transform-origin: 50% 0%;
              transform-origin: 50% 0%;
      -webkit-filter: blur(40px);
              filter: blur(40px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0) scaleY(1) scaleX(1);
              transform: translateY(0) scaleY(1) scaleX(1);
      -webkit-transform-origin: 50% 50%;
              transform-origin: 50% 50%;
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
    }
  }
@keyframes slide-in-blurred-top {
    0% {
        -webkit-transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
                transform: translateY(-1000px) scaleY(2.5) scaleX(0.2);
        -webkit-transform-origin: 50% 0%;
                transform-origin: 50% 0%;
        -webkit-filter: blur(40px);
                filter: blur(40px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0) scaleY(1) scaleX(1);
                transform: translateY(0) scaleY(1) scaleX(1);
        -webkit-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-filter: blur(0);
                filter: blur(0);
        opacity: 1;
    }
}

  
.slide-in-blurred-top {
	-webkit-animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
	        animation: slide-in-blurred-top 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2024-2-17 15:12:38
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
  }
  @keyframes slide-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
  }
  

.slide-out-top {
	-webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-2-18 12:0:27
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * @animation slide-in-elliptic-left-fwd 
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-elliptic-left-fwd {
    0% {
      -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
              transform: translateX(-800px) rotateY(30deg) scale(0);
      -webkit-transform-origin: -100% 50%;
              transform-origin: -100% 50%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotateY(0) scale(1);
              transform: translateX(0) rotateY(0) scale(1);
      -webkit-transform-origin: 1800px 50%;
              transform-origin: 1800px 50%;
      opacity: 1;
    }
  }
  @keyframes slide-in-elliptic-left-fwd {
    0% {
      -webkit-transform: translateX(-800px) rotateY(30deg) scale(0);
              transform: translateX(-800px) rotateY(30deg) scale(0);
      -webkit-transform-origin: -100% 50%;
              transform-origin: -100% 50%;
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0) rotateY(0) scale(1);
              transform: translateX(0) rotateY(0) scale(1);
      -webkit-transform-origin: 1800px 50%;
              transform-origin: 1800px 50%;
      opacity: 1;
    }
  }
  

.slide-in-elliptic-left-fwd {
	-webkit-animation: slide-in-elliptic-left-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-elliptic-left-fwd 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-2-18 12:12:6
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-in-top {
    0% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
  }
@keyframes slide-in-top {
    0% {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
}
.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-2-18 12:16:11
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-top {
    0% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateY(-1000px);
              transform: translateY(-1000px);
      opacity: 0;
    }
  }
@keyframes slide-out-top {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);
        opacity: 0;
    }
}
.slide-out-top {
	-webkit-animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-top 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
  
/* ----------------------------------------------
 * Generated by Animista on 2024-2-25 16:19:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-bottom
 * ----------------------------------------
 */
 @-webkit-keyframes bounce-in-bottom {
    0% {
      -webkit-transform: translateY(500px);
              transform: translateY(500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(65px);
              transform: translateY(65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  @keyframes bounce-in-bottom {
    0% {
      -webkit-transform: translateY(500px);
              transform: translateY(500px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      -webkit-transform: translateY(65px);
              transform: translateY(65px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    72% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    81% {
      -webkit-transform: translateY(28px);
              transform: translateY(28px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    90% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    95% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
  
.bounce-in-bottom {
	-webkit-animation: bounce-in-bottom 1.1s both;
	        animation: bounce-in-bottom 1.1s both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-2-25 17:10:58
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-right
 * ----------------------------------------
 */
 @-webkit-keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
  }
  @keyframes slide-out-right {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      opacity: 1;
    }
    100% {
      -webkit-transform: translateX(1000px);
              transform: translateX(1000px);
      opacity: 0;
    }
  }

.slide-out-right {
	-webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-3-27 16:8:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-bck
 * ----------------------------------------
 */
 @-webkit-keyframes pulsate-bck {
	0% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.9);
				transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}
@keyframes pulsate-bck {
	0% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
	50% {
		-webkit-transform: scale(0.9);
				transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
				transform: scale(1);
	}
}
.pulsate-bck {
	-webkit-animation: pulsate-bck 1000ms ease-in-out infinite both;
	        animation: pulsate-bck 1000ms ease-in-out infinite both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-3-30 12:44:17
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation shake-horizontal
 * ----------------------------------------
 */
 @-webkit-keyframes shake-horizontal {
	0%,
	100% {
		-webkit-transform: translateX(0);
				transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70% {
		-webkit-transform: translateX(-10px);
				transform: translateX(-10px);
	}
	20%,
	40%,
	60% {
		-webkit-transform: translateX(10px);
				transform: translateX(10px);
	}
	80% {
		-webkit-transform: translateX(8px);
				transform: translateX(8px);
	}
	90% {
		-webkit-transform: translateX(-8px);
				transform: translateX(-8px);
	}
}
@keyframes shake-horizontal {
	0%,
	100% {
			-webkit-transform: translateX(0);
					transform: translateX(0);
	}
	10%,
	30%,
	50%,
	70% {
			-webkit-transform: translateX(-10px);
					transform: translateX(-10px);
	}
	20%,
	40%,
	60% {
			-webkit-transform: translateX(10px);
					transform: translateX(10px);
	}
	80% {
			-webkit-transform: translateX(8px);
					transform: translateX(8px);
	}
	90% {
			-webkit-transform: translateX(-8px);
					transform: translateX(-8px);
	}
}
.shake-horizontal {
	-webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
	animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2024-4-18 8:52:37
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

 @-webkit-keyframes slide-in-bottom{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes slide-in-bottom{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}

.slide-in-bottom{-webkit-animation:slide-in-bottom .5s cubic-bezier(.25,.46,.45,.94) both;animation:slide-in-bottom .5s cubic-bezier(.25,.46,.45,.94) both}

/* ----------------------------------------------
 * Generated by Animista on 2024-4-18 8:54:1
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

 @-webkit-keyframes slide-out-bottom{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}}@keyframes slide-out-bottom{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}}

.slide-out-bottom{-webkit-animation:slide-out-bottom .5s cubic-bezier(.55,.085,.68,.53) both;animation:slide-out-bottom .5s cubic-bezier(.55,.085,.68,.53) both}

.slide-left {
	-webkit-animation: slide-left 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-left 300ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-4-13 10:1:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
 @-webkit-keyframes slide-left {
	0% {
	  -webkit-transform: translateX(+100px);
			  transform: translateX(+100px);
	}
	100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
  }
  @keyframes slide-left {
	0% {
	  -webkit-transform: translateX(+100px);
			  transform: translateX(+100px);
	}
	100% {
	  -webkit-transform: translateX(0);
			  transform: translateX(0);
	}
  }
  