/* ============ GENERAL ==============================================================================
====================================================================================================*/


html :where(img) {
    height: auto;
    max-width: 100%;
}

html {
   height: 100% !important;
    margin: 0px !important; 
}

body,html {
  /* height: 100%; */
  position: relative;
  margin: 0px;
}

body {
  position: relative;
  /* background-color: #edf1f2 !important; */
}

button.defualtBTN {
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.marketPlaceWrap {
    padding-top: 10px;
    background-color: transparent;
}

.marketPlaceWrap::before {
    content: "";
    background-image: url('../blinc-assets/bg-marketP.webp');
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.16;
    background-repeat: no-repeat;
    filter: blur(0px);
    z-index: -1;
    background-size: cover;
}
.marketPlaceWrap::after {
    content: "";
    background-color: #5f5754;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
}

.no-results {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 280px);
}
.no-results p {
    position: relative;
    text-align: center;
    font-size: 20px;
}

/* ============ SVG PROPERTIES =====================================================================
====================================================================================================*/

svg .svgUnits {
    fill: transparent;
    stroke: #000000;
    stroke-width: 6px;
    transition: all 0.4s;
}




svg .svgUnits.activeSVG:hover,
svg .svgUnits:hover {
    fill: rgb(0 0 0 / 55%);
    stroke: #000000;
    stroke-width: 2px;
    transition: all 0.4s;
}

svg .svgUnits.activeSVG {
    fill: rgb(216 174 14 / 70%);
    stroke: #5f5754;
    stroke-width: 3px;
    transition: all 0.4s;
}

svg .svgUnits.outofstock.confirmSold-no{
    fill: #d73905c2;
}

svg .svgUnits.outofstock.confirmSold-no:hover{
     fill: rgb(255 0 0 / 86%);
}

svg .svgUnits.outofstock {
    fill: rgb(232 16 16 / 46%);
}

svg .svgUnits.outofstock:hover{
    fill: rgb(255 0 0 / 65%);
}

/* ============ IMAGE PROPERTIES =====================================================================
====================================================================================================*/

img[data-object-fit="contain"] {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}

img[data-object-fit*="cover"] {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}




