.hamofaMailing__succes{
    display: none;
    color: green;
}

.hamofaMailing__fail{
    display: none;
    color: red;
}

.hamofaMailing__loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    display: none;
    position: relative;
    border: 3px solid;
    border-color: #d48a1d #d48a1d transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.hamofaMailing__loader::after, .hamofaMailing__loader::before{
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent white white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.hamofaMailing__loader::before{
    width: 32px;
    height: 32px;
    border-color:#d48a1d #d48a1d  transparent transparent;
    animation: rotation 1.5s linear infinite;
}   

@keyframes rotation {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
} 
@keyframes rotationBack {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(-360deg);
}
}