@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Logo Fonts Big Shoulders Stencil Text */

body,
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E5E5E5;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #0E1F51;
    margin: 0;
    padding: 0;
}

a {
    transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
    object-fit: cover;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    margin: 0;
}

.wizard {
    background-color: #FFFFFF;
    max-width: 390px;
    margin: 0 auto;
    padding: 28px 24px 60px;
    min-height: 100vh;
    position: relative;
    width: 100%;
}

/* Radio Button CSS */

.radio-btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #325B3D;
    min-height: 24px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 39px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-group .radio-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 1px solid #325B3D;
    border-radius: 50%;
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-btn input:checked~.radio-checkmark:after {
    display: block;
}

.radio-btn .radio-checkmark:after {
    background: #325B3D;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 18px;
    width: 18px;
}

/* Radio Button CSS */

/* Checkbox Button CSS */

.checkbox-btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    border: 1px solid #325B3D;
    color: #000000;
    min-height: 34px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 35px 10px 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-btn input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 32px;
    width: 32px;
    background-color: #325B3D;
}

.checkbox-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-btn input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox-btn .checkbox-checkmark:after {
    top: 0;
    bottom: 3px;
    left: 0;
    right: 0;
    margin: auto;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 14px;
    width: 5px;
}

/* Checkbox Button CSS */



.steps {
    display: none;
}

.wizard .actions {
    background-color: #EDEDED;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    max-width: 390px;
    margin: 0 auto;
    width: 100%;
    z-index: 99;
}

.wizard .actions ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.wizard .actions ul li.disabled {
    display: none;
}

.wizard .actions ul li a {
    background-color: #325B3D;
    border: 1px solid #325B3D;
    border-radius: 50px;
    color: #FFFFFF;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 6px 34px;
}

.wizard .actions ul li:nth-child(1) a {
    background-color: #EDEDED;
    color: #325B3D;
}


.form-header h3 {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 1px;
    color: #000000;
    margin: 0 0 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0 0 20px;
}

.form-row h5 {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0;
}

.form-row.form-row-bold h5 {
    margin: 0 0 20px;
}

.form-row.form-row-email h5 {
    font-size: 14px;
}

.form-row p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0 0 20px;
}

.tenant .form-group {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.form-group textarea {
    border: 1px solid #325B3D;
    border-radius: 0;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #000000;
    height: 122px;
    outline: none;
    padding: 10px 12px;
    resize: none;
    width: 100%;
}

.form-group textarea::placeholder {
    color: #000000;
}

.form-group input {
    border: 1px solid #325B3D;
    border-radius: 0;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #000000;
    height: 34px;
    outline: none;
    padding: 10px 12px;
    resize: none;
    width: 100%;
}

.form-group input::placeholder {
    color: #000000;
}

.form-group select {
    background-color: #325B3D;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 6px) center;
    background-size: 16px 16px;
    border: none;
    color: #FFFFFF;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    height: 34px;
    padding: 5px 25px 5px 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
}

.text-center {
    text-align: center;
}

.form-row.property-data {
    margin-bottom: 26px;
}

.property-data .form-group {
    margin-bottom: 10px;
}

.property-number .form-group {
    margin-bottom: 26px;
}

.form-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: #000000;
    display: inline-block;
    margin: 0 0 8px;
    width: 100%;
}

/* .color-red,
.property-number .form-group input::placeholder{
    color: #FF0000;
} */
.balancing-charge {
    margin: 20px 0 0;
}

.date-duration-box {
    margin: 0 0 20px;
}

.date-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.date-box .form-group {
    margin: 5px 0;
}

.date-box .form-group:nth-child(1) {
    width: 28%;
}

.date-box .form-group:nth-child(2) {
    width: 32%;
}

.date-box .form-group:nth-child(3) {
    width: 40%;
}

.schedule-btn {
    background-color: #325B3D;
    border: none;
    border-radius: 0;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 34px;
    width: 100%;
}

.duration-box {
    border: 1px solid #325B3D;
    display: flex;
}

.duration-left {
    background-color: #325B3D;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    width: 35%;
}

.duration-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 4px 8px 4px 10px;
    width: 65%;
}

.duration-right span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
}

.duration-right input.emailinput {
    border: none;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    outline: none;
    height: 100%;
    width: 100%;
}

.delete-btn {
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    outline: none;
}

.upload-box {
    border: 1px solid #325B3D;
    border-radius: 14px;
    padding: 18px 35px;
    text-align: center;
    color: #325B3D;
    font-family: sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    width: 100%;
}

.upload-box:hover {
    background-color: #f1f8f4;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-text {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.5px;
    color: #325B3D;
    text-align: left;
}

.upload-icon {
    font-size: 30px;
}

.date-duration-review {
    margin: 0 0 20px;
}

.date-duration-review .duration-box {
    margin: 0 0 2px;
}

.email-btn {
    background-color: #325B3D;
    border: none;
    border-radius: 0;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    height: 34px;
    text-align: center;
    width: 100%;
}

.create-commercial {
    background-color: #325B3D;
    border: none;
    border-radius: 0;
    color: #FFFFFF;
    cursor: pointer;
    outline: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    text-align: center;
    padding: 10px 15px;
    width: 100%;
}

.confirmation-message h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0 0 20px;
}

.confirmation-message p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0 0 20px;
}

.payment-btn {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #000000;
    margin: 0 0 20px;
    text-decoration: underline;
}

.hiddeninfo {
    display: none;
}

.hiddeninfo.show {
    display: block;
}

.duration-box.hiddeninfo.show {
    display: flex !important;
}

.hiddeninfo8 .duration-box-clone:first-child svg,
.hiddeninfo6 .date-box-clone:first-child svg {
    /* display: none; */
}

input.redborder::placeholder,
textarea.redborder::placeholder {
    color: red;
}

select.redborder {
    color: red;
}

select.redborder option {
    color: white;
}

.date-box input.redborder~select,
.date-box input.redborder~.form-group select {
    color: red;
}

.date-box input.redborder~select option,
.date-box input.redborder~.form-group select option {
    color: white;
}


span.required {
    color: red;
    padding-left: 5px;
    font-weight: bolder !important;
}

.preview-container {
    margin-top: 20px;
}

.preview-item {
    position: relative;
    display: inline-block;
    text-align: center;
}

.preview-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.file-preview {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #f3f4f6;
    font-size: 14px;
    color: #333;
    padding: 10px;
    box-sizing: border-box;
}

.file-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.file-name {
    overflow: hidden;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 16px;
    cursor: pointer;
}

.lease_duration_year_error {
    display: none;
}

p.lease_duration_year_error.redborder {
    color: red;
    display: block;
}

.date-box-new .form-group {
    width: 50% !important;
}

.form-group.date-box-group-position {
    position: absolute;
    opacity: 0;
    top: -500000px;
}

a.backtohomelnk {
    background-color: #325B3D;
    border: 1px solid #325B3D;
    border-radius: 50px;
    color: #FFFFFF;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 6px 34px;
}

.tenant-as-list .tenant-as-list-row {
    border-bottom: 2px solid #325B3D;
    margin-bottom: 20px;
}

.tenant-as-list .tenant-as-list-row:last-child {
    border: none;
}

.joint-common-master-div {
    display: none;
}

.joint-common-master-div.show {
    display: block
}