#LeftArtwork #TibiaLogoArtworkTop {
  position: relative; /* ou absolute, dependendo do caso */
  top: -94px;
  left: -55px;  /* <-- corrigido aqui */
  height: 280px;
}

.ImgPesquisarPersonagembarrinha {
  background: url(/images/lupa.gif) no-repeat;
  border: 0;
  margin-left: 190px;
  margin-top: -31px;
  position: absolute;
  z-index: 1081;
}

.inputbk {
  margin-top: -25px;
  margin-left: 20px;
  width: 201px;
  height: 24px;
  z-index: 1080;
  position: absolute;
  border-radius: 7px;
  border: 1px solid rgb(214 2 0);
  background-image: linear-gradient(to right, rgb(69 40 40), #3a0000);
  color: #fff;
  text-align: center;
  box-shadow: 0 0 3px #000000;
  outline: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 11px;
}

.ImgPesquisarPersonagem {
  background: url(/images/imgbuscapersonagem/procurar.png) no-repeat;
  width: 94px;
  height: 30px;
  border: 0;
  margin-left: 200px;
  margin-top: -38px;
  position: absolute;
  z-index: 10;
}

.topictext.translaterbar {
  display: block;
  font-size: 14px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.6);
  width: 230px;
  float: right;
  position: absolute;
  right: 20px;
  top: -32px;
  border-radius: 10px 10px 0px 0px;
  padding: 10px;
  color: #ffffff;
}

.swal2-backdrop-show {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  font-family: Verdana, sans-serif;
  transition: all 0.3s ease-in-out;
}

.swal2-modal {
  background: #262626;
  color: #fff;
}

#houses-page {
  p {
    margin: 0;
  }

  input,
  select {
    margin: 0;
    width: 100%;
  }

  .container {
    margin-top: 12px;

    display: flex;
    align-items: flex-start;
    gap: 8px;

    .filters {
      position: sticky;
      top: 12px;

      margin-bottom: 0;
      padding: 12px;

      min-width: 180px;

      background: #f1e0c5;
      border: 1px solid #5a2800;
      border-radius: 8px;
      box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);

      .header {
        display: flex;
        justify-content: space-between;
        align-items: center;

        >div {
          display: flex;
          align-items: center;
          gap: 4px;

          >svg {
            width: 18px;
            height: 18px;
          }

          >h1 {
            font-size: 14px;
            font-weight: bold;
            margin-block: 0;
          }
        }

        >a {
          padding: 4px;

          background: #d5c0a1;
          border: 1px solid #5a2800;
          border-radius: 8px;
          box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 75%);

          font-weight: 600;
          font-size: 11px;
          text-decoration: none;
          color: #000000;

          &:hover {
            border: solid 1px #cc0000;
            background-color: white;
            color: #cc0000;
          }
        }
      }

      .body {
        margin-top: 12px;

        display: flex;
        flex-direction: column;

        .input-group {
          display: flex;
          flex-direction: column;
          gap: 2px;

          border-top: 1px solid #5a2800;
          padding-block: 0.5rem;

          >div {
            display: flex;
            align-items: center;
            gap: 4px;

            >span {
              font-size: 14px;
            }
          }
        }

        input[type="range"] {
          accent-color: #5a2800;
        }
      }

      .footer {
        margin-top: 4px;

        >button {
          display: block;
          width: 100%;

          padding: 4px;

          background: #d5c0a1;
          border: 1px solid #5a2800;
          border-radius: 8px;
          box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 75%);

          font-weight: 600;
          font-size: 11px;
          text-decoration: none;
          color: #000000;

          cursor: pointer;

          &:hover {
            border: solid 1px #cc0000;
            background-color: white;
            color: #cc0000;
          }
        }
      }
    }

    .houses-list {
      flex: 1;

      display: flex;
      flex-direction: column;
      gap: 8px;

      .house {
        display: flex;

        background: #f1e0c5;
        border: 1px solid #5a2800;
        border-radius: 8px;
        box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);

        .image {
          position: relative;
          flex-shrink: 0;
          width: 100px;
          border-top-left-radius: 8px;
          border-bottom-left-radius: 8px;
          overflow: hidden;

          >img {
            display: block;
            width: 100%;
            height: 100%;

            object-fit: cover;
          }

          .overlay {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            width: 100%;
            opacity: 0;
            transition: 0.2s ease;
            background-color: rgba(0, 0, 0, 0.5);

            .view {
              color: white;
              font-size: 11px;
              position: absolute;
              top: 50%;
              left: 50%;
              -webkit-transform: translate(-50%, -50%);
              -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              text-align: center;

              >svg {
                width: 24px;
                height: 24px;
              }
            }
          }

          &:hover {
            .overlay {
              opacity: 1;
            }
          }
        }

        .information {
          flex: 1;

          padding-inline: 8px;
          padding-block: 6px;

          .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 4px;

            .name {
              display: flex;
              align-items: center;
              gap: 4px;

              >h1 {
                margin: 0;
                font-size: 15px;
              }

              >button {
                position: relative;

                width: 24px;
                height: 24px;

                display: flex;
                justify-content: center;
                align-items: center;

                background: #d5c0a1;
                border: 1px solid #5a2800;
                border-radius: 4px;
                box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 75%);

                cursor: pointer;

                .copy-icon {
                  width: 16px;
                  height: 16px;
                  position: absolute;
                  top: 50%;
                  left: 50%;
                  transform: translate(-50%, -50%);
                  background-image: url("../images/icons/copy.svg");
                  background-repeat: no-repeat;
                }

                .copied-icon {
                  width: 16px;
                  height: 16px;
                  position: absolute;
                  top: 50%;
                  left: 50%;
                  transform: translate(-50%, -50%);
                  background-image: url("../images/icons/check.svg");
                  background-repeat: no-repeat;
                }

                &:hover {
                  border: solid 1px #cc0000;
                  background-color: white;
                  color: #cc0000;
                }
              }
            }

            .availability {
              display: flex;
              align-items: center;
              gap: 4px;

              .badge {
                display: inline-flex;
                align-items: center;
                justify-content: center;

                padding-inline: 6px;
                padding-block: 2px;

                font-size: 10px;
                font-weight: bold;

                border-radius: 9999px;

                cursor: pointer;
                user-select: none;
              }

              .available {
                color: #ffffff;
                background: #5cb85c;

                &:hover {
                  background: #4cae4c;
                }
              }

              .rented {
                color: #ffffff;
                background: #d9534f;

                &:hover {
                  background: #c9302c;
                }
              }

              .guildhall {
                color: #ffffff;
                background: #af3f12;

                &:hover {
                  background: #9f3a11;
                }
              }

              .town {
                color: #ffffff;
                background: #6397bf;

                &:hover {
                  background: #568ebf;
                }
              }
            }
          }

          .body {
            margin-top: 8px;

            .description {
              >a {
                display: inline-block;
              }
            }

            .misc {
              margin-top: 4px;

              display: flex;
              justify-content: space-between;
              align-items: center;
              gap: 4px;

              >ul {
                margin: 0;
                padding: 0;

                list-style: none;

                display: grid;
                grid-template-columns: repeat(2, 1fr);
                grid-column-gap: 14px;
                grid-row-gap: 4px;

                >li {
                  display: flex;
                  align-items: center;
                  gap: 4px;

                  >img {
                    width: 18px;
                    height: 18px;
                  }
                }
              }

              .price {
                align-self: flex-end;

                display: flex;
                flex-direction: column;
                align-items: center;

                color: #fff;
                text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
                  1px 1px 0 #000;
                pointer-events: none;
                font-size: 18px;
              }
            }
          }
        }
      }

      .empty {
        padding: 18px;

        background: #f1e0c5;
        border: 1px solid #5a2800;
        border-radius: 8px;
        box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);

        .empty-image {
          display: flex;
          align-items: center;
          justify-content: center;

          >img {
            width: 46px;
            height: 58px;
          }
        }

        .empty-text {
          >h3 {
            text-align: center;
          }

          >button {
            width: 100%;
            margin-top: 12px;
            padding: 4px;

            background: #d5c0a1;
            border: 1px solid #5a2800;
            border-radius: 8px;
            box-shadow: 1px 1px 1px 0 rgb(0 0 0 / 75%);

            text-align: center;
            font-weight: 600;
            font-size: 14px;
            color: #5a2800;

            cursor: pointer;

            &:hover {
              background: #f1e0c5;
            }
          }
        }
      }
    }

    .houses-pagination {
      margin-top: 4px;
      margin-bottom: 0;

      display: flex;
      justify-content: flex-end;
      align-items: center;
      flex-wrap: wrap;
      gap: 4px;

      button {
        min-width: 24px;
        min-height: 24px;

        display: flex;
        justify-content: center;
        align-items: center;

        color: #000;

        border: solid 1px #666666;
        border-radius: 6px;
        background-color: #f1e0c6;
        cursor: pointer;

        >svg {
          width: 14px;
          height: 14px;
        }

        &:hover {
          border: solid 1px #cc0000;
          background-color: white;
          color: #cc0000;
        }

        &:disabled {
          cursor: not-allowed;
          border: solid 1px #666666;
          color: #000;
          background-color: #f1e0c6;

          opacity: 0.5;
        }
      }
    }
  }
}

.monsterImg {
  background-position: center center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  padding: 5px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(121, 61, 3, 0.65);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.46);
}

div.dt-container select.dt-input,
div.dt-container .dt-search input {
  height: calc(1.5em + 0.15rem + 2px);
  font-weight: 400;
  padding: 5px;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-end,
div.dt-container div.dt-layout-row div.dt-layout-cell.dt-layout-start {
  padding: 0px 10px;
}

#tradeoff-page .CVIcon {
  border: none;
  background-color: transparent;
  cursor: default;
}