/* Base Button Styles */
.TTZonecustom-btn {
    width: 160px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow: inset 2px 2px 2px 0px rgba(255,255,255,.5),
                7px 7px 20px 0px rgba(0,0,0,.1),
                4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
}

/* Button Style 5 */
.TTZonebtn-5 {
    width: 150px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: none;
    background: linear-gradient(0deg, rgba(41,138,41,1) 0%, rgba(39,186,42,1) 100%);
}

.TTZonebtn-5:hover {
    color: #298a29;
    background: transparent;
    box-shadow: none;
}

.TTZonebtn-5::before,
.TTZonebtn-5::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #298a29;
    box-shadow: -1px -1px 5px 0px #fff,
                7px 7px 20px 0px rgba(0,0,0,.2),
                4px 4px 5px 0px rgba(0,0,0,.2);
    transition: width 400ms ease;
}

.TTZonebtn-5::after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.TTZonebtn-5:hover::before,
.TTZonebtn-5:hover::after {
    width: 100%;
    transition: width 800ms ease;
}

/* Button Style 4 */
.TTZonebtn-4 {
    width: 130px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    border: none;
    background: #127dae;
}

.TTZonebtn-4:hover {
    color: #127dae;
    background: transparent;
    box-shadow: none;
}

.TTZonebtn-4::before,
.TTZonebtn-4::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #127dae;
    box-shadow: -1px -1px 5px 0px #fff,
                7px 7px 20px 0px rgba(0,0,0,.2),
                4px 4px 5px 0px rgba(0,0,0,.2);
    transition: width 400ms ease;
}

.TTZonebtn-4::after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.TTZonebtn-4:hover::before,
.TTZonebtn-4:hover::after {
    width: 100%;
    transition: width 800ms ease;
}

/* Text Wrapper Styles */
.TTZonewrapper {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Russo One', sans-serif;
    background: #a1aca1;
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 1.5s linear infinite;
    display: inline-block;
    cursor: pointer;
}

.TTZonewrapperactive {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Russo One', sans-serif;
    background: linear-gradient(to right, #127dae 40%, #298e29 60%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 1.5s linear infinite;
    display: inline-block;
    cursor: pointer;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

/* Animated Text */
@property --k {
    syntax: '<number>';
    initial-value: 0;
    inherits: false;
}

.CCBootTexth1 {
    --k: 0;
    place-self: center;
    background: linear-gradient(90deg, hsl(calc(var(--k)*1turn), 95%, 65%), hsl(calc(var(--k)*1turn + 90deg), 95%, 65%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font: 900 clamp(.875em, .85vw, 5em) 'Arial Black', sans-serif;
    text-align: center;
    animation: k 4s linear infinite;
}

@keyframes k {
    to { --k: 1; }
}