.btn {
    border: 1px solid transparent;
    padding: 10px 18px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: all ease-in-out .25s;
}

.btn:focus {
    box-shadow: none;
}

.btn-block {
    display: block;
}

.btn-block:not(:last-child) {
    margin-right: 0;
    margin-bottom: 20px;
}

.btn-rounded {
    border-radius: 50px;
}

.btn-link {
    background: transparent;
    /* Original color: $primary – replace with your color */
    color: black;
}

.btn-sm {
    font-size: 11px;
    padding: 5px 15px;
}

.btn-md {
    font-size: 14px;
    padding: 8px 15px;
}

.btn-lg {
    font-size: 18px;
    padding: 15px 35px;
}

.btn-action {
    padding: 40px;
    font-size: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: white;
}

.btn-action:hover {
    box-shadow: 0px 0px 10px 2px #442786;
    /* Original color: $accent-yellow – replace with your color */
    color: #faa946;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active,
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    /* Original color: $black – replace with your color */
    color: black !important;
    background: #faa946 !important;
    border: 1px solid #faa946 !important;
}

#buttons-row .opacity1 {
    -webkit-box-shadow: 0px 0px 10px 2px #442786;
    box-shadow: 0px 0px 10px 2px #442786;
    color: #faa946;
}

.sticky-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.sticky-icons > a {
    /* Original box-shadow: $box-shadow – replace with your value if needed */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 992px) {
    .sticky-icons {
        display: none;
    }
}

.icon {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Original background-color: $primary – replace with your color */
    background-color: #734bd1;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px 0 0 5px;
}

.icon i {
    font-size: 20px;
}

.icon::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    /* Original background-color: $primary – replace with your color */
    background-color: #734bd1;
    /* Original color: $warning – replace with your color */
    color: #faa946;
    padding: 8px 15px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.icon:hover::after {
    opacity: 1;
    visibility: visible;
}
