* {
  box-sizing: border-box;
}

.swal2-html-container ul,
.swal2-html-container li {
  list-style: none;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

html,
body {
  font-family: "Cairo", sans-serif;
  line-height: 1.5;
}

textarea {
  resize: none;
  min-height: 160px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

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

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

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

.p-0 {
  padding: 0;
}

.m-0 {
  margin: 0;
}

.mt-4 {
  margin-top: 1.5rem;
}

.w-100 {
  width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  margin: auto;
  max-width: 1366px;
  padding: 0 15px;
}
.container.md-container {
  margin: 4rem auto;
  max-width: 768px;
}
.container.sm-container {
  max-width: 576px;
}

.btn {
  border: 0;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
}

.btn-primary {
  background-color: #c72227;
  color: #FFF;
}

.color-primary {
  color: #c72227;
}

.color-white {
  color: #FFF;
}

#logo {
  width: 256px;
  height: 104px;
  margin: 2rem 0;
  display: inline-block;
}

#menu {
  position: relative;
  margin-bottom: 1rem;
}

#menu::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 100%;
  background: #ccc;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #menu::before {
    display: none;
  }
}

#menu > ul {
  position: relative;
  display: inline-flex;
  width: 100%;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#menu > ul > li > a {
  display: inline-flex;
  background: #c72227;
  padding: 8px 20px;
  border-radius: 30px;
}

#menu a {
  color: #FFF;
}

footer {
  margin-top: 75px;
  background: #c72227;
  padding: 2rem 0;
}
footer #social-links a {
  display: inline-block;
  margin: 5px;
}
footer #social-links svg {
  width: 26px;
  height: 26px;
  fill: #FFF;
}
footer #footer-menu ul {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}
footer #footer-menu li {
  position: relative;
}
footer #footer-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 6px;
  background: #FFF;
}
footer #footer-menu li:last-child::after {
  display: none;
}

footer ul {
  display: flex;
}
footer ul li {
  padding: 15px;
}
footer ul li a {
  color: #FFF;
}

.form-field {
  margin-bottom: 2rem;
  width: 100%;
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  border-radius: 30px;
  border: 1px solid #ccc;
  min-height: 40px;
  padding: 15px 20px;
  width: 100%;
}
.form-field textarea {
  min-height: 140px;
}
.form-field select {
  padding: 10px;
}
.form-field.filled input,
.form-field.filled textarea,
.form-field.filled select {
  background: #ccc;
}

#verify {
  width: 400px;
  margin: 50px auto;
  direction: ltr;
  max-width: 100%;
}
#verify div {
  margin-left: 5px;
  width: 50px;
}
@media screen and (max-width: 400px) {
  #verify div {
    width: 42px;
  }
}
#verify div input {
  background-color: #EEE;
  width: 100%;
  border: 6px solid #EEE;
  box-shadow: 0 6px 6px #DDD;
  border-radius: 10px;
  min-height: 24px;
  padding: 3px;
  line-height: 30px;
  text-align: center;
  outline: none;
}

#dashboard-wrapper {
  display: inline-flex;
  width: 100%;
  gap: 1rem;
  margin: 2rem 0;
  align-items: flex-start;
}
@media screen and (max-width: 576px) {
  #dashboard-wrapper {
    flex-direction: column;
  }
}

.dashboard-sidebar {
  width: 250px;
  background-color: #EEE;
  padding: 1rem 1.4rem;
}
.dashboard-sidebar > ul > li > a {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
.dashboard-sidebar > ul > li > ul a {
  color: #777;
}
.dashboard-sidebar a {
  display: inline-block;
  padding: 10px;
  color: #282828;
}
@media screen and (max-width: 576px) {
  .dashboard-sidebar {
    width: 100%;
  }
}

.dashboard-content {
  flex: 1;
  width: 100%;
}

.alert {
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 6px;
  margin: 2rem 0;
}

.alert-error {
  border-color: #c72227;
  color: #c72227;
  background-color: #ffa1a4;
}

.add-product-form {
  display: inline-flex;
  width: 100%;
  padding: 0 1rem;
  gap: 1rem;
  align-items: stretch;
  border: 1px solid #ccc;
  border-radius: 40px;
  padding: 1.5rem;
}
.add-product-form > div {
  flex: 1;
}
@media screen and (max-width: 920px) {
  .add-product-form {
    flex-direction: column;
  }
}

.add-product-photo {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: center;
  max-width: 300px;
  border-radius: 1rem;
  position: relative;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.add-product-photo input[type=file] {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  right: 0;
}
@media screen and (max-width: 920px) {
  .add-product-photo {
    max-width: 100%;
    min-height: 150px;
  }
}

.add-product-photo-caption {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: white;
  padding: 5px;
  border-radius: 40px;
}

.add-product-data h3 {
  margin: 0 0 1rem 0;
}

.add-product-data-fields {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}

.add-product-data-fields-row {
  display: inline-flex;
  width: 100%;
  gap: 1rem;
}
.add-product-data-fields-row > div {
  width: 100%;
  flex: 1;
}
@media screen and (max-width: 576px) {
  .add-product-data-fields-row {
    flex-direction: column;
  }
}

.add-product-data-field {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  white-space: nowrap;
}

.add-product-data-fields-group {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
}
.add-product-data-fields-group > div {
  flex: 1;
}

.add-product-field {
  width: 100%;
  display: flex;
  flex: 1;
}
.add-product-field select,
.add-product-field input,
.add-product-field textarea {
  width: 100%;
  outline: none;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 20px;
  min-height: 40px;
  padding: 0 15px;
}
.add-product-field textarea {
  display: flex;
  flex: 1;
  padding: 15px;
}

.table-container {
  max-width: 100%;
  overflow: scroll;
}

.table {
  width: 100%;
}
.table thead {
  background: #EEE;
}
.table th,
.table td {
  padding: 5px;
}

.delete-product-icon {
  cursor: pointer;
}
.delete-product-icon svg {
  fill: #c72227;
}

.products-filter {
  background: #EEE;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
}
.products-filter .fields {
  display: inline-flex;
  width: 100%;
  gap: 1rem;
}
.products-filter .fields > div {
  flex: 1;
}
@media screen and (max-width: 576px) {
  .products-filter .fields {
    flex-direction: column;
    gap: 0;
  }
  .products-filter .fields .form-field {
    margin-bottom: 1rem;
  }
}

.product {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 30px;
}
.product .info {
  display: inline-flex;
  width: 100%;
  gap: 1rem;
}
.product .info .photo {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 20px;
}
.product .info .details {
  display: inline-flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  gap: 1rem;
}
.product .info .details .rows {
  display: flex;
  justify-content: space-between;
}
.product .info .details .rows .cell {
  display: inline-flex;
  width: auto;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 576px) {
  .product .info {
    flex-direction: column;
  }
  .product .info .details .rows {
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    display: inline-flex;
  }
  .product .info .details .rows .cell {
    width: auto;
  }
}

.tools {
  display: inline-flex;
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  font-weight: 600;
  flex-wrap: wrap;
}
.tools a {
  color: #282828;
}

.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 1rem;
}
.pagination > * {
  color: #282828;
  padding: 0.5rem;
  display: inline-block;
  border: 1px solid #EEE;
}
.pagination > span.current {
  background: #c72227;
  color: #FFF;
}

.farm {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 30px;
}
.farm h3 a {
  color: #c72227;
}

#map-wrapper {
  border-radius: 30px;
  overflow: hidden;
}

#map {
  height: 420px;
  background-color: #F0F0F0;
}/*# sourceMappingURL=style.css.map */