﻿.validation-message {
    color: red;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.w-button {
    position: relative;
    cursor: pointer;
}

.button__text {
    transition: all 0.2s;
}

.button--loading .button__text {
    visibility: hidden;
    opacity: 0;
}

.button--loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.fci-social-item-img {
    margin-right: 4px;
}

.oli__img-wrapper {
    text-align: center;
    height: 220px;
}

    .oli__img-wrapper img.oli__img {
        max-height: 220px;
        object-fit: cover;
        width: 100%;
        height: 220px;
    }

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media screen and (max-width: 640px) {
    .footer__copyright {
        align-items: start;
        justify-content: left;
    }

    .fci-social {
        display: block;
    }
}

@media screen and (max-width: 528px) {
    .odl__item-button-wrapper {
        width: 28px;
    }
}
