
/* ICON WITH INDICATOR */
.icon-with-indicator {
    position: relative;
    display: grid;
    place-items: center;
}

.icon-with-indicator img{
    height:30px;
    width:30px;
}

.icon-with-indicator .indicator {
    background-color: black;
    position:absolute;
    bottom: -2.5px;
    right: -2.5px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    color: white;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

/* BREADCRUMB */
.breadcrumb {
    background-color: #f1f1f1;
    padding: 20px 0;
}
.breadcrumb .active {
    color: #09c;
}
/* CUSTOM SELECT */
.select.open .chevron {
    transform: rotate(180deg);
}

.select .options {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.3s, opacity 0.3s;
    z-index: 10;
}

.select.open .options {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
}
.select .options p {
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s;
}
.select .options p:hover {
    background: #f3f3f3;
}