.right-fixed-media-block {
    width: 20px;
    position: fixed;
    bottom: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    padding: 10px;
    
    z-index: 500;
}

.right-fixed-media-block .icon-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.right-fixed-media-block .icon-button:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: #f0f0f0;
}

.right-fixed-media-block .icon-button img {
    width: 32px;
    height: 32px;
}

.right-fixed-media-block .sign-up-button {
    display: flex;
    justify-content: center;
    height: 64px;
    background-color: #ff920e;
    border: none;
    border-radius: 10px;
    transform: rotate(-90deg);
    transform-origin: right center;
    padding: 10px;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    
    color: white !important;
    font-size: 16px !important;
    text-decoration: none !important;
    font-family: 'gilroy',Arial,sans-serif;
    font-weight: 650;
    
    -webkit-appearance: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.right-fixed-media-block .sign-up-button:hover {
    transform: rotate(-90deg) translateY(-10px)
}

