/*!**************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./assets/scss/frontend-style.scss ***!
  \**************************************************************************************************************************/
.ep-wrapper input[type=text] {
  width: 100%;
}
.ep-wrapper input[type=datetime-local] {
  width: 220px;
}
.ep-wrapper a {
  text-decoration: none;
}

.ep-row,
.ep-d-flex {
  display: flex;
}

.ep-flex-column {
  flex-direction: column;
}

.ep-flex-row {
  flex-direction: row;
}

.ep-justify-between {
  justify-content: space-between;
}

.ep-justify-start {
  justify-content: flex-start;
}

.ep-justify-end {
  justify-content: flex-end;
}

.ep-align-center {
  align-items: center;
}

.ep-align-start {
  align-items: flex-start;
}

.ep-align-end {
  align-items: flex-end;
}

.ep-gap-10 {
  gap: 10px;
}

.ep-gap-5 {
  gap: 5px;
}

.ep-gap-20 {
  gap: 20px;
}

.ep-col-1 {
  flex-basis: 8%;
}

.ep-col-2 {
  flex-basis: 16%;
}

.ep-col-3 {
  flex-basis: 24%;
}

.ep-col-4 {
  flex-basis: 32%;
}

.ep-col-5 {
  flex-basis: 40%;
}

.ep-col-6 {
  flex-basis: 48%;
}

.ep-col-7 {
  flex-basis: 56%;
}

.ep-col-8 {
  flex-basis: 64%;
}

.ep-col-9 {
  flex-basis: 72%;
}

.ep-col-10 {
  flex-basis: 80%;
}

.ep-col-11 {
  flex-basis: 88%;
}

.ep-col-12 {
  flex-basis: 96%;
}

.ep-mt-10 {
  margin-top: 10px;
}

.ep-mb-10 {
  margin-bottom: 10px;
}

.ep-ml-10 {
  margin-left: 10px;
}

.ep-mr-10 {
  margin-right: 10px;
}

.ep-mt-20 {
  margin-top: 20px;
}

.ep-mb-20 {
  margin-bottom: 20px;
}

.ep-ml-20 {
  margin-left: 20px;
}

.ep-mr-20 {
  margin-right: 20px;
}

.ep-ml-30 {
  margin-left: 30px;
}

.ep-mr-30 {
  margin-right: 30px;
}

.ep-mt-30 {
  margin-top: 30px;
}

.ep-mb-30 {
  margin-bottom: 30px;
}

.ep-p-10 {
  padding: 10px;
}

.ep-p-20 {
  padding: 20px;
}

.ep-pt-10 {
  padding-top: 10px;
}

.ep-pb-10 {
  padding-bottom: 10px;
}

.ep-pl-10 {
  padding-left: 10px;
}

.ep-pr-10 {
  padding-right: 10px;
}

.ep-pt-20 {
  padding-top: 20px;
}

.ep-pb-20 {
  padding-bottom: 20px;
}

.ep-pl-20 {
  padding-left: 20px;
}

.ep-pr-20 {
  padding-right: 20px;
}

.ep-px-10 {
  padding: 0 10px;
}

.ep-px-20 {
  padding: 0 20px;
}

.ep-py-10 {
  padding: 10px 0;
}

.ep-px-20 {
  padding: 20x 0;
}

.ep-btn {
  display: flex;
  justify-content: space-between;
  gap: 3px;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background-color: #0d6efd;
  border: 1px;
  border-color: #0d6efd;
  border-radius: 4px;
  padding: 0.75rem 1.25rem;
  font-size: 15px;
}
.ep-btn.ep-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border: 1px;
  border-color: #6c757d;
  border-radius: 4px;
}
.ep-btn.ep-btn-warning {
  color: #fff;
  background-color: #ffc107;
  border: 1px;
  border-color: #ffc107;
  border-radius: 4px;
}
.ep-btn.ep-btn-danger {
  color: #fff;
  background-color: #d63384;
  border: 1px;
  border-color: #d63384;
  border-radius: 4px;
}
.ep-btn.ep-btn-success {
  color: #fff;
  background-color: #198754;
  border: 1px;
  border-color: #198754;
  border-radius: 4px;
}
.ep-btn.ep-btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 12px;
}
.ep-btn.ep-btn-lg {
  padding: 1.75rem 2.45rem;
  font-size: 18px;
}
.ep-btn:disabled {
  background-color: #abb2b7 !important;
  color: #fff !important;
  border-color: #6c757d !important;
  cursor: default !important;
}

.ep-alert {
  background-color: #cfe2ff;
  color: #084298;
  border: 1px solid #b6d4fe;
  padding: 10px 20px;
  border-radius: 3px;
}
.ep-alert.ep-alert-warning {
  background-color: #fff3cd;
  color: #664d03;
  border: 1px solid #ffecb5;
  padding: 10px 20px;
  border-radius: 3px;
}
.ep-alert.ep-alert-danger {
  background-color: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
  padding: 10px 20px;
  border-radius: 3px;
}
.ep-alert.ep-alert-success {
  background-color: #d1e7dd;
  color: #0f5132;
  border: 1px solid #badbcc;
  padding: 10px 20px;
  border-radius: 3px;
}

.ep-hidden {
  display: none;
}

.ep-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #cfe2ff;
}
.ep-card.ep-card-primary {
  background-color: #0d6efd;
}
.ep-card.ep-card-success {
  background-color: #198754;
}
.ep-card.ep-card-warning {
  background-color: #ffc107;
}
.ep-card.ep-card-danger {
  background-color: #d63384;
}
.ep-card .ep-card-collapse {
  cursor: pointer;
}
.ep-card .ep-card-header {
  border-bottom: 1px solid #cfe2ff;
  padding: 5px 10px;
  background-color: #cfe2ff;
}

.ep-pagination {
  display: flex;
  gap: 5px;
  align-items: center;
}
.ep-pagination .page-numbers {
  border: 1px solid #cdc2c2;
  padding: 5px 8px;
  margin: 0 3px;
}

.ep-text-small {
  font-weight: 300;
  font-size: 12px;
}

.ep-text-large {
  font-weight: 500;
  font-size: 24px;
}

.ep-text-extra-large {
  font-weight: 800;
  font-size: 32px;
}

.ep-badge {
  background-color: #0d6efd;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1px;
}
.ep-badge.ep-badge-primary {
  background-color: #0d6efd;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1px;
}
.ep-badge.ep-badge-success {
  background-color: #198754;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1px;
}
.ep-badge.ep-badge-warning {
  background-color: #ffc107;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1px;
}
.ep-badge.ep-badge-danger {
  background-color: #d63384;
  color: #fff;
  padding: 5px;
  border-radius: 5px;
  font-size: 10px;
  letter-spacing: 1px;
}

.ep-progress-bar {
  width: 100%;
  min-height: 20px;
  background-color: #ddd;
  border-radius: 10px;
  position: relative;
}
.ep-progress-bar .ep-progress {
  height: 100%;
  background-color: #0d6efd;
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
}
.ep-progress-bar .ep-progress.ep-progress-100 {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}
.ep-progress-bar .ep-progress-text {
  position: absolute;
  top: 5px;
  left: 10%;
  color: #fff;
  font-size: 14px;
  line-height: 10px;
  white-space: normal; /* allow text to wrap to next line */
  overflow: visible; /* show text that overflows the container */
  min-height: 20px; /* set minimum height to match the container */
  width: 100%;
}

.ep-poll-wrapper {
  padding: 20px 0 20px;
}
.ep-poll-wrapper.ep-container {
  margin: auto;
}
.ep-poll-wrapper .ep-poll-questions {
  margin-top: 30px;
}
.ep-poll-wrapper .ep-poll-questions input[type=text], .ep-poll-wrapper .ep-poll-questions textarea {
  width: 100%;
  border: 2px solid #ced4da;
  border-radius: 3px;
}
.ep-poll-wrapper .ep-poll-questions input[type=text]:focus, .ep-poll-wrapper .ep-poll-questions textarea:focus {
  border-color: rgba(84, 104, 255, 0.8470588235);
}
.ep-poll-wrapper .ep-poll-questions input[type=text] {
  padding: 0.375rem 0.75rem;
}
.ep-poll-wrapper .ep-poll-questions .ep-poll-field-group {
  width: 100%;
  margin-bottom: 20px;
}
