.full-width {
    width: 100% !important;
}

.row form .input-field input:not([type="range"]) {
    display: block;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 150px;
    font-size: 1.3rem;
    padding: 50px;
}

.productFormContainer {
    padding: 0 20px 0 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

form .input-field button {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1.1rem;
    padding: 10px;
    color: white;
    background-color: #6c3434;
    cursor: pointer;
}

.center {
    text-align: center !important;
}

.strong {
    font-weight: bold;
}

form .input-field button:hover {
    background-color: #575656;
    transition: ease-in;
}

.row form .input-field label {
    display: block;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 10px 0 !important;
}

.row {
    display: block;
    padding: 20px;
}

.input-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn, a.btn {
    display: inline-block;
    width: auto;
    padding: 10px;
    background: rgba(12, 90, 203, 0.8);
    color: white;
    border-radius: 8px;
}

.btn:hover, a.btn:hover {
    color: white;
    text-transform: none;
    background: rgba(12, 90, 203, 1);
    cursor: copy;
}

input[type="number"] {
    cursor: ew-resize; /* ou outro valor de cursor que você preferir */
}

form {
    position: relative;
}

.pix-qr-code {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-code-row {
    background: white;
    border-radius: 5px;
    border: 1px solid grey;
    padding: 10px;
}

.qrCode {
    width: 200px;
    height: 200px;
}

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

.helper-text {
    display: inline-block;
    font-size: 0.8em;
    color: #5b5959;
    margin: 8px 0;
}

.m0 {
    margin: 0;
}

.mtb10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.green {
    background: #4caf50;
}

.custom-radio {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 5px;
    margin: 10px 0;
}

.custom-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-radio label.product {
    display: inline-block;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.custom-radio label.product:hover {
    background-color: #f0f0f0;
}

.product-selected {
    background-color: darkred !important;
    color: #ffffff !important;
}

.product {
    display: flex !important;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
}

.product .image img {
    max-width: 50px;
}

.product .amount {
    font-weight: bold;
    font-size: 1.3rem;
}

.product .amount_bonus {
    font-size: 0.8rem;
    color: grey;
    font-weight: bold
}

.total_amount {
    display: block;
    font-size: 14px;
    color: #28a745; /* Cor verde para destaque */
    margin-top: 5px;
  }

.product .price {
    font-weight: bold;
    font-size: 0.9rem;
    color: orange;
    text-decoration: underline;
}

.product .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* fazer as linhas das tabelas alternarem de cor #D4C0A1 e #F1E0C6 */

table {
    border-collapse: collapse;
    width: 100%;
}

table th {
    background-color: #6c3434;
    color: white;
    padding: 10px;
    text-align: left;
}

/* execto para linhas que não tenha a classe .not-color */
table tr:not(.not-color):nth-child(even) {
    background-color: #F1E0C6;
}

table tr:not(.not-color):nth-child(odd) {
    background-color: #D4C0A1;
}

table td {
    padding: 10px;
}

.transparent {
    background: transparent !important;
    border: none !important;
}

.center {
    text-align: center !important;
}

.left {
    text-align: left !important;
}

.right {
    text-align: right !important;
}

.reward.item {
    font-size: 8pt !important;
    color: green;
    font-weight: bold;
}

.reward.item.unique {
    display: block;
    color: darkred !important;
    font-weight: bold;
    font-size: 6pt !important;
}

.hunt-task-title {
    font-size: 0.7rem;
    font-weight: bold;
    color: #6c3434;
}


.hunt-task-details {
    font-size: 0.5rem;
    font-weight: bold;
    color: #3f3f3f;
}

.reward-table td {
    margin: 0 !important;
    padding: 4px 10px !important;
}

.hunt-task-ul {
    list-style: none;
    padding: 0;
}

.hunt-task-wiki {
    text-decoration: none !important;
}