.nice-line-height {
    line-height: 21px !important;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 1px;
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.justify-text {
    text-align: justify;
}

.img-size-fix {
    max-width: 1238px;
    border-radius: 25px;
}

.video-container {
    display: block;
}

.new-video-container {
    display: block;
    margin-top: -30%;
}

.w-video-wrapper {
    background: unset !important;
}

.alert-danger {
    background: #9d1111;
    color: #e5e5e5;
}

.alert-warning {
    background: #71710b;
    color: #e5e5e5;
}

.alert-success {
    background: #096900;
    color: #e5e5e5;
}

.pt-13 {
    padding-top: 110px !important;
}

.wd-64 {
    width: 64px;
}

.card-design {
    position: relative;
    display: flex;
    flex-direction: column;
    word-wrap: break-word;
    background-clip: border-box;
}

.card-body-design {
    flex: 1 1 auto;
    padding: 25px;
}

.table-mod td,
.table-mod th {
    min-width: unset !important;
}

.fs-55 {
    font-size: 55px;
}

.lh-55 {
    line-height: 55px;
}

.lh-52 {
    line-height: 52px;
}
.fs-48 {
    font-size: 48px;
}

.cursor-pointer {
    cursor: pointer;
}

.social-icon img {
    width: 32px !important;
    height: 32px !important;
}

.verify-img {
    width: 253px;
    height: auto;
}

.verify-bg {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.verify-text {
    margin-top: -75px;
}

@media (max-width: 991.98px) {
    .fs-48 {
        font-size: 34px;
    }

    .fs-55 {
        font-size: 36px;
    }

    .lh-55 {
        line-height: 36px;
    }
}

@media (max-width: 480px) {
    .fs-48 {
        font-size: 24px;
    }

    .fs-55 {
        font-size: 30px;
    }

    .lh-55 {
        line-height: 30px;
    }
}

.new-toast {
    z-index: 10;
}

.navbar-items .main-menu {
    background-color: #fff !important;
    box-shadow: unset;
}

#cookie-notice {
    display: none;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    max-width: 450px;
    margin: auto;
    padding: 0.5rem;
    border: 1px solid #eee;
    background-color: #fefefe;
    box-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.05);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 22px;
    font-size: 15px;
    text-align: center;
    color: #555;
    border-radius: 15px;
}

.cookie-notice-more {
    margin: 0 0.25rem;
    text-decoration-style: dashed;
    color: inherit;
}

.cookie-notice-close {
    padding: 0 0.5rem;
    border: 1px solid #ddd;
    line-height: 20px;
    text-decoration: none;
    color: #888;
    border-radius: 10px;
}

@media only screen and (min-width: 768px) {
    #cookie-notice {
        bottom: 1rem;
    }

    .cookie-notice-close {
        float: right;
    }
}

.footer-link-section {
    max-width: unset;
}

@media (max-width: 991.98px) {
    .footer-link-section {
        max-width: 140px;
    }
}

/*Word Counter Page*/

.word_title_container {
    display: grid;
    grid-template-columns: 100%;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 10px 10px 45px #000;
}

.word_title_container h2 {
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: 0.1em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    text-align: center;
    letter-spacing: 0.15em; /* Adjust as needed */
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@media (max-width: 500px) {
    .word_title_container h2 {
        animation: none;
        white-space: wrap;
        overflow: auto;
        border: none;
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 80%;
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: orange;
    }
}

.word_counter_container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0px 20px;
}

@media (max-width: 1200px) {
    .word_counter_container {
        grid-template-columns: 100%;
    }
}

.word_textarea textarea {
    background: #e5e5e5;
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 30px;
}

.word_details {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.word_details .word_details_column:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.word_details .word_details_column:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.word_details_column {
    color: white;
    background: #f46a25;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.word_details_column h6 {
    font-size: 1rem;
}

#keywordSpan {
    background: skyblue !important;
}

#keywordList {
    width: 100%;
}

.word_details_column span {
    background: black;
    border-radius: 15px;
    width: 30%;
    text-align: center;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1200px) {
    .word_details_column span {
        width: 20%;
    }
}

.word_information_area {
    display: grid;
    grid-template-columns: 100%;
    margin: auto;
}

/*Email AI Generator*/

.email_ai_title_container {
    display: grid;
    grid-template-columns: 100%;
    padding: 35px;
    height: auto;
}

.email_ai_content_container {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 30px;
    gap: 0px 20px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    height: auto;
}

.email_ai_content_container div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.email_ai_content_container div h2 {
    text-align: left;
    font-size: 60px;
    line-height: 60px;
}

/* marketing page */

.marketing-hero-images {
    padding-bottom: 97px;
}

.counter-card {
    min-width: 72px;
}
.counter-count {
    font-size: 24px;
}

.counter-container {
    max-width: 1200px;
}

.marketing-input {
    border: 1px solid #e9e4e2;
}

.footer-bg {
    display: flex;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -20px;
}

.footer-bg img {
    height: 200px;
}

.footer-bg img.left {
    left: -45% !important;
}

.footer-bg img.right {
    right: -45% !important;
}

.marketing-hero {
    margin-top: 0;
}

.marketing-hero-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 120px;
    background-color: #f79b6e;
    opacity: 0.35;
}

.marketing-title {
    color: #f46a25;
    font-size: 40px;
}
.marketing-hero-images {
    padding-bottom: 140px;
}

.marketing-kangaroo {
    max-width: 120px;
}

@media (min-width: 576px) {
    .marketing-hero-images {
        padding-bottom: 140px;
    }
}

@media (min-width: 768px) {
    .marketing-title {
        /* max-width: 474px; */
    }
    .footer-bg img {
        height: 200px;
    }
    .footer-bg img.left {
        left: -10% !important;
    }

    .footer-bg img.right {
        right: -10% !important;
    }
    .marketing-hero-images {
        padding-bottom: 149px;
    }

    .marketing-kangaroo {
        max-width: 120px;
    }
    .marketing-title {
        font-size: 70px;
    }
}

@media (min-width: 992px) {
    .footer-bg img {
        height: 200px;
    }
    .counter-card {
        min-width: 164px;
    }
    .counter-count {
        font-size: 48px;
    }
    .marketing-hero-images {
        padding-bottom: 214px;
    }

    .marketing-title {
        font-size: 80px;
    }
}

@media (min-width: 1200px) {
    .footer-bg img {
        height: 280px;
    }
    .footer-bg img.left {
        left: 0% !important;
    }
    .footer-bg img.right {
        right: 0% !important;
    }
    .position-xl-absolute {
        position: absolute !important;
    }
    .marketing-hero {
        margin-top: -110px;
    }

    .marketing-hero-images {
        padding-bottom: 97px;
    }
}

@media (min-width: 1400px) {
}

.z-index-1 {
    z-index: 1;
}

.other-senders {
    background: radial-gradient(
        50.88% 300.35% at 50% -133.92%,
        #f6eadd 0%,
        #f6f5f4 100%
    ) !important;
}

.other-senders img {
    max-width: 220px;
}

@media (max-width: 991.98px) {
    .delivery-arrow {
        max-height: 200px;
    }
}

.hero-flag {
    width: 210px;
}

.form-select:valid {
    color: var(--project-natural-dark-6, #000) !important;
}

.pricing-free-dedicated-ip {
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: #f46a25;
    color: #fff;
    padding: 10px 20px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 14px rgba(244,106,37,0.10);
    gap: 14px;
    max-width: fit-content;
}

.dedicated-badge-top {
    position: absolute;
    top: 10px;
    right: 10px;
}

@media (max-width: 500px) {

    .pricing-free-dedicated-ip {
        font-size: 12px;
    }

    .dedicated-badge-top {
        position: absolute;
        top: 5px;
        right: 10px;
    }

}

.review-banner {
    width: 140px;
}
