/* font face generate */

@font-face {
    font-family: 'Lato';
    src: url('/css/font/Lato-Bold.woff2') format('woff2'), url('/css/font/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/css/font/Lato-Black.woff2') format('woff2'), url('/css/font/Lato-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/css/font/Lato-Light.woff2') format('woff2'), url('/css/font/Lato-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato';
    src: url('/css/font/Lato-Regular.woff2') format('woff2'), url('/css/font/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lato Hairline';
    src: url('/css/font/Lato-Hairline.woff2') format('woff2'), url('/css/font/Lato-Hairline.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* common css */

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
}

ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

.row,
.col,
.container-fluid {
    margin: 0;
    padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* colors */
.color-orange{
    color: #FC8900!important;
}

.color-silver{
    color: #C8C8C8!important;
}

.color-gold{
    color: #DCB11D!important;
}

.color-light-red{
    color: #EE6B6B!important;
}

.color-purple{
    color: #9302B4!important;
}

.color-dark-red{
    color: #AF0202!important;
}

.color-green{
    color: #009614!important;
}


/* dashboard css */

.col-sidebar {
    max-width: 80px;
    width: 100%;
}

.row>* {
    margin: 0;
    padding: 0;
}

/* modal css start */

.modal-dialog {
    max-width: 600px;
    margin: 132px auto;
}

.modal-content {
    border-radius: 0;
    background-clip: unset;
    border: 0;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.5);
}

.modal-backdrop.fade.show {
    background-color: rgb(255, 255, 255, 0.8);
}

.modal-header {
    padding: 20px 30px 17px 30px;
}

.modal-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
}

.btn-close {
    background: unset;
    width: 27px;
    padding: 0 !important;
    display: block;
    height: 27px;
    margin: 0 !important;
    opacity: 1;
/*    top: -10px !important;*/
    position: relative;
/*    right: -10px;*/
}

.title-icon{
    width: 50px;
    margin-left: 0px;
}

p.modal-sub-title {
    color: #383739;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.14px;
    line-height: 22px;
    text-transform: uppercase;
    padding-left: 4px;
    text-overflow: ellipsis;
    overflow-x: clip;
    min-width: 0;
}

.modal-header {
    border-bottom: 0;
}

.modal-footer {
    border-top: 0;
}

.modal-form {
    margin: 0;
    padding: 0;
}


/*form styles*/

.modal-form form {
    text-align: center;
    position: relative;
}


/*Hide all except first fieldset*/

.modal-form form fieldset:not(:first-of-type) {
    display: none;
}


/*progressbar*/

.modal-form form #progressbar {
    margin-bottom: 17px;
    overflow: hidden;
    color: #383739;
    padding: 0 12px;
    counter-reset: section;
}

.modal-form form #progressbar li .active {
    font-weight: bold;
}

.modal-form form #progressbar li {
    list-style-type: none;
    width: 18%;
    position: relative;
    z-index: 9;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.modal-body {
    padding: 0 30px 35px;
}

.modal-form form #progressbar li strong {
    color: #383739;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.1px;
    line-height: 16px;
    text-align: center;
    max-width: 52px;
    width: 100%;
    display: inline-block;
    padding-top: 7px;
}

.modal-form form #progressbar li.active strong {
    font-weight: bold;
}

.modal-form form #progressbar li::before {
    width: 35px;
    height: 35px;
    display: block;
    border-radius: 50%;
    border: 1px solid #C8C8C8;
    background-color: #FFFFFF;
    color: #393839;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.13px;
    line-height: 19px;
    counter-increment: section;
    content: counter(section);
    padding: 6px;
    margin: auto;
}

.modal-form form #progressbar li:after {
    content: '';
    width: 100%;
    height: 1px;
    background: #C8C8C8;
    position: absolute;
    top: 16px;
    z-index: -1;
    right: -50%;
}

.modal-form form #progressbar li:last-child::after {
    content: unset;
}


/* .modal-form form #progressbar li.active:after */

.modal-form form #progressbar li.active:before {
    border: 1px solid #00ADEE;
    background-color: #00ADEE;
    color: #ffffff;
    font-weight: bold;
}

*/ .modal-form form #progressbar li:last-child::after {
    content: unset;
}


/* form design */

.form-sub .form-control,
.form-sub .form-control option {
    color: #393839 !important;
    font-size: 16px !important;
    letter-spacing: -0.13px !important;
    line-height: 19px;
    border: 1px solid #C8C8C8 !important;
    border-radius: 5px !important;
    background-color: #FFFFFF;
    padding: 9.5px 12px;
    margin: 0px !important;
    font-family: Lato;
}

.form-sub .form-label {
    margin-bottom: 0;
    text-align: left;
    display: block;
    color: #383739;
    font-size: 12px;
    /* font-weight: bold; */
    letter-spacing: 0;
    line-height: 29px;
    text-transform: uppercase;
}

.select-box,
.title-main,
.input-number,
.input-date {
    position: relative;
}

.select-box::after {
    content: '';
    position: absolute;
    bottom: 17.43px;
    background-image: url(/css/image/down-arrow.svg);
    background-repeat: no-repeat;
    right: 10.83px;
    width: 11px;
    height: 7px;
    pointer-events: none;
}

.form-sub {
    /* max-width: 250px; */
    width: 100%;
}

.form-main {
    display: flex;
    column-gap: 40px;
    justify-content: space-between;
    padding-bottom: 8px;
}

.form-control:focus,
.btn-close:focus {
    box-shadow: none;
}

fieldset {
    text-align: end;
}

.status button {
    background: none;
    border: none;
}

.action-button-previous {
    color: #383739;
    font-size: 13px;
    /* font-weight: 900; */
    letter-spacing: 0;
    line-height: 29px;
    background: none;
    border: transparent;
    margin-right: 17px;
    text-transform: uppercase;
}

.next {
    text-transform: uppercase;
}

.up-arrow {
    position: absolute;
    right: 10px;
    top: 9px;
    cursor: pointer;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.down-arrow {
    position: absolute;
    right: 10px;
    bottom: 7px;
    cursor: pointer;
    width: 10px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
}

.date {
    text-transform: lowercase !important;
    position: relative;
}

.date::before {
    content: '';
    position: absolute;
    background-image: url('../image/calender.svg');
    background-repeat: no-repeat;
    width: 26px;
    height: 26px;
    right: 7px;
    top: 7px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    color: transparent;
    background: transparent;
}

.date::after {
    content: '';
    position: absolute;
    border-left: 1px solid #c8c8c8;
    right: 40px;
    height: 100%;
    background: #c8c8c8;
    width: 1px;
    top: 0;
}

.radio-type {
    display: grid;
    grid-template-columns: auto auto;
    gap: 29px;
}

.radio-type label {
    display: flex;
    align-items: center;
    color: #393839;
    font-size: 16px;
    letter-spacing: -0.13px;
    line-height: 19px;
}

.checkbox input {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 18px;
    height: 18px;
    border: 1px solid #A6A5A4;
    transform: translateY(1px);
    vertical-align: bottom;
    display: grid;
    place-content: center;
}

.checkbox input::before {
    content: "";
    width: 14px;
    height: 14px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: #393839;
}

.checkbox input:checked::before {
    transform: scale(1);
}

input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 20px;
    height: 20px;
    border: 1px solid #C8C8C8;
    border-radius: 50%;
    transform: translateY(1px);
    vertical-align: bottom;
    margin-right: 6px;
    display: grid;
    place-content: center;
}

input[type="radio"]::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: #393839;
}

input::placeholder {
    color: #393839;
    font-size: 16px;
    letter-spacing: -0.13px;
    line-height: 19px;
    font-family: 'Lato', sans-serif !important;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

.add-contact {
    color: #00ADEE;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 29px;
    text-align: right;
    background: none;
    text-transform: uppercase;
    border: transparent;
}

.existing-agent-title,
.agents-title {
    color: #00ADEE;
    font-size: 15px;
    /* font-weight: bold; */
    letter-spacing: 0;
    line-height: 29px;
    text-align: left;
    position: relative;
    max-width: max-content;
    background: #ffffff;
    padding-right: 6px;
    text-transform: uppercase;
}

.title-main::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #DEDDDC;
    top: 21px;
    left: 0;
    right: 0;
}

.existing-agent .form-main {
    align-items: end;
}

.agents {
    margin: 15px 0 30px;
}

.sub-total-tag{
    font-size: 14px;
    margin-bottom: 25px;
}

.agents table {
    border: 1px solid #DEDDDC;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.agents-title {
    margin-bottom: 5px;
}

.agents tr {
    border-bottom: 1px solid #DEDDDC;
}

.agents tr th,
.agents tr td {
    text-align: left;
    padding: 7px 18px 8px;
    color: #383739;
    font-size: 13px;
    /* font-weight: bold; */
    letter-spacing: 0;
    line-height: 29px;
}

.agents tr td:last-child {
    text-align: right;
}

.existing-contact .form-main {
    align-items: baseline;
}

.type {
    margin-top: 8px;
}

.agents .select-box select {
    border: none;
    padding: 0 0 0 18px;
}

.agents .select-box::after {
    left: 0;
    top: 11px;
}

.iti {
    display: block;
}

.drop-zone {
    /* max-width: 539px; */
    height: 182px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #393839;
    border: 1px dashed #C8C8C8;
    background-color: #F6F6F6;
}

span.drop-zone__prompt {
    color: #393839;
    font-size: 15px;
    /* font-weight: bold; */
    letter-spacing: 0;
    line-height: 29px;
    text-align: center;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.drag-icon img {
    margin: 0 auto;
}

.modal-main-title {
    padding-top: 42px;
}

.all-modal .btn-close {
    width: 100%;
    text-align: right;
}

.all-modal .modal-header {
    padding: 22px 20px 0px 20px;
}

.modal-main-title .modal-title {
    justify-content: center;
}

.sub-modal button {
    width: 100%;
    padding: 20px 17px;
    color: #383739;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.12px;
    line-height: 15px;
    text-align: center;
    background: none;
    border: none;
    height: 100%;
    max-height: 122px;
    min-height: 122px;
    border-left: 1px solid #DEDDDC;
}

.sub-modal button img {
    margin: 0 auto 8px;
    width: 60px;
}

.listing-modal {
    text-align: right;
}

#agreement .modal-form form #progressbar li {
    width: 24%;
}


/* pagination css */

.page-link--current {
    color: #00ADEE !important;
}

a.page-link,
.dots {
    border: none;
    color: #393839;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.11px;
    line-height: 17px;
    padding: 5px;
}

.pagination {
    justify-content: end;
    margin-top: 23px;
}

button.arrow-btn {
    background: none;
    border: none;
    padding: 0 4px 0 0;
}


/* selling-transaction css modal */

.selling-transaction .modal-form form #progressbar li {
    width: 16%;
}

.selling-transaction-sub .form-control {
    background-color: #EEEDED;
}

#mls {
    background-color: #FFFFFF;
}

.files-title {
    color: #383739;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.14px;
    line-height: 22px;
}

.merge-files-title {
    color: #383739;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 29px;
}

.dashboard-title.transactions-tble {
    margin-top: 34px;
}

.transactions-tble-inner .listing-modal {
    text-align: center;
}

.transactions-tble-inner button.btn-primary {
    max-width: 157px;
    width: 100%;
    margin: 0 auto;
}

.listings-table-outline p {
    color: #383739;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.14px;
    line-height: 22px;
    text-transform: uppercase;
    margin-top: 9;
}

.listings-table-outline .listing-table .caption-top {
    border: 0
}

.listings-table-outline .listing-table thead tr {
    background: none;
}

.listings-table-outline tbody tr {
    border-right: 1px solid #EEEDED;
    border-left: 1px solid #EEEDED;
}

.edit-icon {
    cursor: pointer;
}

/* email modal css start */
.email-modal .form-sub {
    max-width: 350px;
}

.email-modal .form-main:nth-child(2) .form-sub {
    max-width: unset;
}

.email-modal .checkbox {
    margin-right: 11px;
}

.email-modal thead tr th:nth-child(2) {
    width: 60%;
}

.email-modal .next.action-button.btn-primary,
.view-document .next.action-button.btn-primary {
    max-width: 157px;
    width: 100%;
}

/* view document modal css start */
.view-document .modal-dialog {
    max-width: 1200px;
}

.view-document .form-sub {
    max-width: 450px;
}

.view-document address {
    height: 100%;
    min-height: 155px;
}

.customer-edit-id {
    color: #A6A5A4;
    font-family: Lato;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 29px;
    text-align: left;
}

.customer-name {
    display: flex;
    column-gap: 9px;
}

.customer-title p {
    color: #383739;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.14px;
    line-height: 19px;
}

.customer-title p:nth-child(2) {
    color: #8D8D8D;
    font-weight: 500;
}

.view-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0 0;
}

.modal-sub-title {
    text-align: left;
}

/* invoice css start */
.type-modal {
    max-width: unset;
    width: 100%;
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    margin: 26px auto 35px;
    border: 1px solid #DEDDDC;
}

.sub-modal:nth-child(1) button,
.sub-modal:nth-child(6) button {
    border-left: 0;
}

.sub-title-invoice {
    padding-top: 30px;
}

.ListingModal .sub-modal:nth-child(1),
.ListingModal .sub-modal:nth-child(2),
.ListingModal .sub-modal:nth-child(3),
.ListingModal .sub-modal:nth-child(4),
.ListingModal .sub-modal:nth-child(5) {
    border-bottom: 1px solid #DEDDDC;
}

.sub-modal:last-child button {
    border-right: 1px solid #DEDDDC;
}

.small-left-menu .fixed {
    z-index: 9;
}
.status-icon  {
    justify-content: end;
    padding-right: 10px
}

.sync-icon  {
    padding-right: 10px
}

.status-icon img, .sync-icon img{
    height: 21px
}

td.k-table-td:last-child a {
    display: flex;
    justify-content: end;
}
.k-centered {
    max-height: 800px!important;
}
.modal-body {
    text-align: end;
}
.view-document {
    margin: 0 auto;
}
.k-i-caret-alt-up::before {
    content: ""!important;
    background-image: url(/css/image/down-arrow.svg);
    transform: rotate(180deg);
    width: 11px;
    height: 7px;
}
.k-grid .k-table-row.k-selected > td, .k-grid .k-table-row.k-selected > .k-table-td{
    background-color: none !important ;
}

.search-icon {
   position: relative;
   width: 200px !important;
}

.search-icon::before {
   content: '';
   position: absolute;
   right: 15px;
   background-image: url(../css/image/icon-search.svg);
   width: 21px;
   height: 21px;
   top: 10px;
   background-repeat: no-repeat;
}

.all-listing-table-main {
   margin-bottom: 50px;
}
.k-toolbar .k-toolbar-spacer{
   flex: 0 0 0%!important;
}
.k-grid-toolbar{
   display: flex!important;
   justify-content: right!important;
}

.list-group .active {
    background: #EEEDED;
}

.list-group .active a {
    color: #000;
}

.k-scheduler-edit-dialog{
    max-width: 600px;
}

.k-scheduler-edit-form{
    padding: 20px
}

.k-card-title{
    font-size: 14px!important;
    text-align: center;
    font-family: 'Lato', sans-serif !important;
}

.k-tilelayout-item-body h1{
    text-align: center;       
    font-family: 'Lato', sans-serif !important;
}
.k-chart-tooltip {
   color: #ffffff;
   max-width: max-content;
   width: 100%;
   text-align: center;
}

.section-closed .general-info-form {
   display: none;
}

.btn-primary-disabled {
    background: #DEDDDC !important;
    border: transparent !important;
    font-size: 13px !important;
    line-height: 16px !important;
    letter-spacing: -0.03px !important;
    color: #FFFFFF !important;
    font-weight: 600;
    padding: 13.5px 27px !important;
    max-width: 160px !important;
    width: 100% !important;
    border-radius: unset !important;
    min-width: 160px !important;
}



.btn-primary-disable {
    background-color: none !important;
}

.title-main {
    padding-bottom: 1em;
}

@media(max-width:950px) {
    .modal-title > .title-icon {
        display: none;
    }
}