html, body {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif !important;
}

.property-canvas-wrapper {
    position: relative;
    width: fit-content;
    /* border: solid 1px red; */
}

.property-canvas-wrapper .logo-decal{
    width: 100%;
    max-width: 180px;
    position: absolute;
    left: 30px;
    top: 30px;
    filter: brightness(0%);
}

@media screen and (max-width: 767px) {
    .property-canvas-wrapper .logo-decal{
        max-width: 140px;
        left: 20px;
        top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .property-canvas-wrapper .logo-decal{
        max-width: 100px;
        left: 10px;
        top: 10px;
    }
}

.property-canvas-wrapper .southbay-overlay {
    background-color: #383924;
    opacity: .7;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 2;
}

canvas.southbay-canvas {
    border: solid 1px #000;
    cursor: crosshair;
    background: url("../img/render-bg-canvas.jpg") no-repeat;
    background-size: cover;
    background-position: center center;
    display: block;
}

canvas.southbay-canvas:active {
    cursor: grabbing;
}

.detail-modal-lot {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  width: 100%;
  max-width: 300px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  -webkit-box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 0px 12px 9px rgba(0,0,0,0.15);
  z-index: 99;
  border-radius: 0px 0px 0px 0px;
}

.detail-modal-lot.disabled-lot-modal {
  display: none !important;
}

.detail-modal-lot .img-pre-head{
  position: relative;
}

.detail-modal-lot .img-pre-head img{
  width: 100%;
  border-radius: 0px 0px 0px 0px;
}

.detail-modal-lot .img-pre-head .close-lot-modal{
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 99;
  background: #ffffff;
  text-decoration: none;
  color: #000;
}

.detail-modal-lot .lot-modal-head{
  padding: 14px 14px 14px;
  background: #f1f1f1;
}

.detail-modal-lot .lot-modal-head.available-tag{
  background: #bbd54c;
  color: #000000 !important;
  margin-top: -5px;
}

.detail-modal-lot .lot-modal-head.reserved-tag{
  background: #d5b04c;
  color: #000000 !important;
  margin-top: -5px;
}

.detail-modal-lot .lot-modal-head.sold-tag{
  background: #b72530;
  color: #ffffff !important;
  margin-top: -5px;
}

.detail-modal-lot .lot-modal-head h3{
  font-weight: 300;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0px;
}

.detail-modal-lot .lot-modal-head h3 span{
  font-weight: 900 !important;
  font-size: 25px;
}

.detail-modal-lot .lot-modal-body{
  padding: 20px 20px 2px;
  height: 100%;
  border-bottom: solid 1px #eeeeee;
}

.detail-modal-lot .lot-modal-body .platename-initial{
  margin-bottom: 10px;
}

.detail-modal-lot .lot-modal-body .platename-initial h3{
  font-weight: 300;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0px;
}

.detail-modal-lot .lot-modal-body .platename-initial h3 span{
  font-weight: 900 !important;
  font-size: 25px;
}

.detail-modal-lot .lot-modal-body .record-info{
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 15px;
  line-height: 18px;
}

.detail-modal-lot .lot-modal-body .record-info .labeled {
    font-size: 12px;
}

.detail-modal-lot .lot-modal-footer{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.detail-modal-lot .lot-modal-footer.group-flex{
  flex-direction: column;
  gap: 14px;
}

.detail-modal-lot .lot-modal-footer .download-trigger{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(95,98,73,1);
  width: 100%;
  width: -webkit-fill-available;
  padding: 12px 12px;
  text-decoration: none;
}

.detail-modal-lot .lot-modal-footer .download-trigger:hover{
  background: rgb(63, 66, 47);
}

.detail-modal-lot .lot-modal-footer .download-trigger.slim{
  border: solid 2px rgba(95,98,73,1);
  background: #ffffff;
  color: rgba(95,98,73,1);
}

.detail-modal-lot .lot-modal-footer .download-trigger.slim:hover{
  border: solid 2px rgb(63, 66, 47);
  background: rgb(63, 66, 47);
  color: #ffffff;
}
