@charset "UTF-8";
.d-grid-form {
  display: flex;
}
@media (max-width: 991px) {
  .d-grid-form {
    flex-direction: column;
    align-items: center;
  }
}

.d-grid {
  display: flex;
  justify-content: space-evenly;
  gap: 12px;
}
@media (max-width: 991px) {
  .d-grid {
    align-content: center;
    justify-content: center;
    flex-direction: column;
  }
}

.form-group {
  width: 50%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
.form-group:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .form-group {
    width: 100%;
    margin-bottom: 0;
    margin-right: 0;
  }
}

.form-group-btn {
  width: 100%;
  display: flex;
  justify-content: right;
}
@media (max-width: 991px) {
  .form-group-btn {
    flex-direction: column;
    align-items: center;
  }
}

.dropdown-options {
  width: 100%;
  position: absolute;
  top: 40px;
  display: none;
  flex-direction: column;
  list-style: none;
  background: #FFF;
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  z-index: 1;
}

.dropdown-options li {
  display: flex;
  padding: 10px 12px;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.dropdown-options li:hover {
  background: #e6e6e6;
}
.dropdown-options li img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #cecece;
  border-radius: 5px;
}
.dropdown-options li span {
  color: #2F3137;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.calculator {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
  position: relative;
  border-left: none;
}
.calculator.payout {
  margin-bottom: 0.5rem;
}
.calculator .ti-reload {
  display: none;
  position: absolute;
  right: 10px;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  font-size: 0.9rem;
  color: var(--green-dark-2-site);
}
.calculator .ti-reload.visible {
  display: block;
}

@keyframes ti-reload-spin {
  to {
    transform: rotate(360deg);
  }
}
.description {
  color: #495057;
  font-size: 13px;
}

@media (max-width: 991px) {
  .period {
    width: 80%;
  }
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 0.25rem 0 0 0.25rem;
  border-right: none;
}

.input-coin {
  border-radius: 0 0.25rem 0.25rem 0;
  border-left: none;
}

.input-percent {
  border-radius: 0 0.25rem 0.25rem 0;
  border-left: none;
  border-right: 1px solid #cacaca;
  width: 100%;
}
@media (max-width: 991px) {
  .input-percent {
    width: 100%;
  }
}

#dropdown-btn {
  padding: 4px 8px;
  position: absolute;
  right: 8px;
  transform: translateY(20%);
  background: transparent;
  border: none;
}

#result {
  scroll-margin-bottom: 160px;
}

.content.result {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.box-result {
  display: flex;
  justify-content: center;
  padding: 24px 12px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
}
.box-result h4 {
  font-size: 20px;
  font-weight: 500;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  border-radius: 0 0.25rem 0.25rem 0;
  height: 38px;
  width: 120px;
  padding-top: 5px;
  border-right-width: 1px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0px;
  color: #293038;
  font-weight: 700;
  outline: none;
  background: #FFF;
}

.select2-container--default .select2-selection--single:hover {
  color: #D3B583;
  font-weight: 700;
  border-color: #D3B583;
}

.select2-container--default .select2-selection--single:hover .select2-selection__arrow b {
  border-color: #D3B583 transparent transparent transparent;
}

.select2-container--default .select2-selection--single:hover .select2-selection__rendered {
  color: #D3B583;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #293038 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default .select2-selection--single:hover .select2-selection__arrow b {
  border-color: #D3B583 transparent transparent transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #293038;
  line-height: 28px;
}

/* Estilização para ocultar as setas no Chrome, Safari e Edge */
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.select2-results {
  width: auto;
}

.select2-container--open .select2-dropdown--below {
  width: 120px !important;
  border-top: 1px solid #aaa;
  border-radius: 4px;
  position: absolute;
  left: -60%;
}

.btn-default.black {
  color: #D3B583 !important;
}
@media (max-width: 991px) {
  .btn-default.black.border-radius-10 {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  #btn-clear {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.cell {
  padding: 15px;
  border: 1px solid #bebebe;
  border-radius: 5px;
  width: 30%;
}
@media (max-width: 991px) {
  .cell {
    width: 100%;
    margin-bottom: 10px;
  }
}

#asset, #invest {
  color: #51555a;
  font-size: 24px;
}

#average-dividends {
  color: #b3cee3;
  font-size: 24px;
}

#dividend {
  color: #536070;
  font-size: 24px;
}

#chart-container {
  width: 100%;
  height: 600px;
}
@media (max-width: 991px) {
  #chart-container {
    width: 100%;
    height: 560px;
    padding-left: 0px;
  }
}

.table {
  margin-top: 20px;
}

.table, th, td {
  border-collapse: collapse;
  padding: 10px;
  text-align: center;
}

table.table.table-bordered th {
  border-left: 1px solid #ccc;
}

table.table.table-bordered td {
  border-left: 1px solid #ccc;
  text-align: center;
  white-space: nowrap;
}

tr.visible-odd {
  background-color: rgba(230, 230, 230, 0.6470588235);
}

.bold {
  font-weight: 900;
}

.btn-readmore.text {
  margin-top: 15px;
  margin-bottom: 15px;
}
