@import "tailwindcss";
@plugin '@tailwindcss/typography';

@theme {
  --color-app-primary: #ee3539;
  --color-app-purple: #202a4e;
  --color-app-primary-dark: #cb2929;
  
}
.react-pagination-energeek{
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-bottom: 15px;
}

.react-pagination-energeek  button {
  padding: 10px;
  background-color: #fff !important;
  border: 0 !important;
  width: 35px;
  display: flex;
  cursor: pointer;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  margin: 5px;
  height: 35px;
}

.react-pagination-energeek  button.btn-prev-next-pagination {
  background: #F7F9FB !important;
  border-radius: 8px !important;
}

.react-pagination-energeek button.active {
  background: #ee3539 !important;
  border-radius: 8px;
  color: #fff !important;
}
.container {
  display: block;
  padding: 0 15px;
  margin: auto;
}

body {
  background: #fff;
  color: #191919;
  font-family: "Poppins","Poppins Fallback"
}

.content {
  min-height: 60vh;
  padding-top: 50px;
}

.react-datepicker-wrapper-border {
  border: 1px solid #e2e8f0 !important;
  border-radius: 0.375rem !important;
}

.custom-radio:checked {
  border-color: blue;
  background-color: white;
}

.custom-radio:checked::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: blue;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sliderBanner .slick-dots .dots {
  background-color: #ddd;
  border-radius: 100px;
  width: 10px;
  height: 10px;
}

.sliderBanner .slick-dots .slick-active .dots {
  background-color: #ee3539;
  border-radius: 10px;
  width: 20px;
}

.sliderProductCategory .arrow-right-slick {
  position: absolute;
  right: 15px;
  top: calc(50% - 20px);
  background-color: #cb2929;
  color: #fff;
  width: 40px;
  z-index: 2;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sliderProductCategory .arrow-left-slick {
  position: absolute;
  z-index: 2;
  left: 15px;
  top: calc(50% - 20px);
  background-color: #cb2929;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

button:disabled {
  opacity: 0.6;
}

select:disabled {
  background-color: #f2f2f2;
}

.prose {
  max-width: 100% !important;
  width: 100% !important;
}

.d-none {
  display: none !important;
}
.loader-block {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  z-index: 9999999999;
  background: rgba(255, 255, 255, 0.5);
}

.loader-block .loader {
  border: 5px solid #ee3539;
  border-radius: 50%;
  border-top: 5px solid #f2f2f2;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;

  animation: spin 2s linear infinite;
}
