/* The integration's default injected base.css file */
@tailwind base;
@tailwind components;
@tailwind utilities;

html, body {
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}
.kv-bg-test{
    background-color: aqua;
}
.slider {
    width: 85%;
    margin: 10px auto;
    display: flex;
}


@keyframes spin {
to {
transform: rotate(-360deg);
}
}

.animate-spin {
animation: spin 1s linear infinite;
}

@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}

.animate-ping-slow {
animation: ping 5s cubic-bezier(1, 1, 0.2, 1) infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.animate-bounce {
animation: bounce 1s infinite;
}

@keyframes pulse {
50% {
opacity: .5;
}
}

.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-spin-slow {
animation: spin 40s linear infinite;
}

.animate-none {
animation: none;
}



@keyframes spin {
to {
transform: rotate(-360deg);
}
}

.hover\:animate-spin:hover {
animation: spin 1s linear infinite;
}

@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}

.hover\:animate-ping:hover {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.hover\:animate-bounce:hover {
animation: bounce 1s infinite;
}

@keyframes pulse {
50% {
opacity: .5;
}
}

.hover\:animate-pulse:hover {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@media (min-width: 640px) {
.sm\:py-12 {
padding-top: 3rem;
padding-bottom: 3rem;
}
}

@media (min-width: 768px) {
@keyframes spin {
to {
transform: rotate(360deg);
}
}

.md\:animate-spin {
animation: spin 1s linear infinite;
}

@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}

.md\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.md\:animate-bounce {
animation: bounce 1s infinite;
}

@keyframes pulse {
50% {
opacity: .5;
}
}

.md\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
}

@media (min-width: 1024px) {
@keyframes spin {
to {
transform: rotate(360deg);
}
}

.lg\:animate-spin {
animation: spin 1s linear infinite;
}

@keyframes ping {
75%, 100% {
transform: scale(2);
opacity: 0;
}
}

.lg\:animate-ping {
animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.lg\:animate-bounce {
animation: bounce 1s infinite;
}

@keyframes pulse {
50% {
opacity: .5;
}
}

.lg\:animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
}


@keyframes wiggle {
0%, 100% {
transform: rotate(-3deg);
}

50% {
transform: rotate(3deg);
}
}


.animate-wiggle {
animation: wiggle 5s ease-in-out infinite;
}








.menu {
position: relative;
display: inline-block;
}

.acilir-menu {
display: none;
position: absolute;
min-width: 400px;
}

.menu:hover .acilir-menu {
display: block;
}

.slider{
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.item{
    position: absolute;
    width: 250px;
    height: 200px;
    text-align: justify;        
    transition: 0.5s;
    left: calc(50% - 110px);
    top: 0;    
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-image{
    width: 100px;
}
#next, #prev{        
    background-color: transparent;
    border: none;
    font-size: xx-large;
    font-family: monospace;
    font-weight: bold;
    left: 50px;
}
#next{
    left: unset;
    right: 50px;;
}

.kv-slider-main{
    display: flex;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
  }
  #snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }