.switch {
    font-size: 1rem;
    position: relative;
}

    .switch input {
        position: absolute;
        height: 1px;
        width: 1px;
        background: none;
        border: 0;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        overflow: hidden;
        padding: 0;
    }

        .switch input + label {
            position: relative;
            min-width: calc(calc(2.375rem * .8) * 2);
            border-radius: calc(2.375rem * .8);
            height: calc(2.375rem * .8);
            line-height: calc(2.375rem * .8);
            display: inline-block;
            cursor: pointer;
            outline: none;
            user-select: none;
            vertical-align: middle;
            text-indent: calc(calc(calc(2.375rem * .8) * 2) + .5rem);
        }

            .switch input + label::before,
            .switch input + label::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: calc(calc(2.375rem * .8) * 2);
                bottom: 0;
                display: block;
            }

            .switch input + label::before {
                right: 0;
                background-color: #83b9ef;
                border-radius: calc(2.375rem * .8);
                transition: 0.2s all;
            }

            .switch input + label::after {
                top: 2px;
                left: 2px;
                width: calc(calc(2.375rem * .8) - calc(2px * 2));
                height: calc(calc(2.375rem * .8) - calc(2px * 2));
                border-radius: 50%;
                background-color: white;
                transition: 0.2s all;
            }

        .switch input:checked + label::before {
            background-color: #08d;
        }

        .switch input:checked + label::after {
            margin-left: calc(2.375rem * .8);
        }

        .switch input:focus + label::before {
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 136, 221, .25);
            font-size: 12px;
        }

        .switch input:disabled + label {
            color: #868e96;
            cursor: not-allowed;
        }

            .switch input:disabled + label::before {
                background-color: #e9ecef;
            }

    .switch.switch-sm {
        font-size: 0.875rem;
    }

        .switch.switch-sm input + label {
            min-width: calc(calc(1.9375rem * .8) * 2);
            height: calc(1.9375rem * .8);
            line-height: calc(1.9375rem * .8);
            text-indent: calc(calc(calc(1.9375rem * .8) * 2) + .5rem);
        }

            .switch.switch-sm input + label::before {
                width: calc(calc(1.9375rem * .8) * 2);
            }

            .switch.switch-sm input + label::after {
                width: calc(calc(1.9375rem * .8) - calc(2px * 2));
                height: calc(calc(1.9375rem * .8) - calc(2px * 2));
            }

        .switch.switch-sm input:checked + label::after {
            margin-left: calc(1.9375rem * .8);
        }

    .switch.switch-lg {
        font-size: 1.25rem;
    }

        .switch.switch-lg input + label {
            min-width: calc(calc(3rem * .8) * 2);
            height: calc(3rem * .8);
            line-height: calc(3rem * .8);
            text-indent: calc(calc(calc(3rem * .8) * 2) + .5rem);
        }

            .switch.switch-lg input + label::before {
                width: calc(calc(3rem * .8) * 2);
            }

            .switch.switch-lg input + label::after {
                width: calc(calc(3rem * .8) - calc(2px * 2));
                height: calc(calc(3rem * .8) - calc(2px * 2));
            }

        .switch.switch-lg input:checked + label::after {
            margin-left: calc(3rem * .8);
        }

    .switch + .switch {
        margin-left: 1rem;
    }

.contentA {
    display: none;
}

/*  */

.profile-tabs h6 {
    color: #173e76;
    font-size: 16px;
    font-weight: 600;
    font-family: Times New Roman, Georgia, serif;
}

.countrytag {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #ff9b00;
}

.pricing-plan {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.3s ease;
}

    .pricing-plan h3 {
        font-size: 14px;
        font-weight: bold;
        background: #f5f5f5;
        padding: 6px 26px;
        border-radius: 25px;
        display: inline-block;
    }

    .pricing-plan .price {
        font-size: 20px;
        font-weight: bold;
        margin: 2px 0;
        color: #007bff;
    }

.line {
    border: 1px solid #007bff;
    width: 25%;
    margin: auto;
}

.pricing-plan h4 {
    font-size: 21px;
    font-weight: 700;
    color: #606060;
    width: 51%;
    margin: auto;
    margin-bottom: 6px;
}

.pricing-plan ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 20px;
}

    .pricing-plan ul li {
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
        color: #666;
        /* display: flex; */
        font-size: 12px;
    }

        .pricing-plan ul li span {
            margin-right: 11px;
            /* display: flex; */
            position: relative;
            float: inline-start;
        }

        .pricing-plan ul li:last-child {
            border-bottom: none;
        }

.pricing-plan .btn {
    margin-top: 15px;
    width: 100%;
}

.most-popular {
    position: relative;
    border: 2px solid #28a745;
}

    .most-popular:before {
        content: "Most Popular";
        position: absolute;
        top: 14px;
        right: -30px;
        background-color: #28a745;
        color: white;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: bold;
        transform: rotate(45deg);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.country-list ul {
    display: grid;
    grid-template-columns: auto auto auto;
    /* padding: 0; */
}

    .country-list ul li {
        font-size: 12px;
        padding-bottom: 6px;
        list-style: circle;
    }

.country-modal .modal-header {
    background: #173e76;
    color: #fff;
}

    .country-modal .modal-header h1 {
        font-size: 16px;
    }

.btn-close {
    --bs-btn-close-bg: unset;
    color: #fff !important;
    font-size: 16px;
}

/*  */


.section-body {
    margin-top: 161px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1EBE57;
}

.whatsapp-icon {
    margin-right: 10px;
    font-size: 20px;
}