.slide-wrapper {
    display: grid;
    align-items: center;
    transition: left 0.35s 
ease;
    grid-template-columns: 80% 20%;
    left: -5rem;
    position: absolute;
    z-index: 999999;
    top: 0;
    transform: translateY(200px);
}
.slide-wrapper.open {
    left: -5px;
}
.contact_open {
    height: auto;
    width: 5rem;
    background: var(--sidebar-bg);
    border: 3px solid #e3a539;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

svg.side_contact_svg>path {
    fill: #e3a539 !important;
}
@media (min-width: 451px) {
    .sideContact {
        display: none !important;
    }
}

.rotate-arrow {
    transition: transform 0.28s ease;
}

.rotate-arrow.rotated {
    transform: rotate(180deg);
} 
.trigger-button {
    cursor: pointer;
    position: relative;
    left: -10px;
    z-index: 10;
    transition: left 0.35s 
ease;
} 
.slide-wrapper.open>.contact_open { 
    transition: left 0.3s 
ease;
}

.sideContact {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    z-index: 99999999;
}