﻿.hibp-warning-content {
    color: white;
    font-size: 14px;
}

.hibp-warning-label {
    font-weight: 700;
    font-size: 14px;
}

#hibp-warning-container {
    margin-top: 6px;
    margin-bottom: 14px;
    border-radius: 2px;
    padding: 10px;
    background-color: #7E754E;
    border: 1px solid #FFD469;
/*    display: flex;*/
    display: none;
}

.input-container {
    position: relative;
}

.icon-container {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 20px;
}

.loader {
    position: relative;
    height: 20px;
    width: 20px;
    display: inline-block;
    animation: around 5.4s infinite;
}

@keyframes around {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader::after, .loader::before {
    content: "";
    background: transparent;
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-color: #007AAA #007AAA #55636F #55636F;
    border-style: solid;
    border-radius: 20px;
    box-sizing: border-box;
    top: 0;
    left: 0;
    animation: around 0.7s ease-in-out infinite;
}

.loader::after {
    animation: around 0.7s ease-in-out 0.1s infinite;
    background: transparent;
}