/* Custom CSS */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap');
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #ECEEF5;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
    display: block !important;
    overflow-x: hidden;
}
input:focus, textarea:focus {
    outline: 0;
}
a:hover {
    text-decoration: none;
}
button:focus {
    outline: 0;
}
.opacity-50 {
    opacity: 0.5;
}
.p-r-0 {
    padding-right: 0;
}
select {
    -moz-appearance:none;
    -webkit-appearance:none;
    appearance:none;
    padding-right: 15px;
    background-image: url(/assets/images/select-dropdown.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 10px;
}
.select2-container .select2-selection {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
    min-height: 48px;
    display: block;
    padding: 16px 17px;
    margin-bottom: 0;
}
.select2-container .select2-selection .select2-selection__rendered, .select2-container--default .select2-search--dropdown .select2-search__field {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
    padding: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 5px;
}
form .select2.select2-container.select2-container--focus {
    border-color: #5B6DB9;
    border: 1px solid #5B6DB9!important;
    box-shadow: none;
    outline: 0;
}
form .select2.select2-container.select2-container--open .select2-selection, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-color: transparent; 
    border: none !important; 
    box-shadow: none !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url(/assets/images/select-dropdown.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 10px;
    top: 50%;
    margin-top: -10px;
    right: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #5B6DB90D;
    color: #0F2270;
    line-height: 20px;
    /*box-shadow: 0px 3px 12px rgba(91, 109, 185, 0.1);*/
    text-decoration: underline;
    text-underline-offset: 3px;
}
.select2-results__option {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 16px;
    border-top: 1px solid #5b6db91a;
    border-bottom: 1px solid #5b6db91a;
}
.select2-dropdown.select2-dropdown--below {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: 0px 0px 1px rgba(91, 109, 185, 0.2);
    border-radius: 4px;
}
.form-checkbox, .form-radio {
    display: block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.form-checkbox input, .form-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.form-checkbox .checkmark, .form-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #5b6db91a;
    border: 1px solid #5B6DB9;
    border-radius: 6px;
    box-shadow: inset 0px 4px 4px rgb(0 0 0 / 15%);
}
.form-checkbox .form-control:disabled ~ .checkmark, .form-radio .form-control:disabled ~ .checkmark {
    opacity: 0.5;
}
.form-checkbox input:checked ~ .checkmark, .form-radio input:checked ~ .checkmark {
    background-image: url(../../assets/img/checkbox-checked.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: 1px solid transparent;
}
.form-checkbox input:checked ~ .checkmark:after, .form-radio input:checked ~ .checkmark:after {
    display: block;
}
.btn {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 12px;
    text-align: center;
    box-shadow: inset 0px 4px 4px rgba(91, 109, 185, 0.1);
    border-radius: 8px;
}
.btn-primary {
    background-color: #5B6DB9;
    color: #FFFFFF;
    border: 1px solid transparent;
}
.btn-primary:hover {
    background-color: #1c3a59;
    border: 1px solid #1c3a59;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid #5B6DB9;
    color: #5B6DB9;
    box-shadow: none;
}
.btn-outline:hover {
    background-color: #1c3a59;
    border: 1px solid #1c3a59;
    color: #FFFFFF;
    box-shadow: none;
}
.btn-primary:focus, .btn-outline:focus {
    outline: 0;
    box-shadow: none;
}
.title-block h2 {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 31px;
}
a:hover {
    color: #1c3a59;
}
/* Header Block */
button.navbar-toggler {
    outline: 0;
}
.header-block {
    flex: inherit;
    height: 105px;
    box-shadow: 0px 3px 12px rgba(91, 109, 185, 0.1);
}
.app-header.header-block .navbar-brand {
    opacity: 1;
    margin-right: 27px;
    padding: 0;
    width: 100%;
    max-width: 150px;
}
.app-header.header-block .navbar-brand img {
    width: 100%;
}
.header-block .sales p {
    margin: 0;
    margin-bottom: 8px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    text-align: center;
}
.header-block .search-block, .header-block .user-block, .header-block .cart-block {
    position: relative;
    margin-right: 35px;
}
.header-block .user-block {
    margin-right: 15px;
}
.header-block .cart-block {
    margin-right: 0px;
}
.header-block .search-block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9.5px;
    width: 19px;
    height: 19px;
    background: url(/assets/images/search.svg) center no-repeat;
}
.header-block .search-block input {
    font-family: 'DM Sans', sans-serif;
    border: none;
    color: #5B6DB9;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    padding: 15px 0;
    padding-left: 26px;
    padding-right: 0;
}
.header-block .search-block input:focus-within {
    outline: 0;
}
.header-block .search-block input::placeholder {
    color: #5B6DB9;
}
.header-block .search-block input::-webkit-input-placeholder {
    color: #5B6DB9;
}
.header-block .search-block input:-ms-input-placeholder {
    color: #5B6DB9;
}
.header-block .search-block-mobile {
    position: relative;
    margin-right: 20px;
}
.header-block .search-block-mobile .search-icon {
    background-color: transparent;
    border: 0;
    outline: none;
    width: 26px;
    height: 26px;
    padding: 0;
}
.header-block .search-block-mobile .search-toggle .search-icon.icon-close {
    display: none;
}
.header-block .search-block-mobile .search-toggle.opened .search-icon.icon-search {
    display: none;
}
.header-block .search-block-mobile .search-toggle.opened .search-icon.icon-close {
    display: block;
}
.header-block .search-block-mobile .search-block-inner {
    position: absolute;
    right: 0px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
}
.header-block .search-block-mobile .search-block-inner.opened {
    max-height: 100px;
}
.header-block .search-block-mobile .search-block-inner.opened .search-icon {
    padding-right: 30px;
}
.header-block .search-block-mobile .search-block-inner .form-search.mobile {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.header-block .search-block-mobile .search-block-inner input {
    font-family: 'DM Sans', sans-serif;
    border: none;
    color: #5B6DB9;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    padding: 15px;
    outline: none;
    min-width: 300px;
    border: 0;
    background-color: #FFFFFF;
}
.header-block .search-block-mobile .search-block-inner input:focus-within {
    outline: 0;
}
.header-block .search-block-mobile .search-block-inner input::placeholder {
    color: #5B6DB9;
}
.header-block .search-block-mobile .search-block-inner input::-webkit-input-placeholder {
    color: #5B6DB9;
}
.header-block .search-block-mobile .search-block-inner input:-ms-input-placeholder {
    color: #5B6DB9;
}
.header-block .user-block .nav-item {
    padding: 0 !important;
}
/*.header-block .user-block a.nav-link img {
    margin-right: 7px;
}*/
.header-block .user-block a.nav-link {
    margin: 0;
    background-color: #FFFFFF;
    padding: 17px 23px;
    border-radius: 8px;
    transition: all 0.5s ease;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #5B6DB9;
}
.header-block .user-block a.nav-link span {
    color: #5B6DB9;
    text-overflow: ellipsis;
    min-width: 150px;
    max-width: 180px;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}
.header-block .user-block a.nav-link:hover {
    background-color: #F7F8FB;
    transition: all 0.5s ease;
}
.header-block .user-block .dropdown-menu {
    margin-right: 0 !important;
    border: 1px solid #0F2270;
    padding: 0 !important;
    border-radius: 4px;
}
.header-block .user-block .dropdown-menu a {
    padding: 14px 17px 13px;
    border-bottom: 1px solid #5B6DB91a;
}
.header-block .user-block .dropdown-menu a:last-child {
    border-bottom: none;
}
.header-block .dropdown-item {
    min-width: 196px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #0F2270;
}
.header-block .dropdown-item:focus, .header-block .dropdown-item:hover {
    background-color: transparent;
    color: #0F2270;
    text-decoration: none;
}
.header-block .cart-block .view-cart {
    background-color: #5B6DB9;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}
.header-block .cart-block .view-cart a, .header-block .cart-block .view-cart a span, 
.header-block .cart-block .view-cart button, .header-block .cart-block .view-cart button span {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #FFFFFF;
    text-decoration: none;
}
.header-block .cart-block .view-cart span {
    margin-left: 12px;
}
.header-block .cart-block .view-cart span:last-child {
    position: absolute;
    right: 5px;
    top: 8px;
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    color: #5B6DB9;
    border-radius: 100px;
    padding: 1px 4px;
    margin-left: 0px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
}
.header-block .cart-block .added-item {
    position: absolute;
    top: 70px;
    right: 0;
    min-width: 220px;
}
.header-block .cart-block .added-item p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0;
    padding: 14px 20px;
    background-color: #00A510;
    border-radius: 8px;
    position: relative;
}
.header-block .cart-block .added-item p:before {
    content: "";
    position: absolute;
    top: -20px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 22px solid #00A510;
}
.header-block .cart-block .added-item p img {
    margin-right: 10px;
}
.header-block .cart-block {
    padding-right: 0;
}
/* Login Block */
.login-banner img {
    width: 100%;
}
.login-wrapper {
    max-height: calc(100vh - 105px);
    overflow: hidden;
}
.login-wrapper .form-wrapper {
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
    border-radius: 8px;
    padding: 53px 57px 43px;
    max-width: 440px;
    margin: 0 auto;
    /*margin: 187px 67px;*/
    margin: 67px;
}
.login-wrapper .card-body {
    padding: 0;
}
.login-wrapper .title-block h2 {
    margin-bottom: 36px;
    font-weight: 500;
    color: #000000;
}
.login-wrapper .form-group {
    margin-bottom: 16px;
}
.login-wrapper .form-group label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 8px;
}
.login-wrapper .form-group input {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
}
.forget-link a, .forget-link button {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: right;
    color: #5B6DB9;
}
.create-account p, .create-account a, .create-account button {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #333333;
}
.create-account a, .create-account button {
    color: #5B6DB9;
}
/* Register Block */
.register-wrapper {
    padding: 62px 0 100px;
}
.register-wrapper .title-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.register-wrapper .title-block h2 {
    margin-bottom: 8px;
    font-weight: 500;
    color: #333333;
}
.register-wrapper .title-block p {
    margin-bottom: 31px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    text-align: center;
    color: #4F4F4F;
}
.register-wrapper .form-wrapper {
    max-width: 525px;
    margin: 0 auto;
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
    border-radius: 8px;
    padding: 60px;
}
.register-wrapper .card-body {
    padding: 0;
}
.register-wrapper .form-group {
    margin-bottom: 18px;
}
.register-wrapper .form-group label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 8px;
}
.register-wrapper .form-group input {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
}
.register-wrapper .custom-color .form-group label {
    color: #0F2270;
    margin-bottom: 12px;
}
.register-wrapper .custom-color .form-group .radio-group {
    margin-right: 24px;
}
.register-wrapper .custom-color .form-group .radio-group label {
    margin-bottom: 0;
    line-height: 32px;
}
.register-wrapper .create-btn .form-group {
    margin-bottom: 0;
    margin-top: 30px;
}
.register-wrapper .radio-group .form-radio {
    padding-left: 44px;
}
.register-wrapper .radio-group .form-radio .checkmark {
    height: 34px;
    width: 34px;
}
/* Popup CSS */
.modal.fade {
    background-color: #161c2d80;
}
.modal .modal-dialog {
    max-width: 800px;
    margin: 0 auto;
}
.modal.property-detail-popup .modal-dialog {
    max-width: 520px;
    margin: 0 auto;
}
.modal-header {
    border: none;
    padding: 46px 50px 36px;
}
.modal-header .close {
    opacity: 1;
}
.modal-header h5 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #333333;
}
.modal-header h5 span {
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    margin-left: 12px;
    color: #0F2270;
}
.modal-header p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    color: #828282;
    margin-top: 10px;
    margin-bottom: 0;
}
.modal.outstock-popup .modal-header {
    padding: 46px 50px 52px;
}
.modal .modal-body {
    padding: 0 50px;
}
.modal.outstock-popup .modal-body {
    padding-bottom: 27px;
}
.modal .table-block .table {
    box-shadow: none;
}
.modal .table-block thead th {
    background-color: #1B3A5B;
}
.modal .table-block .form-group .form-control {
    min-width: 102px;
    max-width: 105px;
    max-height: 32px;
    margin-right: 8px;
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 0px 0px 1px #5b6db9, inset 0px -4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    text-align: left;
    color: #0F2270;
    padding: 4px 20px 4px 12px;
}
.modal .table-block .table td.product-name {
    min-width: 120px;
}
.modal .table-block .table .form-group {
    margin: 0;
}
.modal .table-block .table td.product-name .form-group .form-checkbox {
    margin: 0;
    margin-top: 3px;
}
.modal .table-block .table td.product-name p, .modal .table-block .table td.product-name p span {
    white-space: pre-wrap;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    color: #0F2270;
    margin-top: 12px;
    margin-bottom: 0;
}
.modal .table-block .table td.product-name p span {
    font-weight: 400;
    display: block;
    margin: 0;
}
.modal .table-block .table tr {
    border-top: 1px solid #E0E0E0;
}
.modal .table-block .table tr:last-child {
    border-bottom: 1px solid #E0E0E0;
}
.modal .table-block .table tr:hover {
    background-color: transparent;
    cursor: default;
}
.modal .table-block .table.outstock-table tr{
    border: none;
}
.modal .table-block {
    position: relative;
    margin-bottom: 32px;
}
.modal .table-block .table td.product-description {
    max-width: 346px;
    min-width: 346px;
    white-space: pre-wrap;
}
.modal .table-block .outstock-table {
    background: #FFFFFF;
    border: 1px solid #0F2270;
    border-radius: 8px;
    padding: 10px;
}
.modal .table-block .table.outstock-table td {
    padding: 13px 8px;
}
.modal .table-block .table td.product-btns a, .modal .table-block .table td.product-btns button {
    min-width: 85px;
}
.modal .table-block .table-title {
    position: absolute;
    top: -14px;
    left: 14px;
    background-color: #FFFFFF;
    padding: 4px 10px;
}
.modal .table-block .table-title p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #333333;
    background-color: #FFFFFF;
    margin: 0;
}
.modal .table-block .table-title p img {
    margin-left: 0px;
}
.modal-footer {
    border: none;
    padding: 21px 50px 54px;
}
.modal-footer button.btn {
    box-shadow: none;
    color: #5B6DB9;
}
.modal-footer button.btn-primary {
    min-width: 266px;
    color: #FFFFFF;
}
#sales_rep_create .modal-footer button.btn-primary {
    min-width: 100px;
    color: #FFFFFF;
}
.user-popup .modal-footer button.btn-primary {
    min-width: inherit;
    width: 100%;
    color: #FFFFFF;
}
.user-popup label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #333333;
    margin-bottom: 8px;
}
.user-popup .form-group input, .user-popup .form-group select {
    background-color: #FFFFFF;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px 4px 4px rgba(91, 109, 185, 0.15);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
}
.user-popup .form-group .radio-group {
    margin-right: 24px;
    margin-top: 12px;
}
.user-popup .form-group .radio-group label {
    line-height: 24px;
}
.property-detail-popup label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #333333;
    margin-bottom: 8px;
}
.property-detail-popup .form-group input, .property-detail-popup .form-group select {
    background-color: #FFFFFF;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px 4px 4px rgba(91, 109, 185, 0.15);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
}
.property-detail-popup .modal-footer button.btn-primary {
    min-width: inherit;
    width: 100%;
    color: #FFFFFF;
}
.user-popup .modal-header img, .property-detail-popup .modal-header img {
    max-width: 18px;
}
/* Select Customer or Property Block */
.customer-property-block {
    padding: 180px 0;
}
.customer-property-block .title-block h2 {
    font-weight: 400;
    color: #000000;
    margin-bottom: 21px;
}
.customer-property-block .customer-block, .customer-property-block .property-block {
    display: block;
    position: relative;
    margin-right: 48px;
}
.customer-property-block .property-block {
    margin-right: 0;
}
.property-block a {
    margin-top: 6px;
    display: block;
    width: max-content;
    margin-left: auto;
}
.customer-property-block .block-item {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
    border-radius: 8px;
    padding: 48px 55px;
    position: relative;
}
.customer-property-block .block-item .form-group {
    margin-bottom: 12px;
}
.customer-property-block .block-item .form-group label {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
    margin-bottom: 8px;
    display: block;
}
.customer-property-block .block-item .form-control {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
}
.customer-property-block .block-item select.form-control {
    min-width: 375px;
}
.customer-property-block .block-item .form-control:focus {
    box-shadow: 0px 0px 1px 4px rgba(91, 109, 185, 0.2), inset 0px 4px 12px rgba(91, 109, 185, 0.1);
}
.customer-property-block .property-block .block-item .form-group {
    position: relative;
}
.customer-property-block .block-item select.form-control option {
    border: 1px solid #5B6DB9;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #0F2270;
}
.customer-property-block .block-item a, .customer-property-block .block-item button {
    width: 100%;
}
/* Info Block */
.info-msg {
    background-color: #5B6DB9;
    /* padding: 20px; */
    /* padding-left: 95px; */
}
.info-msg p, .info-msg p span {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin-right: 15px;
}
.info-msg p {
    margin-right: 0;
}
.info-msg p span { 
    font-weight: 700;
    margin-left: 12px;
    margin-right: 0px;
}
.info-msg a, .info-msg button {
    border: 1px solid #FFFFFF;
    filter: drop-shadow(0px 3px 12px rgba(91, 109, 185, 0.1));
    border-radius: 4px;
    padding: 7px 9px;
    color: #FFFFFF;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    text-align: center;
}
.info-msg p img {
    margin-right: 8px;
    max-width: 16px;
}
/* Home Block */
.order-block {
    padding: 38px 0 90px;
}
.order-block .title-block h2 {
    font-weight: 500;
    color: #333333;
    margin-bottom: 38px;
}
.order-block-item {
    max-width: 940px;
    width: 100%;
    margin: 0 auto;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
    border-radius: 8px;
    padding: 82px;
}
.order-block-item a {
    max-width: 242px;
    margin-right: 24px;
    text-align: center;
    padding: 26px 35px 49px;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.order-block-item a:hover {
    background-color: #5b6cb90d;
    border-radius: 8px;
}
.order-block-item a:hover h4 {
    text-decoration: underline;
}
.order-block-item .block-item img {
    margin-bottom: 18px;
}
.order-block-item .block-item h4 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: #5B6DB9;
    line-height: 16px;
}
.order-block-item .block-item p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    color: #5B6DB9;
    line-height: 13px;
    margin: 0;
}
/* Admin Quick Reorder Block */
.quick-reorder-block {
    padding-bottom: 250px;
}
.reorder-block .title-block {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.reorder-block .title-block h2 {
    margin: 0;
}
.reorder-block .title-block p {
    padding-left: 12px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #333333;
    margin: 0;
}
.reorder-block .filter-block {
    padding-left: 20px;
}
.reorder-block .filter-title h3 {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.reorder-filter-items {
    margin-left: 32px;
}
.reorder-block .filter-items {
    margin: 0;
    padding: 0;
}
.reorder-block .filter-items li {
    margin-right: 8px;
    margin-bottom: 12px;
    list-style-type: none;
    text-align: center;
    min-width: 160px;
    min-height: 120px;
    height: 100%;
    position: relative;
}
.reorder-block .filter-items li:last-child {
    margin-right: 0;
}
.reorder-block .filter-items li.active:before {
    content: "";
    position: absolute;
    top: 10px;
    right: 12px;
    width: 15px;
    height: 12px;
    background-image: url(/assets/images/selected.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}
.reorder-block .filter-items li a, .reorder-block .filter-items li button {
    background-color: #FFFFFF;
    display: block;
    position: relative;
    padding: 27px 34px 23px;
    border-radius: 8px;
    transition: all 0.5s ease;
}
.reorder-block .filter-items li a:hover, .reorder-block .filter-items li.active a, 
.reorder-block .filter-items li button:hover, .reorder-block .filter-items li.active button {
    background-color: #0F2270;
    transition: all 0.5s ease;
}
.reorder-block .filter-items li .icon-block {
    min-height: 38px;
    align-items: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}
.reorder-block .filter-items li a:hover img, .reorder-block .filter-items li.active img, .reorder-block .filter-items li button:hover img {
    filter: brightness(0%) invert(1);
}
.reorder-block .filter-items li p {
    margin: 0;
    margin-top: 20px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    color: #5B6DB9;
}
.reorder-block .filter-items li a:hover p, .reorder-block .filter-items li.active p, .reorder-block .filter-items li button:hover p {
    color: #FFFFFF;
}
/* Your Order Block */
.your-order-block {
    padding-bottom: 150px;
}
.your-order-block .top-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.your-order-block .title-block {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 315px;
}
.your-order-block .title-block h2 {
    margin: 0;
    font-weight: 500;
    color: #333333;
}
.your-order-block .right-content-block p {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    /* padding-left: 20px; */
}
.your-order-block .right-content-block p span {
    font-weight: 600;
}
.order-form-block {
    width: 24%;
}
.order-filter-form {
    background-color: #FFFFFF;
    padding: 27px 25px;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
    border-radius: 8px;
    margin-top: 38px;
}
.order-filter-form form.form-filter {
    max-width: 210px;
}
.order-filter-form .form-group {
    margin-bottom: 18px;
    margin-right: 15px;
}
.order-filter-form .form-group label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.order-filter-form .form-group .form-control {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    border-radius: 4px;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px -4px 4px rgba(91, 109, 185, 0.15);
}
.order-filter-form .form-group .checkbox-group {
    padding-bottom: 8px;
}
.order-filter-form .form-group .checkbox-group label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #0F2270;
    text-transform: inherit;
}
.form-table-block {
    width: 76%;
}
.your-order-table {
    width: max-content !important;
}
/* Create Order Block */
.create-order-block {
    padding-bottom: 150px;
}
.createorder-block {
    padding: 34px 0;
}
.createorder-filter-block {
    background: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
    padding: 30px 50px;
}
.createorder-block .filter-title {
    max-width: 130px;
}
.createorder-block .filter-title h3 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
    color: #333333;
}
.createorder-block .filter-items {
    padding: 0;
}
.createorder-block .filter-items li {
    margin-right: 8px;
    margin-bottom: 12px;
    list-style-type: none;
    text-align: center;
    min-width: 144px;
    min-height: 120px;
    height: 100%;
    position: relative;
}
.createorder-block .filter-items li a, .createorder-block .filter-items li button {
    background-color: #FFFFFF;
    display: block;
    position: relative;
    padding: 37px 30px 23px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.5s ease;
}
.createorder-block .filter-items li a:hover, .createorder-block .filter-items li.active a, 
.createorder-block .filter-items li button:hover, .createorder-block .filter-items li.active button {
    background-color: #FFFFFF;
    box-shadow: 0px 2px 4px rgba(91, 109, 185, 0.2);
    border: 2px solid #5B6DB9;
    transition: all 0.5s ease;
}
.createorder-block .filter-items li .icon-block {
    min-height: 38px;
    align-items: center;
    vertical-align: middle;
    display: flex;
    justify-content: center;
}
.createorder-block .filter-items li p {
    margin: 0;
    margin-top: 20px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    color: #5B6DB9;
}
.createorder-block .filter-items li a:hover p, .createorder-block .filter-items li.active p, .createorder-block .filter-items li button:hover p {
    text-decoration: underline;
}
.create-orders {
    background: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
    border-radius: 8px;
    padding: 0 24px;
}
.create-order-block .top-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.create-order-block .title-block {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 315px;
}
.create-order-block .title-block h2 {
    margin: 0;
    font-weight: 500;
    color: #333333;
}
.create-order-block .right-content-block p, .create-order-block .right-content-block a, .create-order-block .right-content-block button {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    padding-left: 20px;
}
.create-order-block .right-content-block p span {
    font-weight: 600;
}
.create-order-block .right-content-block.filter-clear img {
    margin-right: 5px;
}
.create-order-table {
    width: max-content !important;
}
.create-orders .order-filter-form form.form-filter {
    max-width: 260px;
}
.create-orders .order-filter-form .form-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.create-orders .order-filter-form .form-group label {
    width: 100%;
}
.create-orders .order-filter-form .form-group .form-control {
    width: 78%;
}
.create-orders .order-filter-form .form-group a, .create-orders .order-filter-form .form-group button {
    background-color: #FFFFFF;
    padding: 8px 13px;
    border-radius: 8px;
}
.create-orders .order-filter-form .form-group a:hover, .create-orders .order-filter-form .form-group button:hover {
    background-color: #5B6DB90D;
}
.create-orders .order-filter-form .form-group .checkbox-group {
    padding-bottom: 8px;
    width: 100%;
}
/* New Order Block */
.new-order-block {
    padding-bottom: 32px;
}
.new-order-block .top-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.new-order-block .title-block {
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 315px;
}
.new-order-block .title-block h2 {
    margin: 0;
    font-weight: 500;
    color: #333333;
}
.new-order-block .right-content-block p {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    /* padding-left: 20px; */
}
.new-order-block .right-content-block p span {
    font-weight: 600;
}
/* Breadcrumb Checkout Block */
.breadcrumb-list {
    padding: 9px;
    margin: 0;
    background-color: #0f227012;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.breadcrumb-list li {
    list-style-type: none;
    min-width: 202px;
    background-color: transparent;
    border-radius: 8px;
    text-align: center;
    padding: 9px 0;
    margin-right: 8px;
    transition: all 0.5s ease;
}
.breadcrumb-list li:last-child {
    margin-right: 0;
}
.breadcrumb-list li a, .breadcrumb-list li button {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    color: #0F2270;
}
.breadcrumb-list li.active {
    background-color: #FFFFFF;
}
.breadcrumb-list li:hover {
    background-color: #FFFFFF;
    transition: all 0.5s ease;
}
/* Checkout Block Shopping Cart */
.shopping-cart-block .top-block {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.shopping-cart-block .title-block {
    padding: 43px 0px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    min-width: 215px;
}
.shopping-cart-block .title-block h2 {
    margin: 0;
    font-weight: 500;
    color: #333333;
}
.shopping-cart-block .title-block h2 img {
    margin-right: 12px;
}
.shopping-cart-block .right-content-block {
    min-width: 256px;
}
.shopping-cart-block .right-content-block p {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    padding-left: 20px;
}
.shopping-cart {
    padding-bottom: 120px;
}
.checkout-table-block {
    padding: 46px 37px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
}
.checkout-table-block.my-cart {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}
.shopping-cart-block .table-block .table.checkout-table {
    box-shadow: none;
    margin-bottom: 0;
}
.shopping-cart-block .table-block .table.checkout-table tfoot {
    background-color: #FFFFFF;
}
.shopping-cart-block .table-block .table.checkout-table tfoot tr:last-child td {
    padding: 0 13px 20px;
}
/* Shipping Block */
.shopping-cart-block.shipping-block .top-block {
    justify-content: space-between;
}
.checkout-inner {
    padding: 34px 41px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
}
.checkout-inner.custom-checkout {
    padding: 0;
    background-color: transparent;
}
.table-empty {
    padding: 34px 41px;
    background-color: #FFFFFF;
}
.delivery-method {
    width: 100%;
    max-width: 230px;
}
.title-block-inner h3 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    margin-bottom: 32px;
}
.delivery-form .radio-group:not(:last-child) {
    margin-right: 30px
}
.delivery-form label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: #0F2270;
    margin: 0;
    line-height: 24px;
}
.delivery-form .radio-group .form-radio .checkmark {
    border-radius: 50%;
}
.delivery-form .radio-group .form-radio input:checked ~ .checkmark {
    background-size: 109% 112%;
}
.delivery-location-details {
    padding-top: 54px;
}
.delivery-location {
    padding: 0 82px 100px;
    border-left: 1px solid #E0E0E0;
    min-width: 540px;
}
.delivery_location h4, .delivery_info h4 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
    margin-bottom: 27px;
}
.delivery_location p {
    margin: 0;
    max-width: 165px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #333333;
    margin-bottom: 24px;
}
.delivery_location p span, .shipping-location p span {
    display: block;
}
.delivery-location-details label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #333333;
    margin-bottom: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.delivery-location-details label span.instock {
    font-weight: 700;
    color: #219653;
    padding: 0 4px;
}
.delivery-location-details label span.outstock {
    font-weight: 700;
    color: #0F2270;
    padding: 0 4px;
}
/*.delivery-location-details label img {
    margin-left: 5px;
}*/
.delivery-location-details input, .delivery-location-details select, .delivery-location-details textarea {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 4px 12px rgba(91, 109, 185, 0.1);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
    padding: 13px 17px;
    height: auto;
    min-width: 375px;
}
.delivery-location-details textarea { 
    resize: none;
    font-weight: 400;
    color: #333333;
}
.delivery-location-details .form-group {
    margin-bottom: 16px;
}
.delivery-change-location a, .delivery-change-location button {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #5B6DB9;
    padding-left: 20px;
}
.delivery-location-details input[type="date"]::-webkit-calendar-picker-indicator {
    -webkit-appearance: none;
    appearance: none;
    background-image: url(/assets/images/calendar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.delivery-location-details .form-group.instock-date, .delivery-location-details .form-group.outstock-date {
    position: relative;
}
.delivery-location-details .delivery-instructions .form-group.instock-date:before, .delivery-location-details .delivery-instructions .form-group.outstock-date:before {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 24px;
    height: 24px;
    background-image: url(/assets/images/calendar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.delivery-info {
    max-width: 380px;
    margin-bottom: 25px;
}
.deliver-footer {
    border-top: 1px solid #E0E0E0;
}
.deliver-footer a, .deliver-footer button {
    margin-top: 24px;
    min-width: 375px;
}
/* Order SUmmary Block */
.shopping-cart-block.order-summary-block .top-block {
    justify-content: space-between;
}
.cart-shipping-block {
    padding: 38px 38px 0;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
    margin-right: 36px;
    flex: 1;
}
.cart-shipping-block .title-block-inner h3 {
    margin-bottom: 33px;
}
.title-block-inner h3 span {
    font-weight: 400;
    color: #5B6DB9;
    font-size: 16px;
    margin-left: 12px;
}
.cart-block {
    padding-right: 70px;
}
/*.cart-shipping-block .shipping-block {
    padding-right: 30px;
}*/
.shipping-block .shipping-title, .shipping-block .shipping-location, .shipping-block .shipping-date {
    margin-bottom: 20px;
}
.shipping-block .shipping-title h4, .shipping-block .shipping-location h4, .shipping-block .shipping-date h4 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 4px;
}
.shipping-block .shipping-title p, .shipping-block .shipping-location p, .shipping-block .shipping-date p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    margin: 0px;
}
.shipping-block .shipping-location p {
    max-width: 165px;
}
.shipping-block .shipping-date p span.instock {
    font-weight: 700;
    color: #00A510;
}
.shipping-block .shipping-date p span.outstock {
    font-weight: 700;
    color: #0F2270;
}
.cart-place-order-block {
    padding: 38px;
    background-color: #FFFFFF;
    border: 2px solid #5B6DB9;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
    min-width: 358px;
}
.place-order-title h3, .place-order-title button {
    padding: 17px;
    background-color: #5B6DB9;
    border-radius: 8px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 27px;
    width: 100%;
}
.place-order-title h3 img, .place-order-title button img {
    margin-right: 8px;
}
.cart-place-order-block .title-block-inner h3 {
    margin-bottom: 12px;
}
/* Order Placed Block */
.shopping-cart-block.order-placed-block .top-block {
    justify-content: space-between;
}
.cart-thanks-block {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
    border-radius: 8px;
    max-width: 284px;
    padding: 34px 31px;
    margin-right: 34px;
    padding-bottom: 163px;
}
.cart-order-place-block {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
    border-radius: 8px;
    padding: 34px 38px;
    padding-bottom: 93px;
    flex: 1;
}
.cart-order-place-block .title-block-inner h3 {
    margin-bottom: 34px;
}
.cart-order-place-block .order-block-item {
    max-width: 100%;
    padding: 0;
    box-shadow: none;
}
/* Account Block */
.user-account-block {
    padding: 52px 0 78px;
}
.left-nav {
    min-width: 315px;
    margin-right: 57px;
}
.left-nav .nav-title h5 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: #333333;
    margin: 0;
}
.left-nav .nav-title {
    margin-bottom: 36px;
}
.nav-list-item {
    margin: 0;
    padding: 0;
    max-width: 315px;
}
.account-block .title-block h2 {
    margin-bottom: 24px;
    font-weight: 500;
}
.nav-list-item li {
    list-style-type: none;
    background-color: transparent;
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 4px;
}
.nav-list-item li a, .nav-list-item li button {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #5B6DB9;
    padding: 0;
}
.nav-list-item li a img, .nav-list-item li button img {
    margin-right: 17px;
}
.account-block {
    width: 72%;
}
.nav-list-item li.active, .nav-list-item li:hover {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
}
.user-account-block .right-content {
    padding: 54px 64px 48px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
    border-radius: 8px;
}
.user-account-block .account-form, .user-account-block .account-personal-info {
    max-width: 400px;
}
.account-block .title-block-inner h3 {
    margin-bottom: 25px;
}
.account-form .form-group {
    margin-bottom: 18px;
    position: relative;
}
.account-form .form-group.email:before {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    background-image: url(/assets/images/approved.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.account-form label {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    margin-bottom: 8px;
}
.account-form input {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: #0F2270;
    padding: 13px 18px;
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    border-radius: 4px;
    height: auto;
    box-sizing: border-box;
}
.account-company-info {
    margin-top: 54px;
}
.admin-nav, .personal-nav {
    margin-bottom: 70px;
}
.search-filter select {
    padding: 16px 17px;
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px -4px 4px rgba(91, 109, 185, 0.15);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #0F2270;
    height: auto;
    min-width: 200px;
    margin-right: 12px;
}
.user-filter-block {
    margin-right: 12px;
}
.user-search-block .search-block {
    position: relative;
}
.user-search-block .search-block input {
    font-family: 'DM Sans', sans-serif;
    border: none;
    color: #5B6DB9;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    padding: 15px 0;
    padding-left: 44px;
    padding-right: 0;
    border: 1px solid #5B6DB9;
    background: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px 4px 4px rgba(91, 109, 185, 0.15);
    border-radius: 4px;
}
.user-search-block .search-block input::placeholder {
    color: #5B6DB9;
}
.user-search-block .search-block input::-webkit-input-placeholder {
    color: #5B6DB9;
}
.user-search-block .search-block input:-ms-input-placeholder {
    color: #5B6DB9;
}
.user-search-block .search-block:before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    margin-top: -9.5px;
    width: 19px;
    height: 19px;
    background: url(/assets/images/search.svg) center no-repeat;
}
.search-filter {
    margin-bottom: 10px;
}
/* Properties Block */
.propertiy-item {
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
    border-radius: 8px;
    border: 2px solid transparent;
    /* padding: 52px 28px 36px 61px; */
    padding: 36px 28px;
    margin-right: 12px;
    margin-bottom: 12px;
    min-width: 375px;
}
.propertiy-item:hover {
    border: 2px solid #5B6DB9;
    box-shadow: 0px 9px 24px rgba(91, 109, 185, 0.2);
}
.propertiy-item .item-header {
    margin-bottom: 8px;
}
.propertiy-item .item-header h5 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5B6DB9;
}
.propertiy-item .item-header .icon-box {
    background-color: #5b6cb91a;
    border-radius: 50%;
    padding: 14px;
}
.propertiy-item .item-body h3 {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: #333333;
    margin-bottom: 2px;
}
.propertiy-item .item-body p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
    margin-bottom: 19px;
}
.propertiy-item .item-body .item-lists {
    padding: 0;
    margin: 0;
    margin-bottom: 11px;
}
.propertiy-item .item-body .item-lists li {
    list-style-type: none;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
}
.propertiy-item .item-body .item-lists li span {
    font-weight: 700;
}
.propertiy-item .item-body .item-lists li img {
    margin-right: 8px;
}
.propertiy-item .item-footer a {
    font-size: 12px;
    padding: 8px;
}
.propertiy-item .item-footer a i {
    margin-right: 5px;
    font-size: 14px;
    line-height: 16px;
    position: relative;
    top: 1px;
}
/* Table Block */
.reorder-table, .your-order-table {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    width: 100%;
}
.table-block .table {
    box-shadow: 0px 3px 12px rgba(91, 109, 185, 0.2);
}
.table-block .table.nested-table {
    margin: 0;
}
.table-block thead {
    box-shadow: 0px 3px 12px rgb(91 109 185 / 10%);
}
.table-block thead th {
    background-color: #0F2270;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0.03em;
    color: #F5F5F5;
    /* white-space: nowrap; */
    white-space: normal;
    padding-top: 11px;
    padding-bottom: 10px;
}
.table-block thead th:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.table-block thead th:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.table-block .table tr {
    background-color: #FFFFFF;
}
.table-block .table tr:hover {
    background-color: #5b6cb90d;
    cursor: pointer;
}
.table-block .table tr.nested-row {
    background-color: #FFFFFF;
}
.table-block .table td {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #0F2270;
    padding: 13px;
    /* white-space: nowrap; */
    white-space: normal;
}
.form-table-block .table-block .table td {
    font-weight: 700;
}
.table-block .table tbody tr:first-child td:first-child {
    border-top-left-radius: 8px;
}
.table-block .table tbody tr:first-child td:last-child {
    border-top-right-radius: 8px !important;
    overflow: visible;
}
.table-block .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.table-block .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.table-block .table td, .table-block .table th {
    border-top: none; 
    vertical-align: middle;
}
.table-block .table td.product-description {
    /* max-width: 370px;
    min-width: 370px;
    white-space: pre-wrap; */
    white-space: normal;
}
/* .table-block .table td.product-delivery-date {
    min-width: 308px;
} */
.new-orders .form-table-block .table-block .table td {
    font-weight: 400;
}
.table-block .table td.product-status {
    /* min-width: 300px; */
    font-weight: 700;
}
.new-orders .table-block .table td.product-status {
    /* min-width: 175px; */
    font-weight: 700;
}
.table-block .table td.product-status.in-stock {
    color: #219653;
}
.table-block .table td.product-order-status {
    color: #00A510;
}
.table-block .table td.product-status.out-stock {
    color: #0F2270;
}
.table-block .table td.product-status p, .table-block .table td.product-status a, .table-block .table td.product-status button {
    font-weight: 400;
    margin: 0;
    /*display: inline-block;*/
    display: block;
}
.new-orders .table-block .table td.product-status p {
    display: block;
}
.table-block .table td.product-status a, .table-block .table td.product-status button { 
    display: block;
    color: #5B6DB9;
    text-decoration: underline;
}
.table-block .table td.product-quantity {
    display: table-cell;
    width: max-content;
}
.table-block .table td.product-quantity.cart-display {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-width: 200px;
}
.table-block .table td.product-name, .table-block .table td.item-name {
    word-break: break-all;
}
.table-block .table td.product-quantity select {
    max-width: 52px;
    max-height: 27px;
    margin-right: 8px;
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 0px 0px 1px #5b6db9, inset 0px -4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    text-align: left;
    color: #0F2270;
    padding: 4px 20px 4px 12px;
}
.table-block .table td.product-quantity a, .table-block .table td.product-btns a, 
.table-block .table td.product-quantity button, .table-block .table td.product-btns button {
    font-weight: 700;
    font-size: 13px;
    line-height: 13px;
    text-align: center;
    color: #FFFFFF;
    padding: 6px;
}
.form-table-block .table-block .table td.product-btns {
    text-align: right;
    /* min-width: 160px; */
}
.table-block .table td.product-btns a, .table-block .table td.product-btns button {
    padding: 6px;
    line-height: 17px;
}
.table-block .table tfoot tr td {
/*    border-bottom-left-radius: 8px;*/
/*    border-bottom-right-radius: 8px;*/
/*    text-align: center;*/
/*    padding: 24px 13px 26px;*/
/*    border-top: 1px solid #E0E0E0;*/
}

.table-block .table td.product-total-description, .table-block .table td.product-total-price {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #0F2270;
}



/* .table-block .table tfoot tr td a, .table-block .table tfoot tr td button {
    min-width: 320px;
} */
.table-block .table tfoot tr:hover {
    background-color: #FFFFFF;
}
.table-block .table td.product-image {
    text-align: right;
}
.form-table-block .table-block .table tfoot tr td {
    border-top: none;
}
.form-table-block .table-block .table tfoot tr td a, .form-table-block .table-block .table tfoot tr td button {
    width: max-content;
}
.form-table-block .table-block .table tfoot tr td a:hover, .form-table-block .table-block .table tfoot tr td button:hover {
    text-decoration: none;
}
.create-orders .order-filter-form, .create-orders .table-block .table {
    box-shadow: none;
}
.create-orders .table-block .table .table.nested-table {
    box-shadow: 0px 3px 12px rgb(91 109 185 / 20%);
}
/* .create-orders .table-block .table td.product-delivery-date {
    min-width: 250px;
} */
.checkout-table-block .table-block .checkout-table thead th {
    background-color: #1B3A5B;
    text-align: center;
}
.checkout-table-block .table-block .checkout-table thead th:first-child {
    text-align: left;
}
.checkout-table-block .table-block thead th {
    font-weight: 500;
}
.checkout-table-block .table-block .form-group, .checkout-table-block .table-block .form-group .form-checkbox {
    margin: 0;
}
.checkout-table-block .table-block .form-group .form-checkbox {
    margin-top: -15px;
}
.checkout-table-block .table-block .form-group .form-control {
    min-width: 102px;
    max-width: 105px;
    max-height: 32px;
    margin-right: 8px;
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px 4px 4px rgba(91, 109, 185, 0.15);
    border-radius: 4px;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    text-align: left;
    color: #0F2270;
    padding: 4px 20px 4px 12px;
}
.checkout-table-block .table-block .table td {
    vertical-align: middle;
}
.checkout-table-block td.product-name img {
    max-width: 32px;
    min-width: 32px;
    margin-right: 15px;
}
.checkout-table-block td.product-sku {
    color: #5B6DB9;
}
.table-block td.product-image img {
    max-width: 32px;
    min-width: 32px;
}
/*.checkout-table-block .table-block .table td.product-status.out-stock a, .checkout-table-block .table-block .table td.product-status.out-stock button {
    margin-left: 5px;
}*/
/* .checkout-table-block .table-block .table td.product-status {
    min-width: 156px;
} */
.checkout-table-block .table-block .table tr:hover td:first-child {
    border-bottom-left-radius: 8px; 
    border-top-left-radius: 8px; 
}
.checkout-table-block .table-block .table tr:hover td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
.checkout-table-block .table-block .table .form-checkbox .checkmark {
    left: 50%;
    margin-left: -12px;
}
.checkout-table-block .table-block .table .product-delete {
    min-width: 48px;
    text-align: center;
}
.checkout-table-block .table-block .table tfoot tr td {
    text-align: right;
    padding: 11px 0;
}
.checkout-table-block .table-block .table tfoot tr:last-child td {
    border: none;
    padding: 0;
}
.checkout-table-block .table-block .table tfoot tr td a, .checkout-table-block .table-block .table tfoot tr td button {
    min-width: 266px;
    margin-left: 12px;
} 
.checkout-table-block .table-block .table td.product-total-description, .checkout-table-block .table-block .table td.product-total-price {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #333333;
}
.checkout-table-block .table-block .table td.product-total-price { 
    font-weight: 700;
}
.checkout-table-block .table-block .checkout-table td.product-price, .your-order-table td.item-price {
    text-align: right;
}
.table-block .cart-instock-table, .table-block .cart-outstock-table {
    box-shadow: none;
}
.table-block .cart-instock-table thead th, .table-block .cart-outstock-table thead th {
    background-color: transparent;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    color: #333333;
    padding: 0;
    padding-bottom: 8px;
}
.table-block .cart-instock-table.table td, .table-block .cart-outstock-table.table td {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    padding: 0;
}
.table-block .cart-instock-table.table td.product-cart-name, .table-block .cart-outstock-table.table td.product-cart-name, 
.table-block .cart-instock-table.table td.product-cart-name a, .table-block .cart-outstock-table.table td.product-cart-name a {
    color: #5B6DB9;
    /* min-width: 280px; */
}
.table-block .cart-instock-table.table td.product-cart-quantity, .table-block .cart-outstock-table.table td.product-cart-quantity {
    min-width: 55px;
}
/* .table-block .cart-instock-table.table td.product-cart-price, .table-block .cart-outstock-table.table td.product-cart-price {
    min-width: 150px;
} */
.cart-shipping-block .table-block {
    position: relative;
    margin-bottom: 32px;
}
.cart-shipping-block .table-block .table-title {
    position: absolute;
    top: -14px;
    left: 14px;
    background-color: #FFFFFF;
    padding: 4px 10px;
}
.cart-shipping-block .table-block .table-title p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: #333333;
    background-color: #FFFFFF;
    margin: 0;
}
.cart-shipping-block .table-block .table-title p span.instock {
    font-weight: 700;
    color: #00A510;
}
.cart-shipping-block .table-block .table-title p span.outstock {
    font-weight: 700;
    color: #0F2270;
}
.table-block .cart-instock-table, .table-block .cart-outstock-table {
    background: #FFFFFF;
    border: 1px solid #0F2270;
    border-radius: 8px;
    padding: 24px;
}
.table-block .cart-instock-table.table tfoot tr td, .table-block .cart-outstock-table.table tfoot tr td {
    text-align: left;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    padding-top: 16px;
}
.table-block .cart-instock-table.table tr:hover, .table-block .cart-instock-table.table thead, .table-block .cart-instock-table.table thead:hover, 
.table-block .cart-outstock-table.table tr:hover, .table-block .cart-outstock-table.table thead, .table-block .cart-outstock-table.table thead:hover {
    background-color: transparent;
    cursor: default;
    box-sizing: none;
}
.table-block .shipping-table {
    box-shadow: none;
}
.table-block .shipping-table.table td {
    padding: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}
.table-block .shipping-table.table tr td:last-child {
    text-align: right;
    padding-left: 71px;
}
.table-block .shipping-table.table tbody td, .table-block .shipping-table.table tfoot td {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    color: #333333;
    padding-top: 14px;
}
.table-block .user-table.table tfoot tr td {
    border: none;
    padding: 5px;
}
.table-block .user-table.table td {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 22px;
    color: #0F2270;
}
.table-block .user-table.table th {
    font-weight: 400;
}
.table-block .user-table td.user-status {
    /* min-width: 412px; */
    color: #00A510;
}
.table-block .user-table.table td.user-delete {
    min-width: 48px;
}
.modal.order-summary-popup .table-block {
    margin-bottom: 0;
}
.modal .table-block .table.order-summary-popup-table tbody td:first-child {
    font-weight: 600;
}
.modal.order-summary-popup .modal-footer {
    padding: 21px 50px;
}
.modal .form-checkbox .checkmark, .modal .form-radio .checkmark {
    top: 50%;
    margin-top: -12px;
}
/* Overwrite CSS */
.create-btn {
    margin-bottom: 12px;
}
.filter-clear a, .filter-clear button {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
    padding-left: 20px;
}
.filter-clear a img, .filter-clear button img {
    margin-right: 5px;
}
.order-filter-block .filter-clear {
    margin-top: 7px;
}
.order-filter-block .filter-clear .btn {
    padding: 12px 8px;
}
.account-form .form-group.email:before {
    display: none;
}
.table-block {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.table-responsive {
    display: inline-table;
    overflow: unset;
}
.outstock-popup .table-block, .cart-shipping-block .table-block {
    display: block;
    overflow: unset;
}
.outstock-popup .table-responsive.outstock-table, .cart-shipping-block .table-responsive { 
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.shopping-cart-block .shopping-cart .checkout-inner {
    display: block !important;
}
.left-nav .menu-items {
    margin-bottom: 12px;
    display: none;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
}
.left-nav .hamburger-icon {
    margin-right: 8px;
}
.left-nav .hamburger-icon span {
    width: 24px;
    height: 3px;
    background-color: #333333;
    margin: 6px 0;
    display: block;
}
.left-nav .menu-items p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 31px;
    font-weight: 500;
    margin: 0;
}
.order_history_table .table-responsive.your-order-table, .order-history-items .table-block .table-responsive.your-order-table, 
.reorder_list_table .table-responsive.your-order-table {
    width: 100% !important;
}
.order_history_table .table-responsive.your-order-table thead th:last-child, .order_history_table.table-block .your-order-table.table td.product-btns {
/*    text-align: center;*/
}
.reorder_list_table .table-responsive.your-order-table tbody tr {
    height: 57px;
}
.reorder_list_table .table-responsive.your-order-table tr.nested-row .product-btns button {
    display: initial;
}
.table-block .table-responsive tr.nested-row td.nested-table-data {
    padding: 0 !important;
}
.order-history-details .top-block {
    margin: 12px 0;
}
.order-history-details .top-block .left-content-block p {
    margin: 0;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    color: #333333;
}
.order-history-summary-details {
    padding: 34px 38px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 12px #5b6db933;
    border-radius: 8px;
}
.order-history-summary-details .table-block thead th {
    background-color: #0F2270;
}
.order-history-summary-details .table-block .table {
    box-shadow: none;
}
.order-history-summary-details .block-item.shipping-details h4 {
    background-color: #0F2270;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0.03em;
    color: #F5F5F5;
    white-space: nowrap;
    padding: 11px 12px 10px;
    border-radius: 8px;
}
.order-history-summary-details .block-item.shipping-details p {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0.03em;
    color: #0F2270;
    white-space: normal;
    width: 50%;
    padding: 4px 13px;
}
.order-history-summary-details .block-item.shipping-details p span {
    display: block;
}
.block-item.shipping-details .items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.block-item.shipping-details .items p:last-child {
/*    text-align: right;*/
}
.order-history-items td.item-name img {
    max-width: 32px;
    min-width: 32px;
    margin-right: 15px;
}
.reorder_list_table td.item-image img {
    max-width: 32px;
    min-width: 32px;
    margin-right: 15px;
}
.order-history-items .table-block .form-group .form-checkbox {
    margin: 0;
}
.order-history-items .order_list_content tr {
    height: 50px;
}
.your-orders .title-block h2 i {
    margin-right: 12px;
    font-size: 32px;
    color: #FFFFFF;
    background-color: #5B6DB9;
    padding: 2px 12px;
    border-radius: 8px;
    position: relative;
    transition: all 0.5s ease;
}
.your-orders .title-block h2 a:hover i {
    background-color: #1c3a59;
    transition: all 0.5s ease;
}
.order_history_table.table-block .your-order-table.table td.product-delivery-date, .order_history_table.table-block .your-order-table.table td.product-btns {
    min-width: inherit;
}
.order_history_table .your-order-table.table tbody tr {
    height: 44px;
}
.order_history_table .your-order-table.table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
.order_history_table .your-order-table.table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}
.table-block .table-responsive tr.nested-row td.nested-table-data table {
    box-shadow: none;
}
.form-filter .form-group .form-control {
    font-size: 14px;
    font-weight: 500;
    color: #0F2270;
}
.form-filter .date-range {
    position: relative;
}
.form-filter .date-range:before {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: 7px;
    background-image: url(/assets/images/calendar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.nested-row.collapsing {
    transition: none;
}
.cart-shipping-block .cart-instock-table td:last-child, .cart-shipping-block .cart-outstock-table td:last-child, 
.cart-shipping-block .cart-instock-table tfoot tr td:last-child, .cart-shipping-block .cart-outstock-table tfoot tr td:last-child, 
.cart-shipping-block .cart-instock-table th:last-child, .cart-shipping-block .cart-outstock-table th:last-child {
    text-align: right;
}
.view-icon {
    margin-right: 2px;
    background-color: #5B6DB9 !important;
    border-radius: 8px;
    padding: 4px;
    padding-bottom: 2px;
}
.view-icon i {
    color: #FFFFFF;
    font-size: 14px;
    width: 15px;
    height: 15px;
}
tfoot {
    border-top: 1px solid rgba(0,40,100,.12);
}
.table-block .checkout-table.table td.product-quantity {
    min-width: 86px;
}
.table-block .checkout-table.table button[data-tooltip]:before {
    display: none;
}
.table-block .checkout-table.table button[data-tooltip]:hover:before {
    display: block;
}
/*.app-body .sidebar.sidebar-pills {
    flex: 0 0 292px;
}
.sidebar .sidebar-nav, .sidebar .sidebar-scroll {
    width: 100%;
}
.sidebar .nav {
    width: 100%;
}
.left-nav {
    min-width: inherit;
    margin-right: 0;
}
.sidebar.sidebar-pills .nav-link.active, .sidebar.sidebar-pills .nav-link:hover {
    background-color: transparent;
}*/
/* Tooltip CSS */
button[data-tooltip] {
    border: none;
    background: none;
}
[data-tooltip] {
    position: relative;
    z-index: 2;
    cursor: pointer;
}
[data-tooltip]:before, [data-tooltip]:after {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}
[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 24px;
    left: 50%;
    margin-bottom: 0;
    margin-left: -80px;
    padding: 7px;
    width: 180px;
    border-radius: 8px;
    background-color: #1C3A59;
    color: #FFFFFF;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    line-height: 18px;
    white-space: normal;
}
[data-tooltip]:after {
    position: absolute;
    bottom: 20px;
    left: 50%;
    margin-left: -5px;
    width: 0;
    border-top: 5px solid #1C3A59;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    content: " ";
    font-size: 0;
    line-height: 0;
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}
.checkout-table.table button[data-tooltip]:before {
    margin-left: -125px;
    border-bottom-right-radius: 0;
    width: 130px;
}
.checkout-table.table button[data-tooltip]:after {
    margin-left: -3px;
    border-right: 3px solid transparent;
}
.table-block .cart-instock-table thead, .table-block .cart-outstock-table thead {
    box-shadow: none;
}
.cart-thanks-block .title-block-inner h3 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cart-thanks-block .title-block-inner h3 img {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}
.form-group.col-sm-12[bp-field-name="price_group"] {
    overflow: auto;
}
table.table.product-view input {
    background-clip: padding-box;
    background-color: transparent;
    border: 1px solid rgba(0,40,100,.12);
    border-radius: 3px;
    color: #506690;
    display: block;
    font-size: .9375rem;
    font-weight: 400;
    height: 2.375rem;
    line-height: 1.6;
    padding: 6px 12px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    width: 100%;
}
table.table.product-view td .input-group input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
table.table.product-view td.date-picker {
    position: relative;
}
table.table.product-view td.date-picker:before {
    content: "";
    position: absolute;
    right: 25px;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    background-image: url(/assets/images/calendar.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
table.table.product-view tr td:first-child {
    min-width: 140px;
}
table.table.product-view tr td:first-child input {
    width: max-content;
}
.top-block.download-block {
    justify-content: space-between;
}
.download-block .download-btn {
    padding: 8px 12px;
}
.download-block .download-btn i {
    margin-right: 5px;
}
.your-order-block .download-block .title-block.download-btn-block {
    min-width: inherit;
}
.update-btn {
    font-size: 14px;
    margin-left: 12px;
    padding: 7px 12px;
}
.order-management .item-name img {
    max-width: 14px;
    margin-right: 15px;
}
.order-management .form-checkbox {
    margin: 0;
}
.admin_block .order-history-summary-details {
    padding: 12px;
}
.admin_block .order-history-summary-details .table-block thead th, .admin_block .order-history-summary-details .block-item.shipping-details h4 {
    background-color: transparent;
}
.admin_block .table-block .table td, .admin_block .order-history-summary-details .table-block thead th, .admin_block .order-history-summary-details .block-item.shipping-details h4 {
    color: #1b2a4e;
}
.admin_block .order-history-summary-details .block-item.shipping-details h4 {
    padding-left: 0;
}
.admin_block .table-block .table tr:hover {
    background-color: transparent;
}
.admin_block .table-block thead {
    box-shadow: none;
}
.product-popup .modal-body {
    text-align: center;
}
.product-popup .modal-body img {
    width: 80%;
}
.order-filter-block .title-block {
    width: 25%;
}
.order-filter-block .form-table-block {
    width: 100%;
    margin-top: 24px;
}
.order-filter-block .order-filter-form {
    margin-top: 0;
}
.order-filter-block .order-form-block, .order-filter-block .right-block-filter {
    width: 100%;
}
.order-filter-block .order-filter-form form.form-filter {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.order-filter-block .form-filter .form-group .form-control {
    min-width: 180px;
}
/* .order-filter-block .order-form-block {
    display: none;
} */
.order-filter-block .order-filter a {
    font-size: 12px;
    padding: 6px 12px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.order-filter-block .order-form-block {
    max-width: 100%;
}
.order-filter-block .order-filter i {
    color: #FFFFFF;
}
.order-filter-block .order-filter.active i.la-chevron-right, .order-filter-block .order-filter i.la-chevron-down {
    display: none;
}
.order-filter-block .order-filter.active i.la-chevron-down {
    display: block;
}
.order-filter-block .title-block {
    padding: 20px 0;
}
.order-filter-block .order-filter-form {
    padding: 12px 25px 9px;
}
.order-filter-block .filter-clear {
    display: block !important;
}
.order-filter-block .filter-clear a {
    font-size: 14px;
    color: #FFFFFF;
    padding: 10px 8px;
}
.order-filter-block .filter-clear i {
    color: #FFFFFF;
    font-size: 14px;
    position: relative;
    top: 1px;
    margin-right: 4px;
}
.order-filter-block .cart-product {
    min-width: 170px;
}
.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #5b6db9;
}
.property-navbar {
    padding: 12px 0;
}
.property-navbar .menu-items {
    display: none;
}
.menu-navbar .nav-list-item {
    display: flex;
    align-items: center;
    justify-content: start;
    max-width: 100%;
}
.menu-navbar .nav-list-item li {
    padding: 0;
    margin-bottom: 0;
    margin-right: 24px;
    transition: all 0.5s ease;
}
.menu-navbar .nav-list-item a {
    color: #FFFFFF;
    border: none;
    padding: 4px 6px;
    transition: all 0.5s ease;
}
.menu-navbar .nav-list-item li.active, .menu-navbar .nav-list-item li:hover {
    background-color: transparent;
    box-shadow: none;
}
.menu-navbar .hamburger-icon {
    margin-right: 8px;
}
.menu-navbar .hamburger-icon span {
    width: 20px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 4px 0;
    display: block;
}
.menu-navbar .menu-items p {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 24px;
    line-height: 26px;
    font-weight: 500;
    margin: 0;
}
.menu-navbar .nav-title {
    display: none;
    padding-bottom: 18px;
    margin-bottom: 18px;
    box-shadow: 0 1px 15px #cfcfcf70;
}
.menu-navbar .nav-title h5 {
    margin: 0;
    font-weight: bold;
}
#crudTable_wrapper #crudTable tr td:first-child, #crudTable_wrapper table.dataTable tr td:first-child {
    display: table-cell;
}
.order-management select {
    min-width: 120px;
}
.menu-navbar .nav-list-item li a img {
    margin-right: 5px;
    margin-top: -3px;
}
.menu-navbar .nav-list-item li a img.hover-image, .menu-navbar .nav-list-item li.active a img.default-image, 
.menu-navbar .nav-list-item li:hover a img.default-image {
    display: none;
    transition: all 0.5s ease;
}
.menu-navbar .nav-list-item li a img.default-image, .menu-navbar .nav-list-item li.active a img.hover-image, 
.menu-navbar .nav-list-item li:hover a img.hover-image {
    display: inline-flex;
    transition: all 0.5s ease;
}
.menu-navbar .nav-list-item li.active a, .menu-navbar .nav-list-item li:hover a {
    list-style-type: none;
    background-color: #FFFFFF;
    border-radius: 8px;
    color: #0F2270;
    transition: all 0.5s ease;
}
.product-install .form-group, .product-uncrate .form-group,  .product-haul .form-group, 
.item-install .form-group, .item-uncrate-set .form-group,  .item-haul-away .form-group {
    position: relative;
    top: 12px;
    min-height: 36px;
}
.item-install .form-group, .item-uncrate-set .form-group,  .item-haul-away .form-group {
    min-height: 24px;
}
.product-install .extra-price, .product-uncrate .extra-price, .product-haul .extra-price, 
.item-install .extra-price, .item-uncrate-set .extra-price, .item-haul-away .extra-price {
    display: block;
    text-align: center;
    margin-top: 2px;
    font-size: 10px;
}
.item-install .extra-price, .item-uncrate-set .extra-price, .item-haul-away .extra-price {
    text-align: left;
}
.order-history-items .item-install .extra-price, .order-history-items .item-uncrate-set .extra-price, .order-history-items .item-haul-away .extra-price, 
.table-summary-details .item-install .extra-price, .table-summary-details .item-uncrate-set .extra-price, .table-summary-details .item-haul-away .extra-price {
    text-align: center;
}
.order-history-items .item-install .form-checkbox .checkmark, .order-history-items .item-uncrate-set .form-checkbox .checkmark, .order-history-items .item-haul-away .form-checkbox .checkmark {
    left: 50%;
    margin-left: -12px;
}
.table-summary-details .table-block .table td {
    vertical-align: top;
}
.table-summary-details .item-install .form-group, .table-summary-details .item-uncrate-set .form-group, .table-summary-details .item-haul-away .form-group {
    position: relative;
    top: 4px;
    min-height: 24px;
    margin-bottom: 0;
}
.table-summary-details .item-install .extra-price, .table-summary-details .item-uncrate-set .extra-price, .table-summary-details .item-haul-away .extra-price {
    margin-top: 0;
}
.cart-place-order-block tr.empty-row td {
    height: 24px;
}
.product-cart-name.main-product a {
    font-weight: bold;
}
.order-summary-block th:nth-child(3), .order-summary-block .product-cart-price {
    min-width: 90px;
    text-align: right;
}
.cart-place-order-block .table-block .table tr:hover {
    background-color: transparent;
    cursor: default;
}
.delivery-location-details .delivery-change-location {
    max-width: 360px;
}
.delivery-location-details .delivery-change-location select {
    max-width: 100%;
    width: 100%;
    text-overflow: ellipsis;
    min-width: inherit;
}
.property-navbar .property-block form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
}
.property-navbar .property-block form .form-group {
    margin-bottom: 0;
}
.property-navbar .property-block form .form-group select {
    border: 1px solid #FFFFFF;
    box-shadow: 0px 3px 12px rgba(91, 109, 185, 0.1);
    border-radius: 4px;
    padding: 7px 9px;
    color: #FFFFFF;
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    background-color: transparent;
    height: auto;
    min-width: 240px;
}
/* .property-navbar .property-block form .form-group:not(:last-child) {
    margin-right: 12px;
    min-width: 360px !important;
} */
.property-navbar .property-block form .form-group {
    /* margin-top: 6px; */
    min-width: 360px !important;
    margin-bottom: 6px;
}
.property-navbar .select2-container .select2-selection {
    background-color: #5B6DB9;
    border: 1px solid #FFFFFF;
    box-shadow: inset 0px 4px 4px rgb(91 109 185 / 15%);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    min-height: 32px;
    padding: 7px 15px 7px 9px;
    width: 100% !important;
}
.property-navbar .select2-container .select2-selection .select2-selection__rendered, 
.property-navbar .select2-container--default .select2-search--dropdown .select2-search__field {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    color: #FFFFFF;
    padding: 0;
}
.property-navbar .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url(/assets/images/select-dropdown-white.svg);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 10px;
    top: 50%;
    margin-top: -14px;
    right: 0;
}
.property-navbar .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
.property-navbar .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #5B6DB90D;
    color: #0F2270;
    /*box-shadow: 0px 3px 12px rgba(91, 109, 185, 0.1);*/
    text-decoration: underline;
    text-underline-offset: 3px;
}
.property-navbar form .select2.select2-container.select2-container--focus {
    border: 1px solid #FFFFFF !important;
    max-height: 48px;
    box-shadow: none;
    outline: 0;
}
.property-navbar form .select2.select2-container.select2-container--focus, .property-navbar form .select2.select2-container.select2-container--open {
    box-shadow: none !important;
}
.property-navbar .property-block form .form-group button {
    background-color: #FFFFFF;
    border: 1px solid #5B6DB9;
    color: #0F2270;
}
.property-navbar .property-block form .form-group button:hover {
    background-color: #5B6DB9;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}
table.table.table-responsive.inner-table td, table.table.table-responsive.inner-table th {
    vertical-align: middle;
}
table.table.table-responsive.inner-table td.item-action i {
    background: #5B6DB9;
    color: #FFFFFF;
    padding: 5px;
    font-size: 12px;
    border-radius: 4px;
}
.product-detail-popup .modal-footer {
    flex-wrap: wrap;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: none !important;
    margin: 0;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin: 0;
    padding: 0;
}
.select-100 .select2-container {
    width: 100% !important;
}
.order-log-popup {
    padding: 0 !important;
}
.order-log-popup .modal-dialog {
    height: 100%;
    max-width: 920px;
}
.order-log-popup .table-block {
    max-height: 480px;
    overflow: auto;
    margin-bottom: 24px;
}
.order-log-popup .table-block .item-date {
    min-width: 200px;
}
.admin_order_sec {
    display: flex;
    align-items: center;
}
.search-date-filter {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
}
.search-date-filter .nav-link {
    display: block;
}
.search-date-filter .nav-link.invisible {
    display: none;
}
.daterangepicker.opensright:after, .daterangepicker.opensright:before {
    display: none;
}
.search-date-filter .form-group, .search-date-filter #crudTable_filter label {
    margin: 0;
}
.search-date-filter .left-pad {
    padding-left: 15px;
}
.search-date-filter .dataTables_filter input, .search-date-filter select.form-control, .search-date-filter input {
    border-radius: 25px !important;
    width: auto;
    min-width: 190px;
}
.search-date-filter #remove_filters_button .cancelBtn {
    font-size: 10px;
    padding: 6px;
}
.total_quantity img {
    margin-left: 5px;
}
.export-dropdown .dropdown-menu {
    margin-right: 0 !important;
    border: 1px solid #0F2270;
    padding: 0 !important;
    border-radius: 4px;
}
.export-dropdown .dropdown-item {
    min-width: 196px;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: #0F2270;
    padding: 5px 10px;
}
.export-dropdown .dropdown-menu li:not(:last-child) .dropdown-item {
    border-bottom: 1px solid #5B6DB91a;
}
.header-block .sales p {
	text-align: left;
}
#products-filter-form {
    display: block;
}
.filter-top-block, .filter-bottom-block {
    width: 100%;
}
.left-content-text-right .form-group {
    margin-bottom: 0;
    position: relative;
}
.left-content-text-right .form-group label {
    min-width: 190px;
}
.result-count {
    margin-right: 15px;
}
.result-count p {
    margin: 0;
}
.left-content-text-right .dropdown-menu.show {
    display: block;
    border: 1px solid #5B6DB9;
    border-radius: 4px;
}
.app-header .navbar-toggler {
    min-width: inherit;
}
.property-text-lg {
    display: block;
}
.property-text-md {
    display: none !important;
}
.cart-block.shipment-cart {
    width: 100%;
    padding-right: 0;
}
.cart-shipping-block .cart-block.shipment-cart .table-block .table {
    box-shadow: none;
}
.cart-shipping-block .cart-block.shipment-cart .table-responsive {
    display: inherit;
}
.cart-place-order-block #iframe-container #iframe {
    min-height: 280px !important;
}
.payment-summary .form-table-block {
    width: 100%;
}
.payment-summary .your-order-inner {
    margin-bottom: 24px;
}
.table-block .payment-summary-details.table td {
    border-radius: 0px;
}
.table-block .payment-summary-details.table tbody tr:first-child td:last-child {
    border-top-right-radius: 0px !important;
}
.table-block .payment-summary-details.table tbody tr:first-child td:first-child {
    border-top-left-radius: 0px !important;
}
.table-block .payment-summary-details.table thead th:first-child {
    border-bottom-left-radius: 0px;
}
.table-block .payment-summary-details.table thead th:last-child {
    border-bottom-right-radius: 0px;
}
#payment_summary .title-block h2, #new_shipments .title-block h2 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 12px;
}
.thankyou-text {
    margin: 5px 0 24px;
}
.title-block.thankyou-text h2 {
    font-size: 24px;
    line-height: 31px;
}
.print-download {
    width: 100%;
    text-align: center;
    max-width: max-content;
}
.customer_payment_summary .table-block .table tr:hover {
    background: #FFFFFF;
    cursor: default;
}
/*payment gateway iframe css*/
.shipments-table .checkbox-group label {
    margin: 0;
}
.table-block.custom-payment-form .table tr td:last-child {
/*    text-align: right;*/
    padding-left: 0px;
}
.custom-payment-form #cardholdername, .custom-payment-form #email, .custom-payment-form #street, .custom-payment-form #city, .custom-payment-form #state, .custom-payment-form #zip {
    background-color: #FFFFFF;
    margin-bottom: 12px;
    border: 1px solid #5B6DB9;
    border-radius: 4px;
    box-shadow: inset 0px 0px 0px 1px #5B6DB9, inset 0px -4px 4px rgba(91, 109, 185, 0.15);
    color: #000000;
}

.title-block-inner-payment{
/*    padding-top: 20px;*/
    border-bottom: 1px solid rgba(0,40,100,.12);
}
#make-payment-form{
    margin-bottom: 12px;
}
.order-total p{
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    color: #333333;
}
.order-total{
    padding-top: 12px;
}
.order-total div:last-child p {
    text-align: right;
}
.tooltip-btn {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    cursor: pointer;
}
.tooltip-btn img {
    max-width: 16px;
}
/* Responsive CSS */
@media (max-width: 1500px) {
    .left-nav {
        min-width: 292px;
        margin-right: 57px;
    }
    /* .table-block .table td.product-status {
        min-width: 220px;
    } */
    .reorder-block .filter-items li {
        min-width: 154px;
    }
    .reorder-block .filter-items li a, .reorder-block .filter-items li button {
        padding: 27px 32px 23px;
    }
    .table-block .table td.product-delivery-date {
        min-width: 214px;
    }
    /* .create-orders .table-block .table td.product-delivery-date {
        min-width: 200px;
    } */
    .createorder-block .filter-items li {
        min-width: 135px;
        max-width: 135px;
    }
    /* .new-orders .table-block .table td.product-description {
        max-width: 330px;
        min-width: 330px;
    } */
    /* .new-orders .table-block .table td.product-status {
        min-width: 120px;
    } */
    /* .new-orders .table-block .table td.product-quantity {
        min-width: 180px;
    } */
    .shopping-cart-block .right-content-block {
        min-width: 160px;
    }
    .checkout-table-block .table-block .table td.product-status {
        min-width: inherit;
    }
    .checkout-table-block {
        padding: 46px 22px;
    }
    .cart-block {
        padding-right: 56px;
    }
    .account-block {
        width: 69%;
    }
    /* .table-block .user-table td.user-status {
        min-width: 318px;
    } */
    /* .new-orders .table-block .table td.product-status {
        min-width: 172px;
    } */
    .table-block .cart-instock-table.table td.product-cart-price, .table-block .cart-outstock-table.table td.product-cart-price {
        min-width: inherit;
    }
    .order-filter-block .top-block .top-right-block {
        width: 70%;
        margin-left: auto;
    }
    .order-summary-block th:nth-child(3), .order-summary-block .table-block .table td.product-cart-price {
        min-width: 90px;
    }
    .property-navbar .property-block {
        width: 48%;
        margin-left: auto;
    }
    .property-navbar .property-block p {
        text-align: right;
    }
    .order-log-popup .table-block .table td {
        white-space: nowrap;
    }
}
@media (max-width: 1400px) {
    /* .table-block .table td.product-delivery-date {
        min-width: 248px;
    } */
    .your-order-block .form-table-block, .create-orders .form-table-block {
        overflow-x: auto;
    }
    .shopping-cart-block .right-content-block {
        min-width: 100px;
    }
    .checkout-table-block {
        overflow-x: auto;
    }
    .breadcrumb-list li {
        min-width: 188px;
    }
    .delivery-method {
        max-width: 200px;
    }
    .delivery-location {
        padding: 0 30px 100px;
    }
    .delivery-info {
        max-width: 350px;
    }
    .table-block .cart-instock-table.table td.product-cart-price, .table-block .cart-outstock-table.table td.product-cart-price {
        min-width: 82px;
    }
    .cart-block {
        padding-right: 46px;
    }
    .account-block {
        width: 65%;
    }
    /* .table-block .user-table td.user-status {
        min-width: 332px;
    } */
    .breadcrumb-block {
        flex: 1;
        max-width: 860px;
        margin-left: auto;
    }
    .account-block {
        flex: 1;
    }
    .order-summary-block th:nth-child(3), .order-summary-block .table-block .table td.product-cart-price {
        min-width: 102px;
    }
}
@media (max-width: 1280px) {
    .table-block .table td.product-delivery-date {
        min-width: inherit;
    }
    .customer-property-block {
        padding: 160px 0;
    }
    .reorder-block .filter-block, .createorder-block .createorder-filter-block {
        overflow-x: auto;
    }
    .reorder-block .filter-items, .createorder-block .filter-items {
        white-space: nowrap;
        display: inline-block !important;
        overflow-x: auto;
    }
    .reorder-block .filter-items li, .createorder-block .filter-items li {
        display: inline-block;
    }
    .login-wrapper .form-wrapper {
        /*margin: 135px 42px;*/
        margin: 42px;
    }
    .cart-block {
        padding-right: 46px;
    }
    .shipping-block {
        padding-right: 0px;
    }
    .cart-place-order-block {
        min-width: inherit;
        /* max-width: 340px; */
        padding: 24px;
        /* margin-left: 24px; */
    }
    .cart-shipping-block {
        padding: 34px 30px 0;
    }
    .cart-block {
        padding: 0;
    }
    .cart-shipping-block {
        display: block !important;
        /* min-width: 700px; */
    }
    /* .table-block .user-table td.user-status {
        min-width: 194px;
    } */
    .propertiy-item {
        min-width: 356px;
    }
    .delivery-location {
        min-width: 360px;
    }
    table.table.product-view input {
        width: max-content;
    }
    .property-block {
        width: 42%;
        margin-left: auto;
    }
    .property-navbar .property-block {
        width: 38%;
    }
    .search-date-filter .dataTables_filter input, .search-date-filter select.form-control, .search-date-filter input {
        min-width: 180px;
    }
}
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
    }
    .header-block .left-block {
        width: 40%;
    }
    .header-block .right-block {
        width: 60%;
    }
    /* .app-header.header-block .navbar-brand {
        max-width: 150px;
    } */
    /* .app-header.header-block .navbar-brand img {
        width: 100%;
    } */
    /* .info-msg {
        padding-left: 20px;
    } */
    .customer-property-block {
        padding: 120px 0;
    }
    .quick-reorder-block, .your-order-block, .create-order-block {
        padding-bottom: 120px;
    }
    .login-wrapper .form-wrapper {
        /*margin: 82px 42px;*/
        margin: 42px;
        padding: 32px;
    }
    .breadcrumb-block {
        margin-bottom: 24px;
    }
    .delivery-location {
        border: none;
        padding-left: 0;
        padding-right: 60px;
    }
    .cart-shipping-block {
        min-width: inherit;
    }
    .account-block {
        width: 60%;
    }
    .table-block .user-table td.user-status {
        min-width: inherit;
    }
    .right-content-table {
        overflow-x: auto;
    }
    .breadcrumb-block {
        flex: 1 0 100%;
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }
    .breadcrumb-list {
        justify-content: space-between;
    }
    .cart-order-place-block {
        padding-bottom: 80px;
    }
    .propertiy-item {
        padding: 28px;
        min-width: 268px;
    }
    .delivery-location {
        min-width: inherit;
    }
    .order-history-summary-details .block-item  {
        margin-bottom: 24px;
    }
    .table-block .table td.product-quantity.cart-display {
        min-width: 200px;
    }
    .property-block {
        width: 100%;
        margin-left: auto;
        margin-top: 12px;
    }
    .property-block p {
        text-align: left;
    }
    .property-navbar .property-block form {
        justify-content: flex-start;
    }
    .property-navbar .property-block {
        width: 100%;
    }
    .property-navbar .property-block p {
        text-align: left;
    }
    .search-date-filter {
        flex-wrap: wrap;
    }
    .search-date-filter #datatable_search_stack {
        width: 100%;
        margin-bottom: 12px;
    }
    .header-block .sales p {
		font-size: 18px;
	    line-height: 12px;
		text-align: left;
	}
    .property-text-lg {
        display: none;
    }
    .property-text-md {
        display: block !important;
    }
    .sales {
        width: 90%;
    }
}
@media (max-width: 1080px) {
    .order-filter-block .title-block, .order-filter-block .top-block .top-right-block {
        width: 100%;
    }
    .new-order-block .right-content-block p {
        padding-left: 0;
    }
    .order-filter-block .order-form-block {
        max-width: 100%;
    }
    .order-filter-block .order-filter-form form.form-filter {
        flex-wrap: wrap;
    }
    .filter-top-block, .filter-bottom-block {
        justify-content: flex-start !important;
    }
}
@media (max-width: 996px) {
    .header-block .search-block, .header-block .user-block, .header-block .cart-block {
        position: relative;
        margin-right: 15px;
    }
    .customer-property-block {
        padding: 80px 0;
    }
    .order-block-item {
        padding: 56px;
    }
    .order-form-block, .form-table-block {
        width: 100%;
        margin-bottom: 32px;
    }
    .order-filter-form form.form-filter, .create-orders .order-filter-form form.form-filter {
        max-width: 100%;
    }
    .create-orders .order-filter-form .form-group .form-control {
        width: 94%;
    }
    .order-filter-form {
        margin-top: 0;
    }
    .create-orders .order-filter-form {
        padding: 0;
    }
    /* .cart-shipping-block {
        width: 100%;
        margin: 0;
    } */
    .account-block {
        width: 100%;
    }
    .user-account-block .account-form, .user-account-block .account-personal-info {
        max-width: 100%;
    }
    .cart-order-place-block {
        padding-bottom: 65px;
    }
    .propertiy-item {
        min-width: 250px;
    }
    .order-filter-block .order-form-block {
        margin-bottom: 0;
    }
    .right-block-results {
        margin-bottom: 12px;;
    }
    .app-header {
        z-index: unset;
    }
}
@media (device-width: 992px) {
    .cart-place-order-block {
        margin-top: 0px;
        margin-left: 24px;
    }
}
@media (max-width: 992px) {
    .app-header .navbar-brand {
        left: 0;
        margin-left: 0;
        position: unset;
        top: 0;
    }
    .cart-place-order-block {
        margin-left: 0;
        max-width: 100%;
    }
    .order-log-popup .table-block .item-date {
        min-width: inherit;
    }
    .order-log-popup .modal-dialog {
        max-width: 768px;
    }
    .search-date-filter .collapse:not(.show) {
        display: block;
    }
    .search-date-filter .nav.navbar-nav.filter-block {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row;
    }
    .cart-shipping-block {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .cart-place-order-block {
        margin-top: 24px;
    }
}
@media (max-width: 962px) {
    .customer-property-block .customer-block, .customer-property-block .property-block {
        margin-right: 0;
        margin-bottom: 32px;
        width: 100%;
    }
    .reorder-block .filter-items li {
        min-width: 138px;
    }
    .reorder-block .filter-items li a, .reorder-block .filter-items li button {
        padding: 23px;
    }
    .create-orders .order-filter-form .form-group .form-control {
        width: 90%;
    }
    .login-wrapper .form-wrapper {
        margin: 32px;
        margin-top: -80%;
        max-width: 100%;
    }
    .breadcrumb-list li {
        min-width: 165px;
    }
    .delivery-location-details input, .delivery-location-details select, .delivery-location-details textarea {
        min-width: inherit;
        width: 100%;
    }
    .cart-thanks-block {
        width: 100%;
        max-width: 100%;
        padding: 32px;
        margin-bottom: 24px;
        margin-right: 0;
    }
    .account-block {
        flex: 1 0 100%;
    }
    .select2-container {
        width: 100% !important;
    }
    .header-block .search-block-mobile {
        display: block;
    }
    .header-block .search-block.web {
        display: none;
    }
    .header-block .user-block a.nav-link span {
        display: none;
    }
    .left-nav {
        margin-right: 0;
        width: 100%;
    }
    .nav-list-item {
        max-width: 100%;
        width: 100%;
    }
    .left-nav .menu-items {
        display: inline-flex;
    }
    .left-nav .menu-item-list {
        display: none;
        background: #FFFFFF;
        padding: 32px;
        padding-bottom: 16px;   
        border-radius: 8px;
        text-align: left;
    }
    .left-nav {
        min-width: inherit;
        margin-right: 0px;
        margin-bottom: 12px;
    }
    .order-filter-block .order-filter-form form.form-filter {
        flex-wrap: wrap;
    }
    .order-filter-block .order-filter-form .form-group {
        width: 46%;
    }
    .order-filter-block .filter-clear a {
        margin-bottom: 18px;
    }
    /* .order-filter-block .order-filter-form .form-group:nth-child(odd) {
        margin-right: 24px;
        width: 45%;
    } */
    .menu-navbar .menu-items {
        display: inline-flex;
    }
    .menu-navbar .menu-item-list {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        background: #FFFFFF;
        height: 100%;
        z-index: 1031;
        min-width: 250px;
        box-shadow: 0 1px 15px #cfcfcf70;
    }
    .menu-navbar .nav-title, .menu-navbar .nav-list-item {
        display: block;
        padding: 20px;
    }
    .menu-navbar .nav-list-item li {
        margin-right: 0;
        padding-bottom: 24px;
    }
    .menu-navbar .nav-list-item a {
        color: #333333;
        text-align: left;
        padding: 8px;
    }
    .menu-navbar .nav-list-item li a img.hover-image, .menu-navbar .nav-list-item li.active a img.hover-image, 
    .menu-navbar .nav-list-item li:hover a img.hover-image {
        display: inline-flex;
        transition: all 0.5s ease;
    }
    .menu-navbar .nav-list-item li a img.default-image, .menu-navbar .nav-list-item li.active a img.default-image, 
    .menu-navbar .nav-list-item li:hover a img.default-image {
        display: none;
        transition: all 0.5s ease;
    }
    .property-navbar .property-block {
        width: 60%;
        margin-left: auto;
    } 
    .property-navbar .property-block p {
        text-align: right;
        margin-bottom: 12px;
    }
    .property-navbar .property-block form {
        justify-content: flex-end;
    }
    .property-navbar .select2-container .select2-selection .select2-selection__rendered {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 340px;
    }
}
@media (max-width: 820px) {
    .header-block .left-block {
        width: 60%;
    }
    .header-block .right-block {
        width: 40%;
    }
    .delivery-location, .delivery-info {
        min-width: 50%;
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 64px 0;
    }
    .info-msg button {
        margin-top: 15px;
    }
    .order-block-item {
        padding: 48px;
    }
    .order-block-item a {
        padding: 24px;
    }
    .order-block-item .block-inner {
        margin-bottom: 24px;
    }
    .filter-block-items {
        flex-wrap: wrap !important;
    }
    .filter-title {
        margin-bottom: 24px;
    }
    .reorder-filter-items {
        margin-left: 0;
    }
    .table-block .table tfoot tr td a, .table-block .table tfoot tr td button {
        min-width: inherit;
    }
    .your-order-block .title-block, .create-order-block .title-block, .new-order-block .title-block {
        min-width: inherit;
    }
    .reorder-block .filter-block {
        padding-left: 0;
    }
    .quick-reorder-block, .your-order-block, .create-order-block, .shopping-cart {
        padding-bottom: 64px;
    }
    .createorder-block .filter-title {
        max-width: 100%;
    }
    .createorder-filter-block {
        padding: 24px;
    }
    .modal-header, .modal.outstock-popup .modal-header {
        padding: 32px;
    }
    .modal .modal-body {
        padding: 0 32px;
    }
    .modal-footer {
        padding: 32px;
    }
    .modal .modal-dialog {
        margin-left: 15px;
        margin-right: 15px;
    }
    .register-wrapper .form-wrapper {
        padding: 40px;
    }
    .breadcrumb-list li {
        margin-bottom: 12px;
    }
    .checkout-inner-block, .delivery-location-details {
        display: block !important;
    }
    .delivery-location, .delivery-info {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 24px;
    }
    .delivery_location p { 
        max-width: 100%;
    }
    .delivery-info {
        margin: 0;
    }
    .delivery-change-location a, .delivery-change-location button {
        padding: 0;
    }
    .cart-shipping-block {
        padding: 24px;
    }
    .cart-place-order-block {
        padding: 24px;
    }
    .user-account-block .right-content {
        padding: 32px;
    }
    .p-r-0 {
        padding-right: 15px;
    }
    .cart-order-place-block {
        padding: 34px;
    }
    .header-block .user-block a.nav-link {
        padding: 10px;
    }
    /* .checkout-inner {
        padding: 20px
    } */
    .checkout-table-block .table-block .table tfoot tr td a, .checkout-table-block .table-block .table tfoot tr td button {
        min-width: inherit;
    }
    .header-block .user-block a.nav-link img {
        margin: 0;
    }
    .header-block .cart-block .view-cart {
        padding: 10px;
    }
    .header-block .cart-block .view-cart img {
        width: 20px;
        height: 20px;
    }
    .header-block .cart-block .view-cart span:last-child {
        width: 18px;
        height: 15px;   
        line-height: 15px;
    }
    .property-navbar .property-block form .form-group button {
        margin-top: 0;
    }
    .cart-shipping-block {
        width: 100%;
        margin-right: 0px;
    }
    .cart-place-order-block {
        width: 100%;
        margin-top: 24px;
    }
}
@media (max-width: 640px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 56px 0;
    }
    .order-block-item {
        padding: 40px;
    }
    .quick-reorder-block, .your-order-block, .create-order-block, .shopping-cart {
        padding-bottom: 56px;
    }
    .create-orders .order-filter-form .form-group a, .create-orders .order-filter-form .form-group button {
        width: 10%;
    }
    .login-wrapper .form-wrapper {
        margin-top: -90%;
    }
    .user-filter-block, .user-search-block {
        margin-bottom: 12px;
        width: 100%;
        margin-right: 0;
    }
    .user-search-block .search-block input {
        width: 100%;
    }
    .search-filter {
        flex: 1 0 100%;
    }
    .propertiy-item {
        min-width: inherit;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
    }
    .customer-property-block .block-item select.form-control {
        min-width: inherit;
    }
    .order-filter-block .order-filter-form .form-group {
        width: 44%;
    }
    .property-block {
        width: 100%;
        margin-top: 24px;
    }
    .property-block a {
        margin-top: 16px;
        margin-left: unset;
        margin-right: auto;
    }
    .delivery-instructions [data-tooltip]:before {
        left: unset;
        right: 0;
    }
}
@media (max-width: 576px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 48px 0;
    }
    .order-block-item a {
        max-width: 100%;
    }
    .order-block-item {
        padding: 32px;
    }
    .info-msg p, .info-msg p span {
        line-height: 28px;
    }
    .reorder-block .title-block h2 {
        margin-bottom: 15px;
    }
    .reorder-block .title-block, .your-order-block .title-block, .create-order-block .title-block, .new-order-block .title-block, .shopping-cart-block .title-block {
        padding-left: 0;
        padding: 24px 0;
    }
    .reorder-block .title-block p {
        padding-left: 0;
    }
    .your-order-block .title-block, .create-order-block .title-block, .new-order-block .title-block, .shopping-cart-block .title-block {
        padding-bottom: 10px;
        width: 100%;
    }
    .your-order-block .right-content-block p, .new-order-block .right-content-block p, .shopping-cart-block .right-content-block p, .order-history-details .top-block .left-content-block p {
        margin-bottom: 24px;
        padding-left: 0;
    }
    .create-order-block .right-content-block p, .create-order-block .right-content-block.filter-clear a {
        margin-bottom: 0px;
        padding-left: 0px;
    }
    .create-order-block .right-content-block.filter-clear a, .create-order-block .right-content-block.filter-clear button { 
        padding-left: 20px;
    }
    .create-order-block .top-block {
        margin-bottom: 24px;
    }
    .quick-reorder-block, .your-order-block, .create-order-block, .shopping-cart {
        padding-bottom: 48px;
    }
    .modal .table-block .table-title, .cart-shipping-block .table-block .table-title {
        position: unset;
        margin-bottom: 12px;
    }
    .register-wrapper .form-wrapper {
        padding: 32px;
    }
    .breadcrumb-list li {
        min-width: 100%;
    }
    .deliver-footer {
        text-align: center !important;
    }
    .deliver-footer a {
        min-width: inherit;
    }
    .left-nav {
        min-width: inherit;
        margin-right: 0px;
    }
    .left-nav .menu-item-list {
        padding: 16px;
    }
    .order-history-summary-details {
        padding: 24px;
    }
    .order-filter-block .order-filter-form .form-group, .order-filter-block .order-filter-form .form-group:nth-child(odd) {
        width: 100%;
        margin-right: 0px;
    }
    .order-filter-block .right-content-block p {
        margin-bottom: 0;
    }
    .modal-footer {
        padding: 24px;
    }
    .property-navbar .property-block {
        width: 100%;
        margin-left: auto;
        margin-top: 12px; 
    } 
    .property-navbar .property-block p {
        text-align: left;
        margin-bottom: 12px;
    }
    .property-navbar .property-block form {
        justify-content: flex-start;
    }
    .search-date-filter .dataTables_filter input, .search-date-filter select.form-control, .search-date-filter input, 
    .search-date-filter .form-group, .search-date-filter #crudTable_filter label {
        width: 100%;
    }
    .search-date-filter .left-pad {
        padding-left: 0;
        width: 100%;
        margin-bottom: 12px;
    }
    .search-date-filter .nav.navbar-nav.filter-block li {
        width: 100%;
        justify-content: flex-start;
    }
    .header-block {
/*		height: 100%;*/
	}
	.header-block .sales p {
	    line-height: 20px;
	    margin-top: 0px;
	}
    .left-content-text-right, .right-content-text-right {
        width: 100%;
    }
    .jumbotron h1.display-3 {
        font-size: 2rem;
    }
}
@media (max-width: 490px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 40px 0;
    }
    .quick-reorder-block, .your-order-block, .create-order-block, .shopping-cart {
        padding-bottom: 40px;
    }
    .modal-header h5 span {
        display: block;
        margin: 6px 0;
    }
    .modal-footer button.btn-primary {
        min-width: inherit;
    }
    .login-wrapper .form-wrapper {
        margin: 15px;
        margin-top: 15px;
    }
    .login-banner {
        display: none;
    }
    .header-block .search-block-mobile .search-block-inner input {
        min-width: inherit;
    }
    .header-block .left-block {
        width: 40%;
    }
    .header-block .right-block {
        width: 60%;
    }
    .header-block .sales p {
        font-size: 16px;
        line-height: 16px;
    }
    .order-filter-block .right-content-block p, .right-block.order-filter {
        margin-top: 15px;
    }
    .order-filter-block .filter-clear a {
        margin-bottom: 0px;
    }
    .deliver-footer a, .deliver-footer button {
        min-width: inherit;
        width: 100%;
    }
}
@media (max-width: 420px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 32px 0;
    }
    .customer-property-block .block-item {
        padding: 32px;
    }
    .quick-reorder-block, .your-order-block, .create-order-block, .shopping-cart {
        padding-bottom: 32px;
    }
    .modal .table-block .table-title p {
        display: flex;
        align-items: flex-start;
    }
    .header-block .search-block-mobile {
        position: unset;
    }
    .header-block .search-block-mobile .search-block-inner {
        right: 15px;
    }
    .property-navbar .property-block form .form-group select {
        min-width: inherit;
        width: 100%;
    }
    .property-navbar .property-block form {
        display: block;
    }
    .property-navbar .property-block form .form-group button {
        text-align: center;
    }
    .property-navbar .property-block form .form-group:not(:last-child) {
        min-width: inherit !important;
    }
}
@media (max-width: 380px) {
    .create-orders .order-filter-form .form-group .form-control {
        width: 100%;
    }
    .property-navbar .select2-container .select2-selection .select2-selection__rendered {
        width: auto;
    }
    .property-navbar .property-block form .form-group {
        min-width: inherit !important;
    }
    .header-block .sales p {
        font-size: 14px;
        line-height: 14px;
    }
}
@media (max-width: 340px) {
    .customer-property-block, .order-block, .register-wrapper {
        padding: 24px 0;
    }
    .order-block-item {
        padding: 24px;
    }
    .register-wrapper .form-wrapper {
        padding: 24px;
    }
    .header-block .right-block {
        flex-wrap: nowrap !important;
    }
    .header-block .sales p {
        font-size: 16px;
        line-height: 15px;
    }
    [data-tooltip]:before {
        margin-left: -170px;
    }
}
@media (min-width: 940px) {
    .header-block .search-block-mobile {
        display: none;
    }
    .header-block .search-block.web {
        display: block;
    }
    .table-block::-webkit-scrollbar, .outstock-popup .table-responsive.outstock-table::-webkit-scrollbar {
        width: 5px;
        height: 8px;
    }
    .table-block::-webkit-scrollbar-track, .outstock-popup .table-responsive.outstock-table::-webkit-scrollbar-track {
        background: #FFFFFF;
        border-radius: 8px;
    }
    .table-block::-webkit-scrollbar-thumb, .outstock-popup .table-responsive.outstock-table::-webkit-scrollbar-thumb {
        background: #5B6DB9;
        border-radius: 8px;
    }
    .table-block::-webkit-scrollbar-thumb:hover, .outstock-popup .table-responsive.outstock-table::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}
@media (min-width: 962px) {
    .menu-navbar .nav-title {
        display: none !important;
    }
}
@media (min-width: 992px) {
    html:not([dir=rtl]) .sidebar {
        margin-left: 0 !important;
    }
}
@media (min-width: 1360px) {
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1442px) {
    .reorder-block .filter-items li {
        margin-right: 10px;
        min-width: 168px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1360px;
    }
    .breadcrumb-block {
        flex: 1;
        max-width: 860px;
    }
}
@media (min-width: 1720px) {
    .cart-shipping-block {
        min-width: inherit;
    }
}