.loader { 
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #006055 #006055 transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after,
.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 #D7293B #D7293B;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

.loader::before {
    width: 32px;
    height: 32px;
    border-color: #34B689 #34B689 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);
    }
}

.icon-rounded{
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-image: linear-gradient(310deg, #e9ecef 0%, #e9ecef 100%);
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 15px !important;
    margin-right: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    cursor: pointer;

    color: #3b426e;
}

.choices__list--dropdown.is-active {
    transform: translate3d(0, 37px, 5px) !important;
}

.choices__input{
    border: none !important;
    border-bottom: 1px solid #ced4da !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: 30px !important;
    font-size: 14px !important;
    color: #3b426e !important;
    margin-bottom: 10px !important;
}