#slv-header {
    width: min(300px, calc(200px + ((100vw - 300px) * (100 / 200))));
    height: auto;
}

#slv-header .cls-1 {
    fill: var(--blue-light);
}

#slv-header .cls-2 {
    fill: var(--orange);
}

#slv-header .cls-3 {
    fill: var(--sticky-object);
}

#slv-header .cls-4 {
    fill: var(--green);
}

.sticker {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    z-index: 203;
    padding: 10px 0;
    background-color: var(--sticky-bg);
    top: -100%;
    transition: top 1.3s ease;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.inner-menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 0;
}

.inner-menu li a {
    margin: 0 20px;
    font-size: 17px;
    font-weight: 400;
    color: var(--sticky-text);
}

.inner-menu li a:hover {
    color: var(--orange);
}

.sticker-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-button {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 15px;
    padding: 10px 30px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--orange);
    background: transparent;
    transition: ease-out 0.5s;
    border: 2px solid var(--orange);
    border-radius: 10px;
    box-shadow: inset 0 0 0 0 var(--blue-light);
    gap: 15px;
    overflow: hidden;
}

.contact-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;

    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}


.contact-button:hover {
    color: var(--white);
    box-shadow: inset 0 -100px 0 0 var(--blue-light);
    border: 2px solid var(--blue-light);
}

.contact-button:active {
    transform: scale(0.9);
}

.sidebar-container {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 300px;
    top: 0;
    z-index: 210;
    height: 100%;
    background: linear-gradient(to bottom, #F9F295, #E0AA3E, #FAF398, #ca9c56);
    right: -100%;
    transition: right 1s ease;
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
    width: 100%;
}

#close-button {
    width: 40px;
    height: 40px;
    fill: var(--black);
    align-self: flex-start;
    margin: 20px 0 0 20px;
}

#close-button:active {
    scale: 0.9;
}

.sidebar-menu a {
    color: var(--black);
    width: 100%;
    text-align: center;
    padding: 30px;
}

.sidebar-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

#open-menu {
    width: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    height: min(40px, calc(30px + ((100vw - 300px) * (10 / 200))));
    fill: var(--sticky-object);
    display: none;
}

#open-menu:active {
    scale: 0.9;
}

.sticker-sidebar-button {
    display: none;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    display: none;
    z-index: 204;
    transition: display 2s ease;
}

.blur-overlay.active {
    display: flex;
}


.sticker-sidebar-button {
    position: relative;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    padding-block: 0.5rem;
    padding-inline: 1.25rem;
    background-color: var(--blue-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--white);
    gap: 10px;
    font-weight: bold;
    border: 3px solid #ffffff4d;
    outline: none;
    overflow: hidden;
    font-size: 15px;
}

.sticker-sidebar-button .icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.sticker-sidebar-button:hover {
    transform: scale(1.05);
    border-color: #fff9;
}

.sticker-sidebar-button:hover .icon {
    transform: translate(4px);
}

.sticker-sidebar-button::before {
    animation: shine 2.5s ease-out infinite;
}

.sticker-sidebar-button::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100%;
    background-image: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.8),
            rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100px;
    opacity: 0.6;
}

@keyframes shine {
    0% {
        left: -100px;
    }

    60% {
        left: 100%;
    }

    to {
        left: 100%;
    }
}


@media (max-width: 1050px) {
    .inner-menu {
        display: none;
    }

    #open-menu {
        display: flex;
    }

    .sticker-sidebar-button {
        display: none;
    }

}

@media (max-width: 700px) {
    .sticker .sticker-button {
        display: none;
    }

    .sticker-sidebar-button {
        display: flex;
    }

    .sticker {
        padding: 18.5px 0;
    }
}