﻿/* General Body Styles */
body {
    font-size: 14px;
    font-family: "Inter Tight", sans-serif;
    color: #333;
    line-height: 1.6;
    transition: background-color 0.3s ease;
}

    body.offcanvas-active {
        overflow: hidden;
    }

/* Responsive Font Size */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

/* Header Styles */
.header-banner {
    font-family: "Inter Tight", sans-serif;
    width: 100%;
    background: #3256f8;
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
}

.header-main {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
    position: relative;
    z-index: 1001;
    background-color: white;
}

.header-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    width: 140px;
}

.header-nav {
    display: flex;
    gap: 30px;
    font-size: 12px;
    font-weight: 600;
}

    .header-nav .nav-item {
        cursor: pointer;
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-button {
    font-weight: 700;
    font-family: "Space Mono", monospace;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 6px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in-out;
}

    .login-button:hover {
        transform: scale(1.05);
    }

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

/* Hamburger Menu Styles */
.menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Hidden on desktop */
}

/* Off-canvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}

    .offcanvas-menu.show {
        right: 0; /* Slide in */
    }

.close-menu-btn {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.mobile-nav-item {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
    z-index: 1000;
}

    .offcanvas-overlay.show {
        opacity: 1;
        visibility: visible;
    }

/* Main Content & Other sections from before... */
.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    padding: 0 20px;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-svg {
    width: 100%;
    max-width: 900px;
}

    .hero-svg .heavy {
        font-family: "Russo One", sans-serif;
        font-size: 80px;
    }

    .hero-svg .light {
        font-family: "Arial", sans-serif;
        font-size: 40px;
    }

.hero-description {
    margin-top: 20px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap */
    justify-content: center;
}

.hero-button-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

    .hero-button-primary span {
        font-family: "Chakra Petch", sans-serif;
    }

.hero-button-secondary {
    font-family: "Chakra Petch", sans-serif;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

    .hero-button-secondary .icon img {
        width: 20px;
    }

.banner-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

    .banner-image img {
        width: 100%;
        max-width: 900px;
        height: auto;
    }

.features-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    background-image: url("https://res.cloudinary.com/dcz4e4tqn/image/upload/v1716886336/netproxy-web-design/h0t5zgjp4ajr8nmmgofz.png");
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    border-radius: 20px;
    margin-top: 60px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .feature-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

.feature-card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-card-description {
    font-size: 16px;
    color: #6c757d;
}

.pricing-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    background-color: #f8f9fa;
    padding: 60px 20px;
}

    .pricing-section .flash-sale {
        color: #007bff;
        font-size: 14px;
        font-weight: bold;
    }

    .pricing-section .section-title {
        font-size: 36px;
        font-weight: bold;
        margin-top: 10px;
        text-align: center;
    }

    .pricing-section .section-subtitle {
        margin-top: 20px;
        color: #6c757d;
        max-width: 600px;
        text-align: center;
    }

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 270px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #007bff;
    margin-bottom: 40px;
}

    .pricing-card.popular {
        position: relative;
    }

    .pricing-card .card-title {
        font-size: 20px;
        font-weight: bold;
    }

    .pricing-card .card-subtitle {
        font-size: 20px;
        font-weight: bold;
        color: #007bff;
    }

    .pricing-card .features-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
        text-align: left;
        color: #6c757d;
        flex-grow: 1;
    }

        .pricing-card .features-list li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

    .pricing-card .price {
        font-size: 40px;
        font-weight: bold;
        color: #007bff;
        font-family: "Chakra Petch", sans-serif;
        align-self: center;
        margin-top: auto;
    }

.popular-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    font-size: 14px;
}

    .popular-badge svg {
        margin-right: 5px;
    }

.case-studies-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 60px 20px;
}

    .case-studies-section .section-tag {
        color: #007bff;
        font-size: 14px;
        font-weight: bold;
    }

    .case-studies-section .section-title {
        font-size: 40px;
        font-weight: bold;
        margin-top: 10px;
        text-align: center;
    }

    .case-studies-section .section-subtitle {
        margin-top: 20px;
        color: #6c757d;
        max-width: 600px;
        text-align: center;
    }

.case-studies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    max-width: 1000px;
}

.case-study-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 280px;
    background-color: white;
}

    .case-study-item img {
        width: 40px;
        height: 40px;
    }

    .case-study-item span {
        font-weight: 500;
    }

.why-choose-us-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

    .why-choose-us-section .section-title {
        font-size: 40px;
        font-weight: bold;
        margin-top: 10px;
        text-align: center;
    }

    .why-choose-us-section .section-subtitle {
        margin-top: 20px;
        color: #6c757d;
        max-width: 800px;
        text-align: center;
    }

.why-choose-us-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    max-width: 1200px;
}

.why-choose-us-item {
    text-align: center;
    max-width: 300px;
}

    .why-choose-us-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

.why-choose-us-item-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.why-choose-us-item-description {
    font-size: 16px;
}

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    padding: 60px 20px;
}

    .faq-section .section-tag {
        color: #007bff;
        font-size: 14px;
        font-weight: bold;
    }

    .faq-section .section-title {
        font-size: 40px;
        font-weight: bold;
        margin-top: 10px;
        text-align: center;
    }

.faq-container {
    margin-top: 50px;
    width: 100%;
    max-width: 800px;
}

.faq-item {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-item-question {
    display: flex;
    align-items: center;
}

    .faq-item-question .num {
        font-weight: bold;
        margin-right: 15px;
    }

.faq-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    padding: 60px 20px;
    font-family: "Inter", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-about {
    padding-right: 20px;
}

    .footer-about img {
        width: 150px;
        margin-bottom: 20px;
    }

    .footer-about p {
        color: #6c757d;
        line-height: 1.6;
        font-size: 14px;
    }

.footer-downloads {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-download-link {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
}

    .footer-download-link img {
        width: 20px;
        height: 20px;
        margin: 0;
    }

.footer-links {
    font-family: "Chakra Petch", sans-serif;
}

    .footer-links h3 {
        font-weight: bold;
        margin-bottom: 20px;
        font-size: 18px;
        color: #007bff;
    }

    .footer-links ul {
        list-style: none;
        padding: 0;
        font-size: 14px;
    }

        .footer-links ul li {
            margin-bottom: 15px;
        }

            .footer-links ul li a {
                color: #6c757d;
                text-decoration: none;
            }

/* Utility and Animation Classes */
.hover-underline {
    color: black;
    position: relative;
    display: inline-block;
}

    .hover-underline::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, #0f0c0c, #0a2f68);
        bottom: -5px;
        left: 0;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease-out;
    }

    .hover-underline:hover::after {
        transform: scaleX(1);
    }

.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s all ease;
}

    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }

.hover-icon-button {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .hover-icon-button .icon {
        max-width: 0;
        opacity: 0;
        transition: max-width 0.2s ease-out, opacity 0.1s ease-out;
        transform: translateX(0%);
        display: inline-block;
        vertical-align: middle;
        margin-left: 4px;
    }

    .hover-icon-button:hover .icon {
        max-width: 20px;
        opacity: 1;
        margin-left: 8px;
    }

svg text {
    text-transform: uppercase;
    animation: stroke 5s alternate;
    stroke-width: 2;
    /* stroke: #0a5fe7; */
    font-size: 40px;
    fill: #095db6;
}

@keyframes stroke {
    0% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgba(54, 95, 160, 1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 2;
    }

    70% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgba(54, 95, 160, 1);
    }

    80% {
        fill: rgba(72, 138, 20, 0);
        stroke: rgba(54, 95, 160, 1);
        stroke-width: 3;
    }

    100% {
        fill: rgba(72, 138, 204, 1);
        stroke: rgba(6, 67, 167, 0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .header-nav,
    .header-actions {
        display: none !important;
    }

    .menu-toggle {
        display: block;
    }
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .pricing-container,
    .case-studies-grid,
    .why-choose-us-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card,
    .case-study-item,
    .why-choose-us-item {
        width: 100%;
        max-width: 320px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center !important;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-downloads {
        align-items: center;
    }

    .hero-svg .heavy {
        font-size: 40px;
    }

    .hero-svg .light {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px !important;
    }
}

.faq {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 60px 0;
}

.faq-header-small {
    color: #007bff;
    font-size: 14px;
    font-weight: bold;
}

.faq-header-large {
    font-size: 40px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

.faq-list {
    margin-top: 50px;
    width: 100%;
    max-width: 800px;
}

.faq-item {
    margin-bottom: 15px;
    flex-direction: column;
}

.faq-question {
    background-color: white;
    /* border-bottom: 1px solid #e0e0e0; */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.faq-index {
    font-weight: bold;
    margin-right: 15px;
}

.faq-answer {
    display: none;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 0 20px 20px;
    width: 100%;
}

.toggle-icon {
    transition: transform 0.2s;
}

    .toggle-icon.rotated {
        transform: rotate(180deg);
    }

.faq-more-btn {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .faq-more-btn:hover {
        color: white;
    }

.feature-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px !important;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

.price-card {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .price-card.primary {
        border-top: 4px solid #007bff;
    }

    .price-card.success {
        border-top: 4px solid #28a745;
    }

    .price-card.info {
        border-top: 4px solid #ffc107;
        position: relative;
    }

    .price-card.danger {
        border-top: 4px solid #dc3545;
    }

    .price-card:hover {
        transform: translateY(-8px);
    }

    .price-card.primary:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 123, 255, 0.6), 0 0 30px rgba(0, 123, 255, 0.4);
    }

    .price-card.success:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(40, 167, 69, 0.6), 0 0 30px rgba(40, 167, 69, 0.4);
    }

    .price-card.info:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(255, 193, 7, 0.6),
        /* glow vàng */ 0 0 30px rgba(255, 193, 7, 0.4);
    }

    .price-card.danger:hover {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1), 0 0 15px rgba(220, 53, 69, 0.6), 0 0 30px rgba(220, 53, 69, 0.4);
    }

.popular-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-slider {
    width: 100%;
    overflow: hidden;
}

    .section-slider .slider-text {
        display: flex;
        white-space: nowrap;
        width: 200%; /* Double the width to accommodate the duplicated content */
        animation: slideText 40s linear infinite; /* Adjust animation duration */
        transform: translateX(0); /* Start at original position */
    }

        .section-slider .slider-text Typography {
            margin-right: 40px; /* Gap between sentences */
            white-space: nowrap;
            font-size: 40px;
        }

@keyframes slideText {
    0% {
        transform: translateX(0); /* Start at original position */
    }

    100% {
        transform: translateX(-50%); /* Move 50% to the left */
    }
}

/*Hiệu ứng lắc icon*/
@keyframes wiggle {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

@keyframes ping-slow {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes ping-slower {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-wiggle {
    animation: wiggle 0.6s infinite;
}

.animate-ping-slow {
    animation: ping-slow 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-ping-slower {
    animation: ping-slower 2.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse-strong {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.animate-pulse-strong {
    animation: pulse-strong 1.2s ease-in-out 0s infinite normal none running;
}

@keyframes rotate-shake {
    0%, 100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-6deg);
    }

    80% {
        transform: rotate(6deg);
    }
}

.animate-rotate-shake {
    animation: rotate-shake 1.2s ease-in-out infinite;
    transform-origin: center;
}

.login-form-button {
    transition: transform 0.2s ease-in-out;
}

    .login-form-button:hover {
        transform: scale(1.02);
    }

.form-check-input:checked {
    background-color: #007bff !important;
    border-color: #007bff !important;
}

input:focus {
    border-color: #007bff !important;
}

.checkbox-wrapper-18 .round {
    position: relative;
}

    .checkbox-wrapper-18 .round label {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 50%;
        cursor: pointer;
        height: 20px;
        width: 20px;
        display: block;
    }

        .checkbox-wrapper-18 .round label:after {
            border: 2px solid #fff;
            border-top: none;
            border-right: none;
            content: "";
            height: 5px;
            left: 5px;
            opacity: 0;
            position: absolute;
            top: 7px;
            transform: rotate(-45deg);
            width: 10px;
        }

    .checkbox-wrapper-18 .round input[type="checkbox"] {
        visibility: hidden;
        display: none;
        opacity: 0;
    }

        .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label {
            background-color: #66bb6a;
            border-color: #66bb6a;
        }

            .checkbox-wrapper-18 .round input[type="checkbox"]:checked + label:after {
                opacity: 1;
            }

.btn-primary {
    color: #007bff !important;
    background-color: transparent !important;
    border: 1px solid #007bff !important;
}

.btn-check:checked + .btn-primary {
    color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.btn-check:disabled + .btn-primary {
    pointer-events: none;
    color: #7885a0 !important;
    border-color: #7885a0 !important;
}

.checkbox-wrapper-30 .checkbox {
    --bg: #fff;
    --brdr: #007bff;
    --brdr-actv: #007bff;
    --brdr-hovr: #007bff;
    --dur: calc((var(--size, 2) / 2) * 0.6s);
    display: inline-block;
    width: calc(var(--size, 1) * 19px);
    position: relative;
}

    .checkbox-wrapper-30 .checkbox:after {
        content: "";
        width: 100%;
        padding-top: 100%;
        display: block;
    }

    .checkbox-wrapper-30 .checkbox > * {
        position: absolute;
    }

    .checkbox-wrapper-30 .checkbox input {
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
        background-color: var(--bg);
        border-radius: calc(var(--size, 1) * 4px);
        border: calc(var(--newBrdr, var(--size, 1)) * 1px) solid;
        color: #007bff;
        outline: none;
        margin: 0;
        padding: 0;
        transition: all calc(var(--dur) / 3) linear;
    }

        .checkbox-wrapper-30 .checkbox input:hover,
        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdr: calc(var(--size, 1) * 2);
            color: #007bff;
        }

        .checkbox-wrapper-30 .checkbox input:hover {
            --newBrdrClr: #007bff;
            color: #007bff;
        }

        .checkbox-wrapper-30 .checkbox input:checked {
            --newBrdrClr: var(--brdr-actv);
            transition-delay: calc(var(--dur) / 1.3);
            color: #007bff;
        }

            .checkbox-wrapper-30 .checkbox input:checked + svg {
                --dashArray: 16 93;
                --dashOffset: 109;
                color: #007bff;
            }

    .checkbox-wrapper-30 .checkbox svg {
        fill: none;
        left: 0;
        pointer-events: none;
        stroke: #007bff;
        stroke-dasharray: var(--dashArray, 93);
        stroke-dashoffset: var(--dashOffset, 94);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 2px;
        top: 0;
        transition: stroke-dasharray var(--dur), stroke-dashoffset var(--dur);
    }

    .checkbox-wrapper-30 .checkbox svg,
    .checkbox-wrapper-30 .checkbox input {
        display: block;
        height: 100%;
        width: 100%;
        color: #007bff;
    }
