﻿.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%)
}



.text-primary {
    color: #D5A021 !important;
}

.lang-tlab {
    padding: 0 16px;
    border-radius: 3px;
    letter-spacing: 0.06em;
    border: 1px solid #fff;
    backface-visibility: hidden;
}

.custom-container{
  background-color: #FFFFFFD6;
  max-width: 1000px;
  margin: 0 auto;
  height: auto;
  border-radius: 4px;
  margin-left: 5px !important;
  margin-right: 5px !important;
  z-index: 2;
}
.cards-section{
  position: relative;
  z-index: 10;
  transform: translateY(-45%);
}
.card-square{
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.3);
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.card-icon{
  width: 65px;
  height: 55px;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-width-bg{
  width: 100% !important;
  margin: 0 auto;
  background-size: cover;
  background-position: 0 0;
}

.custom-fg{
  background-color: #FFFFFFFF;
}

.custom-fg:focus{
  background-color: #FFFFFFFF;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000;
  transition: white 9999s ease-in-out 0s !important;
}
input,
input:focus,
select{
  background-color: white;
  outline: none;
}

.card-icon:hover{
  background-color: #D5A021;
}

.btn:hover{
  background-color: #D5A021 !important;
}

i:hover{
  color: #D5A021;
}

.card-desc h4:hover{
  color: #D5A021;
}


.comment {
  position: relative;
  margin-bottom: 120px;
}

.user-info {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.user-info img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.phone-numb{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #333333;
}

.phone-numb:hover{
  background-color: #D5A021;
}

.phone-numb i:hover{
  color: #ffffff;
}
.play-video{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #D5A021;
}
.play-video:hover{
  background-color: #333333;
}

.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;
}

.gm-style-iw-a{
  position: fixed !important;
  left: 50px !important;
  top: -20px !important;
}

.gm-style-iw-d{
  background-color: #FFFFFF;
  padding: 10px;
  width: 250px;
}

.fa-instagram:hover,
.fa-youtube:hover {
  background: #0956b5;
}

.custom-bshadow {
  border-radius: 5px;
  box-shadow: 0 0 8px rgb(66, 181, 116) !important;
}

.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;
}
.btn-danger:hover {
  background-color: #e50a0a !important;
}

.rd-navbar-default.rd-navbar-light a.lang-tlab {
  border: 1px solid #212121 !important;
}

.main-image {
  display: none;
}

.main-image.active {
  display: block;
}

.SupportProject-fixed{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #191919;
  color: white;
  z-index: 10;
  transition: none;
  white-space: pre-line;
}
.SupportProject-text{
  font-size: 14px;
}
.help-project-button{
  background: #fd7e14;
  color: white;
  border-radius: 0 !important;
}

.contact-button{
  background: #42b574;
  border-radius: 0 !important;
}

.ui-to-top{
  bottom: 90px;
  z-index: 1000;
}

.rd-navbar-default.rd-navbar-fixed .rd-navbar-nav li a{
  padding: 8px 30px 9px 15px !important;
}

.burial-img{
  border: 1px solid #42b574;
}

.note-float-left{
  width: 100%;
  max-width: 350px;
  object-fit: contain;
  object-position: left;
  float: left;
  padding-right: 10px;
}

.fs-19 {
  font-size: 19px !important;
}

.custom-icon-left{
  position: absolute;
  width: 48px;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
}

.custom-icon-right{
  position: absolute;
  width: 48px;
  top: 50%;
  right: 30px;
  transform: translateY(-150%);
  color: #fff;
  font-size: 26px;
}

.d-custom{
  display: none;
}

.bottom-sheet.show {
  pointer-events: auto;
}

.content {
  position: relative;
  background: #fff;
  border-radius: 16px 16px 0 0;
  height: 50vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sheet-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px;
}

.sheet-body::-webkit-scrollbar {
  display: none;
}

.agency-social {
  width: 20px;
  height: 20px;
  font-size: 16px;
  line-height: 1.5;
  flex-shrink: 0;
}

.responsive-tabs .resp-accordion .resp-arrow {
  top: 16px !important;
}

.item-desc{
  padding: 43px 43px 43px 60px;
}

.rd-navbar-default.rd-navbar-light.rd-navbar-static .rd-navbar-inner{
  padding: 32px 55px 20px 55px;
}

.phone-fs{
  font-size: 14px;
}

.product-single .product-thumbnails li{
  width: 50px;
  height: 50px;
}

.resp-tabs-list li.active {
  background: #fff !important;
}

.cemeteries-scroll{
  height: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cemeteries-scroll::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1600px) {
  .rd-navbar-default.rd-navbar-light.rd-navbar-static .rd-navbar-inner{
    padding: 32px 20px 20px 20px;
  }
  .rd-navbar-default.rd-navbar-static .rd-navbar-inner{
    padding: 32px 20px 20px 20px;
  }
}

@media (max-width: 1400px) {
  .d-custom{
    display: block;
  }
}

@media (max-width: 1200px) {
  .cards-section {
    transform: translateY(-25%);
  }
  .fs-30{
    font-size: 30px !important;
  }
  .fs-28{
    font-size: 28px !important;
  }
  .fs-26 {
    font-size: 26px !important;
  }
  .fs-20{
    font-size: 20px !important;
  }
  .fs-18{
    font-size: 18px !important;
  }
  .fs-16{
    font-size: 16px !important;
  }

  .fs-14{
    font-size: 14px !important;
  }
  .fs-10{
    font-size: 10px !important;
  }
  .SupportProject-text{
    font-size: 12px;
  }

}
@media (max-width: 992px) {
  .SupportProject-text{
    display: none;
    margin-right: 10px;
  }
  .custom-sp-container{
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .item-desc{
    padding: 0;
  }

}
@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;
  }
  .custom-image img{
    width: 100% !important;
  }
  .cards-section {
    transform: translateY(0);
    margin-top: 1rem;
  }
  h1, h2, h3, h4, h5, h6, p, span {
    line-height: 1;
  }
  em{
    font-size: 14px;
  }
  .note-float-left{
    width: 100%;
    max-width: 350px;
    object-fit: contain;
    object-position: left;
    display: block;
    float: none;
    padding-right: 0;
    padding-bottom: 10px;
  }
}
@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;
  }
  .phone-fs{
    font-size: 12px;
  }
  .icon-xxs.icon-rounded{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    font-size: 16px;
  }
  .cemetery-h4{
    font-size: 15px;
  }
  .cart-button{
    flex-grow: 1;
  }
  .button-fs{
    font-size: 12px;
  }
  .item-gallery img{
    width: 65px;
    height: 65px;
  }
  .pagination-classic>li>a{
    font-size: 10px;
  }
}







