.react-tagsinput{
    padding: 8px 8px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid #eee !important;
    border-radius: 6px;
    

    &:focus,
    &:focus-visible,
    &:focus-within{
        border-color: #eee;
    }

    input{
        margin-bottom: 0;
    }

    .react-tagsinput-tag{
        margin-bottom: 0;
        background: var(--black7);
        border-color: var(--black7);
        color: var(--black1);
        border-radius: 4px;
    }
}

.mt0{
    margin-top: 0 !important;
}

.pointer{
    cursor: pointer;
}

.dropdropDown{
    position: relative;
    width: 100%;

    .Dropdown-control{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-height: 52px;
        height: 52px;
        width: 100%;
        border: 1px solid transparent;
        width: 100%;
        cursor: pointer;
        padding: 16px 20px;
        border-radius: 6px;
        font-size: 14px;
        font-family: var(--montRegular);
        font-weight: 800;
        line-height: 150%;
        background: var(--blue);
        color: var(--white);
        font-family: var(--montBold);
    }

    .Dropdown-arrow{
        border-color: var(--white) transparent transparent;
        top: 23px;
        right: 16px;
    }

    &.is-open .Dropdown-arrow{
        border-color: transparent transparent var(--white);
    }

    .Dropdown-option {
        padding: 12px 15px;
        font-size: 12px;
        font-weight: 400;
        line-height: 14.4px;
        font-family: 'Poppins', sans-serif;
    }
}