.productsmenu {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.cusotmmenuicon {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.cusotmmenuicon div:nth-child(1) {
    display: flex;
    justify-content: center;
}

.cusotmmenuicon div:nth-child(2) {
    display: flex;
    flex-direction: row;
    justify-self: center;
}

.cusotmmenuicon span {
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin: 1px;
}

.cusotmmenuicon .triangle {
    background-image: url('../../../../themes/biotek_2021/images/menu-triangle.svg');
    background-size: 11px 9px;
    width: 11px;
    height: 9px;
}

.cusotmmenuicon .rectangle {
    background-image: url('../../../../themes/biotek_2021/images/menu-rectangle.svg');
    background-size: 8px 8px;
    width: 8px;
    height: 8px;
}

.cusotmmenuicon .circle {
    background-image: url('../../../../themes/biotek_2021/images/menu-circle.svg');
    background-size: 8px 8px;
    width: 8px;
    height: 8px;
}

.cusotmmenuicon .triangle,
.cusotmmenuicon .rectangle,
.cusotmmenuicon .circle {
    transition: all 0.5s ease-in-out;
    transform-origin: center;
}

.productsmenu:hover .triangle,
.megaopen .triangle {
    transform: rotate(180deg) scale(1.6) translateY(-2px);
}

.productsmenu:hover .rectangle,
.productsmenu:hover .circle,
.megaopen .rectangle,
.megaopen .circle {
    transform: scale(0);
    height: 0;
}