﻿.bg-macaroni {
    background: -moz-linear-gradient(90deg, #ed6a5a 0%, #f4f1bb 100%);
    background: -webkit-linear-gradient(90deg, #ed6a5a 0%, #f4f1bb 100%);
    background: -o-linear-gradient(90deg, #ed6a5a 0%, #f4f1bb 100%);
    background: -ms-linear-gradient(90deg, #ed6a5a 0%, #f4f1bb 100%);
    background: linear-gradient(90deg, #ed6a5a 0%, #f4f1bb 100%)
}

.bg-caribbean {
    background: -moz-linear-gradient(90deg, #5ca4a9 0%, #e6ebe0 100%);
    background: -webkit-linear-gradient(90deg, #5ca4a9 0%, #e6ebe0 100%);
    background: -o-linear-gradient(90deg, #5ca4a9 0%, #e6ebe0 100%);
    background: -ms-linear-gradient(90deg, #5ca4a9 0%, #e6ebe0 100%);
    background: linear-gradient(90deg, #5ca4a9 0%, #e6ebe0 100%)
}

.post figure {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 0;
}

.post img,
.post video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-bshadow {
  border-radius: 5px;
  box-shadow: 0 0 8px rgb(66, 181, 116) !important;
}

.gm-style-iw-a{
  position: fixed !important;
  left: 50px !important;
  top: -20px !important;
}

.gm-style-iw-d{
  position: fixed !important;
  background-color: #FFFFFF;
  padding: 10px;
  width: 250px;
}


.close-bottom-sheet {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.show-modal {
  outline: none;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 10px 22px;
  transition: 0.3s ease;
}
.bottom-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.1s linear;
  z-index: 1000;
}
.bottom-sheet.show {
  opacity: 1;
  pointer-events: auto;
}
.bottom-sheet .sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background: #000;
}
.bottom-sheet .content {
  width: 100%;
  position: relative;
  background: #fff;
  height: 95vh !important;
  max-width: 1150px;
  padding: 25px 30px;
  transform: translateY(100%);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}
.bottom-sheet.show .content{
  transform: translateY(0%);
}
.bottom-sheet.fullscreen .content {
  border-radius: 0;
  overflow-y: hidden;
}

.bottom-sheet .body::-webkit-scrollbar {
  width: 0;
}
.bottom-sheet .body h2 {
  font-size: 1.8rem;
}
.bottom-sheet .body p {
  margin-top: 20px;
  font-size: 1.05rem;
}

@media (max-width: 1200px) {
  .fs-30{
    font-size: 30px !important;
  }
}
@media (min-width: 320px ) and (max-width: 480px) {
  .rd-navbar-brand {
    display: flex !important;
    justify-content: center !important;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .product-title{
    height: 60px;
  }
  .icon-xxs.icon-rounded{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
}
@media (min-width: 320px ) and (max-width: 768px) {
  .post-boxed .post-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 30px;
    z-index: 1
  }
  .post-boxed .post-body {
    position: absolute;
    right: 30px;
    left: 15px;
    bottom: 15px;
    z-index: 1;
    color: #FFFFFF;
  }
  .post-boxed::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, rgb(25, 25, 25), rgba(0, 0, 0, 0));
    background-repeat: repeat-x;
  }
  h1, h2, h3, h4, h5, h6, p, span {
    line-height: 1;
  }
}




