.components-right-float-menu{
    width: 45px;
    height: 45px;
    border-radius: 45px;
    background: #FFFFFF;
    box-shadow: 0px 5px 5px -3px #0000001A;
    box-shadow: 0px 8px 10px 1px #0000000F;
    box-shadow: 0px 3px 14px 2px #0000000D;
    position: fixed;
    right: 50px;
    bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99999999;
}

.components-right-float-menu-icon{
    width: 30px;
    height: 30px;
    transition: all 0.5s;
}

.components-right-float-menu-icon-hide{
    transform: rotate(180deg);
}

.components-right-float-menu-collect{
    width: 0;
    height: 0;
    position: relative;
}

.components-right-float-menu-area{
    background: #FFFFFF;
    box-shadow: 0px 5px 5px -3px #0000001A;
    box-shadow: 0px 8px 10px 1px #0000000F;
    box-shadow: 0px 3px 14px 2px #0000000D;
    width: 45px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 45px;
    padding: 10px 0;
    transition: all 0.5s;
    opacity: 1;
    z-index: 999999;
}

.components-right-float-menu-collect-area{
    top: -460px;
    left: -8px;
}

.components-right-float-menu-order-area{
    left: -8px;
    top: -290px;
}

.components-right-float-menu-area-hidden{
    opacity: 0;
    top: 50px;
}

.components-right-float-menu-item{
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    cursor: pointer;
}

.components-right-float-menu-item .float-menu-item-icon{
    width: 20px;
    height: 20px;
}

.components-right-float-menu-item .float-menu-item-name{
    width: 100%;
    text-align: center;
    font-size: 11px;
}

.component-location-choice{
    width: 776px;
    height: 308px;
    background: #FFFFFF;
    z-index: 999999;
    border-radius: 10px;
    box-shadow: 0px 8px 10px -5px #00000014;
    box-shadow: 0px 16px 24px 2px #0000000A;
    box-shadow: 0px 6px 30px 5px #0000000D;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: absolute;
    visibility: hidden;
    padding: 10px;
}

.component-location-choice:hover{
    visibility: visible;
}

.component-location-choice-column{
    width: 100%;
    height: 308px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}

.component-location-choice-column-title{
    width: 100%;
    height: 32px;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.component-location-choice-column-content{
    width: 100%;
    height: 270px;
    margin-top: 6px;
    overflow-x: hidden;
    overflow-y: auto;
}

.component-location-choice-column-content-item{
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    border-radius: 5px;
}

.component-location-choice-column-content-item:hover{
    background: #E9E8E850;
}

.component-location-choice-column-content-item-selected{
    color: #FF6231;
}