:root{
  --errorBackground: rgb(242, 116, 116);
  --errorBorder:     rgb(255, 0, 0);

  --optionSuccess: rgb(14, 165, 0);
  --optionWarning: rgb(225, 255, 0);
  --optionError: rgb(209, 1, 1);

  --selectDisabled: rgb(126, 126, 126);
  --inputRequired: rgb(255, 0, 0);

  --dpDashedBorder: rgb(0, 13, 202);

  --cardBorder: rgb(0, 17, 255);
  --cardTextColor: #000;
  --cardPrice: #ADD8E6;
  --cardRooms: #000;
  --cardSelectedBorder:rgb(3, 252, 3);
  --cardSelectedBack: rgba(1, 65, 1, 0.76);
  --cardNoSelectedBack: rgba(144, 145, 145, 0.8);
  --cardHoverBack: #000;
  --cardHoverText: #fff;
  --cardImgHoverBack: #fff;
  --cardImgHoverBorder:rgb(255, 0, 0);

  --markerBackground: #c30b82;
  --markerBackBefore: #ffffff;
  --mapNotesBackground: rgba(77, 75, 75, 0.664);
  --mapWarningNote: rgb(255, 0, 0);

  --textareaBorder: #ddd;
  --textareaColor: #666;
  --textareaBox: #ddd;
  --textareaFocusBorder: #d0d0d0;
  --textareaFocusBox: #d0d0d0;
  --textareaPlaceholder: #666;

  --counterBackground: #888686;

  --galleryImgBorder: #fff;

  --imgProfileBorder: #000;

  --countdown: rgb(255, 0, 0);

  --rowRed: #ff000045;
  --rowGreen: #23ff0045;
  --rowYellow: #ffee0045;
  --rowPurple: #7800ff45;

  --tableHeader: #96a0df85;
  --tableHeaderBorder: #96a0df;

  --black: black;
  --blue: blue;
  --gren: green;
  --purple: purple;
  --red: red;
  --white: white;
}

body{
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.errorDivInit{
  position: fixed;
  top: 20px;
  z-index: 9999;
}
.errorInit{
    display: none;
}
.errorMsg{
    background-color: var(--errorBackground);
    border-color:     var(--errorBorder);
}
.disbtn{
	pointer-events: none;
}
.info-Listing{
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}
@media screen and (max-width: 425px){
  .info-Listing{
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}
.officeName, .errorName{
  font-weight: bold;
  text-Decoration: underline;
}
li span{
  display: inline-block;
  vertical-align: middle;
}
a i{
  color: var(--white);
}
.hr_90{
  max-width: 90%;
  margin-left: 5%;
}
.hr_70{
  max-width: 70%;
  margin-left: 15%;
}
.hr_50{
  max-width: 50%;
  margin-left: 25%;
}
.hr_Blue{
  background: var(--blue);
}
.hr_Red{
  background: var(--red);
}
.hr_Green{
  background: var(--green);
}
.hr_Purple{
  background: var(--purple);
}
.optionSuccess{
  background: var(--optionSuccess);
}
.optionWarning{
  background: var(--optionWarning);
}
.optionError{
  background: var(--optionError);
}
.errorSuccess{
  color: var(--optionSuccess);
  display: inline-block;
}
.errorWarning{
  color: var(--optionWarning);
  display: inline-block;
}
.errorError{
  color: var(--optionError);
  display: inline-block;
}
.borderSuccess{
  border-left: 2px solid var(--optionSuccess);
  border-top: 2px solid var(--optionSuccess);
  padding-left: 5px;
}
.borderWarning{
  border-left: 2px solid var(--optionWarning);
  border-top: 2px solid var(--optionWarning);
  padding-left: 5px;
}
.borderError{
  border-left: 2px solid var(--optionError);
  border-top: 2px solid var(--optionError);
  padding-left: 5px;
}
.rowError{
  margin-bottom: 15px;
}
.rowBottomError{
  border-bottom: 1px dashed var(--black);
  padding-bottom: 10px;
}
.row90{
  max-width: 90%;
  margin-left: 5%;
}
.btn-zoom:hover{
  transform: scale(1.10);
}
.btn-zoom-big:hover{
  transform: scale(1.20);
}
select:required:invalid{
  color: var(--selectDisabled);
}
option[value=""][disabled]{
  display: none;
}
input:required, select:required, textarea:required, div.requiredDiv, ul.requiredDiv{
  border-bottom-color: var(--inputRequired);
}
textarea{
  float: left;
  width: 100%;
  min-height: 75px;
  outline: none;
}
.chbxlb{
  margin-right: 10px;
}
.dashed{
  border: 2px dashed var(--dpDashedBorder);
  border-radius: 5px;
  min-height: 150px;
  padding: 20px 20px;
  background: var(--white);
}
.inp90{
  width: 90%;
  margin-left: 5%;
}
.cardL{
  color: var(--cardTextColor);
  transition: all 1s ease-in-out 0s;
  border: 2px dashed var(--cardBorder);
  cursor: pointer;
  min-height: 150px;
  margin-bottom: 10px;
}
.cardSelected{
  border: 2px solid var(--cardSelectedBorder);
  background-color: var(--cardSelectedBack);
  cursor: default;
}
.cardNoSelected{
  background-color: var(--cardNoSelectedBack);
}
.cardL-info{
  padding: 1rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 2rem;
      grid-template-rows: 1fr 2rem;
  -ms-grid-columns: 3fr 1fr;
      grid-template-columns: 3fr 1fr;
}
.cardL-address, .cardL-name{
  font-size: 2rem;
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.cardL-price, .cardL-maxRent{
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  justify-self: right;
  width: auto;
  height: 30px;
  background-color: var(--cardPrice);
  border-radius: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-column-align: center;
      justify-items: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.cardL-town, .cardL-bedTenant{
  grid-row: 2 / 3;
  grid-column: 1 / 2;
  -webkit-align-self: bottom;
      -ms-flex-item-align: bottom;
              -ms-grid-row-align: bottom;
          align-self: bottom;
}
.cardL-rooms, .cardL-people{
  -webkit-align-self: bottom;
      -ms-flex-item-align: bottom;
              -ms-grid-row-align: bottom;
          align-self: bottom;
  justify-self: right;
}
.cardL-rooms i, .cardL-people i{
  color: var(--cardRooms);
}
.cardL-img{
  /*max-width: 300px;
  max-height: 100px;*/
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
  height: 150px;
  transition: all 1s ease-in-out 0s;
}
.cardL:hover:not(.cardSelected), .cardL:hover:not(.cardSelected) .cardL-price, .cardL:hover:not(.cardSelected) .cardL-maxRent,
.cardL:hover:not(.cardSelected) .cardL-rooms i, .cardL:hover:not(.cardSelected) .cardL-people i{
  background-color: var(--cardHoverBack);
  color: var(--cardHoverText);
}
.cardL:hover:not(.cardSelected) img{
  -ms-transform: scale(2,2);
   -webkit-transform: scale(2,2);
   transform: scale(2,2);
   background-color: var(--cardImgHoverBack);
   border: solid 1px var(--cardImgHoverBorder);
}
.disbtn{
	pointer-events: none;
}
.btns{
  display: flex;
  justify-content: center;
}
.container .gallery a img{
  float: left;
  width: 20%;
  height: auto;
  border: 2px solid var(--galleryImgBorder);
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
  position: relative;
}
.container .gallery a:hover img{
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}
.clear{
  clear: both;
  float: none;
  width: 100%;
}
.colmarg10{
  margin-left: 10px;
}
.text{
  color: var(--white);
}
.infoName{
  font-weight: bold;
  text-Decoration: underline;
  font-size: large;
  text-transform: uppercase;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button{
  -webkit-appearance: none;
  margin: 0;
}
input[type=number]{
  -moz-appearance: textfield;
}
#mapAdd, #mapEdit{
  min-height: 400px;
  height: auto;
}
.marker-icon{
  background-position: center;
  background-size: 22px 22px;
  border-radius: 50%;
  height: 22px;
  left: 4px;
  position: absolute;
  text-align: center;
  top: 3px;
  transform: rotate(45deg);
  width: 22px;
}
.marker-icon-rent{
  background-image: url(../img/temp/For\ Rent.jpg);
}
.marker-icon-sale{
  background-image: url(../img/temp/For\ Sale.jpg);
}
.marker{
  height: 30px;
  width: 30px;
}
.marker-content{
  background: var(--markerBackground);
  border-radius: 50% 50% 50% 0;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  width: 30px;
}
.marker-content::before{
  background: var(--markerBackBefore);
  border-radius: 50%;
  content: "";
  height: 24px;
  margin: 3px 0 0 3px;
  position: absolute;
  width: 24px;
}
.mapNotes{
  background-color: var(--mapNotesBackground);
  border-radius: 15px;
  color: var(--white);
  text-align: center;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.mapLatLng input{
  cursor: not-allowed;
}
#warningFoundAdd, #warningFoundEdit{
  background-color: var(--mapWarningNote);
}
textarea, .textarea{
  width: 100%;
  min-height: 100px;
  resize: vertical;
  border-radius: 8px;
  border: 1px solid var(--textareaBorder);
  color: var(--textareaColor);
  box-shadow: inset 0 0 0.25rem var(--textareaBox);
  font-style: normal;
  color: var(--black);
  overflow-y: auto;
}
textarea, .textarea:not(ul){
  padding: 0.5rem;
}
.textarea:is(ul){
  padding: 10px 30px;
}
.txtareaDIV{
  display: none;
}
textarea:focus, .textarea:focus{
  outline: none;
  border: 1px solid var(--textareaFocusBorder);
  box-shadow: inset 0 0 0.5rem var(--textareaFocusBox);
}
textarea::-webkit-input-placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
}
textarea:-moz-placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
  opacity: 1;
}
textarea::-moz-placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
  opacity: 1;
}
textarea:-ms-input-placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
}
textarea::-ms-input-placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
}
textarea::placeholder{
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
}
div .textarea:empty:before{
  content:attr(data-placeholder);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--textareaPlaceholder);
}
.inputCounter{
  float: right;
  font-size: 0.875rem;
  background-color: var(--counterBackground);
  padding: 3px 4px;
  margin-top: 5px;
  border-radius: 5px;
  color: var(--white);
}
.counterMax{
  transform: scale(1.2);
}
table thead, table tbody, table tfoot{
  text-align: center;
}
.img-profile{
  border: 1px solid var(--imgProfileBorder);
}
.img-profile:hover{
  transform: scale(1.3);
}
#countdown{
  text-align: center;
  font-size: 2em;
  color: var(--countdown);
}
.colAddPeople{
  max-width: 90%;
  margin-left: 5%;
}
.repeatAddP{
  background-color: var(--errorBackground);
  border-color:     var(--errorBorder);
}
.fullW{
  width: 100%;
}
.rowGreen{
  background-color: var(--rowGreen);
}
.rowRed{
  background-color: var(--rowRed);
}
.rowYellow{
  background-color: var(--rowYellow);
}
.rowPurple{
  background-color: var(--rowPurple);
}
.btnTable{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#btnReset, #btnReset2, #btnReset4{
  color: var(--white);
}
.btnTable:hover{
  color: var(--white);
  border: solid 1px var(--black);
  transform: scale(1.1);
  text-decoration: underline;
}
.btnTableSelected{
  border-bottom: solid 2px var(--red);
  padding-bottom: 5px;
}
.btnTableNoSelected{
  transform: scale(0.7);
}
#errorInfoTable tbody td{
  font-weight: normal;
  
  text-align: center;
  vertical-align: middle;
}
.responsiveTable{
  overflow-x: auto;
}
.tableSucces{
  background-color: var(--optionSuccess);
  min-height: 50px;
}
.tableWarning{
  background-color: var(--optionWarning);
  min-height: 50px;
}
.tableError{
  background-color: var(--optionError);
  min-height: 50px;
}
.table thead tr, .table tfoot tr{
  background-color: var(--tableHeader);
}
.table thead th{
  border-bottom: solid 7px var(--tableHeaderBorder);
}
.table tfoot th{
  border-top: solid 7px var(--tableHeaderBorder);
}

#loading {
  position:fixed;
  width:100%;
  left:0;right:0;top:0;bottom:0;
  background-color: rgba(255,255,255,0.7);
  z-index:9999;
  display:none;
}
@-webkit-keyframes spin {
  from {-webkit-transform:rotate(0deg);}
  to {-webkit-transform:rotate(360deg);}
}
@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}
#loading::after {
  content:'';
  display:block;
  position:absolute;
  left:48%;top:40%;
  width:40px;height:40px;
  border-style:solid;
  border-color:black;
  border-top-color:transparent;
  border-width: 4px;
  border-radius:50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite;
}

/*.blue-background-class{
  background-color: #C8EBFB;
}
.filtered{
  background-color: red;
  color: white;
}

.nested-1{
  background-color: green;
  border-style: solid;
  border-bottom-color: white;
}
.nested-2{
  background-color: yellow;
  border-style: solid;
  border-bottom-color: green;
}
.nested-3{
  background-color: navy;
  border-style: solid;
  border-bottom-color: yellow;
}
.nested-3 .nested-sortable{
  display: none;
}

.nested-sortable{
  min-height: 10px;
  background-color: white;
}


.save{
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

.blue-Background{
  background-color: lightblue;
}



*/
