:root {
    --induris-btn-shadow-color: #dd7e2a;
}

.techni-btn {
    display: flex;
    width: auto;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    line-height: 35px;
    border: 1px solid;
    border-radius: 15px;
    text-align: center;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    transition: all 0.4s;
    box-sizing: border-box;
    margin: 0;
}

.techni-btn svg,
.techni-btn svg path {
    transition: all 0.4s;
}


.btn-style503 {
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-primary);
    transition: all 0.5s;
}

.btn-style503:hover {
    box-shadow: inset 5em 0 0 0 var(--induris-btn-shadow-color), inset -5em 0 0 0 var(--induris-btn-shadow-color);
    border-color: var(--induris-btn-shadow-color);
    color: #fff;
}


.btn-style507 {
    position: relative;
    border-color: #fff;
    color: #fff;
    overflow: hidden;
    z-index: 1;
}

.btn-style507::before {
    width: 15%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    transform: rotateZ(45deg) translate(50%, -50%);
    transition: all 0.4s;
    content: "";
    z-index: -1;
}

.btn-style507:hover {
    color: #fff;
    transition-delay: 0.4s;
}

.btn-style507:hover::before {
    animation: ani507 0.6s forwards;
}

@keyframes ani507 {
    10% {
        width: 0;
        transform: rotateZ(45deg) translate(100%, -50%);
    }

    20% {
        width: 0;
        transform: rotateZ(0) translate(100%, 85%);
    }

    60% {
        width: 100%;
        transform: rotateZ(0) translate(0, 85%);
    }

    100% {
        width: 100%;
        transform: rotateZ(0) translate(0, 0);
    }
}

.btn-style511 {
    position: relative;
    border-color: transparent;
    background-color: transparent;
    color: #484848;
    overflow: hidden;
    z-index: 3;
}
.btn-style511 span {
    position: relative;
    z-index: 2;
}
.btn-style511::before, .btn-style511::after {
    width: 100%;
    height: 50%;
    position: absolute;
    left: 0;
    background-color: #fff;
    transition: all 0.25s;
    content: "";
    z-index: -1;
}
.btn-style511::before {
    top: 0;
    transform: translate(-100%, 0);
}
.btn-style511::after {
    bottom: 0;
    transform: translate(100%, 0);
}
.btn-style511:hover {
    color: #fff;
}
.btn-style511:hover::before, .btn-style511:hover::after {
    transform: translate(0, 0);
}
