* {
    font-family: "Montserrat", sans-serif !important;
}

a {
    text-decoration: none !important;
    color: inherit !important;
}

.w-40 {
    width: 40% !important;
}
.pt-7{
    padding-top: 8rem !important;
}

.nc-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 18px;
    margin-right: 10px;
    margin-bottom: 0px;
    font-weight: 500;
    background-color: #F3F3F3;
    width: max-content !important;
    border-radius: 40px;
    font-size: 14px;
    white-space: nowrap;
}

.nc-button.active {
    background-color: #222;
    color: white;
}

.nc-button-white {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 12px;
    margin: 0 6px;
    background-color: #F3F3F3;
    font-weight: 500;
    width: max-content !important;
    border-radius: 20px;
    font-size: 11px;
    white-space: nowrap;
}

.nc-text-wrap-skip-xs{	 
    max-width: 25ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

#listOfCategory p:first-child{
    position:-webkit-sticky;
    position: sticky;
    left: 0px !important;
}

.nc-button-black {
    display: flex;
    align-items: center;
    padding: 9px 12px;
    margin: 0 6px;
    background-color: #222;
    color: white;
    font-weight: 500;
    border-radius: 20px;
    font-size: 11px;
    white-space: nowrap;
}

.nc-text-bold {
    font-weight: 600 !important;
    font-size: 18px !important;
}

.text-grey {
    color: grey;
}

.nc-text-xs {
    font-size: 14px !important;
}

.nc-text-xxs {
    font-size: 12px !important;
}

.header-sticky {
    position: sticky;
    top: 0px;
    z-index: 100;
    background: white;
}

.nc-scroll::-webkit-scrollbar {
    display: none;
}

.nc-scroll {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.post-img {
    border-radius: 24px;
    filter: contrast(0.6);
}

.bg-img {
    width: 100%;
    border-radius: 24px;
}

.bg-img-blur {
    object-fit: fill !important;
    background-size: cover;
    border-radius: 24px;
    background: linear-gradient(360deg, #000000 4.24%, rgba(0, 0, 0, 0) 100%);
}

.msg-body {
    position: absolute;
    top: 255px;
}

.chip-button {
    background: #edecec;
    backdrop-filter: blur(25px);
    width: max-content;
    font-size: 10px;
    border-radius: 16px;
    padding: 7px 16px;
    text-align: center;
    font-weight: 600;
}

.card {
    padding: 13px !important;
    border-radius: 24px !important;
    border: none !important;
    filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.2));
}

.data-detail {
    position: relative;
    top: -15px;
    overflow-y: scroll !important;
}

.line2-clamp-dot {
    text-overflow: clip;
    overflow: hidden !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 140%;
}

.scroll-img {
    width: 100%;
    margin-bottom: 8px;
    height: 150px !important;
    object-fit: fill !important;
    border-radius: 12px;
}

.bg-round {
    font-weight: 600 !important;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-grey-round {
    padding: 4px 2px;
    border-radius: 16px;
    background: #edecec;
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more {
    padding: 8px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edecec;
    font-weight: 500 !important;
    border-radius: 8px;
}

.content-ht {
    height: 50px !important;
}
.content-ht-max {
    height: 60px !important;
}

.border-grey {
    filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.2));
}

/* Ripple effect */
.ripple {
    background-position: center;
    transition: background 0.8s;
}

.ripple:active {
    background-color: rgba(128, 128, 128, 0.503);
    background-size: 100%;
    transition: background 0s;
}
.related-cards{
    border-radius: 16px;
    /* border: 0.2px solid rgba(128, 128, 128, 0.503); */
    margin: 5px 10px;
    filter: drop-shadow(0px 4px 7px rgba(0, 0, 0, 0.2));

}

.disabled {
    pointer-events: none;
    opacity: 1 !important;
}
.close-btn{
    border-radius: 50%;
    opacity: 0.7;
    background: white;
    margin: 10px;
}

 /* Animated loader CSS */
.animated-title-loader {
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name:placeHolderShimmer;
  animation-timing-function: linear;
  background-color: #f6f7f8;
  background: linear-gradient(to right, #eeeeee 8%, #dfe3e5 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 70px;
  position: relative;
}
@keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0
  }
  100% {
    background-position: 800px 0
  }
}
/* loader css */
#detail {
    position: relative;
    animation-name: bottomTOP;
    animation-duration: .3s;
    animation-fill-mode: forwards;
}

#listData {
    position: relative;
    animation-name: topBOTTOM;
    animation-duration: .3s;
    animation-fill-mode: backwards;
}

@keyframes bottomTOP {
    from {
        top: 100vh;
    }

    to {
        top: 0px;
    }
}

@keyframes topBOTTOM {
    from {
        top: -30vh;
    }

    to {
        top: 0px;
    }
}









/* Extra small devices (phones, 350px and down) */
@media only screen and (max-width: 360px) {
    .nc-button-black {
        font-size: 9px;
    }

    .nc-button-white {
        font-size: 9px;
    }

    .nc-text-xs {
        font-size: 12px !important;
    }

    .nc-text-xxs {
        font-size: 10px !important;
    }
    .content-ht{
        height: 45px !important;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

@media only screen and (min-width: 1300px) {
    .ripple:hover {
        background-color: rgba(128, 128, 128, 0.503);
    }
}

