/* Styles for footer email input with arrow icon */
.footer-mail-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}


.footer-mail-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem
}

.footer-mail-icon:focus {
    outline-offset: 2px
}

@media (max-width:768px) {
    .footer-mail {
        height: 40px;
        line-height: 40px;
        padding-right: 3rem
    }

    .footer-mail-icon {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        right: 8px
    }
}