.titles-form-wrapper {
    max-width: 635px;
    margin: 5px;
    border-radius: 25px;
    background-color: #efefef;
    box-shadow: 3px 3px #878787;
    padding: 15px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.titles-form-wrapper * {
    display: flex;
    box-sizing: border-box;
    font-size: 1rem;
}

.titles-form-wrapper .form-title {
    justify-content: center;
}

.titles-form-wrapper .form-title h2 {
    justify-content: center;
    font-size: 19px;
    margin-top: -1px;
}

.titles-form {
    flex-direction: column;
    gap: 16px;
}

.titles-form input,
.titles-form-line--half,
.titles-form select,
.titles-form-checkbox-wrapper,
.titles-form-checkboxes,
.titles-form-line {
    width: 100%;
}

.titles-form input[type="text"],
.titles-form input[type="email"],
.titles-form input[type="tel"],
.titles-form select,
.titles-form textarea {
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    width: 100%;
    border-radius: 10px;
    padding: 0 15px;
    outline: none !important;
    box-shadow: none !important;
    font-size: 16px !important;
}

.titles-form input[type="text"],
.titles-form input[type="email"],
.titles-form input[type="tel"],
.titles-form select {
    height: 40px;
}

.titles-form select {
    padding-left: 11px;
}

.titles-form textarea {
    padding-top: 5px;
    padding-bottom: 5px;
}

.titles-form input[type='checkbox'] {
    width: auto;
}

.titles-form input[type='checkbox']:hover,
.titles-form input[type='checkbox']:active,
.titles-form input[type='checkbox']:focus {
    outline: none;
}

.titles-form-line {
    gap: 24px;
}

.titles-form-line.top-margin {
    margin-top: 10px;
}

.titles-form-line.titles-form-line--bottom-align {
    margin-top: auto;
}

.titles-form-checkboxes {
    flex-direction: column;
}

.titles-form-checkbox-wrapper {
    gap: 10px;
    width: fit-content;
}

.titles-form-button-wrapper {
    justify-content: center;
    width: 100%;
    gap: 14px;
}

.titles-form-step--2 .titles-form-button-wrapper {
    padding-top: 16px;
}

.titles-form input.titles-form-button {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    border-radius: 10px !important;
    margin: 0 5px;
    width: auto;
    padding: .375rem .75rem;
    border: none;
    box-shadow: none;
    min-width: 135px;
    height: 40px;
}

.titles-form input.titles-form-button:disabled,
.titles-form input.titles-form-button[disabled='disabled'],
.titles-form input.titles-form-button[disabled] {
    opacity: 0.6;
}

.titles-form-total {
    display: flex;
    justify-content: end;
    gap: 5px;
    font-style: italic;
}

.titles-form-property {
    flex-direction: column;
}

.titles-form-property>div {
    display: grid;
    grid-template-columns: 100px 1fr;
}

.titles-form-property-value {
    font-style: italic;
}

.titles-form-step {
    flex-direction: column;
    gap: 16px;
    min-height: 264px;
}

.titles-form-step--1 {
    display: flex;
}

.titles-form-step--2,
.titles-form-step--3 {
    display: none;
}

.titles-form-wrapper textarea#AdditionalInfo {
    min-height: 64px;
}

.titles-form-head {
    font-size: 19px;
    border-bottom: 1px solid #ced4da;
    width: 100%;
    padding-bottom: 7px;
}

@media (min-width: 601px) and (max-width: 767px) {
    .home .form-wrapper .row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .titles-form-wrapper {
        max-width: 100%;
    }

    .titles-form-line {
        flex-direction: column;
        gap: 15px;
    }

    .titles-form-total {
        margin-top: 15px;
    }

    .titles-form-step {
        min-height: 375px;
    }

    .titles-form-line--bottom-align-mobile {
        margin-top: auto;
    }
}

.orders-table th,
.orders-table td {
    padding: 10px;
    vertical-align: top;
    word-wrap: break-word;
    white-space: normal;
}

.orders-table td {
    max-width: 150px;
}

.orders-table td:nth-child(5),
.orders-table td:nth-child(11),
.orders-table td:nth-child(12),
.orders-table td:nth-child(13) {
    max-width: 200px;
}
 /*Check Box*/

 .checkbox-wrapper-40 {
     --borderColor: #48c;
     --borderWidth: .125em;
 }

.checkbox-wrapper-40 label {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    column-gap: 5px;
}

.checkbox-wrapper-40 input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    background: #fff;
    font-size: 20px;
    border-radius: 0.125em;
    display: inline-block;
    border: var(--borderWidth) solid var(--borderColor);
    min-width: 20px;
    min-height: 20px;
    position: relative;
}
.checkbox-wrapper-40 input[type=checkbox]:before,
.checkbox-wrapper-40 input[type=checkbox]:after {
    content: "";
    position: absolute;
    background: var(--borderColor);
    width: calc(var(--borderWidth) * 3);
    height: var(--borderWidth);
    top: 50%;
    left: 10%;
    transform-origin: left center;
}
.checkbox-wrapper-40 input[type=checkbox]:before {
    transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
    transition: transform 200ms ease-in 200ms;
}
.checkbox-wrapper-40 input[type=checkbox]:after {
    width: calc(var(--borderWidth) * 5);
    transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease-in;
}
.checkbox-wrapper-40 input[type=checkbox]:checked:before {
    transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
    transition: transform 200ms ease-in;
}
.checkbox-wrapper-40 input[type=checkbox]:checked:after {
    width: calc(var(--borderWidth) * 5);
    transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
    transition: transform 200ms ease-out 200ms;
}
.checkbox-wrapper-40 input[type=checkbox]:focus {
    outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
}

