/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

/***** HOME *****/
.menu_item {
    padding: 20px 0 0 0px;
}
.menu_item .menu_title {
    background: none;
}
.hero .wrapper small {
    letter-spacing: 0px;
    font-size: .9em;
}


/***** FIXED FOOTER *****/
html {
  height: 100%;
}
body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}
main {
  flex: 1 !important; /* Expands this area to fill space */
}
footer {
  flex-shrink: 0 !important; /* Ensures footer doesn't shrink */
}
/*
footer {
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
}*/


.text-black {
  color: #333;
}


/***** BUTTONS *****/
.nice-select {
  float: none !important;
}
input.inputbox {
    border: 1px solid #ededed;
    clear: both;
    cursor: pointer;
    display: block;
    float: none !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 400;
    height: 50px !important;
    line-height: 48px;
    outline: 0;
    padding-left: 15px;
    padding-right: 27px;
    position: relative;
    text-align: left !important;
    transition: .2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    color: #333;
    margin-bottom: 20px;
}
button.buttonbox {
    border: 1px solid #ededed;
    clear: both;
    cursor: pointer;
    display: block;
    float: none !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    height: 50px !important;
    line-height: 0px;
    outline: 0;
    padding-left: 15px;
    padding-right: 27px;
    position: relative;
    text-align: center !important;
    transition: .2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    color: #FFF;
    margin-bottom: 20px;
    background: #978667;
}
.btn_1.previous {
    background-color: rgb(75, 81, 77);
    color: #fff;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    border-radius: 0.375rem;
}
.btn_1.previous:hover {
    border-bottom-color: rgb(36, 38, 45);
    border-left-color: rgb(36, 38, 45);
    border-right-color: rgb(36, 38, 45);
    color: rgb(36, 38, 45);
    border-top-color: rgb(36, 38, 45);
    background-color: rgb(255, 255, 255);
    border-width: 2px;
    border-style: solid;
    border-image: initial;
    border-radius: 0.375rem;
}
.btn_1.next {
    border: 2px solid transparent;
    color: #fff;
    border-bottom-color: rgba(151, 134, 103, 0.16);
    border-left-color: rgba(151, 134, 103, 0.16);
    border-right-color: rgba(151, 134, 103, 0.16);
    border-top-color: rgba(151, 134, 103, 0.16);
    background-color: rgba(151, 134, 103, 0.84);
    background-color: #978667;
    border-radius: 0.375rem;
}
.btn_1.next:hover {
    background-color: transparent;
    border: 2px solid #24262d;
    color: #24262d;
}

/***** CHECKBOX *****/
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
}
.checkbox-input {
    flex-shrink: 0;
    margin-left: 5px;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #555;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
}
/* Styles for when the checkbox is checked */
input[type="checkbox"]:checked {
    background-color: #d7be90;
    border-color: #d7be90;
}
/* Create the checkmark using a pseudo-element */
input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-checkbox {
 
}

/***** DOLLAR SIGN IN PRICE INPUTBOX *****/
.dollar-sign {
  margin-bottom: 20px;
}