* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: "Alata", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #000;
  background-color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

a.decoration:hover {
  text-decoration: underline;
}

ul.no-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul.bottom-space li {
  margin-bottom: 30px;
}

button {
  border: none;
  cursor: pointer;
}

p {
  font-size: 18px;
  color: #13243a;
  margin-top: 10px;
  margin-bottom: 10px;
}

.section {
  width: 100%;
  padding: 25px 5% 25px 5%;
}

.ma-au {
  margin: auto;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.flex-h {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.flex-h-small {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.flex-v {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex-wrap: wrap;
}

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

.ai-c {
  align-items: center;
}
.col {
  flex: 1;
}

.row {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.small-txt {
  font-size: 12px;
}

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

.hidden {
  display: none;
}

.va-m {
  vertical-align: middle;
}

.bold {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.clickable {
  cursor: pointer;
}

.delete-icon,
.red {
  color: red;
}

.green {
  color: green;
}

.card-order-arrow-small {
  display: none;
}

.warning-text {
  font-weight: bold;
  color: #dc3545;
}

/* Popup-alert */
.popup-alert {
  position: fixed;
  top: 0;
  right: 0;
  margin: 10px;
  z-index: 1;
  border-radius: 10px;
  padding: 10px;
  display: none;
}

.popup-alert.success {
  color: #0f5132;
  background-color: #d1e7dd;
  border: 1px solid #badbcc;
}

.popup-alert.error {
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
}
/* Popup-alert end */

/* Nav tabs */
.nav-tabs {
  justify-content: center;
  border-bottom: 1px solid #bcc0c4;
  max-width: 1000px;
  margin-bottom: 25px;
}

.nav-link {
  padding: 10px;
  margin-bottom: calc(1px * -1);
  background-color: #eee;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid #bcc0c4;
  border-left: 1px solid transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-tabs .nav-link.active {
  border-left: 1px solid #bcc0c4;
  border-top: 1px solid #bcc0c4;
  border-right: 1px solid #bcc0c4;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}

.nav-tabs .nav-link:hover {
  border-left: 1px solid #bcc0c4;
  border-top: 1px solid #bcc0c4;
  border-right: 1px solid #bcc0c4;
  border-radius: 5px 5px 0 0;
}
/* Nav tabs end */

/* Page */
.page-header {
  text-align: center;
  padding: 20px 0 0 0;
  align-items: center;
}

.page-title {
  display: inline-block;
  font-weight: bold;
  font-size: 30px;
}

.edit-page-btn {
  color: #888;
  cursor: pointer;
}
/* Page end */

/* Table */
table {
  width: 100%;
}

table.file-upload-preview {
  margin: 10px 0;
}

table.file-upload-preview td img,
table.file-upload-preview td iframe {
  width: 200px;
  height: 200px;
}

table.file-upload-preview td.preview-img {
  text-align: center;
  font-size: 16px;
}

table.file-upload-preview td.preview-name {
  font-size: 16px;
  text-align: left;
}

table.striped {
  border-collapse: collapse;
}

table.striped td,
table.striped th {
  border: 1px solid #ddd;
  padding: 10px;
}

table.striped tr:nth-child(even) {
  background-color: #f2f2f2;
}

table.striped tr:hover {
  background-color: #ddd;
}

table.striped th {
  background-color: #f6c4ad;
}

.responsive-table {
  overflow-x: auto;
}
/* Table end */

/* Slideshow */
.slideshow-container {
  position: relative;
}

.slideshow-container .slide {
  display: none;
  max-height: 500px;
}

.slideshow-container .slide img {
  max-height: 500px;
  cursor: zoom-in;
}

.slideshow-controls {
  margin-top: 10px;
  margin-bottom: 20px;
}

.slideshow-container .display-pdf {
  width: 500px;
  height: 500px;
}

.slideshow-controls .prev,
.slideshow-controls .next {
  cursor: pointer;
  padding: 16px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.slide-active,
.dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/* Container */
.container-flex {
  flex: 1;
}

.container-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content-footer {
  border-top: 1px solid #35465c;
  padding: 10px 0;
}

.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.card {
  background-color: #f6c4ad;
  border: 1px solid #35465c;
  border-radius: 5px;
  width: 325px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
}

.card:hover {
  background-color: #e2a98e;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2);
}

img.card-cover {
  border-radius: 5px 5px 0 0;
  width: 277px;
  height: 179px;
  object-fit: cover;
}

.card-body {
  padding: 15px;
}

.card-title {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
}

.small-card {
  width: 277px;
  margin: 5px;
  min-height: 100px;
  background-color: #f6c4ad;
  border-radius: 5px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  word-wrap: break-word;
  border: 1px solid rgba(0, 0, 0, 0.175);
  background-clip: border-box;
}

.small-card:hover {
  background-color: #e2a98e;
}

.small-card .card-header {
  border-bottom: 1px solid #35465c;
}

.page-element-group {
  border-bottom: 1px solid #35465c;
  padding: 10px 0;
  margin-bottom: 10px;
}

.page-element-group:last-of-type {
  border: none;
}

.page-element-group .secondary-btn {
  display: inline-block;
}

.screen-small {
  display: none;
}

.ads {
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.app-badge {
  width: 175px;
}
/* Container end */

/* Fullscreen image modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.3s;
  cursor: zoom-out;
}

.image-modal img {
  max-width: 85%;
  max-height: 85%;
  animation-name: zoomIn;
  animation-duration: 0.6s;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

@keyframes zoomIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
/* Fullscreen image modal end */

/* Header */
.navbar {
  background-color: #ba927f;
  color: #35465c;
  padding: 10px 3%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #35465c;
  font-weight: bold;
}

.branding {
  font-size: 30px;
  color: #35465c;
}

.branding img.logo {
  width: 70px;
  height: auto;
  vertical-align: middle;
}

.navbar-nav {
  list-style: none;
  display: flex;
  font-size: 16px;
}

.navbar-nav li {
  padding: 10px 10px;
}

.navbar-link {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.navbar-nav li:hover,
.navbar-nav .active {
  color: #000;
  text-decoration: underline;
}

.navbar-toggler {
  background: none;
  color: #000;
  border: none;
  font-size: 25px;
  cursor: pointer;
  display: none;
}

.navbar-toggler:hover {
  color: #555;
}

.navbar-collapse {
  display: block;
}

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

.dropdown-content {
  display: none;
  position: absolute;
  top: 40px;
  padding-top: 15px;
  background-color: transparent;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-top: 1px solid #e7e7e7;
  background-color: #f1f1f1;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Header end */

/* Home */
#home {
  background-color: #ba927f;
}

.home-title {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.home-content p {
  font-size: 20px;
  color: #13243a;
  margin-bottom: 30px;
}

.home-cover img {
  width: 100%;
  border-radius: 5px;
  max-height: 525px;
  object-fit: cover;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
}

.home-button {
  font-size: 20px;
  background-color: #35465c;
  color: #eee;
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-block;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.home-button:hover {
  background-color: #13243a;
}
/* Home end */

/* Showcase */
.showcase {
  align-items: center;
  margin-bottom: 25px;
}

.showcase-img {
  border: 5px solid black;
  border-radius: 20px;
  width: 300px;
  height: 448px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.5);
}
/* Showcase end */

/* Contact */
#contact {
  background-color: #ba927f;
}
/* Contact end */

/* How-to */
#howto {
  border-top: 1px solid #35465c;
}

.number-icon {
  border: 6px double #35465c;
  border-radius: 10px;
  padding: 20px;
  font-size: 30px;
  color: #a9816e;
}
/* How-to end */

/* Project */
.project-container {
  max-width: 1000px;
  margin: auto;
}

.project-details {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #35465c;
  padding: 10px;
}

.project-details-row {
  display: flex;
  margin-bottom: 10px;
}

.project-params-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.project-param {
  padding: 10px;
  border-bottom: 1px solid #35465c;
}

.project-param:last-of-type {
  border-bottom: none;
}

.project-param-header {
  margin-bottom: 20px;
}

.save-indicator {
  font-size: 12px;
  color: #555;
}

.project-param-body {
  margin-bottom: 10px;
}

.project-param-footer {
  margin-top: 20px;
}

.project-counter-widget {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.project-counter-widget-header {
  margin-bottom: 25px;
  font-size: 16px;
}

.project-counter-widget-title input {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: inherit;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.project-counter-widget-count {
  padding: 0 30px;
  font-weight: bold;
  font-size: 20px;
}

.project-counter-widget-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

input.element-input-title {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: inherit;
  width: 100%;
  font-weight: bold;
  text-align: center;
}

.element-information {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 10px;
}

.element-title {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  text-align: left;
  text-decoration: underline;
}

.footmark {
  margin-top: 20px;
  font-size: 12px;
}
/* Project end */

/* Settings */
.settings-container {
  max-width: 1000px;
  margin: 0 auto 25px auto;
  display: flex;
  gap: 15px;
}

.settings-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.175);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  background-clip: border-box;
  background-color: #f6c4ad;
}

.settings-card .card-header {
  border-bottom: 1px solid #35465c;
}

.settings-card .card-body {
  flex: 1;
}

.alert-settings {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #000;
}
/* Settings end */

/* Banner */
.banner-bottom {
  display: flex;
  justify-content: space-evenly;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f2f2f2;
  border-top: 1px solid #35465c;
  padding: 15px;
  align-items: center;
  gap: 15px;
  z-index: 1;
}

.banner-icon {
  font-size: 55px;
  color: #35465c;
}

.banner-content {
  max-width: 1000px;
}

.banner-header {
  font-size: 18px;
  font-weight: bold;
}

.banner-body {
  font-size: 14px;
}

.banner-action .secondary-btn {
  font-size: 16px;
  min-width: 125px;
}
/* Banner end */

/* Achievements */
.achievements-container {
  display: flex;
  justify-content: space-evenly;
  row-gap: 20px;
  flex-wrap: wrap;
}

.achievement-group {
  display: flex;
  flex-direction: column;
  width: 400px;
  padding: 10px;
  background-color: #f6c4ad;
  border: 1px solid #35465c;
  border-radius: 10px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.achievement-group-header {
  margin-bottom: 10px;
}

.achievement-group-title {
  font-weight: bold;
  font-size: 25px;
}

.achievement-group-body {
  flex: 1;
}

.achievement-group-body img {
  max-height: 200px;
  max-width: 200px;
}

.progress-bar {
  width: 100%;
  background-color: #ba927f;
  padding: 2px;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-fill {
  display: block;
  height: 5px;
  background-color: #35465c;
  border-radius: 3px;
  transition: width 500ms ease-in-out;
}
/* Achievements end */

/* Statistics */
.statistics-container {
  display: flex;
  flex-direction: column;
  max-width: 700px;
  padding: 25px;
  background-color: #f6c4ad;
  border: 1px solid #35465c;
  border-radius: 10px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
  margin: auto;
}

.statistics-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed #35465c;
  padding: 5px 0;
  margin-bottom: 20px;
  text-align: left;
}

.statistics-item:hover {
  border-bottom: 2px solid #35465c;
}

.statistics-name {
  font-weight: bold;
}
/* Statistics end */

/* Accordion */
.accordion {
  width: 100%;
  text-align: left;
}

.sub-accordion {
  margin-bottom: 10px;
}

.accordion-item {
  display: flex;
  flex-direction: column;
}

.accordion:first-of-type .accordion-header {
  border-radius: 5px 5px 0 0;
}

.accordion-header {
  padding: 10px;
  background-color: #ddd;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background-color: #ccc;
}

.sub-accordion-header {
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-accordion-header:hover {
  color: #777;
}

.accordion-body {
  padding: 10px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.sub-accordion-body {
  padding: 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 5px;
}

.product-container {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.product-body {
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.product-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 10px;
}

/* Accordion end */

/* Shoppinglist */
.shoppinglist-checked {
  opacity: 0.5;
  text-decoration: line-through;
}

.add-product-modal {
  margin-top: 25px;
}

table.shoppinglist-preview {
  font-size: 12px;
  border-top: 1px solid #000;
}

table.shoppinglist-preview td,
table.shoppinglist-preview th {
  border-bottom: 1px dashed #000;
  padding: 10px 0;
}
/* Shoppinglist end */

/* Storage */
.storage-container {
  max-width: 1000px;
  margin: auto;
}

.product-image {
  max-width: 200px;
  max-height: 200px;
  margin: auto;
}

.product-image img {
  max-width: 200px;
  max-height: 200px;
  border-radius: 5px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.product-image-small {
  max-width: 150px;
  max-height: 150px;
  margin: auto;
}

.product-image-small img {
  max-width: 150px;
  max-height: 150px;
  border-radius: 5px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}
/* Storage end */

/* Module */
.module {
  text-align: left;
  background-color: #f6c4ad;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  display: inline-block;
  border: 1px solid #35465c;
}
/* Module end */

/* Popup modal */
.popup-modal {
  width: 95%;
  max-width: 700px;
  padding: 15px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f6c4ad;
  border: 1px solid #35465c;
  border-radius: 10px;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.25);
}

.popup-modal-container {
  display: flex;
  flex-direction: column;
}

.popup-modal-header {
  margin-bottom: 10px;
}

.popup-modal-header .close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #35465c;
}

.popup-modal-header .close-button:hover {
  color: #13243a;
}

.popup-modal-title {
  font-weight: bold;
  font-size: 25px;
}

.popup-modal-body {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.popup-modal-content {
  flex: 1;
}

.popup-modal-content img {
  max-height: 250px;
  max-width: 250px;
  margin-bottom: 10px;
}
/* Popup modal end */

/* Form elements */
.form {
  padding: 0 0 25px 0;
  max-width: 1000px;
  margin: auto;
}

.form-group {
  margin-bottom: 15px;
}

input.page-title {
  border: none;
  background-color: transparent;
  text-align: center;
  outline: none;
  width: 100%;
}

.form-input {
  padding: 10px;
  font-size: 18px;
  border: 1px solid #13243a;
  border-radius: 5px;
  background-color: #fff;
  width: 100%;
}

.form-textarea {
  padding: 10px;
  font-size: 18px;
  border: 1px solid #13243a;
  border-radius: 5px;
  background-color: #fff;
  height: 200px;
  resize: none;
  width: 100%;
  min-height: 43px;
}

.form-checkbox {
  width: 25px;
  height: 25px;
  accent-color: #35465c;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

label {
  font-weight: bold;
}

.terms-consent-group {
  display: flex;
  align-items: center;
}

.terms-consent-text {
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
}

.form-select {
  background: #fff;
  color: #333;
  font-size: 17px;
  border: 1px solid #13243a;
  border-radius: 5px;
  padding: 6px 15px;
  height: 45px;
  margin-bottom: 24px;
  appearance: none;
  width: 100%;
}

.remember-me-checkbox {
  display: flex;
  gap: 10px;
}

.input-error {
  border: 1px solid red;
  background-color: #ffccbb;
}

.input-transparent {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: inherit;
  width: 100%;
}

.textarea-transparent {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  resize: none;
  font-size: 18px;
  min-height: 43px;
}

.select-transparent {
  background: transparent;
  color: #333;
  font-size: inherit;
  border: none;
  border-radius: 5px;
  padding: 0;
  outline: none;
  margin-bottom: 24px;
  appearance: none;
  width: 100%;
}
/* Form elements end */

/* Buttons */
.primary-btn {
  background-color: #ba927f;
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin: 10px 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.primary-btn:hover {
  background-color: #a9816e;
  cursor: pointer;
}

.secondary-btn {
  background-color: #35465c;
  color: #eee;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin: 10px 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.secondary-btn:hover {
  background-color: #13243a;
  cursor: pointer;
}

label.secondary-btn {
  display: inline-block;
}

.danger-btn {
  background-color: #dc3545;
  color: #eee;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 18px;
  margin: 10px 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.danger-btn:hover {
  background-color: #bb2d3b;
  cursor: pointer;
}
/* Buttons end */

/* Footer */
.footer-content {
  width: 100%;
  padding: 35px;
  border-top: 1px solid #35465c;
  font-size: 16px;
}

.footer-links {
  margin-bottom: 10px;
}

.footer-content a:hover {
  text-decoration: underline;
}
/* Footer end */

@media screen and (max-width: 1199px) {
  /* Header */
  .branding {
    font-size: 23px;
  }

  .navbar-nav {
    font-size: 14px;
  }
  /* Header end */

  /* Home */
  .home-title {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .home-content p {
    font-size: 18px;
  }

  .home-button {
    font-size: 18px;
  }

  .home-cover img {
    max-height: 420px;
  }
  /* Home end */
}

@media screen and (min-width: 992px) {
  .navbar-collapse {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  /* Header */
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
    flex-basis: 100%;
    border-top: 1px solid #e7e7e7;
    text-align: center;
    color: #eee;
  }

  .navbar-collapse.show {
    display: block;
  }

  .navbar-collapse:not(.show) {
    display: none;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav li {
    border-bottom: 1px solid #333;
  }

  .navbar-nav li:hover,
  .navbar-nav .active {
    color: #bbb;
  }

  .dropdown-content {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
  /* Header end */

  .settings-container {
    flex-direction: column;
  }

  .achievements-container {
    flex-direction: column;
    align-items: center;
  }

  .product-body {
    flex-direction: column;
  }

  .product-details {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .flex-h {
    flex-direction: column;
    margin-bottom: 15px;
  }

  .flex-invert {
    flex-direction: column-reverse;
  }

  .horizontal {
    flex-direction: row;
  }

  .page-title {
    font-size: 20px;
  }

  .card-container {
    flex-direction: column;
    align-content: center;
  }

  .card-order-arrow-large {
    display: none;
  }

  .card-order-arrow-small {
    display: block;
  }

  table.file-upload-preview td img,
  table.file-upload-preview td iframe {
    width: 100px;
    height: 100px;
  }

  table.file-upload-preview td.preview-name {
    font-size: 12px;
    text-align: left;
  }

  .slideshow-container .display-pdf {
    width: 100%;
    height: 500px;
  }

  .screen-large {
    display: none;
  }

  .screen-small {
    display: block;
  }

  .product-body {
    flex-direction: column;
  }

  .product-details {
    width: 100%;
    margin-bottom: 10px;
  }

  .settings-container {
    font-size: 16px;
  }

  .form-input {
    font-size: 16px;
  }

  .popup-modal-content img {
    max-height: 150px;
    max-width: 150px;
  }

  .achievement-group {
    width: 350px;
  }

  .achievement-group-body img {
    max-width: 150px;
    max-height: 150px;
  }

  .banner-bottom {
    flex-direction: column;
  }

  .banner-icon {
    display: none;
  }

  table.striped {
    font-size: 12px;
  }

  .nav-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 544px) {
  .achievement-group {
    width: 100%;
  }

  .statistics-item {
    font-size: 13px;
    flex-direction: column;
  }

  .terms-consent-text {
    font-size: 16px;
  }

  input.page-title {
    max-width: 70%;
  }

  .row {
    flex-direction: column;
  }
}
