@font-face {
  font-family: "Manrope";
  font-weight: 300;
  src: url("/static/fonts/Manrope-Light.ttf");
}
@font-face {
  font-family: "Manrope";
  font-weight: 400;
  src: url("/static/fonts/Manrope-Regular.ttf");
}
@font-face {
  font-family: "Manrope";
  font-weight: 500;
  src: url("/static/fonts/Manrope-Medium.ttf");
}
@font-face {
  font-family: "Manrope";
  font-weight: 600;
  src: url("/static/fonts/Manrope-SemiBold.ttf");
}
@font-face {
  font-family: "Manrope";
  font-weight: 700;
  src: url("/static/fonts/Manrope-Bold.ttf");
}
*,
*:before,
*:after {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
mark,
a,
button,
div,
body,
header,
main,
section,
footer,
aside,
article,
figure,
figcaption,
ul,
ol,
li,
img,
form,
input,
label,
select,
table,
thead,
tbody,
tr,
th,
td,
textarea {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

label,
input,
textarea,
select,
button[type=button],
button[type=submit] {
  font-family: inherit;
}

input[type=file] {
  overflow: auto !important;
}

button {
  border: none;
  cursor: pointer;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
}

body {
  height: 100vh;
  font-family: var(--font);
  display: flex;
  flex-direction: column;
}
body.no-scroll {
  overflow-y: hidden;
}

html {
  overflow-x: hidden;
}
html body {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background-color: white;
  margin: 0 auto;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  position: relative;
}
html body.filter-active {
  overflow-y: hidden;
}
html body.filter-active::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.3);
}
html body header {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 92px;
  border-bottom: 1px solid #eaeaea;
  background-color: white;
}
html body header .header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  padding: 20px 0;
  position: relative;
}
html body header .header-content-logo {
  font-size: 0;
  margin-right: auto;
}
html body header .header-content-nav ul {
  display: flex;
  flex-direction: row;
  gap: 46px;
  list-style: none;
  margin: 0;
  padding: 0;
}
html body header .header-content-nav ul li {
  display: flex;
  align-items: center;
  padding: 6px;
  border-radius: 5px;
  transition: all ease-in-out 0.4s;
}
html body header .header-content-nav ul li:hover {
  background-color: #e4f1f3;
}
html body header .header-content-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #0074cd;
  text-decoration: none;
  position: relative;
}
html body header .header-content-nav ul li a.external-link::after {
  content: url("/static/icons/external-link-icon.svg");
}
html body header .header-content-user {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-left: 73px;
}
html body header .header-content-user p {
  font-size: 16px;
  line-height: 16px;
  color: #666666;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
html body header .header-content-user button {
  width: 34px;
  height: 34px;
  border-radius: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.4s;
}
html body header .header-content-user button::after {
  content: url("/static/icons/user-button-icon.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 23px;
  height: 23px;
}
html body header .header-content-user button:hover {
  background-color: #e4f1f3;
}
@media (max-width: 1439px) {
  html body header .header-content {
    padding: 20px;
  }
}
@media (max-width: 1023px) {
  html body header {
    height: 87px;
  }
  html body header .header-content {
    padding: 37px 20px 22px;
  }
  html body header .header-content-nav ul {
    gap: 26px;
  }
  html body header .header-content-nav ul li a {
    font-size: 14px;
    line-height: 14px;
  }
  html body header .header-content-user {
    margin-left: 46px;
  }
  html body header .header-content-user p {
    font-size: 13px;
    line-height: 13px;
  }
}
@media (max-width: 767px) {
  html body header {
    height: 128px;
  }
  html body header .header-content {
    flex-direction: column;
    justify-content: unset;
    padding: 40px 0 7px;
  }
  html body header .header-content-logo {
    display: flex;
    align-self: flex-start;
    margin: 0 20px 20px 20px;
  }
  html body header .header-content-nav {
    width: 100%;
    border-top: 1px solid #eaeaea;
  }
  html body header .header-content-nav ul {
    gap: 30px;
    padding: 7px 20px;
  }
  html body header .header-content-user {
    margin-left: 0;
    position: absolute;
    right: 20px;
  }
}
html body main {
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
}
html body main .media-list {
  display: flex;
  flex-direction: column;
}
html body main .media-list-heading {
  width: 100%;
  height: 404px;
  margin-bottom: 60px;
  background: url("/static/images/media-list-webdoor.jpeg") no-repeat center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 0;
}
html body main .media-list-heading::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2509803922);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
html body main .media-list-heading-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 55px;
  max-width: 834px;
  width: 100%;
  margin-bottom: 60px;
}
html body main .media-list-heading-content h2 {
  font-size: 66px;
  line-height: 66px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.02px;
  text-align: center;
  margin: 0;
  padding: 0;
}
html body main .media-list-heading-content form {
  display: flex;
}
html body main .media-list-heading-content form .form-field-wrapper .choices {
  width: 160px;
  margin-bottom: 0;
  position: relative;
  outline: transparent;
  cursor: pointer;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[data-type*=select-one]::after {
  content: "";
  display: none;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false], html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] {
  border: none;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner {
  display: flex;
  align-items: center;
  width: 160px;
  height: 50px;
  padding: 0;
  margin: 0;
  border: 1px solid #dadada;
  border-radius: 5px 0 0 5px;
  background-color: #ffffff;
  overflow: hidden;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #3c3c3c;
  letter-spacing: 0.02px;
  /*.is-open & {
    border-radius: convert(5, rem) 0 convert(5, rem);
  }*/
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner:after, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner:after {
  content: "";
  background: url("/static/icons/orange-arrow.svg") no-repeat center;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: all ease-in-out 0.5s;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner:focus, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner:focus {
  outline: none;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list {
  display: flex;
  padding: 0;
  width: fit-content;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item {
  padding: 0 0 0 55px;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item[data-value=imagem]::before, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item[data-value=imagem]::before {
  content: url("/static/icons/photo-icon.svg");
  width: 22px;
  height: 18px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item[data-value=video]::before, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item[data-value=video]::before {
  content: url("/static/icons/video-icon.svg");
  width: 21px;
  height: 22px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner {
  border-radius: 5px 0 0 0;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner:after {
  transform: translate3d(0, -50%, 0) rotate(180deg);
  transition: all ease-in-out 0.5s;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list {
  background-color: #ffffff;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded].is-active {
  visibility: visible;
  width: 160px;
  border-radius: 0 0 5px 5px;
  z-index: 9;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list {
  position: relative;
  z-index: 9;
  width: 160px;
  max-height: 150px;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item {
  display: flex;
  align-items: center;
  position: relative;
  height: 50px;
  padding: 0;
  padding-left: 16px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #e77314;
  letter-spacing: 0.02px;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item[data-value="Standard option"] {
  display: none;
}
html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #e77314;
  color: #ffffff;
}
html body main .media-list-heading-content form .form-field-wrapper input[type=text] {
  width: 500px;
  height: 50px;
  border-radius: 0 5px 5px 0;
  padding: 0 20px;
  border-top: 1px solid #dadada;
  border-right: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  border-left: none;
  background-color: #ffffff;
  outline: none;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #767676;
  letter-spacing: 0.02px;
}
html body main .media-list-heading-content form .form-field-wrapper input[type=text]::placeholder {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #767676;
  letter-spacing: 0.02px;
}
html body main .media-list-heading-content form .form-field-wrapper input[type=text]:-webkit-autofill, html body main .media-list-heading-content form .form-field-wrapper input[type=text]:-webkit-autofill:hover, html body main .media-list-heading-content form .form-field-wrapper input[type=text]:-webkit-autofill:focus, html body main .media-list-heading-content form .form-field-wrapper input[type=text]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px #ffffff inset;
  -webkit-text-fill-color: #767676;
}
html body main .media-list-heading-content form input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 52px;
  background-color: #e77314;
  border-radius: 5px;
  border: none;
  margin-left: 15px;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01px;
  cursor: pointer;
  transition: all ease-in-out 0.5s;
}
html body main .media-list-heading-content form input[type=submit]:hover {
  background-color: #d15e00;
}
@media (max-width: 1023px) {
  html body main .media-list-heading {
    height: 195px;
    margin-bottom: 30px;
  }
  html body main .media-list-heading-content {
    gap: 20px;
    max-width: 620px;
    margin-bottom: 42px;
  }
  html body main .media-list-heading-content h2 {
    font-size: 35px;
    line-height: 35px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner {
    height: 45px;
  }
  html body main .media-list-heading-content form .form-field-wrapper input[type=text] {
    width: 326px;
    height: 45px;
  }
  html body main .media-list-heading-content form input[type=submit] {
    height: 45px;
  }
}
@media (max-width: 767px) {
  html body main .media-list-heading {
    height: 202px;
    margin-bottom: 25px;
  }
  html body main .media-list-heading-content {
    gap: 15px;
    max-width: 335px;
    margin-bottom: 48px;
  }
  html body main .media-list-heading-content h2 {
    font-size: 30px;
    line-height: 30px;
  }
  html body main .media-list-heading-content form {
    position: relative;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices {
    width: 57px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner {
    width: 57px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner:after, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner:after {
    content: "";
    background: url("/static/icons/small-orange-arrow.svg") no-repeat center;
    width: 10px;
    height: 7px;
    right: 10px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item {
    padding: 0;
    font-size: 0;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item[data-value=imagem]::before, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item[data-value=imagem]::before {
    left: 10px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item[data-value=video]::before, html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item[data-value=video]::before {
    left: 10px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded].is-active {
    width: 57px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list {
    width: 57px;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list .choices__item {
    height: 45px;
    padding: 0;
    font-size: 0;
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list .choices__item[data-value=imagem]::before {
    content: url("/static/icons/photo-icon.svg");
    width: 22px;
    height: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list .choices__item[data-value=video]::before {
    content: url("/static/icons/video-icon.svg");
    width: 21px;
    height: 22px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
  html body main .media-list-heading-content form .form-field-wrapper .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list .choices__item--selectable.is-highlighted {
    background-color: rgba(231, 115, 20, 0.2);
  }
  html body main .media-list-heading-content form .form-field-wrapper input[type=text] {
    width: 278px;
    padding: 0 50px 0 20px;
  }
  html body main .media-list-heading-content form input[type=submit] {
    width: 36px;
    height: 36px;
    margin: 0;
    background: url("/static/icons/search-icon.svg") no-repeat center #e77314;
    font-size: 0;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate3d(0, -50%, 0);
  }
}
html body main .media-list-order {
  display: flex;
  justify-content: flex-end;
  max-width: 1400px;
  width: 100%;
  height: auto;
  margin: 0 auto 18px;
}
html body main .media-list-order #filter-button {
  display: none;
}
html body main .media-list-order #orderForm {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: fit-content;
  height: fit-content;
}
html body main .media-list-order #orderForm label {
  font-size: 15px;
  line-height: 15px;
  font-weight: 400;
  color: #3c3c3c;
}
html body main .media-list-order #orderForm .choices {
  width: 123px;
  margin-bottom: 0;
  position: relative;
  outline: transparent;
  cursor: pointer;
}
html body main .media-list-order #orderForm .choices[data-type*=select-one]::after {
  content: "";
  display: none;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false], html body main .media-list-order #orderForm .choices[aria-expanded*=true] {
  border: none;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false] .choices__inner, html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner {
  display: flex;
  align-items: center;
  width: 123px;
  height: 30px;
  min-height: unset;
  padding: 0;
  margin: 0;
  border: 1px solid #dadada;
  border-radius: 5px;
  background-color: #ffffff;
  overflow: hidden;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #767676;
  letter-spacing: 0.02px;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false] .choices__inner:after, html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner:after {
  content: "";
  background: url("/static/icons/orange-arrow.svg") no-repeat center;
  width: 14px;
  height: 8px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  transition: all ease-in-out 0.5s;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false] .choices__inner:focus, html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner:focus {
  outline: none;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false] .choices__inner .choices__list, html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner .choices__list {
  display: flex;
  padding: 0;
  width: fit-content;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=false] .choices__inner .choices__list .choices__item, html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner .choices__list .choices__item {
  padding: 0 0 0 12px;
  text-transform: lowercase;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner {
  border-radius: 5px 0 0 0;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__inner:after {
  transform: translate3d(0, -50%, 0) rotate(180deg);
  transition: all ease-in-out 0.5s;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list {
  background-color: #ffffff;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded].is-active {
  visibility: visible;
  width: 123px;
  border-radius: 0 0 5px 5px;
  z-index: 9;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__list {
  position: relative;
  z-index: 9;
  width: 123px;
  max-height: 150px;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item {
  display: flex;
  align-items: center;
  position: relative;
  height: 30px;
  padding: 0;
  padding-left: 16px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #e77314;
  letter-spacing: 0.02px;
  text-transform: lowercase;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item[data-value="Standard option"] {
  display: none;
}
html body main .media-list-order #orderForm .choices[aria-expanded*=true] .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #e77314;
  color: #ffffff;
}
@media (max-width: 1365px) {
  html body main .media-list-order {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1023px) {
  html body main .media-list-order {
    justify-content: space-between;
  }
  html body main .media-list-order #filter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    height: 30px;
    padding: 6px 12px 6px 39px;
    border-radius: 5px;
    border: 1px solid #0074cd;
    background-color: #ffffff;
    position: relative;
    transition: all ease-in-out 0.4s;
    cursor: pointer;
    font-size: 16px;
    line-height: 100%;
    font-weight: 700;
    letter-spacing: -0.01px;
    color: #0074cd;
  }
  html body main .media-list-order #filter-button::before, html body main .media-list-order #filter-button::after {
    content: url("/static/icons/filter-button-icon.svg");
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate3d(0, -50%, 0);
    opacity: 1;
  }
  html body main .media-list-order #filter-button::after {
    content: url("/static/icons/filter-button-icon-hover.svg");
    opacity: 0;
  }
  html body main .media-list-order #filter-button:hover {
    background-color: #0074cd;
    color: #ffffff;
  }
  html body main .media-list-order #filter-button:hover::before {
    opacity: 0;
  }
  html body main .media-list-order #filter-button:hover::after {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  html body main .media-list-order {
    align-items: flex-end;
  }
  html body main .media-list-order #orderForm {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
}
html body main .media-list-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
  max-width: 1400px;
  width: 100%;
  height: auto;
  margin: 0 auto 122px;
}
html body main .media-list-wrapper .media-list-filter {
  display: flex;
  flex-direction: column;
  max-width: 325px;
  width: 100%;
  height: fit-content;
  padding: 20px;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  background-color: #ffffff;
}
html body main .media-list-wrapper .media-list-filter-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
}
html body main .media-list-wrapper .media-list-filter-wrapper strong {
  font-size: 20px;
  line-height: 160%;
  font-weight: 400;
  color: #3c3c3c;
}
html body main .media-list-wrapper .media-list-filter-wrapper #media-list-filter-close-button {
  display: none;
}
html body main .media-list-wrapper .media-list-filter-item {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid #dadada;
}
html body main .media-list-wrapper .media-list-filter-item-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  line-height: 160%;
  font-weight: 600;
  letter-spacing: 0.02px;
  color: #3c3c3c;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-category .category-checkbox {
  display: none;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-category .custom-checkbox {
  display: flex;
  width: 16px;
  height: 16px;
  border: 1px solid #0074cd;
  border-radius: 3px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.4s ease;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-category .category-checkbox:checked + .custom-checkbox {
  background-color: #0074cd;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-category .category-checkbox:checked + .custom-checkbox::after {
  content: url("/static/icons/check-icon.svg");
  position: absolute;
  top: 30%;
  left: 55%;
  transform: translate3d(-50%, -50%, 0);
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-item-button {
  width: 16px;
  height: 16px;
  background-image: url("/static/icons/plus-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
  background-position: center;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all ease-in-out 0.2s;
}
html body main .media-list-wrapper .media-list-filter-item-header .media-list-filter-item-button.active {
  background-image: url("/static/icons/minus-icon.svg");
}
html body main .media-list-wrapper .media-list-filter-item-content {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px 8px;
  padding-top: 16px;
}
html body main .media-list-wrapper .media-list-filter-item-content label .subcategoria-checkbox {
  display: none;
}
html body main .media-list-wrapper .media-list-filter-item-content label .subcategoria-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: fit-content;
  height: fit-content;
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid #ddedf7;
  background-color: #eef5f6;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.02px;
  font-weight: 700;
  color: #0074cd;
}
html body main .media-list-wrapper .media-list-filter-item-content label .subcategoria-item:hover {
  border-color: #d8ebf6;
  background-color: #d8ebf6;
}
html body main .media-list-wrapper .media-list-filter-item-content label .subcategoria-item.selected {
  border-color: #0074cd;
  background-color: #0074cd;
  color: #ffffff;
  position: relative;
}
html body main .media-list-wrapper .media-list-filter-item-content label .subcategoria-item.selected::after {
  content: url("/static/icons/remove-icon.svg");
}
html body main .media-list-wrapper .media-list-filter-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  margin-top: 16px;
}
html body main .media-list-wrapper .media-list-filter-buttons #clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  padding: 14px 0;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  color: #0074cd;
}
html body main .media-list-wrapper .media-list-filter-buttons #clear:hover {
  color: #004981;
}
html body main .media-list-wrapper .media-list-filter-buttons #filter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: fit-content;
  padding: 14px 30px;
  background-color: #0074cd;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all ease-in-out 0.4s;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: #ffffff;
}
html body main .media-list-wrapper .media-list-filter-buttons #filter:hover {
  background-color: #004981;
}
html body main .media-list-wrapper .media-list-content {
  max-width: 1045px;
  width: 100%;
  height: auto;
}
html body main .media-list-wrapper .media-list-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  height: auto;
}
html body main .media-list-wrapper .media-list-content-wrapper a {
  display: flex;
  width: 335px;
  height: 218px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all ease-in-out 0.5s;
}
html body main .media-list-wrapper .media-list-content-wrapper a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
html body main .media-list-wrapper .media-list-content-wrapper a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
html body main .media-list-wrapper .media-list-content-wrapper a span {
  display: flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 5px;
  background-color: #e77314;
  position: absolute;
  right: 7px;
  bottom: 9px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
html body main .media-list-wrapper .media-list-content-wrapper a.imagem-link::after {
  content: url("/static/icons/white-photo-icon.svg");
  position: absolute;
  top: 9px;
  right: 7px;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
html body main .media-list-wrapper .media-list-content-wrapper a:hover::before {
  opacity: 1;
}
html body main .media-list-wrapper .media-list-content-wrapper a:hover::after {
  opacity: 1;
}
html body main .media-list-wrapper .media-list-content-wrapper a:hover span {
  opacity: 1;
}
html body main .media-list-wrapper .media-list-content-wrapper-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  height: auto;
  padding: 80px 0 0;
}
html body main .media-list-wrapper .media-list-content-wrapper-text h3 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: #0074cd;
  text-align: center;
  margin: 0;
  padding: 0;
}
html body main .media-list-wrapper .media-list-content-wrapper-text p {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #3c3c3c;
  text-align: center;
  margin: 0;
  padding: 0;
}
html body main .media-list-wrapper .media-list-content .pagination {
  width: fit-content;
  height: auto;
  margin: 30px auto 0;
}
html body main .media-list-wrapper .media-list-content .pagination-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
html body main .media-list-wrapper .media-list-content .pagination-links .prev,
html body main .media-list-wrapper .media-list-content .pagination-links .next {
  width: 8px;
  height: 14px;
  position: relative;
  background: url("/static/icons/blue-arrow.svg") no-repeat center;
  transform: rotate(0deg);
}
html body main .media-list-wrapper .media-list-content .pagination-links .prev.disabled,
html body main .media-list-wrapper .media-list-content .pagination-links .next.disabled {
  background: url("/static/icons/gray-arrow.svg") no-repeat center;
}
html body main .media-list-wrapper .media-list-content .pagination-links .prev {
  transform: rotate(180deg);
}
html body main .media-list-wrapper .media-list-content .pagination-links .prev.disabled {
  transform: rotate(0deg);
}
html body main .media-list-wrapper .media-list-content .pagination-links .next.disabled {
  transform: rotate(180deg);
}
html body main .media-list-wrapper .media-list-content .pagination-links .pagination-number {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #3c3c3c;
}
html body main .media-list-wrapper .media-list-content .pagination-links .pagination-number-current {
  font-weight: 700;
  color: #0074cd;
}
@media (max-width: 1365px) {
  html body main .media-list-wrapper {
    gap: 10px;
    max-width: 100%;
    padding: 0 20px;
  }
  html body main .media-list-wrapper .media-list-filter {
    max-width: 280px;
  }
}
@media (max-width: 1023px) {
  html body main .media-list-wrapper {
    gap: unset;
  }
  html body main .media-list-wrapper .media-list-filter {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.5s ease;
    max-width: 50%;
    height: 100%;
    padding: 50px 20px 20px;
    border-radius: unset;
    border: none;
    box-shadow: 6px 6px 8px 0 rgba(0, 0, 0, 0.0509803922);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    overflow-y: auto;
  }
  html body main .media-list-wrapper .media-list-filter.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  html body main .media-list-wrapper .media-list-filter-wrapper #media-list-filter-close-button {
    display: flex;
    width: 20px;
    height: 20px;
    background-image: url("/static/icons/filter-close-icon.svg");
    background-color: #ffffff;
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
  }
  html body main .media-list-wrapper .media-list-filter #filterForm .media-list-filter-item-header .media-list-filter-item-button {
    display: none;
  }
  html body main .media-list-wrapper .media-list-filter #filterForm .media-list-filter-item-content {
    display: flex;
  }
  html body main .media-list-wrapper .media-list-content {
    max-width: 100%;
  }
  html body main .media-list-wrapper .media-list-content-wrapper {
    gap: 11px;
  }
  html body main .media-list-wrapper .media-list-content-wrapper a {
    width: 235px;
    height: 154px;
    border-radius: 5px;
  }
}
@media (max-width: 767px) {
  html body main .media-list-wrapper .media-list-filter {
    max-width: 100%;
  }
  html body main .media-list-wrapper .media-list-content-wrapper {
    gap: 8px;
  }
  html body main .media-list-wrapper .media-list-content-wrapper a {
    width: 163px;
    height: 107px;
  }
}
html body footer {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 76px;
  border-top: 1px solid #eaeaea;
  background-color: white;
}
html body footer .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  padding: 26px 0;
}
html body footer .footer-content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}
html body footer .footer-content-wrapper p {
  font-weight: 500;
  font-size: 12px;
  line-height: 13px;
  color: #3c3c3c;
  letter-spacing: 0.2px;
  text-align: left;
  margin: 0;
  padding: 0;
}
html body footer .footer-content-wrapper ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
html body footer .footer-content-wrapper ul li a {
  font-size: 14px;
  line-height: 19px;
  font-weight: 700;
  color: #0074cd;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all ease-in-out 0.4s;
}
html body footer .footer-content-wrapper ul li a:hover {
  color: #e77314;
  text-decoration: underline;
}
@media (max-width: 1439px) {
  html body footer .footer-content {
    padding: 26px 20px;
  }
}
@media (max-width: 767px) {
  html body footer {
    height: 128px;
  }
  html body footer .footer-content {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
  }
  html body footer .footer-content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  html body footer .footer-content-wrapper p {
    text-align: center;
  }
}

/*# sourceMappingURL=index.css.map */
