
body {
  font-family: 'Nunito', sans-serif, "Helvetica Neue",Arial, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

h2 {
  font-size: 20px;
  font-weight: 700;
}

h3 sub {
  font-size: 42%;
}

.ajax_spinner {
    display: none;
}

.ajax_loader_out {
    float: left;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 2000;
}

.ajax_loader_in {
    float: left;
    width: 100%;
    height: 100%;
}

.ajax_loader_in .ajax_loader_center {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-top: -35px;
    width: 50px;
    height: 50px;
}

.ajax_loader {
  border: 6px solid #f3f3f3;
  border-radius: 50%;
  border-top: 6px solid #3db2bc;
  border-bottom: 6px solid #3db2bc;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*.login-card-body .input-group .form-control, 
.register-card-body .input-group .form-control {
     border-right-width: 1px; 
}

select:not(:last-child), 
.input-group>.form-control:not(:last-child) {
     border-top-right-radius: .25rem; 
     border-bottom-right-radius: .25rem; 
}*/

.monetary_symbol {
  color: #bd2130;
}

.form-group label {
  width: 100%;
  float: left;
}

.form-group label .small_txt {
  font-size: 12px;
}

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 5px;
}

.form-control {
  height: calc(2.1rem + 2px);
  padding: .375rem .75rem;
  font-size: 13px;
}

.yes_no_radio input[type="radio"] {
    position: absolute;
    visibility: hidden;
    /*display: none;*/
}

.yes_no_radio label {
    color: #8C8C8C;
    float: left;
    display: inline-block;
    font-size: 11px;
    padding: 6px 10px;
    cursor: pointer;
    margin-bottom: 0;
    width: 100px;
    text-align: center;
    border: solid 1px #DDDDDD;
    border-right: 0px;
}

.yes_no_radio label:nth-child(2) {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.yes_no_radio label:last-child {
    border: solid 1px #DDDDDD;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.yes_no_radio input[type="radio"]:checked+label {
    color: #FFF;
    background: #007bff;
    border-color: #3D85F9;
    border-right: solid 1px #3D85F9;
}

.yes_no_radio label+input[type="radio"]+label {
    border-left: solid 1px #DDDDDD;
}

.yes_no_radio.radio-group {
    float: left;
    width: 100%;
    overflow: hidden;
}

.yes_no_radio_group.has-danger .yes_no_radio label {
    border-color: #d72b3f;
}

.common_modal .select2-container,
.col-md-6 .select2-container,
.col-md-3 .select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ced4da;
    height: calc(2rem + 2px);
    padding: .375rem .75rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 13px;
}

.select2-container--default .select2-results>.select2-results__options {
  font-size: 13px;
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus {
  border-color: #80bdff !important;
  box-shadow: none !important;
}

.select2-selection.select2-selection--single {
  box-shadow: none !important; 
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  font-size: 11px;
  text-transform: capitalize;
}
  
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

:focus {
  outline: none;
  outline: 0;
  outline-width: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input.error,
select.error,
textarea.error {
    /*border-color: #EE001C;*/
    border-color: #bd2130;
    background-image: none;
}

select.form-control:not([size]):not([multiple]).error {
    border-color: #bd2130;
}

input.valid,
select.valid,
textarea.valid {
    background-image: none;
    background-color: rgba(0, 0, 0, 0);
}

select.form-control:not([size]):not([multiple]).valid {
    background-color: transparent;
}

.has-danger .select2-container--default .select2-selection--single {
  border-color: #bd2130 !important
}

.alert_message_list ul {
  padding: 0 20px;
  margin: 0;
}

textarea.form-control {
  height: 80px;
  resize: none;
}

.form-error {
  font-size: 13px;
}

.btn {
  font-size: 14px;
  padding: 5px 13px;
}

.btn.disabled, .btn:disabled {
  pointer-events: none !important;
}

.form-check {
  width: 100%;
  float: left;
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 13px !important;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  background-color: transparent;
  border: 1px solid #999;
  margin-top: 0px;
}

.form-check:hover input ~ .checkmark {
  border-color: #2196F3;
}

.form-check input:checked ~ .checkmark {
  background-color: #2196F3;
  border-color: #2196F3;
}

.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form-check input:checked ~ .checkmark:after {
  display: block;
}

.form-check .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.card {
    box-shadow: 0 0 1px rgb(0 0 0 / 5%);
    margin-bottom: 1rem;
    border: 1px solid rgb(0, 0, 0, 0.2);
}

.card-header {
  padding: 7px 15px;
}

.card-header .card-title {
  float: left;
  font-size: 14px;
  font-weight: 600;
  margin: 5px 0 0 0;
}

.card-body {
  padding-bottom: 10px;
}

.add_new_link {
  font-size: 13px;
}

.alert_wrapper {
  width: 100%;
  float: left;
  padding: 0 20px;
}

.alert_wrapper .alert {
  margin-top: 10px;
  font-size: 14px;
  padding: .6rem 1rem;
}

.login-logo {
  margin-bottom: 25px;
}

.login-logo img {
  width: 230px;
}

.login-box .alert_container .alert-web {
  display: none;
}

.main-header .brand {
  width: 50%;
  float: left;
  padding-left: 0;
}

.main-header .brand-image {
  width: 90px;
}

.navbar-nav-main {
  width: 70%;
  float: none;
  text-align: center;
}

.navbar-nav-main ul {
  float: none;
  display: inline-block;
}

.navbar-nav-main ul li {
  float: none;
  display: inline-block; 
}

.navbar-light .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-item.active > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: #3db2bc;
  font-weight: 700;
}

.navbar-link-right {
  width: 50%;
  float: left;
}

.navbar-link-right ul {
  float: right;
}

.navbar-link-right ul li.nav-item .dropdown-item,
.navbar-link-right .dropdown-item {
  font-size: 14px;
}

.navbar-link-right .dropdown-divider {
  margin: 2px 0;
}

.navbar-nav .nav-link img {
  width: 40px;
  margin-top: -8px
}

.sidebar-dark-primary .nav-sidebar>.nav-item>.nav-link.active, 
.sidebar-light-primary .nav-sidebar>.nav-item>.nav-link.active {
  border-radius: 0;
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link {
  border-radius: 0;
}

.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active, 
.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active:focus, 
.sidebar-dark-primary .nav-treeview>.nav-item>.nav-link.active:hover {
    background-color: transparent;
    color: rgba(255,255,255,1);
}

.main-sidebar, 
.main-sidebar::before {
    transition: margin-left .3s ease-in-out,width .3s ease-in-out;
    width: 170px;
}

.main-sidebar .nav-sidebar>.nav-item .nav-icon.fas {
  font-size: 14px;
}

.main-sidebar .nav-sidebar .nav-item>.nav-link {
  font-size: 14px;
  font-weight: 700;
  padding: .4rem .65rem;
}

.main-sidebar .nav-sidebar .nav-treeview>.nav-item>.nav-link {
  font-size: 13px;
  font-weight: 600;
  padding: .4rem .65rem;
}

.nav-sidebar .nav-treeview>.nav-item>.nav-link>.nav-icon {
  font-size: 10px;
}

.sidebar {
  padding-left: 0;
  padding-right: 0;
}

/*@media (min-width: 768px) {  */
body:not(.sidebar-mini-md) .content-wrapper, 
body:not(.sidebar-mini-md) .main-footer, 
body:not(.sidebar-mini-md) .main-header {
    transition: margin-left .3s ease-in-out;
    margin-left: 0;
}
/*}*/

/*
body:not(.sidebar-mini-md) .content-wrapper, 
body:not(.sidebar-mini-md) .main-footer, 
body:not(.sidebar-mini-md) .main-header {
  margin-left: 0 !important;
}*/

.table thead {
  background-color: rgba(0,0,0,.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: transparent;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: rgba(0,0,0,.03);
}

.content-container {
  width: 100%;
  float: left;
  position: relative;
}

.content-wrapper.m-left {
    transition: margin-left .3s ease-in-out; 
    margin-left: 170px !important;
}

.content-wrapper {
  padding: 0 10px;
  background-color: #fdfdfd;
}

.content-header h1 {
  font-size: 20px;
  font-weight: 700
}

.table-bordered thead td, 
.table-bordered thead th {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
}

.table-bordered tbody td,
.table-bordered tfoot td {
  font-size: 14px;
  line-height: 1.2em;
}

.error_modal_wrapper .icon_modal_close {
    float: left;
    width: 20px;
    height: 20px;
    background: url(/img/icon_modal_close.svg);
    background-size: 12px 12px;
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.common_modal .modal-dialog {
    max-width: 500px;
}

.common_modal .modal-body {
    position: relative;
    padding: 20px 25px;
}

.common_modal .form_modal_container {
    float: left;
    width: 100%;
}

.common_modal .button_container {
  padding-top: 10px;
}

.common_modal .button_container .btn {
  padding-left: 20px;
  padding-right: 20px;
}

#forgot_password_user .modal-dialog {
    max-width: 480px;
}

.modal_alert_wrapper {
    float: left;
    width: 100%;
}

.modal_alert_wrapper .alert {
    margin-top: 10px;
    font-size: 14px;
    padding: .6rem 1rem;
}

.form_modal_container .modal_caption {
    float: left;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #131313;
    margin-bottom: 5px;
}

.form_modal_container .modal_text {
    float: left;
    width: 100%;
    font-size: 15px;
    color: #131313;
    margin-bottom: 15px;
}

.form_modal_container .btn_blue {
    float: left;
    width: 100%;
}

.form_modal_container .icon_modal_close {
    float: left;
    width: 20px;
    height: 20px;
    background: url(/img/icon_modal_close.svg);
    background-size: 12px 12px;
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 5px;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.confirm_modal.modal {
    z-index: 1060;
}

.confirm_modal .modal-dialog {
    min-width: 500px;
}

.confirm_modal .modal_footer_new {
    width: 100%;
    float: left;
    border-top: none;
    padding: 5px 25px 25px 25px;
}

.confirm_modal .modal_footer_new .btn {
  min-width: 110px;
}

.confirm_modal .modal_footer_new .btn-primary {
    margin-right: 20px;
}

.confirm_modal .modal-body {
    padding: 25px;
    padding-bottom: 0;
    text-align: left;
}

.btn_edit {
  width: 20px;
  height: 20px;
  float: none;
  text-align: center;
  /*font-size: 13px;*/
  margin-right: 12px;
}

/*.btn_edit i {
  font-size: 13px;
  margin-right: 3px
}*/

.btn_delete {
  width: 20px;
  height: 20px;
  float: none;
  text-align: center;
  /*font-size: 13px;*/
  color: #bd2130;
  /*padding: 6px 14px;*/
}

/*.btn_delete i {
  font-size: 13px;
  margin-right: 3px
}*/

.btn_delete:hover {
  color: #bd2130; 
}

.btn_invoice_cancel {
  color: #bd2130;
  font-size: 13px;
  font-weight: 700 !important;
}

.btn_invoice_cancel:hover {
  color: #bd2130;
}

.pagination_wrapper {
  width: 100%;
  float: left;
  padding-top: 5px;
}

.pagination_wrapper .box_pagination {
  float: right;
}

.pagination_wrapper .box_pagination ul li.prev, 
.pagination_wrapper .box_pagination ul li.next {
  display: none;
}

.pagination_wrapper .box_pagination ul li a.page-link {
  font-size: 12px;
  padding: 6px ​10px !important;
}

.table_container .btn-xs {
  width: auto;
  display: inline;
  font-size: 14px;
  padding: 2px 7px;
  margin: -4px 0;
}

.search_box_out {
  width: 265px;
  float: right;
  margin-bottom: 20px;
}

.search_box_out label {
  width: 60px;
  float: left;
  padding-top: 7px;
}

.search_box_out .search_box {
  width: 205px;
  float: left;
}

.back_to_link {
  font-size: 15px;
  font-weight: 600;
}

.tfoot td {
  font-size: 14px;
  font-weight: 700;
}

.view_link {
  font-weight: 700;
}

.add_amend_po {
  display: none;
}

.btn_reset_hide {
  display: none;
}

.disabled-select {
  background-color:rgba(233,236,239,0.4);
  border-radius:3px;
  cursor:not-allowed;
  position:absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
}

.list_property table th, 
.list_property table td{
  width: 7%;
  padding: 15px 12px;
}

.list_property table th:nth-child(1) {
  width: 10%;
}

.list_property table th:nth-child(2) {
  width: 13%;
}

.list_property .view_link {
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
}

.list_property .title {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.list_property .text_link {
  float: none;
  display: inline-block;
  font-size: 13px;
  margin:0 5px;
}

.validate_text {
  color: #bd2130;
  font-size: 14px;
  text-align: right;
  display: none;
}

.textarea_editor_out .note-editor.note-frame.card {
  margin-bottom: 0;
}

.textarea_editor_out h1,
.textarea_editor_out h2,
.textarea_editor_out h3,
.textarea_editor_out h4,
.textarea_editor_out h5,
.textarea_editor_out h6 {
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
}

.textarea_editor_out p {
  font-size: 15px;
}

.textarea_editor_out .note-fontname,
.textarea_editor_out .note-para, 
.textarea_editor_out .note-color, 
.textarea_editor_out .note-table, 
.textarea_editor_out .note-insert, 
.textarea_editor_out .note-view button:nth-child(3){
  display: none;
}

.textarea_editor_out .textarea_editor {
  height: 200px;
  padding: 10px;
}


.table_container .detail_expand {
  width: 100%;
  float: none;
  display: none;
}

.error_txt {
  width: 100%;
  float: left;
  font-size: 12px;
  color: #bd2130;
  display: none;
  margin-top: 4px;
}

.col-lg-3 .small-box h3, 
.col-md-3 .small-box h3, 
.col-xl-3 .small-box h3 {
  font-size: 30px;
}

.custom-file-image {
  width: 100%;
  float: left;
  position: relative;
}

.custom-file-image span {
  width: 100%;
  float: left;
  cursor: pointer;
  color: #007bff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
}

.custom-file-image #imgInp,
.custom-file-image #property_logo,
.custom-file-image #virtual_image,
.custom-file-image #location_image,
.custom-file-image #featured_image {
  visibility: hidden;
  width: 0;
  height: 0;
}

.custom-file-view {
  width: 100%;
  float: left;
  display: none;
  cursor: pointer;
}

.custom-file-view img {
  width: 100%;
  float: left;
}

.gallery_section .file-caption.form-control {
  height: calc(2rem + 1px);
  margin-right: -2px;
}

.gallery_section .file-caption .file-caption-icon {
  top: 9px;
}

.gallery_section .file-caption .file-caption-name {
  line-height: 22px;
}

.gallery_section .gallery-box {
  width: 100%;
  float: left;
}

.gallery_section .gallery-box .gallery-image-edit {
  width: 33.33%;
  float: left;
  padding: 10px;
  position: relative;
}

.gallery_section .gallery-box .gallery-image-edit button{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 14px;
    padding: 2px 6px;
}

.gallery_section .gallery-box .gallery-image-edit button i {
  font-size: 12px;
}

.gallery_section .gallery-box .gallery-image-edit img {
  width: 100%;
}

.gallery_section .gallery-box #gallaryimageupload, 
.gallery_section .gallery-box #gallaryimageuploadmobile {
    display: none;
}

#bulk_import_modal label {
  width: 120px;
  height: 35px;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  background: #02a39c;
  padding:10px;
  color: white;
  font-weight: bold;
  border-radius: 0px 5px 5px 0px;
  cursor: pointer;
}
#bulk_import_modal .form-group_in {
  width: 100%;
  float: left;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}
#bulk_import_modal #selectedFile {
  opacity:0;
  position:absolute;
  left: 0;
  top: 0;
  cursor: pointer;
}


.note_text {
  font-size: 12px;
  color: #bd2130;
  line-height: 15px;
}

.user_review_div span.approve_txt {
  display: inline-block;
  font-size: 12px;
  padding:4px 10px;
  border-radius: 4px;
}

.user_review_div span.danger_txt {
  font-size: 13px;
  font-size: 12px;
  padding:4px 10px;
  border-radius: 4px;
}

.dropdown_list .btn-sm {
  width: auto;
  padding:2px 15px !important;
  display: inline-block;
}

.dropdown_list .dropdown-toggle::after {
  position: relative;
  top: 3px;
}

.dropdown_list .dropdown-menu {
  min-width: 125px;
}

.dropdown_list .dropdown-menu a {
  font-size: 13px;
  font-weight: 600 !important;
}

.dropdown_list .dropdown-menu a:focus {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.dropdown_list .dropdown-menu a.btn_delete {
  color: #bd2130; 
}

.tox-notification--warning {
  display: none !important;
}

.user_enquery_list {
  overflow-x: auto;
}

.user_enquery_list table {
  width: 1600px;
}

.user_enquery_list::-webkit-scrollbar {
  height: 10px;
}
 
.user_enquery_list::-webkit-scrollbar-track {
  height: 10px;
  background-color: #cecece;
}
 
.user_enquery_list::-webkit-scrollbar-thumb {
  height: 8px;
  background-color: #aaa;
}

.media_upload {
  width: 100%;
  height: 130px;
  float: none;
  display: inline-block;
  border: 1px dashed #ccc;
  border-radius: 5px;
  padding: 10px 0px;
}

.media_upload .custom_file_image {
  width: 100%;
  height: 100%;
  float: none;
  display: inline-block;
  text-align: center;
  position: relative;
}

.media_upload .custom_file_image span {
  width: 100%;
  height: 100%;
  float: none;
  align-items: center;
  align-content: center;
  cursor: pointer;
  font-size: 16px;
  color: #acacac;
  padding: 50px 0;
  position: absolute;
  top: 0;
  left: 0;
}

.media_upload .custom_file_image #media_upload_file {
  visibility: hidden;
  width: 0;
  height: 0;
}

.list_media table th:nth-child(1) {
  width: 140px;
}
.list_media img {
  width: 100px;
}

.list_media .tooltip_text {
  position: relative;
  display: inline-block;
}

.list_media .tooltip_text .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.list_media .tooltip_text .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.list_media .tooltip_text:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}