.blink {
    animation: blink 2s steps(1, end) infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.item {
    padding: 10px;
}

.customNavigation a {
    position: absolute;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    margin-top: auto;
    margin-bottom: auto;
    box-shadow: -2px 1px 10px #bdbdbd;
    top: calc(50% - 40px);
    cursor: pointer;
}

.customNavigation .prev {
    left: -15px;
}

.customNavigation .next {
    right: -15px;
}

.bootstrap-tagsinput .badge {
    margin: 0 1em;
}

iframe #attribution_block a {
    display: none;
}