/* #region variables (based on Figma definitions)*/
:root {
  /* Primary Colors */
  --primary-default: #a16a5e;
  --primary-blue: #1b59ac;
  --primary-green: #1bac6f;

  /* Secondary Colors */
  --secondary-contrast: #d44c2e;

  /* Background Colors */
  --background-light: #fcebd5;
  --background-dark: #e09686;
  --background-normal: #edd5bb;
  --background-grey: #e5e5e5;

  /* Text Colors */
  --text-primary: #5a5a5a;
  --text-secondary: #b9b9b9;
  --text-light: #f8f8f8;

  /* Sizes */
  --header-primary: 1.875rem; /* 30px */
  --header-primary-big: 2.5rem; /* 40px */
  --header-primary-bigger: 3.125rem; /* 50px */
  --header-secondary: 0.875rem; /* 14px */
  --font-size-normal: 1.125rem; /* 18px */
  --font-size-small: 0.75rem; /* 12px */
  --font-size-smaller: 0.6875rem; /* 11px */
  --weight-bolder: 700;
  --weight-bold: 500;
  --weight-primary: 400;
  --weight-secondary: 300;
  --line-height-big: 2.1975rem; /* 35.16px */
  --line-height-bigger: 2.5rem; /* 40px */
  --line-height-primary: 1.875rem; /* 30px */
  --line-height-secondary: 1.3181rem; /* 21.09px */
  --line-height-normal: 1.0256rem; /* 16.41px */
  --line-height-small: 0.87875rem; /* 14.06px */
  --line-height-smaller: 0.8056rem; /* 12.89px */

  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Reenie Beanie", cursive;

  /* for the wall with bricks background */
  --units: 10px;
  --brick1: #f8eee1;
  --brick2: #f8eee1;
  --lines: #edd5bb;
  --gp-ln: 50% / calc(var(--units) * 8) calc(var(--units) * 4);
  --gp-cn: 50% / calc(var(--units) * 4) calc(var(--units) * 4);
}
/* #endregion variables */

/* #region global styles */
* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background-color: var(--background-light);
}

img {
  max-width: 100%;
}

/* #region general customized classes (based on Figma)*/

.styled-text {
  font-family: var(--font-secondary);
  font-weight: var(--weight-secondary);
  line-height: var(--line-height-primary);
  color: var(--primary-default);
}

.main-heading {
  font-weight: var(--weight-bold);
  font-size: var(--header-primary);
  line-height: var(--line-height-big);
}
.sub-heading {
  font-weight: var(--weight-primary);
  font-size: var(--header-secondary);
  line-height: var(--line-height-normal);
}

.normal-text {
  font-weight: var(--weight-primary);
  font-size: var(--font-size-smaller);
  line-height: var(--line-height-smaller);
}

.button-text {
  font-size: var(--font-size-small);
  line-height: var(--line-height-small);
  font-weight: var(--weight-secondary);
}

.custom-button,
.custom-button-blue,
.custom-button-green,
.custom-button-light,
.custom-button-danger {
  border: none;
  border-radius: 0.2rem;
  padding: 0.2rem 0.4rem 0.2rem 0.4rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-size: var(--font-size-small);
  color: var(--background-light);
}

.custom-button:hover,
.custom-button-blue:hover,
.custom-button-green:hover,
.custom-button-light:hover,
.custom-button-danger:hover {
  transform: scale(1.05);
}

.custom-button {
  background-color: var(--primary-default);
}

.custom-button-blue {
  background-color: var(--primary-blue);
}

.custom-button-green {
  background-color: var(--primary-green);
}

.custom-button-light {
  background-color: var(--background-light);
  color: var(--primary-default);
}

.custom-button-danger {
  background-color: var(--secondary-contrast);
}

.username {
  font-weight: var(--weight-secondary);
  font-size: var(--font-size-normal);
  line-height: var(--line-height-secondary);
}

.flex-center,
.column-flex,
.row-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.column-flex {
  flex-direction: column;
  justify-content: center;
}

.row-flex {
  justify-content: space-between;
  align-items: center;
}

.wrap {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* common sliders classes */

.slider-setup {
  height: 100%;
  margin: auto;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-setup {
  width: 15rem;
  display: flex;
  align-items: center;
  padding-right: 1.2rem;
  perspective: 8rem;
  position: relative;
}

.slider-img-setup {
  width: 100%;
  height: 10rem;
  transition: transform 0.4s;
  cursor: pointer;
  position: relative;
}

/* #endregion general customized classes */

/* #endregion global styles */

/* #region Landing Page */
nav {
  width: 100%;
  border-bottom: 1px solid var(--text-secondary);
}

nav .container-fluid {
  width: 100%;
  padding: 0;
}

#landing-page-body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

#landing-page-body main img {
  transform: scale(0.8);
}

.choose-role-container {
  position: relative;
  width: 100%;
  height: 300px;
}

.artist-role {
  width: 300px;
  height: 300px;
  background-color: var(--background-normal);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 50%);
  position: absolute;
  top: 0;
  left: 0;
}

.artist-role-content {
  z-index: 1;
}

.artist-role h1 {
  color: var(--primary-default);
}

/* styles of the dropdown button without the default gray active and focus states */
#dropdownMenuButton {
  background-color: var(--background-normal);
  color: var(--primary-default);
  border: 0.1rem solid var(--primary-default);
  font-size: 1em;
}

.artist-role-content .dropdown-menu {
  border: 0.1rem solid var(--primary-default);
  color: var(--primary-default);
  background-color: transparent;
  min-width: 8rem;
  z-index: 2;
  max-height: 10rem;
  overflow-y: auto;
  overflow-x: hidden;
}

/* #region scrollbar styles */
/* Firefox scrollbar styling */
.artist-role-content .dropdown-menu {
  scrollbar-color: var(--primary-default) var(--background-normal);
  scrollbar-width: thin;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.artist-role-content .dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.artist-role-content .dropdown-menu::-webkit-scrollbar-track {
  background: var(--background-normal);
}

.artist-role-content .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: var(--primary-default);
  border-radius: 4px;
  border: 2px solid var(--background-normal);
}

.artist-role-content .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-hover);
}

/* #endregion scrollbar styles */

.artist-role-content .dropdown-menu .dropdown-item {
  color: var(--primary-default);
  z-index: 2;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.artist-role-content .dropdown-menu .dropdown-item:hover {
  background-color: var(--primary-hover);
  color: var(--background-dark);
  cursor: pointer;
}

.artist-role-content .dropdown-menu .dropdown-item:focus {
  background-color: var(--background-light);
  color: var(--primary-default);
}

.visitor-role {
  width: 300px;
  height: 300px;
  background-color: var(--primary-default);
  clip-path: polygon(0% 10%, 100% 60%, 100% 100%, 0% 100%);
  position: absolute;
  top: 120px;
  left: 0px;
  padding: 20px;
}

.visitor-role-content {
  z-index: 1;
  position: relative;
}

.visitor-role h1 {
  color: var(--background-normal);
  position: absolute;
  top: 170px;
}

/* transitions when the user hovers the chosing roles buttons */
.artist-role,
.visitor-role {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.artist-role:hover,
.visitor-role:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.visitor-role h1:hover {
  border-bottom: 0.1rem solid var(--background-dark);
}

footer {
  border-top: 1px solid var(--text-secondary);
  font-size: var(--font-size-small);
  color: var(--primary-default);
}

/* #endregion landing page */

/* #region Visitors Home */

#visitor-menubar span {
  background-image: url("../images/gavel.png");
  transform: scale(1.5);
}

#items-navigator .background {
  background: repeating-conic-gradient(
        from 90deg at 95% 55%,
        var(--lines) 0% 25%,
        rgba(255, 255, 255, 0) 0% 100%
      )
      var(--gp-cn),
    repeating-linear-gradient(
        180deg,
        var(--lines) 0 5%,
        rgba(255, 255, 255, 0) 0 50%,
        var(--lines) 0 55%,
        var(--brick2) 0 100%
      )
      var(--gp-ln),
    repeating-linear-gradient(
        90deg,
        var(--brick1) 0 47.5%,
        var(--lines) 0 50%,
        var(--brick1) 0 97.5%,
        var(--lines) 0 100%
      )
      var(--gp-ln);
  height: 15vh;
}

#items-navigator .background p {
  color: var(--primary-default);
  font-size: var(--header-primary);
}

/* #region slider */
#sliders {
  background-color: var(--background-normal);
}

#sliders .slider-one {
  width: calc(15rem * 20);
  animation: scrollLeft 100s linear infinite;
}

#sliders .slider-one:hover,
#sliders .slider-two:hover {
  animation-play-state: paused;
}

.slider-one .slide:hover,
.slider-two .slide:hover {
  transform: translateZ(10px);
  animation-play-state: paused;
}

.slider-two {
  width: calc(15rem * 20);
  animation: scrollRight 100s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 9));
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(calc(-250px * 9));
  }
  100% {
    transform: translateX(0);
  }
}
/* #endregion slider */

/* #region testimonials  */
.carousel {
  overflow: hidden;
  height: 16rem;
}

.left,
.right {
  width: 50%;
  height: 16rem;
  position: relative;
}

.left img {
  position: absolute;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  border: 0.2rem solid var(--primary-default);
  top: 0;
  object-fit: cover;
}

.left {
  border-right: 0.2rem solid var(--primary-default);
}

.left p {
  background-color: var(--background-dark);
  height: 15rem;
  width: 100%;
  color: var(--text-light);
}

.right p {
  color: var(--primary-default);
}

.selected-item {
  display: block;
}

.carousel-nav {
  width: 100%;
  padding: 0.5rem 0;
  position: absolute;
  bottom: -0.85rem;
  left: 0;
  text-align: center;
  background-color: var(--background-light);
}

.carousel-button {
  width: 0.6rem;
  height: 0.6rem;
  display: inline-block;
  background: var(--primary-default);
  border-radius: 50%;
  margin: 0 0.4rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.selected-button {
  background: var(--background-dark);
  transform: scale(1.2);
}

/* #endregion testimonials  */

/* #endregion Visitors Home */

/* #region Visitor Listings */
#listings {
  background-color: var(--background-normal);
}

/* #region filter styles at listings*/
#listings .filter {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 1000;
}

/* added here also Artist-Items Page (edit functionality styles) */

#filter-panel {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-default);
  transition: right 0.3s ease;
  z-index: 999999;
}

#filter-panel.active {
  right: 0;
}

#filter-panel,
#item-form {
  color: var(--background-normal);
  font-size: var(--header-primary);
}

#filter-panel p,
#item-form p {
  font-size: var(--font-size-normal);
}

#filter-panel .fa-x {
  font-size: var(--header-primary-big);
  font-weight: var(--weight-secondary);
  cursor: pointer;
}

#close-filter-panel {
  text-decoration: none;
  font-size: var(--header-primary-big);
  color: var(--background-normal);
}

#filter-panel input,
#item-form input,
#item-form textarea,
#filter-panel select,
#item-form select {
  padding: 0.5rem;
  border: 0.1rem solid var(--lines);
  border-radius: 0.2rem;
  font-size: var(--font-size-normal);
  color: var(--lines);
  background-color: transparent;
}

#filter-panel input:focus,
#filter-panel select:focus,
#item-form input:focus,
#item-form textarea:focus,
#item-form select:focus {
  outline: none;
  box-shadow: none;
}

#filter-panel input::placeholder,
#item-form input::placeholder,
#item-form textarea::placeholder {
  color: var(--lines);
  font-size: var(--font-size-small);
}

#filter-panel select,
#item-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234F2F2B'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.2rem;
  background-size: 2rem;
}

#filter-panel #filter-artist-select option,
#filter-panel #filter-type-select option {
  background-color: var(--background-normal);
  color: var(--primary-default);
}

#item-form #item-type option {
  background-color: var(--background-normal);
  color: var(--primary-default);
}

#filter-panel label,
#item-form label {
  font-size: var(--font-size-normal);
}

#filter-panel .horisontal-line {
  margin-top: 1rem;
  border-bottom: 0.1rem solid var(--lines);
}

/* Filter Button Styles */
#listings .filter {
  position: fixed;
  bottom: 4rem;
  right: 1rem;
  z-index: 1000;
}

#filter-icon-open {
  background-image: url("../images/filter-icon.png");
  background-size: cover;
  width: 4rem;
  height: 4.5rem;
  border-radius: 0.2rem;
}

#filter-icon-close {
  background-image: url("../images/checked.png");
  background-size: cover;
  width: 4rem;
  height: 4.5rem;
  border-radius: 0.2rem;
  display: none;
}

/* #endregion filter styles at listings*/

#listings .styled-text {
  font-size: calc(var(--header-secondary) * 2);
}

#listings .card-img-top {
  height: 15rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

/* #endregion Visitor Listings */

/* #region Artists Home */
.logo-background {
  background-image: url("../images/logo.png");
  background-size: cover;
  width: 8rem;
  height: 8rem;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler-icon {
  background-image: url("../images/bars.png");
}

.navbar-collapse {
  background-color: var(--primary-default);
}

.navbar-collapse .navbar-nav .nav-item .nav-link {
  color: var(--background-normal);
  font-size: calc(var(--header-primary) * 0.8);
}

#widgets,
#artist-items {
  background-color: var(--background-normal);
}

#artist-home .card-container:not(:last-child) {
  width: 50%;
}

#artist-home .card-container:last-child {
  width: 100%;
}

#artist-home .card {
  border-radius: 0.5rem;
  overflow: hidden;
}

#artist-home .card-body {
  text-align: center;
  color: var(--background-light);
}

#artist-home .card-container:not(:last-child) .card-body {
  background-color: var(--primary-default);
}

#artist-home .card-container:last-child .card-body {
  background-color: var(--secondary-contrast);
}

#chart .normal-text {
  font-size: calc(var(--header-primary) * 0.8);
  color: var(--primary-default);
}

#chart button:hover {
  background-color: var(--secondary-contrast);
}

/* #endregion Artists Home */

/* #region Auction Page */
.auction-title {
  color: var(--primary-default);
}
/* #region Auction Page */

/* #region Artist-Items Page (edit functionality styles)*/
#artist-items a {
  text-decoration: none;
}

.edit .new-item-container {
  background-color: var(--background-light);
}

.edit .new-item-container #add-item-btn {
  border: 0.2rem dashed var(--primary-default);
  color: var(--primary-default);
}

#add-edit-items section {
  background-color: var(--primary-default);
}
/* #endregion Artist-Items Page (edit functionality styles) */

/* #region Media Queries */

/* four-k-display */
@media screen and (min-width: 1551px) and (max-width: 2560px) {
  /* #region general classes */
  .styled-text {
    font-size: calc(var(--header-primary) * 1.5);
    line-height: calc(var(--line-height-primary) * 1.5);
  }

  .main-heading {
    font-size: calc(var(--header-primary-big) * 1.5);
    line-height: calc(var(--line-height-big) * 1.5);
  }

  .sub-heading {
    font-size: calc(var(--header-secondary) * 1.2);
    line-height: calc(var(--line-height-normal) * 1.2);
  }

  .normal-text {
    font-size: calc(var(--font-size-smaller) * 1.2);
    line-height: calc(var(--line-height-smaller) * 1.2);
  }

  .custom-button,
  .custom-button-blue,
  .custom-button-green,
  .custom-button-light,
  .custom-button-danger {
    font-size: var(--font-size-normal);
  }

  .wrap {
    width: 85%;
  }

  .section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  /* #endregion general classes */

  nav > div a img {
    display: block;
  }

  nav > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav a img {
    max-height: 15vh;
  }

  .navbar-collapse {
    background-color: var(--background-light);
  }

  .navbar-collapse .navbar-nav {
    margin-left: 30rem;
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--primary-default);
  }

  #landing-page-body {
    min-height: 100vh;
  }

  #landing-page-body main img {
    display: none;
  }

  main .wrap,
  section .wrap {
    width: 50%;
  }

  .artist-role,
  .visitor-role {
    width: 500px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  .visitor-role-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  footer p {
    font-size: calc(var(--font-size-small) * 1.2);
  }
}

/* large display */
@media screen and (min-width: 1205px) and (max-width: 1550px) {
  /* #region general classes */
  .styled-text {
    font-size: calc(var(--header-primary) * 1.3);
    line-height: calc(var(--line-height-primary) * 1.3);
  }

  .main-heading {
    font-size: calc(var(--header-primary-big) * 1.3);
    line-height: calc(var(--line-height-big) * 1.3);
  }

  .sub-heading {
    font-size: calc(var(--header-secondary) * 1.1);
    line-height: calc(var(--line-height-normal) * 1.1);
  }

  .normal-text {
    font-size: calc(var(--font-size-smaller) * 1.1);
    line-height: calc(var(--line-height-smaller) * 1.1);
  }

  .wrap {
    width: 85%;
  }

  .section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  /* #endregion general classes */

  nav > div a img {
    display: block;
  }

  nav > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav a img {
    max-height: 15vh;
  }

  .navbar-collapse {
    background-color: var(--background-light);
  }

  .navbar-collapse .navbar-nav {
    margin-left: 30rem;
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--primary-default);
  }

  #landing-page-body {
    min-height: 100vh;
  }

  #landing-page-body main img {
    display: none;
  }

  main .wrap,
  section .wrap {
    width: 50%;
  }

  .artist-role,
  .visitor-role {
    width: 500px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  .visitor-role-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  footer p {
    font-size: calc(var(--font-size-small) * 1.2);
  }
}

/* medium display */
@media screen and (min-width: 1024px) and (max-width: 1204px) {
  /* #region general classes */
  .styled-text {
    font-size: var(--header-primary-big);
    line-height: var(--line-height-primary);
  }

  .main-heading {
    font-size: var(--header-primary-big);
    line-height: var(--line-height-big);
  }

  .sub-heading {
    font-size: var(--header-secondary);
    line-height: var(--line-height-normal);
  }

  .normal-text {
    font-size: var(--font-size-smaller);
    line-height: var(--line-height-smaller);
  }

  .wrap {
    width: 85%;
  }

  .section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  /* #endregion general classes */

  nav > div a img {
    display: block;
  }

  nav > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav a img {
    max-height: 15vh;
  }

  .navbar-collapse {
    background-color: var(--background-light);
  }

  .navbar-collapse .navbar-nav {
    margin-left: 15rem;
  }

  .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: var(--primary-default);
  }

  #landing-page-body {
    min-height: 100vh;
  }

  #landing-page-body main img {
    display: none;
  }

  main .wrap,
  section .wrap {
    width: 50%;
  }

  .artist-role,
  .visitor-role {
    width: 500px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  .visitor-role-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  footer p {
    font-size: calc(var(--font-size-small) * 1.3);
  }
}

/* tablet displays */
@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* #region general classes */
  .styled-text {
    font-size: var(--header-primary-big);
    line-height: var(--line-height-primary);
  }

  .main-heading {
    font-size: var(--header-primary-bigger);
    line-height: calc(var(--line-height-big) * 0.9);
  }

  .sub-heading {
    font-size: calc(var(--header-secondary) * 0.9);
    line-height: calc(var(--line-height-normal) * 0.9);
  }

  .normal-text {
    font-size: var(--font-size-smaller);
    line-height: var(--line-height-smaller);
  }

  .wrap {
    width: 70%;
  }
  /* #endregion general classes */

  nav p {
    width: 100%;
    text-align: center;
  }

  nav > div a img {
    display: none;
  }

  .navbar-brand .logo-background {
    width: 7rem;
    height: 6rem;
  }

  .navbar-brand #selectedArtistName {
    font-size: calc(var(--header-primary) * 1.4);
  }

  #landing-page-body {
    min-height: 140vh;
  }

  #landing-page-body main img {
    display: block;
  }

  .artist-role,
  .visitor-role {
    width: 400px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  /* visitors page */
  #items-navigator .background {
    height: 18vh;
  }

  footer p {
    font-size: calc(var(--font-size-small) * 1.2);
  }
}

@media screen and (min-width: 432px) and (max-width: 768px) {
  /* #region general classes */
  .styled-text {
    font-size: var(--header-primary-big);
    line-height: var(--line-height-primary);
  }

  .main-heading {
    font-size: var(--header-primary-bigger);
    line-height: calc(var(--line-height-big) * 0.9);
  }

  .sub-heading {
    font-size: calc(var(--header-secondary) * 0.9);
    line-height: calc(var(--line-height-normal) * 0.9);
  }

  .normal-text {
    font-size: var(--font-size-smaller);
    line-height: var(--line-height-smaller);
  }

  .wrap {
    width: 85%;
  }

  /* #endregion general classes */

  nav p {
    width: 100%;
    text-align: center;
  }

  nav > div a img {
    display: none;
  }

  .navbar-brand .logo-background {
    width: 6rem;
    height: 5rem;
  }

  .navbar-brand #selectedArtistName {
    font-size: var(--header-primary);
  }

  #landing-page-body {
    min-height: 140vh;
  }

  #landing-page-body main img {
    display: block;
  }

  .artist-role,
  .visitor-role {
    width: 400px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  /* visitors page */
  #visitor-menubar span {
    transform: scale(1);
  }

  #visitor-navbar p {
    font-size: var(--header-primary);
  }

  #items-navigator .background {
    height: 20vh;
  }

  #items-navigator .background p {
    font-size: calc(var(--header-primary) * 0.9);
  }

  footer p {
    font-size: var(--font-size-small);
  }
}

/* mobile display */
@media screen and (min-width: 321px) and (max-width: 431px) {
  /* #region general classes */
  .styled-text {
    font-size: calc(var(--header-primary-big) * 0.9);
    line-height: calc(var(--line-height-primary) * 0.9);
  }

  .main-heading {
    font-size: var(--header-primary-big);
    line-height: calc(var(--line-height-big) * 0.9);
  }

  .sub-heading {
    font-size: calc(var(--header-secondary) * 0.9);
    line-height: calc(var(--line-height-normal) * 0.9);
  }

  .normal-text {
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
  }

  .wrap {
    width: 90%;
  }
  /* #endregion general classes */

  nav p {
    text-align: center;
    width: 100%;
  }

  nav > div a img {
    display: none;
  }

  .navbar-brand .logo-background {
    width: 7rem;
    height: 5rem;
  }

  .navbar-brand #selectedArtistName {
    font-size: calc(var(--header-primary) * 0.8);
  }

  #landing-page-body {
    min-height: 140vh;
  }

  #landing-page-body main img {
    display: block;
  }

  .artist-role,
  .visitor-role {
    width: 300px;
  }

  .artist-role-content {
    flex-direction: row;
  }

  .artist-role-content .dropdown-menu .dropdown-item {
    font-size: var(--font-size-smaller);
  }

  /* visitors page */
  #visitor-menubar span {
    transform: scale(1);
  }

  #visitor-navbar p {
    font-size: calc(var(--header-primary) * 0.9);
  }

  #items-navigator .background {
    height: 20vh;
  }

  #items-navigator .background p {
    font-size: calc(var(--header-primary) * 0.7);
  }

  footer p {
    font-size: var(--font-size-small);
  }
}

/* #endregion media query */
