.button {
    border: 1px solid #7f5e53;
    background: #7f5e53;
    color: white;
    padding: .5rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
}

.button-secondary {
    border: 1px solid rgba(0, 0, 0, 0.71);
    color: #000000;
    padding: .5rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
}

.d-flex {
    display: flex !important;
}
.d-none {
    display: none !important;
}

.justify-content-end {
    justify-content: end;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-around {
    justify-content: space-around;
}
.justify-content-between {
    justify-content: space-between;
}
.my-4 {
    margin-bottom: 3rem;
    margin-top: 3rem;
}
.w-50 {
    width: 50% !important;
}
.w-100 {
    width: 100% !important;
}
.border-top-1 {
    border-top: 1px solid #d9d9d9;
}
.image-sm {
    width: 70px;
}
.text-center {
    text-align: center;
}
.pt-1 {
    padding-top: .5rem !important;
}
.pt-2 {
    padding-top: 1rem !important;
}

.color-black {
    color: #000000 !important;
}
.color-green {
    color: #009114 !important;
}
.color-red {
    color: #a52834 !important;
}
.text-primary {
    color: #744f44 !important;
}
.mb-5 {
    margin-bottom: 3rem;
}
.ml-2 {
    margin-left: 1rem !important;
}
.mt-5 {
    margin-top: 3rem !important;
}
.ml-1 {
    margin-left: .5rem !important;
}
.mt-2 {
    margin-top: 1rem;
}
.mr-1 {
    margin-right: .5rem;
}
.mr-2 {
    margin-right: 1rem;
}
.flex-wrap {
    flex-wrap: wrap;
}
.rotate-90 {
    transform: rotate(90deg);
}
.text-justify {
    text-align: justify !important;
}
