/* src/styles.scss */
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-ExtraBold.ttf);
  font-weight: 900;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Black.ttf);
  font-weight: 800;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-ExtraLight.ttf);
  font-weight: 200;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Montserrat/Montserrat-Thin.ttf);
  font-weight: 100;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto/Roboto-ExtraBold.ttf);
  font-weight: 900;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Black.ttf);
  font-weight: 800;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Bold.ttf);
  font-weight: 700;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-SemiBold.ttf);
  font-weight: 600;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Medium.ttf);
  font-weight: 500;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf);
  font-weight: 300;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf);
  font-weight: 200;
}
@font-face {
  font-family: Montserrat;
  src: url(/assets/fonts/Roboto/Roboto-Thin.ttf);
  font-weight: 100;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--black);
}
html {
  scroll-behavior: smooth;
}
.page-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.main-container {
  padding: 20px 10%;
}
:root {
  --light: #F8F8F8;
  --black: #2A2A2A;
  --yellow: #FFD600;
  --grey: #A3A3A3;
  --light-grey: #E9E7E7;
  --beige: #AFA397;
  --cherry: #863C3C;
}
h2 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  color: var(--beige);
  margin: 20px 0;
}
h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: var(--beige);
  margin: 0 0 50px 0;
}
h4 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  color: var(--beige);
  margin: 20px 0;
}
h5 {
  font-size: 18px;
  margin: 20px 0;
}
input[type=checkbox] {
  accent-color: #958b81;
}
.button {
  display: block;
  padding: 10px 20px;
  border: none;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
}
.yellow-button {
  background-color: var(--yellow);
  color: var(--black);
}
.yellow-button:hover {
  background-color: var(--grey);
  color: #fff;
}
.grey-button {
  background-color: var(--grey);
  color: #fff;
}
.beige-button {
  background-color: var(--beige);
  color: #fff;
}
.grey-button:hover {
  background-color: var(--black);
  color: #fff;
}
.text-field {
  background-color: var(--light-grey);
  color: #000;
  padding: 10px 20px;
  border: none;
  width: 100%;
  resize: vertical;
  white-space: pre-wrap;
}
.trash-button {
  background-color: var(--beige);
  mask-image: url("./media/trash.svg");
  mask-size: 18px;
  mask-repeat: no-repeat;
  mask-position: center;
}
.edit-button {
  background-color: var(--beige);
  mask-image: url("./media/edit.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 25px;
  height: 25px;
  width: 40px;
}
.filter-button {
  background-color: var(--beige);
  mask-image: url("./media/filter.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 20px;
}
.close-button {
  background-color: var(--light);
  border: none;
  float: right;
  cursor: pointer;
}
.display-none {
  display: none;
}
.delimiter {
  width: 100%;
  border-bottom: 1px solid var(--beige);
  margin: 100px 0 30px 0;
}
.small-delimiter {
  margin: 30px 0 30px 0;
}
.fit-content {
  position: relative !important;
  object-fit: contain;
  width: fit-content;
  height: fit-content;
  max-width: 100%;
  max-height: 100%;
}
.not-loaded-image {
  background-color: var(--beige);
}
.not-loaded-image-content {
  background-color: var(--light);
  mask-image: url(/assets/images/icons/no-photo.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 50px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}
.page-title {
  text-transform: uppercase;
  font-size: 18px;
}
.small-explanation {
  font-size: 12px;
  text-align: end;
}
@media (max-width: 1100px) {
  .main-container {
    padding: 20px 5%;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
