#offer {
    background-color: #f8eb27;
}

.bg-custom-yellow {
    background-color: #f8eb27;
}

.text-custom-yellow {
    color: #f8eb27;
}

.custom-container {
    max-width: 1000px;
}

.full-height {
    min-height: 100vh !important;
}

.large-hide {
    display: none !important;
}

@media (max-width:786px) {
    .large-hide {
        display: block !important;
    }

    .small-hide {
        display: none !important;
    }
}

/* multiple card carousel */

/* slider */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.slider {
    display: flex;
    /* padding: 0 35px; */
    align-items: center;
    justify-content: center;
    /* min-height: 100vh; */
    /* background: linear-gradient(to left top, #031A9A, #8B53FF); */
}

.wrapper-custom {
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.wrapper-custom i {
    top: 50%;
    /* height: 50px;
    width: 50px; */
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapper-custom i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapper-custom i:first-child {
    left: -22px;
}

.wrapper-custom i:last-child {
    right: -22px;
}

.wrapper-custom .carousel-custom {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel-custom::-webkit-scrollbar {
    display: none;
}

.carousel-custom.no-transition {
    scroll-behavior: auto;
}

.carousel-custom.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel-custom.dragging .card-custom {
    cursor: grab;
    user-select: none;
}

.carousel-custom :where(.card-custom, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-custom .card-custom {
    scroll-snap-align: start;
    /* height: 342px; */
    list-style: none;
    /* background: #fff; */
    cursor: pointer;
    /* padding-bottom: 15px; */
    flex-direction: column;
    border-radius: 8px;
}

@media screen and (max-width: 900px) {
    .wrapper-custom .carousel-custom {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapper-custom .carousel-custom {
        grid-auto-columns: 100%;
    }
}

/* end */

.title-p {
    position: absolute;
    bottom: -20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0px;
    width: 100%;
    background: #00000042;
    text-align: center;
}
/* dashboard */

#navbar-menu{
    display: none;
}
@media (max-width:769px) {
    #navbar-menu{
    display: block;
}
#navbar-menu-large{
    display: none;
}
#navbar-col-1{
    display: none;
}
#navbar-col-2{
    width: 100% !important;
}
.medium-text{
    font-size: small !important;
}
.offcanvas{
    display: block !important;
}
}

#navbar-col-1,
#navbar-col-2 {
transition: width 0.5s; /* Transition width changes over 0.5 seconds */
}
.sidebar-menu:hover ,.sidebar-sub-menu:hover{
    color: yellow;
    cursor: pointer;
}
.sub-menu{
    margin-left: 13%;
    display: none;
}
.offcanvas{
    display: none ;
    background-color: #1a202e !important;
    min-height: 100vh !important;
    color: white !important;
    overflow-y: scroll;
    overflow-x: hidden;
}
#navbar-col-1::-webkit-scrollbar ,.offcanvas::-webkit-scrollbar{
    display: none;
}
#navbar-col-1{
    background-color: #1a202e;
    min-height: 100vh;
    color: white;
    overflow-y: scroll;
    overflow-x: hidden;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 999999;
    max-height: 100vh;
}
#navbar {
    position: sticky;
    top: 0;
    z-index: 999999;
}
.bg-green{
    background-color: rgba(193, 252, 193, 0.714);
}
.bg-red{
    background-color: rgba(252, 193, 193, 0.714);
}
.red-bottom{
    border-bottom: 2px solid red;
}
.display-none{
    display: none;
}
.active-custom{
    color: yellow !important;
}