@plugin "flowbite/plugin";
@source "../../node_modules/flowbite";
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #F7F7F7;
    font-family: "Poppins", sans-serif;
}

.font-instrument {
    font-family: "Instrument Serif", sans-serif;
}

.custom-shadow-lg {
  box-shadow: 8px 8px 0px #354F52;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-shadow-lg-no-hover {
  box-shadow: 8px 8px 0px #354F52;
}

.custom-shadow-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 0px #354F52;
}

.custom-shadow-sm {
  box-shadow: 4px 4px 0px #354F52;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-shadow-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0px 0px 0px #354F52;
}

nav.transition-custom {
  animation: dropDown 0.3s ease-in-out;
}

@keyframes dropDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.loader-image {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite
}
.loader-image::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 2px solid #343434;
  animation: prixClipFix 2s linear infinite ;
}

@keyframes rotate {
  100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
    75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
    100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
}

.dropify-wrapper .dropify-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.dropify-wrapper .dropify-preview .dropify-render img {
    margin: 0 auto !important;
}