* {
    margin: 0 !important;
    padding: 0;
}

.FloorViewMenuContainer {
  /* width: fit-content !important; */
  height: fit-content !important;
}

.menu-container {
    /* margin-top: 5px; */
    /* width: fit-content; */
}

ul {
    list-style-type: none;
}

a {
    color: #b63b4d;
    text-decoration: none;
}

.custom-icon {
  width: 25px;
  height: 25px;
  color: var(--icon-color, #2a2a2a);
}

.icon-base {
  width: 25px;
  height: 25px;
  color: var(--icon-color, #2a2a2a);
}

.accordion {
    left: 0px;
    top: 0px;
    width: 100%;
    /* max-width: 200px; */
    /* margin: 30px auto 20px; */
    background: #303030
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0px;
}

.accordion .AccMenulink {
    cursor: pointer;
    /* display: block; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px 5px 5px;
    color: #fcfcfc;
    font-size: 18px;
    /* font-weight: 700; */
    border-bottom: 1px solid #CCC;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


.accordion li:last-child .AccMenulink {
    border-bottom: 0;
}

.accordion li i {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #595959;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.arrow-down-icon{
    width: 32px;
}
.accordion li.open AccMenulink {
    color: #AA00FF;
}

.accordion li.open .arrow-down-icon {
    color: #AA00FF;
}

.accordion li.open .arrow-down-icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #AA00FF;
}


.submenu {
    display: none;
    background: #536F6C;
    font-size: 15px;
}

.submenu li {
    border-bottom: 1px solid #4b4a5e;
}

.submenu a {
    display: block;
    text-decoration: none;
    color: #d9d9d9;
    padding: 5px;
    padding-left: 20px;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.submenu a:hover {
    background: #AD8A6D;
    color: #FFF;
}