/*
Theme Name: The7 Child - Stratco Style
Template: dt-the7
*/

/* Wrapper */
.side-menu-wrapper {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* Menu */
.side-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 166px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Each item */
.side-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* Link */
.side-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #F38818; /* same red */
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect */
.side-menu li a:hover {
    background: #F89A36;
}

.side-menu li a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 12px;
    font-size: 14px;
}

.icon-location a::before { content: "\f3c5"; }
.icon-quote a::before { content: "\f303"; }
.icon-mail a::before { content: "\f0e0"; }
.icon-phone a::before { content: "\f095"; }
.icon-user a::before { content: "\f007"; }  

/* Target all buttons */
button,
input[type="button"],
input[type="submit"],
a.button,
.wp-block-button__link,
.elementor-button {

    position: relative;
    overflow: hidden;
    transition: 0.6s ease;
}

/* Shine effect */
button::after,
input[type="button"]::after,
input[type="submit"]::after,
a.button::after,
.wp-block-button__link::after,
.elementor-button::after {

    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover animation */
button:hover::after,
input[type="button"]:hover::after,
input[type="submit"]:hover::after,
a.button:hover::after,
.wp-block-button__link:hover::after,
.elementor-button:hover::after {
    left: 100%;
}