﻿footer {
    padding: 30px 0;
    background-color: #000;
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.footer-spacer {
    pointer-events: none;
}

.footer-newsletter__content {
    text-align: center;
}


.footer-newsletter__title {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-newsletter__description {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 100;
    margin-bottom: 0;
}

.footer-newsletter__wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    min-height: 90px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-newsletter__form,
.footer-details {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-details {
    text-align: center;
    padding-top: 30px;
}

.footer-newsletter__form input {
    display: block;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    margin-bottom: 5px;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

    .footer-newsletter__form input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
        color: #999;
    }

    .footer-newsletter__form input::-moz-placeholder { /* Firefox 19+ */
        color: #999;
    }

    .footer-newsletter__form input:-ms-input-placeholder { /* IE 10+ */
        color: #999;
    }

    .footer-newsletter__form input:-moz-placeholder { /* Firefox 18- */
        color: #999;
    }

    .footer-newsletter__form input:focus {
        outline: none;
    }

.footer-newsletter__form-button {
    appearance: none;
    background-color: transparent;
    color: #fff;
    border: none;
    text-transform: uppercase;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: end;
}

    .footer-newsletter__form-button .button__text {
        margin-right: 20px;
    }

    .footer-newsletter__form-button .button__icon {
        width: 70px;
        transition: transform 0.3s ease-in-out;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .footer-newsletter__form-button:hover .button__icon {
        transform: translateX(10px);
    }

    .footer-newsletter__form-button .button__icon img {
        filter: invert(1) grayscale(1);
    }

.footer-newsletter__form-error {
    color: #dc3545;
    font-size: 12px;
    opacity: 0;
}

.footer-newsletter__form input:disabled,
.footer-newsletter__form-button:disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: wait;
}

.is-error .footer-newsletter__form input {
    border-bottom-color: #dc3545;
}

.is-error .footer-newsletter__form-error {
    opacity: 1;
}

.is-error .footer-newsletter__form-success-message {
    display: none;
}

.is-success .footer-newsletter__form {
    display: none;
}

.footer-newsletter__form-success-message {
    color: #b9ffb9;
}

.footer-divider {
    background-color: #fff;
    opacity: 1;
    margin: 50px 0;
    display: none;
}

.footer-link__title {
    font-size: 12px;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links {
    padding: 2px 0;
}

    .footer-links li a {
        font-size: 12px;
        color: #999;
        text-decoration: none;
    }

        .footer-links li a:hover {
            text-decoration: underline;
        }


.footer-details * {
    font-size: 12px;
}

.footer-details a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

    .footer-details a:hover {
        text-decoration: underline;
    }

.footer-details__contact p {
    margin-bottom: 0;
}

.footer-details__copyright span {
    display: inline-block;
    margin-right: 30px;
}

.footer-details__contact div a + a,
.footer-details__copyright a + a {
    margin-left: 30px;
}

.footer-details__copyright,
.footer-details__powered {
    margin-top: 30px;
}

.footer-newsletter__button-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.footer-right a.footer-link__btn {
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 15px;
    white-space: nowrap;
}

    .footer-right a.footer-link__btn:after {
        content: "\e900";
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        font-size: 12px;
        transition: transform 0.3s ease-in-out;
    }

    .footer-right a.footer-link__btn:hover:after {
        transform: translateX(5px);
    }

.footer-right .footer-link__buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    footer {
        position: relative;
        z-index: 12;
    }

    .footer-spacer {
        display: none !important;
    }
}

@media (min-width: 992px) {
    footer {
        padding: 60px 0;
    }

    .footer-newsletter__title {
        font-size: 50px;
    }

    .footer-newsletter__description {
        font-size: 20px;
    }

    .footer-newsletter__content {
        text-align: left;
    }

    .footer-newsletter__wrapper {
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer-newsletter__form,
    .footer-details {
        padding-left: 60px;
    }

    .footer-newsletter__content,
    .footer-details__contact {
        padding-right: 60px;
    }

    .footer-details {
        border-top: none;
        text-align: left;
        padding-top: 0px;
    }

    .footer-right {
        border-left: 1px solid #fff;
    }

    .footer-details * {
        font-size: 14px;
    }

    .footer-divider {
        display: block;
    }

    .footer-link__title {
        text-align: left;
        font-size: 14px;
    }

    .footer-details {
        border-top: none;
    }
}

.footer-flag-img {
    width: 48px;
}

@media (max-width: 768px) {
    .footer-flag-img {
        width: 30px !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 1200px) {
    .footer-link__buttons {
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5px !important;
    }
}

@media (max-width: 992px) {
    .footer-link__title {
        margin-top: 15px;
        margin-bottom: 5px;
    }
}

@media (max-width: 552px) {
    .footer-link__buttons {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}
